/* Palet Warna:
   Abu-abu Dominan/Latar Belakang: #F0F0F5 (Lavender Grey - terang)
   Aksen Utama/Teks Kontras: #7D6E83 (Dark Mauve - Ungu keabu-abuan gelap)
   Oranye Aksen: #FF8C00 (Dark Orange - untuk penekanan)
   Teks Sekunder/Hiasan: #A9A9AE (Medium Grey)
*/
:root {
    --color-superior: #7c0374;
    --color-primary: #7D6E83;
    --color-secondary: #FF8C00;
    --color-background: #F0F0F5;
    --color-light-bg: #FFFFFF;
    --color-shadow: rgba(125, 110, 131, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--color-background);
    color: var(--color-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.3s;
}

a:hover {
    color: var(--color-secondary);
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======================================= */
/* 1. NAVBAR (Header) DENGAN LOGO & RESPONSIVITAS */
/* ======================================= */
.navbar {
    width: 100%;
    /* Ganti 'sticky' dengan 'fixed' jika Anda ingin selalu menempel di atas */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--color-background);
    /* Ganti light-bg ke background agar kontras */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* --- LOGO NAVBAR (Menggantikan .nav-logo lama) --- */
.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 800;
    color: var(--color-primary);
    padding: 0 10px;
    /* Memberi sedikit padding di pinggir container */
}

.navbar-logo img {
    height: 45px;
    /* Ketinggian logo */
    margin-right: 18px;
}

.navbar-logo span {
    color: var(--color-secondary);
    /* Aksen warna untuk kata kunci */
}

/* ----------------------------------------------- */

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links a {
    padding: 10px 15px;
    font-weight: 500;
    color: var(--color-primary);
    /* Pastikan warna link terlihat */
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-secondary);
}

.nav-links .cta-link {
    color: var(--color-secondary);
    font-weight: 700;
}

/* --- HAMBURGER MENU --- */
.hamburger-menu {
    display: none;
    /* Default hidden di desktop */
    font-size: 24px;
    cursor: pointer;
    color: var(--color-primary);
    padding: 0 10px;
}

/* --- MOBILE NAV DROPDOWN --- */
.mobile-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-light-bg);
    border-top: 1px solid var(--color-background);
    position: absolute;
    top: 65px;
    /* Tinggi navbar sekitar 65px, sesuaikan jika perlu */
    left: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

/* Tampilkan mobile nav saat kelas 'active' ditambahkan oleh JS */
.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 12px 20px;
    color: var(--color-primary);
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    text-decoration: none;
    transition: background-color 0.3s;
}

.mobile-nav a:hover {
    background-color: var(--color-background);
}

.mobile-nav .cta-link {
    color: var(--color-secondary);
    font-weight: 700;
}


/* ======================================= */
/* MEDIA QUERIES (RESPONSIVITAS) */
/* ======================================= */
@media (max-width: 992px) {

    /* Sembunyikan link desktop dan tampilkan hamburger */
    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    /* Sembunyikan Teks Logo di Layar Kecil, hanya tampilkan Gambar Logo */
    .navbar-logo {
        font-size: 0;
    }

    .navbar-logo img {
        height: 35px;
    }
}

/* ======================================= */
/* FIX: NAVBAR OVERLAP ISSUE */
/* ======================================= */
/* Class ini akan diterapkan ke section pertama (Hero) */
.content-start-offset {
    /* Tinggi Navbar Anda sekitar 65px (15px padding atas + 15px padding bawah + 35px logo/link) */
    /* Kita gunakan nilai yang lebih aman: 80px */
    padding-top: 80px !important;
}

/* Penyesuaian responsif (opsional, jika navbar menjadi lebih tebal di mobile) */
@media (max-width: 992px) {
    .content-start-offset {
        padding-top: 90px !important;
    }
}

/* ======================================= */
/* 2. HERO SECTION (Main Content) */
/* ======================================= */
.hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-light-bg);
    margin-bottom: 40px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Semi-transparan ungu keabu-abuan di atas gambar */
    background-color: rgba(125, 110, 131, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 30px;
    color: #FFD7A0;
    /* Oranye muda untuk kontras di latar gelap */
}

.status-badge {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-light-bg);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 700;
    animation: pulse 2s infinite;
    padding-bottom: 50px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 140, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

/* ======================================= */
/* 3. DEVELOPMENT STATUS SECTION */
/* ======================================= */
.dev-status-section {
    background-color: var(--color-light-bg);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px var(--color-shadow);
    margin: -100px auto 40px auto;
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
}

.dev-status-title {
    font-size: 2em;
    color: var(--color-secondary);
    margin-bottom: 15px;
    /* Kurangi margin bawah karena ada logo */
    font-weight: 700;
}

/* === START: GAYA BARU UNTUK LOGO PROJECT === */
.project-logo-container {
    margin-bottom: 30px;
    padding: 20px 0;
    /* Memberi sedikit background transparan untuk logo */
    background: rgba(125, 110, 131, 0.05);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.project-logo {
    max-width: 250px;
    /* Sesuaikan ukuran logo */
    height: auto;
    margin-bottom: 10px;
    animation: fadeInScale 1.5s ease-out;
    /* Animasi muncul */
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    /* Bayangan lembut */
}

.project-tagline {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 10px;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* === END: GAYA BARU UNTUK LOGO PROJECT === */

.dev-status-text {
    color: var(--color-primary);
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Countdown Grid */
.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    background-color: var(--color-background);
    border-radius: 10px;
    padding: 15px 10px;
    min-width: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.countdown-value {
    font-size: 3em;
    font-weight: 800;
    color: var(--color-secondary);
}

.countdown-label {
    font-size: 0.9em;
    color: var(--color-primary);
    text-transform: uppercase;
}

/* Progress Bar */
.progress-bar-container {
    max-width: 500px;
    margin: 20px auto;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-weight: 600;
}

.progress-bar-outer {
    height: 10px;
    background-color: var(--color-background);
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF8C00, #FFA500);
    width: 75%;
    /* Diatur oleh JS */
    border-radius: 5px;
    transition: width 1s ease-out;
}

/* CTA Button - WhatsApp */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #25D366, #128C7E);
    /* Green for WhatsApp */
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    margin-right: 10px;
}

/* ======================================= */
/* 5. RESPONSIVITAS & MOBILE MENU */
/* ======================================= */
@media (max-width: 768px) {

    .nav-links {
        display: none;
        /* Sembunyikan link di mobile */
    }

    .hamburger-menu {
        display: block;
        /* Tampilkan hamburger */
    }

    .nav-logo {
        font-size: 20px;
    }

    .mobile-nav.active {
        display: flex;
        /* Tampilkan menu mobile saat aktif */
    }

    .hero-section {
        height: 50vh;
    }

    .hero-title {
        font-size: 2.2em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .dev-status-section {
        margin-top: -50px;
        /* Jarak naik lebih kecil di HP */
        padding: 30px 20px;
    }

    .dev-status-title {
        font-size: 1.5em;
    }

    .project-logo {
        max-width: 180px;
        /* Logo lebih kecil di mobile */
    }

    .project-tagline {
        font-size: 0.9em;
    }

    .countdown-value {
        font-size: 2em;
    }

    .countdown-item {
        min-width: 80px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* ======================================= */
/* 6. ABOUT US SECTION (The Hanjawong Villas) */
/* ======================================= */
.about-section {
    padding: 60px 0;
    background-color: var(--color-background);
}

.section-title {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Kiri: Gambar dengan Aksen */
.about-image-wrapper {
    flex: 1;
    position: relative;
    padding: 20px 0 0 20px;
    /* Ruang untuk aksen kotak */
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px var(--color-shadow);
    position: relative;
    z-index: 2;
}

.accent-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background-color: var(--color-secondary);
    /* Kotak aksen oranye */
    border-radius: 15px;
    opacity: 0.3;
    z-index: 1;
}

/* Kanan: Teks & Fitur */
.about-text-wrapper {
    flex: 1;
    padding: 20px 0;
}

.about-lead-text {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--color-primary);
}

.key-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.key-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color-primary);
}

.key-features li i {
    color: var(--color-secondary);
    margin-right: 15px;
    font-size: 1.2em;
}

.cta-about-button {
    display: inline-block;
    background-color: var(--color-primary);
    /* Warna Ungu */
    color: var(--color-light-bg);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-about-button:hover {
    background-color: var(--color-secondary);
    /* Hover jadi Oranye */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 110, 131, 0.3);
}

.cta-about-button i {
    margin-left: 10px;
}

/* ======================================= */
/* RESPONSIVITAS ABOUT SECTION */
/* ======================================= */
@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
        /* Tumpuk ke bawah di mobile */
    }

    .section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .about-image-wrapper {
        order: 1;
        /* Pindah gambar ke atas */
        padding: 10px 0 0 10px;
        margin-bottom: 20px;
    }

    .accent-box {
        width: 90%;
        height: 90%;
    }

    .about-text-wrapper {
        order: 2;
        text-align: center;
    }

    .key-features {
        text-align: left;
    }

    .key-features li {
        justify-content: flex-start;
        font-size: 1em;
    }
}

/* ======================================= */
/* 7. SITEPLAN SECTION (Tahap 1 Success) */
/* ======================================= */
.siteplan-section {
    padding: 60px 0;
    background-color: var(--color-light-bg);
    /* Latar belakang Putih/Terang */
}

.siteplan-section .section-title {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.siteplan-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.intro-text-large {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.intro-text-small {
    font-size: 1em;
    color: var(--color-primary);
}

/* Detail Grid (373 Unit, Harga, Status) */
.siteplan-details-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.detail-card {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.detail-card i {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.detail-card h3 {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.card-value {
    font-size: 2em;
    font-weight: 900;
}

/* Warna untuk Kartu */
.detail-card.sold-out {
    background-color: #ffe0e0;
    /* Background merah muda lembut */
}

.detail-card.sold-out i,
.detail-card.sold-out .card-value {
    color: #CC0000;
    /* Merah untuk Sold Out */
}

.detail-card.price-start {
    background-color: #fff8e1;
    /* Background kuning lembut */
}

.detail-card.price-start i,
.detail-card.price-start .card-value {
    color: var(--color-secondary);
    /* Oranye untuk Harga */
}

.detail-card.status-time {
    background-color: #e3f2fd;
    /* Background biru lembut */
}

.detail-card.status-time i,
.detail-card.status-time .card-value {
    color: #1565C0;
    /* Biru untuk Waktu */
}

/* Kategori Blok */
.blocks-title {
    font-size: 1.8em;
    color: var(--color-superior);
    text-align: center;
    margin-bottom: 20px;
    border-top: 1px solid var(--color-background);
    padding-top: 30px;
}

.blocks-list {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.block-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    color: var(--color-light-bg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Warna Spesifik Blok */
.block-superior {
    background-color: var(--color-superior);
}

/* Cokelat Tua */
.block-premium {
    background-color: #4CAF50;
}

/* Hijau */
.block-diamond {
    background-color: #00BCD4;
}

/* Biru Muda/Cyan */
.block-gold {
    background-color: #FFC107;
}

/* Kuning Emas */
.block-silver {
    background-color: #9E9E9E;
}

/* Abu-abu Perak */
.block-bronze {
    background-color: #E65100;
}

/* Oranye Gelap/Bronze */
.block-jingga {
    background-color: #FF5722;
}

/* Jingga/Oranye Terang */

/* CTA Next Step (Tahap 2) */
.cta-next-step {
    background-color: var(--color-background);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--color-secondary);
}

.cta-next-step p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.cta-next-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-secondary);
    /* Oranye */
    color: var(--color-light-bg);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-next-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.cta-next-button i {
    margin-left: 10px;
    font-size: 0.9em;
}

/* Responsivitas */
@media (max-width: 768px) {
    .siteplan-details-grid {
        flex-direction: column;
    }

    .detail-card {
        min-width: 100%;
    }

    .blocks-title {
        font-size: 1.5em;
    }
}

/* ======================================= */
/* 7. SITEPLAN SECTION (Tahap 1 Success) */
/* ======================================= */
.siteplan-section {
    padding: 60px 0;
    background-color: var(--color-light-bg);
    /* Latar belakang Putih/Terang */
}

.siteplan-section .section-title {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.siteplan-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.intro-text-large {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.intro-text-small {
    font-size: 1em;
    color: var(--color-primary);
}

/* === START: GAYA BARU UNTUK GAMBAR SITEPLAN === */
.siteplan-image-container {
    max-width: 900px;
    /* Lebar maksimal gambar */
    margin: 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

.siteplan-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.siteplan-image:hover {
    transform: scale(1.03);
    /* Sedikit zoom saat hover */
}

/* === END: GAYA BARU UNTUK GAMBAR SITEPLAN === */


/* Detail Grid (373 Unit, Harga, Status) */
.siteplan-details-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.detail-card {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.detail-card i {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.detail-card h3 {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.card-value {
    font-size: 2em;
    font-weight: 900;
}

/* Warna untuk Kartu */
.detail-card.sold-out {
    background-color: #ffe0e0;
    /* Background merah muda lembut */
}

.detail-card.sold-out i,
.detail-card.sold-out .card-value {
    color: #CC0000;
    /* Merah untuk Sold Out */
}

.detail-card.price-start {
    background-color: #fff8e1;
    /* Background kuning lembut */
}

.detail-card.price-start i,
.detail-card.price-start .card-value {
    color: var(--color-secondary);
    /* Oranye untuk Harga */
}

.detail-card.status-time {
    background-color: #e3f2fd;
    /* Background biru lembut */
}

.detail-card.status-time i,
.detail-card.status-time .card-value {
    color: #1565C0;
    /* Biru untuk Waktu */
}

/* Kategori Blok */
.blocks-title {
    font-size: 1.8em;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 20px;
    border-top: 1px solid var(--color-background);
    padding-top: 30px;
}

.blocks-list {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.block-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    color: var(--color-light-bg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Warna Spesifik Blok */
.block-superior {
    background-color: var(--color-superior);
}

/* Cokelat Tua */
.block-premium {
    background-color: #4CAF50;
}

/* Hijau */
.block-diamond {
    background-color: #00BCD4;
}

/* Biru Muda/Cyan */
.block-gold {
    background-color: #FFC107;
}

/* Kuning Emas */
.block-silver {
    background-color: #9E9E9E;
}

/* Abu-abu Perak */
.block-bronze {
    background-color: #E65100;
}

/* Oranye Gelap/Bronze */
.block-jingga {
    background-color: #FF5722;
}

/* Jingga/Oranye Terang */

/* CTA Next Step (Tahap 2) */
.cta-next-step {
    background-color: var(--color-background);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--color-secondary);
}

.cta-next-step p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.cta-next-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-secondary);
    /* Oranye */
    color: var(--color-light-bg);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-next-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.cta-next-button i {
    margin-left: 10px;
    font-size: 0.9em;
}

/* ======================================= */
/* 8. SITEPLAN TAHAP 2 SECTION */
/* ======================================= */
.siteplan-tahap2-section {
    background-color: #F8F8FD;
    /* Latar belakang sedikit berbeda dari Tahap 1 */
    border-top: 1px solid #E3E3EB;
}

.siteplan-tahap2-section .section-title {
    color: var(--color-primary);
}

.siteplan-image-container.coming-soon {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
}

.siteplan-image-container.coming-soon .siteplan-image {
    filter: grayscale(100%) brightness(70%);
    /* Efek agak gelap dan abu-abu */
}

.siteplan-image-container.coming-soon .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(125, 110, 131, 0.7);
    /* Latar belakang gelap transparan */
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 2.5em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--color-secondary);
    animation: fadePulse 2s infinite alternate;
}

@keyframes fadePulse {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}


/* ======================================= */
/* RESPONSIVITAS UMUM */
/* ======================================= */
@media (max-width: 768px) {
    .siteplan-image-container {
        margin: 20px auto;
    }

    .siteplan-image-container.coming-soon .overlay-text {
        font-size: 1.8em;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .siteplan-image-container.coming-soon .overlay-text {
        font-size: 1.5em;
        padding: 8px 15px;
    }
}

/* ... [CSS sebelumnya untuk Hero, Navbar, About, Siteplan] ... */

/* ======================================= */
/* 9. FACILITIES SECTION */
/* ======================================= */
.facilities-section {
    padding: 60px 0;
    background-color: var(--color-background);
}

.facilities-section .section-title {
    color: var(--color-primary);
    margin-bottom: 40px;
}

.facilities-subtitle {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color-secondary);
    text-align: center;
    margin: 40px 0 30px 0;
}

.infrastructure-title {
    color: var(--color-primary);
    border-top: 1px solid rgba(125, 110, 131, 0.2);
    padding-top: 40px;
}

.facility-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.facility-item {
    background-color: var(--color-light-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex: 1 1 calc(25% - 20px);
    /* 4 kolom di desktop */
    min-width: 200px;
    text-align: center;
    transition: transform 0.3s;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.facility-item i {
    font-size: 2.5em;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.facility-item h4 {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.facility-item p {
    font-size: 0.9em;
    color: #A9A9AE;
}

/* 4 kolom untuk infrastruktur (jika ingin lebih ringkas) */
.infrastructure-grid .facility-item {
    flex: 1 1 calc(25% - 20px);
}

/* === SLIDER GAYA BARU === */
.slider-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 500px;
    /* Tinggi tetap */
    object-fit: cover;
    /* Pastikan gambar menutupi area */
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5em;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: var(--color-secondary);
}

.prev-btn {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.next-btn {
    right: 0;
    border-radius: 5px 0 0 5px;
}

/* Responsivitas Slider */
@media (max-width: 768px) {
    .slide img {
        height: 300px;
    }

    .slider-btn {
        padding: 10px 5px;
        font-size: 1em;
    }

    .facility-item {
        flex: 1 1 calc(50% - 15px);
        /* 2 kolom di tablet */
    }

    .infrastructure-grid .facility-item {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .facility-item {
        flex: 1 1 100%;
        /* 1 kolom di HP kecil */
    }
}

/* ... [CSS sebelumnya untuk Hero, Navbar, About, Siteplan, Facilities] ... */

/* ======================================= */
/* 10. GALLERY SECTION */
/* ======================================= */
.gallery-section {
    padding: 60px 0;
    background-color: #F8F8FD;
    /* Warna latar belakang yang lembut */
}

.gallery-section .section-title {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.gallery-tagline {
    text-align: center;
    color: #A9A9AE;
    font-size: 1.1em;
    margin-bottom: 40px;
}

/* --- MAIN GALLERY SLIDER --- */
.main-gallery-slider {
    max-width: 1100px;
    margin: 0 auto 50px auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16 / 9;
    /* Rasio standar untuk tampilan video/foto utama */
}

.main-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.main-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5em;
    transition: background 0.3s;
}

.gallery-btn:hover {
    background: var(--color-secondary);
}

.prev-btn-main {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.next-btn-main {
    right: 0;
    border-radius: 5px 0 0 5px;
}

/* --- THUMBNAIL GALLERY CARDS --- */
.gallery-subtitle {
    font-size: 1.5em;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.thumbnail-gallery-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.thumbnail-card {
    width: calc(25% - 15px);
    /* 4 kartu per baris */
    min-width: 150px;
    background-color: var(--color-light-bg);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    border: 3px solid transparent;
}

.thumbnail-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

/* Gaya saat thumbnail aktif */
.thumbnail-card.active {
    border-color: var(--color-secondary);
    /* Border Oranye tebal */
    transform: scale(1.05);
}

.thumbnail-card img {
    width: 100%;
    height: 100px;
    /* Tinggi thumbnail tetap */
    object-fit: cover;
    display: block;
}

.card-caption {
    padding: 10px 5px;
    font-size: 0.85em;
    font-weight: 500;
    color: var(--color-primary);
    text-align: center;
}

/* --- CTA Gallery Footer --- */
.cta-gallery {
    text-align: center;
    padding: 30px;
    background-color: var(--color-background);
    border-radius: 10px;
}

.cta-gallery p {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.cta-gallery-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-primary);
    color: var(--color-light-bg);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-gallery-button:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

.cta-gallery-button i {
    margin-left: 10px;
}

/* Responsivitas Gallery */
@media (max-width: 992px) {
    .thumbnail-card {
        width: calc(33.33% - 14px);
        /* 3 kartu per baris */
    }
}

@media (max-width: 768px) {
    .thumbnail-card {
        width: calc(50% - 50px);
        /* 2 kartu per baris */
    }
}

@media (max-width: 576px) {
    .main-gallery-slider {
        aspect-ratio: 4 / 3;
    }

    .thumbnail-card {
        width: 100%;
        /* 1 kartu per baris */
    }
}

/* ... [CSS sebelumnya untuk Hero, Navbar, About, Siteplan, Facilities, Gallery] ... */

/* ======================================= */
/* 11. TESTIMONIAL SECTION */
/* ======================================= */
.testimonial-section {
    padding: 60px 0;
    background-color: var(--color-background);
}

.testimonial-section .section-title {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.testimonial-tagline {
    text-align: center;
    color: #A9A9AE;
    font-size: 1.1em;
    margin-bottom: 50px;
}

/* ======================================= */
/* TESTIMONIAL SECTION - VIDEO FIX */
/* ======================================= */

.video-testimonial-container {
    margin: 40px auto 50px auto;
    text-align: center;
    max-width: 1000px;
    /* Batasi lebar kontainer video agar tidak terlalu lebar di desktop */
}

.video-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 25px;
}

/* KONTEN UTAMA: Dua Video Berdampingan */
.video-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.video-responsive {
    flex: 1 1 50%;
    position: relative;
    padding-bottom: 56.25%;

    /* *** HAPUS height: 0; *** */
    /* height: 0; */

    /* *** TAMBAHKAN INI *** */
    width: 100%;

    overflow: hidden;
    /* ... styling lainnya ... */
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;

}

.video-responsive:hover {
    transform: scale(1.02);
}



/* Responsif untuk Layar Kecil: Video tampil bertumpuk */
@media (max-width: 768px) {
    .video-grid {
        flex-direction: column;
        gap: 30px;
    }

    .video-responsive {
        flex: 1 1 100%;
        margin: 0 auto;
    }
}

/* Tambahan: Styling Text Testimonial */
.text-testimonial-subtitle {
    font-size: 1.4em;
    color: var(--color-secondary);
    margin: 40px 0 30px 0;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: var(--color-light-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.33% - 20px);
    /* 3 kartu per baris */
    min-width: 280px;
    position: relative;
    border-left: 5px solid var(--color-secondary);
}

.quote-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8em;
    color: rgba(125, 110, 131, 0.2);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.investor-info {
    font-size: 0.9em;
    font-weight: 600;
}

.investor-name {
    color: var(--color-primary);
}

.investor-city {
    font-weight: 400;
    color: #A9A9AE;
}

/* --- CTA TESTIMONIAL --- */
.cta-testimonial {
    text-align: center;
    padding: 30px;
    background-color: var(--color-light-bg);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cta-testimonial p {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.cta-testimonial-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-secondary);
    color: var(--color-light-bg);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-testimonial-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.cta-testimonial-button i {
    margin-left: 10px;
    font-size: 0.9em;
}

/* Responsivitas Testimonial */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 1 1 calc(50% - 10px);
        /* 2 kartu per baris */
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 1 1 100%;
        /* 1 kartu per baris */
    }
}

/* Pastikan .video-responsive memiliki z-index yang cukup tinggi */
.video-responsive {
    /* ... kode responsif 16:9 lainnya ... */
    z-index: 10;
    /* Beri z-index positif */
}

/* --- CTA TESTIMONIAL MODIFIKASI (Tingkatkan padding atas untuk memberi ruang foto) --- */
.cta-testimonial {
    text-align: center;
    padding: 30px;
    padding-top: 100px;
    /* Tambahkan ruang untuk gambar di atas */
    background-color: var(--color-light-bg);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    /* Penting untuk memposisikan gambar di dalamnya */
}

/* --- STYLING GAMBAR MARKETING --- */
.cta-image-wrapper {
    position: absolute;
    top: -60px;
    /* Tarik ke atas, keluar dari batas kontainer */
    left: 50%;
    transform: translateX(-50%);
    /* Posisikan tepat di tengah */
    width: 150px;
    /* Ukuran default gambar */
    height: 150px;
    border-radius: 50%;
    /* Membuat gambar bulat */
    overflow: hidden;
    border: 5px solid white;
    /* Border putih keren */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-marketing-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Pastikan gambar memenuhi lingkaran tanpa terdistorsi */
    display: block;
    position: relative;
    z-index: 2;
}

/* --- OVERLAY KEREN (Efek Shading) --- */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    /* Overlay hitam transparan */
    z-index: 3;
    /* Pastikan overlay di atas gambar */
    transition: background 0.3s;
}

/* Efek saat hover: hilangkan sedikit overlay untuk tampilan lebih cerah */
.cta-testimonial:hover .image-overlay {
    background: rgba(0, 0, 0, 0.0);
}

/* --- PERBAIKAN STYLING CTA TEXT & BUTTON --- */
.cta-testimonial p {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 10px;
    /* Jarak dari foto ke teks */
    margin-bottom: 20px;
}

/* ... [CSS sebelumnya untuk Hero, Navbar, About, Siteplan, Facilities, Gallery, Testimonial] ... */

/* ======================================= */
/* 12. FAQ SECTION */
/* ======================================= */
.faq-section {
    padding: 60px 0;
    background-color: var(--color-light-bg);
}

.faq-section .section-title {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.faq-tagline {
    text-align: center;
    color: #A9A9AE;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #E3E3EB;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: var(--color-background);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background-color: var(--color-light-bg);
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #F0F0F5;
}

.accordion-header i {
    transition: transform 0.3s;
    font-size: 0.9em;
    color: var(--color-secondary);
}

/* Style ketika header dibuka */
.accordion-header[aria-expanded="true"] {
    background-color: var(--color-secondary);
    color: var(--color-light-bg);
}

.accordion-header[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: var(--color-light-bg);
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-body {
    padding: 20px 25px;
    border-top: 1px solid #E3E3EB;
    color: var(--color-primary);
    line-height: 1.6;
    background-color: var(--color-background);
}

/* --- CTA FAQ Footer --- */
.cta-faq {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
}

.cta-faq p {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.cta-faq-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    /* WhatsApp Green */
    color: var(--color-light-bg);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: opacity 0.3s, transform 0.3s;
}

.cta-faq-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.cta-faq-button i {
    margin-left: 10px;
    font-size: 1.1em;
}

/* ... [CSS sebelumnya untuk semua section] ... */

/* ======================================= */
/* 13. FLOATING WHATSAPP BUTTON (BARU) */
/* ======================================= */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 5000;
    transition: transform 0.3s, background-color 0.3s;
    animation: bounce 2s infinite;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    animation: none;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ======================================= */
/* 14. POPUP FORMS (BARU) */
/* ======================================= */
.popup-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 6000;
    /* Di atas floating button */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding-top: 60px;
}

.popup-content {
    background-color: var(--color-light-bg);
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.close-btn {
    color: var(--color-primary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--color-secondary);
    text-decoration: none;
}

.popup-title {
    font-size: 1.8em;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.popup-subtitle {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 1em;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--color-primary);
}

.popup-form input[type="text"],
.popup-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

.popup-form textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 700;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #128C7E;
}

.submit-btn i {
    margin-right: 5px;
}

/* Animasi Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivitas Popup */
@media (max-width: 600px) {
    .popup-content {
        margin: 10% auto;
        padding: 20px;
    }

    .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }
}

/* ... [CSS sebelumnya untuk semua section] ... */

/* ======================================= */
/* 13. PRICING SECTION (BARU) */
/* ======================================= */
.pricing-section {
    padding: 60px 0;
    background-color: var(--color-background);
}

.pricing-section .section-title {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.pricing-tagline {
    text-align: center;
    color: var(--color-secondary);
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pricing-card {
    flex: 1 1 calc(50% - 30px);
    /* 2 kolom di desktop */
    max-width: 450px;
    background-color: var(--color-light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Header Styling */
.card-header {
    padding: 25px;
    text-align: center;
    color: white;
}

.premium-card .card-header {
    background-color: var(--color-superior);
    /* Ungu */
}

.economy-card .card-header {
    background-color: var(--color-primary);
    /* Oranye */
}

.card-header i {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.card-header h3 {
    font-size: 1.8em;
    margin-bottom: 5px;
}

.card-header .tagline {
    font-size: 0.9em;
    font-weight: 300;
    opacity: 0.8;
}

/* Price Details */
.price-details {
    padding: 25px;
    text-align: center;
}

.normal-price {
    font-size: 1em;
    color: #A9A9AE;
    margin-bottom: 5px;
}

.strikethrough {
    text-decoration: line-through;
}

.promo-price {
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 10px;
}

.premium-card .promo-price {
    color: var(--color-superior);
    /* Promo Superior Oranye */
}

.economy-card .promo-price {
    color: var(--color-primary);
    /* Promo Ekonomis Ungu */
}

.saving-text {
    font-size: 1.1em;
    font-weight: 700;
    color: #CC0000;
    /* Merah untuk penekanan hemat */
    margin-bottom: 20px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0 25px 25px;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1em;
    color: var(--color-primary);
    border-bottom: 1px dashed #E3E3EB;
    padding-bottom: 8px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: #25D366;
    /* Hijau untuk checkmark */
    margin-right: 10px;
}

/* CTA Price */
.cta-price {
    padding: 0 25px 30px;
}

.cta-price-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.premium-card .cta-price-button {
    background-color: var(--color-superior);
    color: white;
}

.premium-card .cta-price-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.economy-card .cta-price-button {
    background-color: var(--color-primary);
    color: white;
}

.economy-card .cta-price-button:hover {
    background-color: #7d6e83;
    transform: translateY(-2px);
}

/* Disclaimer */
.price-disclaimer {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: #fff8e1;
    /* Latar belakang kuning muda */
    border-radius: 8px;
    border: 1px solid var(--color-secondary);
    max-width: 800px;
    margin: 20px auto 0;
}

.price-disclaimer p {
    font-size: 0.95em;
    color: var(--color-primary);
    font-weight: 500;
}

/* Responsivitas Pricing */
@media (max-width: 992px) {
    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .pricing-card {
        flex: 1 1 100%;
        /* 1 kolom di mobile */
        max-width: none;
    }
}

/* ... [CSS sebelumnya untuk semua section] ... */

/* ======================================= */
/* 14. MAIN FOOTER SECTION (NEW) */
/* ======================================= */
.main-footer {
    background-color: var(--color-primary);
    /* Warna Ungu Gelap */
    color: var(--color-light-bg);
    padding-top: 50px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1 1 250px;
}

/* --- Logo & Info --- */
.footer-info {
    flex: 1 1 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5em;
    font-weight: 800;
    color: var(--color-light-bg);
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 80px;
    /* Sesuaikan ukuran logo */
    margin-right: 10px;
}

.footer-logo span {
    color: var(--color-secondary);
    /* Aksen Oranye */
}

.footer-description {
    font-size: 0.9em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* --- Social Links --- */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--color-secondary);
}

.youtube-icon:hover {
    background-color: #FF0000;
}

.tiktok-icon:hover {
    background-color: #000000;
}

.whatsapp-icon:hover {
    background-color: #25D366;
}


/* --- Links & Contact --- */
.footer-heading {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    color: var(--color-secondary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--color-light-bg);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--color-secondary);
}

/* --- Bottom Row (Copyright) --- */
.footer-bottom-row {
    padding: 20px 0;
    background-color: #6C5E78;
    /* Warna sedikit lebih gelap dari primary */
    text-align: center;
}

.footer-copyright {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsivitas Footer */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 30px;
    }

    .footer-col {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
}

/* Styling Latar Belakang Modal (Gelap Transparan) */
.modal {
    display: none;
    /* Tersembunyi secara default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    /* Hitam transparan */
    backdrop-filter: blur(5px);
    /* Efek blur di belakang */
}

/* Kotak Konten Modal */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    /* Jarak dari atas */
    padding: 25px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    /* Lebar maksimal agar tidak terlalu lebar di PC */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.4s ease-out;
}

/* Animasi Muncul */
@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Tombol Tutup (X) */
.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
}

.close-btn:hover {
    color: #000;
}

/* Form Styling */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    /* Agar padding tidak merusak lebar */
}

.submit-wa-btn {
    width: 100%;
    padding: 12px;
    background-color: #25D366;
    /* Warna WA */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-wa-btn:hover {
    background-color: #128C7E;
}