/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0077b6;
    /* Biru Solid - Keren & Profesional */
    --secondary-color: #00b4d8;
    /* Biru Muda - Eye-catching */
    --accent-color: #ff9f1c;
    /* Orange Cerah - Aksi/CTA */
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --poppins: 'Poppins', sans-serif;
}

body {
    font-family: var(--poppins);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* BUTTONS */
.btn-cta,
.btn-cta-lg {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-cta:hover,
.btn-cta-lg:hover {
    background-color: #e08b1a;
    /* Darker accent */
}

.btn-cta-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
    margin-top: 20px;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* TYPOGRAPHY */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

.tagline {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

/* HEADER & NAVIGATION */
.header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* Desktop Nav */
.nav-desktop ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-desktop a {
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-desktop a:not(.btn-cta):hover {
    color: var(--primary-color);
}

/* Hamburger & Mobile Nav */
.hamburger-menu {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.hamburger-menu .bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark-color);
    border-radius: 10px;
    transition: all 0.3s linear;
}

.nav-mobile {
    display: none;
    /* Start hidden */
    position: absolute;
    top: 60px;
    /* Adjust based on header height */
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
}

.nav-mobile.open {
    display: block;
    transform: translateY(0);
}

.nav-mobile ul {
    list-style: none;
    padding: 0;
}

.nav-mobile li {
    margin: 15px 0;
}

.nav-mobile a {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 0;
    display: block;
    transition: background-color 0.3s;
}

.nav-mobile a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* HERO SECTION */
.hero {
    position: relative;
    background-image: url('../assets/img/view-gunung-hanjawong.jpg');
    /* **GANTI DENGAN GAMBAR KAVLING/VIEW TERBAIK** */
    background-size: cover;
    background-position: center;
    height: 80vh;
    /* Responsive height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    /* Dark overlay for text contrast */
}

.hero-content {
    position: relative;
    color: white;
    max-width: 800px;
}

.hero-content h1 {
    margin: 10px 0;
    line-height: 1.1;
}

.hero-content h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* ABOUT SECTION */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-top: 0;
}

.about-image-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* FOOTER */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}


/* MEDIA QUERIES (RESPONSIVENESS) */
@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.4rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-image-placeholder {
        order: -1;
        /* Pindahkan gambar ke atas pada mobile */
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-cta-lg {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* KEUNGGULAN SECTION (FEATURES) */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
    /* Latar belakang terang */
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: 300;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border-top: 5px solid var(--secondary-color);
    /* Aksen Biru Muda */
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    height: 60px;
    /* Jaga tinggi ikon tetap konsisten */
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.feature-item p {
    color: #555;
    font-size: 0.95rem;
}

.cta-bottom {
    margin-top: 40px;
}

/* Penyesuaian Media Queries untuk features (di file style.css) */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* GALLERY SECTION */
.gallery {
    padding: 80px 0;
    background-color: white;
}

.gallery .section-title {
    margin-bottom: 20px;
}

/* 1. SLIDER STYLING */
.slider-container {
    max-width: 900px;
    position: relative;
    margin: auto;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.slider img {
    width: 100%;
    height: 500px;
    /* Tinggi tetap untuk slider */
    object-fit: cover;
    display: block;
}

.slide {
    display: none;
}

/* Slider Navigation Buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* 2. CARD GALLERY STYLING */
.card-gallery {
    display: grid;
    /* Default: 2 kolom untuk laptop/desktop */
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    /* Tinggi gambar di card */
    object-fit: cover;
}

.gallery-card p {
    text-align: center;
    padding: 10px 15px;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    background-color: var(--light-color);
}

/* MEDIA QUERY untuk Responsivitas Mobile (Di dalam Media Queries di style.css) */
@media (max-width: 992px) {
    /* ... kode media query yang sudah ada ... */

    .slider img {
        height: 300px;
        /* Kurangi tinggi slider di mobile */
    }

    .card-gallery {
        /* Mobile: 1 kolom (satu baris ke bawah) */
        grid-template-columns: 1fr;
    }

    .gallery-card img {
        height: 200px;
        /* Kurangi tinggi card di mobile */
    }
}

/* PRICING SECTION */
.pricing {
    padding: 80px 0;
    background-color: var(--light-color);
    /* Latar belakang terang */
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 Kolom untuk Desktop */
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.price-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
}

.card-header h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.tag-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: var(--secondary-color);
    color: white;
    margin-bottom: 20px;
}

.tag-label.secondary {
    background-color: #aaa;
}

.price {
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 2px solid #eee;
    border-top: 2px solid #eee;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    color: var(--primary-color);
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price .unit {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-top: -10px;
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    color: #555;
    font-weight: 400;
}

.price-card .btn-cta,
.price-card .btn-secondary {
    width: 100%;
    margin-top: 20px;
    padding: 12px 0;
}

.note {
    font-style: italic;
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
}

/* Penyesuaian Media Queries untuk Pricing (Di dalam Media Queries di style.css) */
@media (max-width: 768px) {
    /* ... kode media query yang sudah ada ... */

    .pricing-grid {
        /* Mobile: 1 kolom */
        grid-template-columns: 1fr;
    }
}

/* FLOATING WHATSAPP BUTTON - FIXED */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    /* WhatsApp Green */
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;

    /* Flexbox untuk center */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Box sizing untuk memastikan padding tidak mempengaruhi ukuran */
    box-sizing: border-box;

    /* Pastikan tidak ada overflow */
    overflow: hidden;

    transition: transform 0.3s;
}

/* Fix untuk SVG */
.whatsapp-float svg {
    display: block;
    width: 30px;
    height: 30px;

    /* Pastikan SVG tidak memiliki margin/padding internal */
    margin: 0;
    padding: 0;

    /* Pastikan viewbox proper */
    /* Jika SVG memiliki viewbox, biarkan natural */
}

/* Hover effect (opsional) */
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* MODAL / POPUP FORM STYLES */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    /* Pastikan di atas semua elemen lain */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    /* Black w/ opacity */
    padding-top: 60px;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    /* 5% dari atas dan di tengah */
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation-name: animatetop;
    animation-duration: 0.4s;
}

/* Animasi Pop-up */
@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--poppins);
}

.modal-content .btn-cta {
    width: 100%;
    padding: 12px 0;
}

/* Penyesuaian Media Queries */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .modal-content {
        margin: 10% auto;
    }
}

/* SITEPLAN SECTION */
.siteplan {
    padding: 80px 0;
    background-color: white;
}

.siteplan-content-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    /* Gambar lebih besar dari info */
    gap: 40px;
    align-items: flex-start;
}

.siteplan-image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    /* Bayangan dalam */
    position: sticky;
    /* Agar gambar Siteplan tetap terlihat saat scroll info */
    top: 100px;
    /* Jarak dari header sticky */
}

.siteplan-img {
    width: 100%;
    height: auto;
    display: block;
}

.siteplan-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.status-box {
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.status-box h3 {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.status-box.soldout {
    background-color: #fce4e4;
    /* Merah muda lembut */
    border-left: 5px solid #e57373;
    /* Garis Merah */
}

.status-box.soldout h3 {
    color: #c62828;
    /* Merah gelap */
}

.status-box.available {
    background-color: #e8f5e9;
    /* Hijau muda lembut */
    border-left: 5px solid #66bb6a;
    /* Garis Hijau */
}

.status-box.available h3 {
    color: #2e7d32;
    /* Hijau gelap */
}

.soldout-list,
.available-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.soldout-list li,
.available-list li {
    background-color: transparent;
    padding: 5px 0;
    font-size: 0.95rem;
}

.warning {
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 15px;
}

.siteplan-info .btn-cta-lg {
    margin-top: 10px;
    width: 100%;
    padding: 15px 0;
    background-color: var(--secondary-color);
    text-align: center;
    /* Biru Muda yang Eye-catching */
}

.siteplan-info .btn-cta-lg:hover {
    background-color: var(--primary-color);
}


/* Media Queries untuk Siteplan */
@media (max-width: 992px) {
    .siteplan-content-grid {
        grid-template-columns: 1fr;
        /* 1 Kolom di mobile */
        gap: 30px;
    }

    .siteplan-image-container {
        position: static;
        /* Nonaktifkan sticky di mobile */
        top: 0;
    }
}

/* VIDEO SECTION */
.video-section {
    padding: 80px 0;
    background-color: var(--light-color);
    /* Latar belakang sedikit berbeda */
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 Kolom untuk Desktop */
    gap: 30px;
    margin-top: 40px;
}

.video-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    /* Teknik untuk membuat iframe video responsif dan menjaga rasio aspek 16:9 */
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    padding: 20px;
    text-align: left;
}

.video-caption h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.video-caption p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.video-cta-bottom {
    margin-top: 40px;
}

/* Penyesuaian Media Queries untuk Video Section (Di dalam Media Queries di style.css) */
@media (max-width: 768px) {
    /* ... kode media query yang sudah ada ... */

    .video-grid {
        grid-template-columns: 1fr;
        /* 1 Kolom di mobile */
    }
}

/* TESTIMONIAL SECTION */
.testimonial-section {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* 3 kolom fleksibel */
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--light-color);
    /* Latar belakang lebih lembut */
    padding: 30px;
    border-radius: 15px;
    /* Sudut lebih membulat untuk modernitas */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.quote-text {
    font-style: italic;
    color: var(--dark-color);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.author-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
    /* Aksen warna */
}

.author-name {
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.author-title {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.testimonial-cta-bottom {
    margin-top: 50px;
}

/* Penyesuaian Media Queries untuk Testimonial */
@media (max-width: 992px) {
    .testimonial-grid {
        /* Di tablet, bisa 2 kolom atau tetap 3. Mari buat 1 kolom di mobile (<576px) */
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        /* 1 Kolom di mobile */
    }
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-toggle {
    display: none;
    /* Sembunyikan checkbox asli */
}

.faq-question {
    display: block;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    background-color: white;
    position: relative;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

/* Tambahkan ikon panah (Arrow Icon) */
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #f7f7f7;
    color: #555;
}

.faq-answer p {
    padding: 15px 0;
    margin: 0;
    line-height: 1.6;
}

/* LOGIKA ACCORDION MENGGUNAKAN CSS */
.faq-toggle:checked+.faq-question {
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
}

.faq-toggle:checked+.faq-question::after {
    content: '−';
    /* Ganti ikon menjadi minus saat terbuka */
    transform: translateY(-50%) rotate(0deg);
    color: white;
}

.faq-toggle:checked~.faq-answer {
    max-height: 500px;
    /* Nilai besar agar konten muat */
    padding: 15px 25px;
    border-top: 1px solid var(--primary-color);
}

.faq-cta-bottom {
    margin-top: 40px;
    padding: 20px;
    border-radius: 8px;
}

.faq-cta-bottom p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}