/* --- Global Styles & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}
   
/* ===================================================
    NAVBAR FINAL - FIX ALIGNMENT & CLICKABLE
   =================================================== */

.navbar {
    display: flex;
    /* Ini kunci agar logo di kiri & menu di kanan */
    justify-content: space-between; 
    align-items: center;
    padding: 10px 6%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent; 
    border-bottom: none;
    z-index: 9999; /* Memastikan navbar di paling atas */
    transition: 0.3s ease;
}

/* Container Logo */
.logo {
    flex-shrink: 0; /* Mencegah logo mengecil */
    z-index: 10000;
}

.logo img {
    height: 50px; /* Ukuran proporsional */
    width: auto;
    display: block;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5));
}

/* Menu Navigasi Desktop */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px; /* Memberi jarak antar menu */
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 5px;
    transition: 0.3s;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    display: inline-block; /* Agar area klik maksimal */
}

.nav-menu a:hover {
    color: #ff8c00 !important;
}

/* Sembunyikan toggle di desktop */
.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* ===================================================
    RESPONSIF MOBILE (HP) - RATA KIRI & GARIS
   =================================================== */

@media screen and (max-width: 768px) {
    .nav-menu {
        display: none; /* Sembunyi secara default */
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #e96532; /* Warna latar oranye sesuai foto */
        padding: 100px 40px 0; /* Padding atas untuk ruang, padding kiri 40px */
        transition: 0.4s ease-in-out;
        z-index: 10000;
        align-items: flex-start; /* MEMBUAT SEMUA ISI RATA KIRI */
    }

    .nav-menu.active {
        display: flex;
        right: 0;
    }

    .nav-menu li {
        width: 100%; /* Agar garis memenuhi lebar layar */
        list-style: none;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* GARIS PEMBATAS PUTIH TIPIS */
    }

    .nav-menu a {
        display: block;
        padding: 20px 0; /* Jarak vertikal antar menu */
        color: #ffffff !important;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        text-align: left; /* TEKS RATA KIRI */
        width: 100%;
    }

    /* Tombol burger agar tetap terlihat di atas menu */
    .menu-toggle {
        display: block;
        z-index: 10001;
        position: relative;
        
        /* GANTI ATAU TAMBAHKAN BARIS DI BAWAH INI */
        color: #000000; /* Mengubah warna garis menjadi hitam pekat */
        font-size: 28px; /* Sedikit lebih besar agar lebih jelas */
    }
}
/* ===================================================
   HERO
 /* --- Hero Section Styles --- */
.hero {
    height: 100vh;
    width: 100%;
    /* Menggunakan URL asli Anda */
    background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=2000');
    
    /* Memastikan foto tajam dan proporsional */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Opsional: Menjaga foto tetap tajam di layar retina */
    image-rendering: -webkit-optimize-contrast; 

    display: flex;
    flex-direction: column;
    position: relative;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: none; /* Ubah menjadi none */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

/* Memberikan bayangan pada teks agar tetap terbaca meski background terang */
.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8); /* Dipertebal */
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 750px;
    font-weight: 400; /* Sedikit lebih tebal agar kontras */
    text-shadow: 1px 1px 8px rgba(0,0,0,0.8); /* Dipertebal */
}
.btn-hero {
    display: inline-block;
    padding: 16px 45px;
    background: #ff8c00;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-hero:hover {
    background: #e67e22;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

@media screen and (max-width: 768px) {
    .hero {
        /* Mengatur tinggi agar pas dengan layar HP */
        height: 55vh; /* 55% dari tinggi layar, agar konten bawah sedikit terlihat */
        min-height: 500px; /* Batas minimum agar tidak terlalu pendek */
    }

    .hero-content {
        padding: 0 5%; /* Padding lebih kecil agar teks tidak terlalu sempit */
    }

    .hero-content h1 {
        font-size: 28px; /* Mengecilkan ukuran judul agar pas di layar HP */
    }
}

/* ===================================================
    SEARCH BAR
   =================================================== */
/* --- Search Bar --- */
.search-container {
    background: white;
    padding: 5px;
    border-radius: 50px;
    display: flex;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.search-container input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
}

.search-btn {
    background: #ff8c00;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.search-btn:hover {
    background: #e67e00;
}
/* ===================================================
     INFO KONTAK
   =================================================== */
/* --- Info Box (Tampilan PC) --- */
.info-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 50px 8%;
    background: white;
    margin-top: -50px; /* Membuat box agak naik ke area hero */
    position: relative;
    z-index: 10;
}

.info-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateY(-10px);
}

.info-item .icon {
    font-size: 40px;
    color: #ff8c00;
    margin-bottom: 15px;
}

.info-item h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.info-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* --- Responsive Layout (Tampilan HP) --- */
@media (max-width: 768px) {
    
    /* 1. Menghilangkan Info Box di HP sesuai permintaan Anda */
    .info-box {
        display: none !important; /* Menggunakan !important untuk memastikan box benar-benar hilang */
    }

    .navbar {
        padding: 15px 5%;
    }

    .nav-menu {
        display: none; /* Sembunyikan menu desktop */
    }

    .menu-toggle {
        display: block; /* Munculkan hamburger di HP */
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .search-container {
        max-width: 90%;
    }
}
/* ============================================================
   SECTION: DESTINATIONS (FINAL VERSION)
   ============================================================ */

/* --- 1. HEADER (Judul & Subtitle) --- */
.destinations-header {
    text-align: center;
    padding: 60px 20px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.destinations-header .subtitle {
    color: #ff8c00; /* Warna Oranye Tema */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.destinations-header h2 {
    color: #1a1a1a;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

/* Dekorasi garis oranye di bawah judul */
.destinations-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ff8c00;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* --- 2. GRID LAYOUT (PC Desktop) --- */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 25px;
    padding: 40px 8% 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- 3. STYLE KARTU & OVERLAY --- */
.destination-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Ukuran Kartu PC */
.destination-card.big {
    grid-column: span 3;
    height: 400px;
}

.destination-card.small {
    grid-column: span 2;
    height: 300px;
}

/* Hover Effect PC */
.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card:hover img {
    transform: scale(1.1);
}

/* Teks Overlay di dalam Kartu */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    transition: 0.3s;
}

.overlay h3 {
    color: white;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

/* --- 4. RESPONSIVE LAYOUT (HP Mobile - Destinations) --- */
@media screen and (max-width: 768px) {
    /* Header HP */
    .destinations-header {
        padding: 40px 20px 10px;
        text-align: left; /* Atur ke center jika ingin judul di tengah */
    }

    .destinations-header h2 {
        font-size: 28px;
        color: #c45a30; /* Warna orange kecokelatan sesuai tema */
        font-weight: bold;
    }

    /* Slider Horizontal */
    .destinations-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 20px 40px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }

    .destinations-grid::-webkit-scrollbar {
        display: none; /* Sembunyikan Scrollbar Chrome/Safari */
    }

    /* Kartu Destinasi (Mirip Foto) */
    .destination-card.big, 
    .destination-card.small {
        flex: 0 0 85%; /* Agar kartu selanjutnya sedikit mengintip */
        height: 380px;
        border-radius: 25px; /* Sudut melengkung halus sesuai foto */
        position: relative;
        overflow: hidden;
        grid-column: auto;
        scroll-snap-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: transparent; /* Ubah ke transparent atau hapus baris ini */
}

    .overlay h3 {
        color: #ffffff;
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 15px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    }

    /* Tombol View More (Style Orange Akila) */
    .overlay .view-more-btn { /* Pastikan ada class ini di tag <a> */
        background: linear-gradient(135deg, #f39c12, #e67e22);
        color: white !important;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    /* Efek Arrow di Tombol */
    .overlay .view-more-btn::after {
        content: '>'; 
        font-weight: bold;
    }
}

/* ======================================================
   7. TOUR PACAGE
====================================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.packages {
    padding: 40px 10%;
    background-color: #f9f9f9;
}

.packages-header {
    text-align: center;
    margin-bottom: 30px;
}

.subtitle {
    color: #e67e22;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

.packages-header h2 {
    font-size: 28px;
    margin: 10px 0;
    color: #333;
}

.desc {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Container Grid Utama */
.tour-grid {
    display: grid;
    /* Default PC: 3 Kolom (Sesuai Foto 2) */
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

/* Card Style */
.tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-content {
    padding: 20px;
    flex-grow: 1;
}

.tour-location {
    color: #e74c3c;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
}

.tour-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.tour-rating {
    color: #f1c40f;
    font-size: 14px;
    margin-bottom: 10px;
}

.tour-rating span {
    color: #888;
    font-size: 12px;
    margin-left: 5px;
}

.tour-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Tombol Aksi */
.tour-actions {
    display: flex;
    border-top: 1px solid #eee;
}

.btn-book, .btn-read {
    flex: 1;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-book {
    color: #333;
    border-right: 1px solid #eee;
}

.btn-read {
    color: #3498db;
}

.btn-book:hover { background: #f8f8f8; }
.btn-read:hover { background: #f8f8f8; }

/* --- RESPONSIVE MODE (Tampilan HP Persis Foto) --- */

@media (max-width: 768px) {
    .packages {
        padding: 20px 15px; /* Padding lebih kecil agar muat 2 kolom */
        background-color: #fff;
    }

    /* Judul header dibuat rata kiri sesuai foto */
    .packages-header {
        text-align: left; 
        margin-bottom: 20px;
    }

    .packages-header h2 {
        color: #d37d5c; /* Warna oranye kecoklatan sesuai foto */
        font-size: 24px;
        line-height: 1.2;
    }

    .desc {
        text-align: left;
        margin: 10px 0;
        font-size: 14px;
        line-height: 1.4;
    }

    .tour-grid {
        /* Ubah ke 2 kolom sesuai foto */
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px; /* Jarak antar kartu lebih rapat */
    }

    .tour-card {
        border-radius: 4px; /* Border radius lebih tajam */
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .tour-img img {
        height: 120px; /* Tinggi gambar disesuaikan untuk 2 kolom */
    }

    .tour-content {
        padding: 10px;
    }

    .tour-card h3 {
        font-size: 14px; /* Font judul lebih kecil agar tidak pecah */
        height: 40px; /* Menjaga tinggi tetap konsisten */
        overflow: hidden;
    }

    .tour-location {
        font-size: 11px;
    }

    .tour-rating {
        font-size: 10px;
    }

    /* Sembunyikan deskripsi kartu di HP agar tidak terlalu panjang */
    .tour-desc {
        display: none; 
    }

    /* Sesuaikan Tombol Aksi sesuai foto */
    .tour-actions {
        border-top: 1px solid #f0f0f0;
        justify-content: center;
    }

    .btn-book {
        display: none; /* Foto hanya menunjukkan "Read more" */
    }

    .btn-read {
        font-size: 12px;
        padding: 10px;
        color: #333; /* Warna teks tombol lebih gelap */
    }
}
/* ============================================================
   SECTION: CATEGORY SLIDER (PC 3 CARDS, PROPORTIONAL HEIGHT)
   ============================================================ */

.categories {
    padding: 80px 8%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.categories-header {
    margin-bottom: 40px;
    text-align: center;
}

.categories-header h2 {
    font-size: 34px;
    color: #1a1a1a;
    font-weight: 800;
}

/* Container Utama */
.slider-container {
    position: relative;
    max-width: 1200px; /* Ukuran standar agar pas di mata */
    margin: 0 auto;
}

.slider-wrapper {
    overflow: hidden; 
    padding: 15px 0;
}

.slider {
    display: flex;
    gap: 25px; /* Jarak antar kartu */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- KARTU KATEGORI (PC: TAMPIL 3 FOTO) --- */
.category-card {
    /* (100% / 3) - offset untuk gap */
    min-width: calc(33.333% - 17px); 
    height: 380px; /* TINGGI DIKURANGI AGAR TIDAK LONJONG */
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.category-card:hover img {
    transform: scale(1.1);
}

/* --- TULISAN DI DALAM FOTO --- */
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 65%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    z-index: 2;
}

.category-overlay h3 {
    color: #ff8c00;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.category-overlay p {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 8px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* TOMBOL VIEW MORE WARNA MERAH MENYALA */
.category-overlay a {
    color: #ff3131 !important; /* Warna Merah Terang */
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    transition: 0.3s;
}

.category-overlay a:hover {
    color: #ffffff !important;
    letter-spacing: 1px;
}

/* --- NAVIGASI PANAH PC --- */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #ff8c00;
    border: none;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    font-size: 24px;
}

.nav.prev { left: -25px; }
.nav.next { right: -25px; }

/* --- RESPONSIVE HP (MIRIP FOTO) --- */
@media (max-width: 768px) {
    .categories { 
        padding: 40px 20px; 
        background-color: #fff; /* Pastikan background atas putih */
    }

    /* Judul & Deskripsi */
    .categories h2 {
        color: #c45a30; /* Warna orange kecokelatan sesuai foto */
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .categories p {
        color: #666;
        line-height: 1.6;
        font-size: 14px;
    }

    /* Slider Container */
    .slider-container {
        position: relative;
        padding: 20px 0;
    }

    .slider-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Hilangkan scrollbar di Firefox */
    }
    
    .slider-wrapper::-webkit-scrollbar { display: none; } /* Hilangkan scrollbar di Chrome/Safari */

    .category-card {
        min-width: 100%;
        height: 280px; /* Sesuaikan tinggi agar tidak terlalu panjang */
        border-radius: 20px; /* Melengkung seperti di foto */
        overflow: hidden;
        position: relative;
        scroll-snap-align: center;
    }

    /* Overlay Teks & Tombol */
    .category-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Teks agak ke bawah sesuai foto */
        align-items: center;
        text-align: center;
        padding-bottom: 30px;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); 
    }

    .category-overlay h3 {
        color: #fff;
        font-size: 18px;
        margin-bottom: 15px;
        text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    }

    /* Tombol View More Orange (Sesuai Foto) */
    .category-overlay a {
        background: #f39c12 !important; /* Warna orange tombol */
        background: linear-gradient(to right, #f39c12, #f1c40f) !important;
        color: white !important;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: bold;
        text-decoration: none;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* Navigasi Panah (Kiri & Kanan) */
    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 35px;
        height: 35px;
        background: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        z-index: 10;
        color: #c45a30;
        text-decoration: none;
    }

    .prev { left: -10px; }
    .next { right: -10px; }
}
/* ===================================================
    BLOG SECTION (PC: 3 BARIS, HP: SLIDER)
   =================================================== */

.blog-header {
    text-align: center;
    padding: 60px 20px 20px;
}

.blog-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* --- GRID LAYOUT PC (3 KOLOM, 2 BARIS) --- */
.blog-grid {
    display: grid;
    /* Mengunci tampilan 3 kolom sejajar */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    padding: 40px 8% 80px;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- KARTU BLOG --- */
.blog-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: #ff8c00;
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Tombol Read More Merah */
.read-more {
    color: #ff3131;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
}

/* --- 5. BLOG SLIDER HP (MODERN LOOK) --- */
@media screen and (max-width: 768px) {
    /* Container Grid menjadi Flex Slider */
    .blog-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 20px 50px; /* Padding bawah lebih besar untuk ruang dots */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .blog-grid::-webkit-scrollbar {
        display: none;
    }

    /* Kartu Blog */
    .blog-card {
        min-width: 85%;
        flex: 0 0 85%;
        scroll-snap-align: center;
        background: #fff;
        border-radius: 20px; /* Melengkung konsisten dengan bagian lain */
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* Shadow halus */
        border: 1px solid #eee;
    }

    /* Penyesuaian gambar di dalam kartu blog */
    .blog-card img {
        height: 200px;
        object-fit: cover;
    }

    /* Konten Teks Blog */
    .blog-content {
        padding: 20px;
        text-align: left;
    }

    .blog-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #333;
    }

    /* Indikator Slider (Garis di bawah) */
    .blog-slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: -10px;
        margin-bottom: 40px;
    }

    .dot {
        width: 12px; 
        height: 6px;
        background: #e0e0e0;
        border-radius: 10px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .dot.active {
        background: #f39c12; /* Warna orange identitas Akila */
        width: 35px; /* Memanjang saat aktif */
    }
}

/* Sembunyikan Dots di Desktop */
@media screen and (min-width: 769px) {
    .blog-slider-dots {
        display: none;
    }
}
/* ======================================================
   9. FOOTER
====================================================== */
.footer {
    background: #e96532;
    color: #fff;
    padding: 80px 8% 40px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

.footer-map iframe {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    border: none;
}
/* Menargetkan semua link di dalam footer agar berwarna putih */
.footer a {
    color: #ffffff;
    text-decoration: none; /* Menghilangkan garis bawah jika diinginkan */
}

/* Opsional: Efek saat kursor diarahkan ke link */
.footer a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* ================= SOCIAL ICON ================= */
.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: #fff;
    color: #e96532;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.9;
}

/* ======================================================
   10. FLOATING WHATSAPP
====================================================== */
.floating-wa-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 999;
}