/* WARNA UTAMA */
:root {
    --color-primary: #004d40;
    /* Hijau Tua/Hijau Hutan */
    --color-secondary: #ff9800;
    /* Oranye Terang */
    --color-accent: #ffb74d;
    /* Oranye Lebih Muda */
    --color-light: #f4f4f4;
    --color-dark: #333;
}

/* RESET DAN FONT */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* Mencegah scroll horizontal */
}

/* UTILITAS */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.3s;
}

.btn-contact {
    background-color: var(--color-secondary);
    color: white !important;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: var(--color-accent);
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: center;
}

.section-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* NAVIGASI BAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--color-primary);
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo a {
    color: var(--color-secondary);
    font-size: 1.5em;
    font-weight: 700;
}

.nav-links ul {
    list-style: none;
    display: flex;
}

.nav-links ul li {
    margin-left: 25px;
}

.nav-links a {
    color: white;
    font-weight: 400;
    padding: 10px 0;
    display: block;
}

.nav-links a:hover {
    color: var(--color-accent);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

/* HERO SECTION */
/* HERO SECTION DENGAN GAMBAR */
.hero-image-section {
    position: relative;
    height: 100vh;
    /* Setinggi viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;

    /* GANTI INI DENGAN URL GAMBAR HERO ANDA */
    background-image: url('../assets/img/gallery-6.jpeg');
    background-size: cover;
    /* Memastikan gambar menutupi seluruh area */
    background-position: center;
    /* Memusatkan gambar */
    background-repeat: no-repeat;

    /* Efek Parallax pada Background Gambar Hero (opsional, tapi bagus) */
    background-attachment: fixed;
    /* Kunci gambar latar */
}

/* Overlay gelap untuk kontras teks (sesuaikan jika perlu) */
.hero-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Kegelapan 40% */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    /* Pastikan teks di atas overlay */
    padding: 20px;
    /* ... (gaya hero-content lainnya tetap sama) ... */
}


/* RESPONSIVE: Nonaktifkan Parallax Attachment di Mobile untuk Performa */
@media (max-width: 768px) {
    .hero-image-section {
        background-attachment: scroll;
        /* Ubah ke scroll di mobile */
    }

    /* ... (CSS responsif lainnya) ... */
}

.hero-content h2 {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--color-secondary);
    color: white;
    font-size: 1.2em;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;

}

/* Pastikan seluruh konten di container terpusat */
.contact-section .container {
    text-align: center;
    /* Ini akan memusatkan h2, p, dan elemen inline/inline-block */
}

/* Modifikasi CTA Button agar bisa diberi margin otomatis (terpusat) */
.cta-button {
    /* ... properti gaya lain (warna, padding, dll.) ... */

    display: block;
    /* Ubah dari inline menjadi block atau inline-block */
    /* display: inline-block; /* Alternatif jika tidak ingin mengambil lebar penuh */

    margin-left: auto;
    /* Pusat horizontal */
    margin-right: auto;
    /* Pusat horizontal */

    /* Atur lebar agar tombol tidak memenuhi seluruh layar */
    max-width: 300px;

    /* Jika Anda menggunakan display: block, pastikan teks di dalamnya terpusat */
    text-align: center;
}

.cta-button:hover {
    background-color: var(--color-accent);
    transform: scale(1.05);
}

/* SECTION UMUM */
.about-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.facilities-section {
    padding: 100px 0;
    background-color: var(--color-primary);
    color: white;
    text-align: center;
}

/* PARALLAX BACKGROUND */
.parallax-bg {
    background-image: url('placeholder-bogor-view.jpg');
    /* Ganti dengan gambar pemandangan Bogor */
    background-attachment: fixed;
    /* Kunci gambar latar */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /* Overlay gelap untuk teks */
    z-index: 1;
}

.facilities-section .container {
    position: relative;
    z-index: 2;
}

.facilities-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.facilities-list li {
    font-size: 1.2em;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.facilities-list .icon {
    margin-right: 10px;
    font-size: 1.5em;
    color: var(--color-secondary);
}

/* =================== FOOTER STYLES =================== */

.main-footer {
    background-color: var(--color-primary);
    /* Warna dasar perusahaan */
    color: #ffffff;
    padding-top: 50px;
    font-size: 0.95em;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
    flex-wrap: wrap;
    /* Agar kolom turun di mobile */
}

.footer-col {
    flex: 1;
    min-width: 250px;
    /* Lebar minimum agar tidak terlalu rapat */
}

.footer-title {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-accent);
    /* Gunakan warna accent untuk judul */
}

/* --- Logo Bulat Medium --- */
.footer-logo {
    margin-bottom: 20px;
}

.medium-round-logo {
    width: 80px;
    /* Ukuran Medium */
    height: 80px;
    border-radius: 50%;
    /* Membuat logo bulat */
    object-fit: cover;
    /* Memastikan gambar pas dalam lingkaran */
    border: 3px solid #fff;
    /* Garis putih menarik */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* ------------------------ */

/* Tautan Cepat */
.links-col ul {
    list-style: none;
    padding: 0;
}

.links-col li {
    margin-bottom: 10px;
}

.links-col a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.links-col a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Informasi Kontak */
.contact-info-col p {
    margin-bottom: 15px;
    line-height: 1.4;
}

.contact-info-col .icon {
    margin-right: 8px;
    font-weight: bold;
    color: var(--color-secondary);
}

.contact-info-col a {
    color: #fff;
    text-decoration: none;
}

.contact-info-col a:hover {
    color: var(--color-secondary);
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 22px;
    /* ukuran ikon */
    color: #fff;
    /* warna ikon */
    transition: 0.3s;
}

.social-links a:hover {
    color: #f2c94c;
    /* warna saat hover */
}


/* Footer Bottom (Copyright) */
.footer-bottom {
    background-color: #0b1a2b;
    /* Warna lebih gelap dari primary */
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85em;
    color: #ccc;
}


/* Responsif Footer */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .footer-logo {
        display: block;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* RESPONSIVE (Mobile First) */

/* NAVIGASI MOBILE */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        /* Di bawah navbar */
        left: 0;
        width: 100%;
        background-color: var(--color-primary);
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .nav-links.active {
        max-height: 300px;
        /* Cukup tinggi untuk menampung semua link */
    }

    .nav-links ul {
        flex-direction: column;
        padding: 10px 0;
    }

    .nav-links ul li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links ul li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 15px 0;
    }

    .hero-content h2 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    .facilities-list {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 2em;
    }

    /* Nonaktifkan Parallax Attachment di Mobile untuk Performa */
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* KEUNTUNGAN KAVLING SECTION */
.benefits-section {
    padding: 80px 0;
    background-color: var(--color-light);
    /* Latar belakang terang */
}

.benefits-section .section-title {
    margin-bottom: 50px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    /* Membuat 2 kolom di desktop, dan 1 kolom di mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--color-secondary);
    /* Garis oranye di atas */
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2.5em;
    color: var(--color-primary);
    display: block;
    margin-bottom: 15px;
}

.benefit-card .card-title {
    font-size: 1.4em;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 1em;
    color: var(--color-dark);
}

.cta-benefit-button {
    /* Menggunakan styling CTA yang berbeda agar menonjol */
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    background-color: var(--color-primary);
    /* Hijau tua */
    color: var(--color-light);
    font-size: 1.2em;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
}

.cta-benefit-button:hover {
    background-color: var(--color-secondary);
    /* Berubah ke oranye saat hover */
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .benefit-card {
        padding: 25px;
    }

    .benefits-grid {
        /* Kembali ke satu kolom di layar yang sangat kecil */
        grid-template-columns: 1fr;
    }
}

/* SITEPLAN SECTION */
.siteplan-section {
    padding: 80px 0;
    background-color: var(--color-primary);
    /* Latar hijau tua */
    color: white;
}

.siteplan-section .section-title {
    color: var(--color-secondary);
    /* Judul oranye */
    margin-bottom: 20px;
}

.siteplan-section .section-text {
    color: var(--color-light);
    margin-bottom: 50px;
}

.siteplan-container {
    display: flex;
    flex-wrap: wrap;
    /* Untuk responsivitas */
    justify-content: center;
    gap: 40px;
}

.siteplan-card {
    background-color: white;
    color: var(--color-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    /* Penting untuk gambar */
}

.siteplan-card .card-title {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    /* Untuk menyejajarkan judul dan status */
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.siteplan-card .card-title span {
    font-size: 0.7em;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    /* Mencegah teks status pecah baris */
}

.siteplan-card.sold-out .card-title {
    color: #cc3333;
    /* Merah untuk sold out */
}

.siteplan-card.sold-out .card-title span {
    background-color: #cc3333;
    color: white;
}

.siteplan-card.available .card-title {
    color: var(--color-primary);
    /* Hijau tua untuk tersedia */
}

.siteplan-card.available .card-title span {
    background-color: var(--color-secondary);
    /* Oranye untuk dipasarkan */
    color: white;
}

.siteplan-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--color-light);
}

.siteplan-card .status-text {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.cta-siteplan-button {
    display: inline-block;
    background-color: var(--color-secondary);
    color: white;
    font-size: 1.1em;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-siteplan-button:hover {
    background-color: var(--color-accent);
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .siteplan-container {
        flex-direction: column;
        /* Tumpuk kartu di mobile */
        align-items: center;
    }

    .siteplan-card {
        padding: 25px;
        width: 95%;
        /* Lebih lebar di mobile */
    }

    .siteplan-card .card-title {
        font-size: 1.5em;
        flex-direction: column;
        /* Tumpuk judul dan status di mobile */
        gap: 5px;
    }

    .siteplan-card .card-title span {
        font-size: 0.8em;
    }
}

/* GALERI FOTO SECTION */
.gallery-section {
    padding: 80px 0;
    background-color: var(--color-light);
    /* Latar belakang terang */
}

.gallery-section .section-title {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.gallery-section .section-text {
    color: var(--color-dark);
    margin-bottom: 50px;
}

/* CAROUSEL STYLES */
.carousel-container {
    max-width: 900px;
    /* Lebar maksimum carousel */
    position: relative;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.carousel-slide {
    display: none;
    /* Sembunyikan semua slide secara default */
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    /* Tinggi tetap untuk gambar carousel */
    object-fit: cover;
    /* Memastikan gambar mengisi area tanpa distorsi */
    vertical-align: middle;
}

.carousel-caption {
    color: white;
    font-size: 1.2em;
    padding: 15px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    /* Latar belakang gelap transparan */
    box-sizing: border-box;
}

/* Tombol Prev & Next */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 25px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.4);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active-dot,
.dot:hover {
    background-color: var(--color-secondary);
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* GALERI GRID STYLES */
.gallery-grid-title {
    font-size: 2em;
    color: var(--color-primary);
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.grid-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.grid-item img {
    width: 100%;
    height: 220px;
    /* Tinggi tetap untuk gambar grid */
    object-fit: cover;
    display: block;
}

.grid-caption {
    padding: 15px;
    font-size: 0.95em;
    color: var(--color-dark);
    text-align: center;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .carousel-slide img {
        height: 300px;
        /* Lebih pendek di mobile */
    }

    .carousel-caption {
        font-size: 1em;
        padding: 10px;
    }

    .prev,
    .next {
        font-size: 20px;
        padding: 10px;
    }

    .dot {
        height: 12px;
        width: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        /* Satu kolom di mobile */
    }

    .grid-item img {
        height: 250px;
    }
}

/* HARGA KAVLING SECTION */
.pricing-section {
    padding: 100px 0;
    background-color: var(--color-light);
    /* Latar belakang terang */
}

.pricing-section .section-title {
    color: var(--color-primary);
}

.pricing-section .section-text {
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    /* Penting untuk responsivitas */
}

.pricing-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
    transition: transform 0.3s;
    border-top: 5px solid var(--color-primary);
    /* Garis atas hijau tua */
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pricing-card .card-title {
    font-size: 2em;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

/* Harga Normal (Coret) */
.normal-price {
    font-size: 1.1em;
    color: #888;
    margin-bottom: 20px;
}

.normal-price span {
    text-decoration: line-through;
    /* Efek coret */
    font-weight: 600;
}

/* Kotak Promo Harga */
.promo-box {
    background-color: var(--color-primary);
    color: white;
    padding: 20px 0;
    border-radius: 8px;
    margin-bottom: 30px;
}

.promo-box .promo-label {
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.promo-box .promo-price {
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    color: var(--color-secondary);
    /* Oranye untuk menonjolkan harga */
}

.promo-box .promo-price span {
    font-size: 0.5em;
    font-weight: 400;
}

/* Highlight untuk Blok Silver (contoh pembeda) */
.silver-block .promo-box.highlight {
    background-color: var(--color-secondary);
    /* Ubah latar belakang promo menjadi Oranye */
}

.silver-block .promo-box.highlight .promo-price {
    color: var(--color-primary);
    /* Ubah teks harga menjadi Hijau Tua */
}

/* Fitur List */
.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0 10px;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1em;
    color: var(--color-dark);
}

/* Tombol CTA */
.cta-pricing-button {
    display: block;
    width: 100%;
    background-color: var(--color-primary);
    color: white;
    font-size: 1.1em;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-pricing-button:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

/* Responsif */
@media (max-width: 850px) {
    .pricing-grid {
        flex-direction: column;
        /* Tumpuk kolom di tablet/mobile */
        align-items: center;
    }

    .pricing-card {
        max-width: 90%;
    }
}

/* =================== PRICING SECTION STYLES TAMBAHAN =================== */

.other-blocks-info {
    text-align: center;
    margin-top: 50px;
    padding: 30px 20px;
    background-color: var(--color-light, #f7f7f7);
    /* Latar belakang untuk membedakan */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.other-blocks-title {
    font-size: 1.6em;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.other-blocks-list {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.8;
}

.block-name {
    display: inline-block;
    padding: 5px 12px;
    margin: 0 5px;
    border-radius: 5px;
    font-weight: 700;
    color: white;
    /* Warna teks putih */
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Warna Background Khusus untuk Setiap Blok */
.premium-bg {
    background-color: #4caf50;
    /* Biru Tua */
}

.diamond-bg {
    background-color: #0d47a1;
    /* Hijau Emerald */
}

.gold-bg {
    background-color: #ffc107;
    /* Kuning Emas */
    color: #333;
    /* Teks gelap karena background terang */
}

.bronze-bg {
    background-color: #cc3333;
}

.disclaimer {
    font-size: 0.9em;
    color: #888;
    margin-top: 15px;
}

/* Penyesuaian Tombol CTA (opsional jika sudah ada) */
.other-blocks-info .cta-button {
    max-width: 350px;
    /* Batasi lebar tombol */
    /* Pastikan .cta-button sudah memiliki display: block dan margin: auto dari perbaikan sebelumnya */
}

/* Responsif */
@media (max-width: 600px) {
    .other-blocks-title {
        font-size: 1.4em;
    }

    .block-name {
        margin: 5px 3px;
    }
}

/* VIDEO CONTENT SECTION */
.videos-section {
    padding: 80px 0;
    background-color: #f7f7f7;
    /* Latar belakang abu-abu muda */
    text-align: center;
}

.videos-section .section-title {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.videos-section .section-text {
    margin-bottom: 50px;
}

.video-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    /* Penting untuk responsivitas */
}

.video-item {
    flex: 1 1 45%;
    /* Setiap item mengambil sekitar 45% lebar, untuk 2 kolom */
    max-width: 500px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.video-item:hover {
    transform: translateY(-5px);
}

/* Teknik Aspect Ratio Box untuk menjaga rasio video 16:9 */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* (9 / 16) * 100% = 56.25% */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.video-title {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--color-primary);
    margin: 15px 15px 5px;
}

.video-description {
    font-size: 0.95em;
    color: #666;
    margin: 0 15px 15px;
}

/* RESPONSIVE: Di layar kecil, tumpuk menjadi 1 kolom */
@media (max-width: 768px) {
    .video-grid {
        flex-direction: column;
        align-items: center;
    }

    .video-item {
        flex: 1 1 100%;
        max-width: 90%;
    }
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    /* Warna khas WhatsApp */
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    line-height: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    /* Pastikan di atas semua elemen */
    transition: transform 0.3s;
    font-weight: 700;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* ------------------- MODAL (POPUP) STYLES ------------------- */

/* The Modal (background) */
.modal {
    display: none;
    /* Tersembunyi secara default */
    position: fixed;
    z-index: 10001;
    /* Di atas WhatsApp */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    /* Latar belakang semi-transparan gelap */
    padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
    background-color: var(--color-light);
    margin: 5% auto;
    /* 5% dari atas dan dipusatkan */
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    /* Lebar maksimum yang nyaman */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s;
}

/* Animasi Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Close Button */
.close-button {
    color: var(--color-dark);
    float: right;
    font-size: 28px;
    font-weight: bold;
    line-height: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-button:hover,
.close-button:focus {
    color: var(--color-secondary);
    text-decoration: none;
}

.modal-title {
    color: var(--color-primary);
    font-size: 1.8em;
    margin-bottom: 5px;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 25px;
}

/* FORM STYLES */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    box-sizing: border-box;
}

.submit-button {
    width: 100%;
    background-color: var(--color-secondary);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--color-accent);
}

.success-message {
    background-color: #e8f5e9;
    color: #4caf50;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
}

/* =================== TESTIMONIALS SECTION STYLES =================== */

.testimonials-section {
    padding: 60px 0;
    background-color: #f7f7f7;
    /* Warna latar belakang agar menonjol */
    text-align: center;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.testimonial-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    /* Agar kedua kolom memiliki lebar yang sama */
    max-width: 500px;
    /* Kontrol lebar maksimum kolom */
    text-align: left;
}

.video-wrapper {
    position: relative;
    width: 100%;
    /* Rasio 16:9 untuk video YouTube (padding 56.25%) */
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 15px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.client-name {
    font-size: 1.2em;
    color: var(--color-primary);
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 700;
}

.client-quote {
    font-style: italic;
    color: #555;
    line-height: 1.5;
}


/* Media Query untuk Responsif (Mobile) */
@media (max-width: 768px) {
    .testimonial-grid {
        flex-direction: column;
        /* Ubah menjadi tata letak satu kolom di layar kecil */
    }

    .testimonial-item {
        max-width: 100%;
    }
}

/* =================== TEXT TESTIMONIALS SECTION STYLES =================== */

.text-testimonials-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.text-carousel-container {
    max-width: 800px;
    margin: auto;
    position: relative;
    padding: 20px 0 10px;
}

.testimonial-slide {
    display: none;
    /* Tersembunyi secara default */
    padding: 30px;
    background-color: var(--color-light);
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    font-size: 4em;
    color: var(--color-primary);
    line-height: 0.8;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.quote-text {
    font-size: 1.4em;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin-bottom: 20px;
}

.client-name {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color-accent);
}

/* Animasi Fade */
.fade-text {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Dots */
.dot-text {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active-text,
.dot-text:hover {
    background-color: var(--color-secondary);
}

/* =================== FAQ SECTION STYLES =================== */
.faq-section {
    padding: 60px 0;
    background-color: var(--color-light);
    /* Latar Belakang Cerah */
    text-align: center;
}

.faq-accordion {
    max-width: 900px;
    margin: 30px auto;
    text-align: left;
}

.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    /* Penting untuk animasi expand */
    background-color: white;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: white;
    color: var(--color-primary);
    font-size: 1.1em;
    font-weight: 600;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question.active {
    background-color: var(--color-primary);
    color: white;
}

.faq-icon {
    font-size: 1.5em;
    font-weight: 400;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
    /* Berubah dari + menjadi X (atau tanda minus) */
}

.faq-answer {
    padding: 0 20px;
    background-color: #f9f9f9;
    /* Kontrol Tinggi untuk Animasi */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.show {
    max-height: 300px;
    /* Nilai harus lebih besar dari konten maksimum */
    padding: 15px 20px;
}

.faq-answer p {
    margin: 0;
    padding: 0;
    color: #555;
    line-height: 1.6;
}

.faq-cta {
    margin-top: 40px;
}

.faq-cta p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}