/* Global Styles */
:root {
    --primary-color: #800020;
    /* Maroon red */
    --secondary-color: #ff0404;
    --accent-color: #fdc304;
    --light-color: #f8f8f8;
    --dark-color: #333;
    --dark-color: #080808;
    --gray-color: #777;
    --light-gray: #eee;
    --green-color: #06a406;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Container umum tetap normal */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Khusus container di dalam header */
header>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section {
    padding: 5rem 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    text-align: center;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    display: flex;
    /* Tambahkan ini */
    justify-content: space-between;
    /* Tambahkan ini */
    align-items: center;
    /* Tambahkan ini */
}

header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--green-color);
}

.logo img {
    height: 50px;
    /* Sesuaikan ukuran */
    display: block;
}


.logo span {
    color: var(--accent-color);
}

nav ul {
    display: flex;
    margin-left: auto;
    /* Ini yang akan mendorong menu ke kanan */
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {

    color: var(--accent-color);
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--accent-color);
    cursor: pointer;
}



/* Default Hero Background */
.hero {
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    position: relative;
    text-align: center;
}



/* Hero gambar untuk halaman beranda */
body.halaman-beranda .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../asset/img/keindahan_kavling-wisata-sukamakmur.webp') no-repeat center center/cover;

}

/* Hero gambar untuk halaman Produk */
body.halaman-sawarga .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../kavling-sawarga-sukamakmur/assets/img/sawarga-2.jpg') no-repeat center center/cover;

}


.hero-overlay {
    width: 100%;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);

}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
    animation: fadeInUp 1s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero h2::after {
    display: none;
}

.hero img {
    width: 180px !important;
    /* Pakai !important agar pasti diterapkan */
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto 20px;
}


/* ✅ Responsif untuk layar tablet */
@media (max-width: 768px) {
    .hero img {
        max-width: 150px;
        margin-bottom: 16px;
    }
}

/* ✅ Responsif untuk layar HP */
@media (max-width: 480px) {
    .hero img {
        max-width: 120px;
        margin-bottom: 12px;
    }
}



/* Tombol CTA */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}

/* Etalase Produk */
.product-showcase {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: bold;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 kolom */
    gap: 30px;
}

/* Media query untuk layar mobile */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        /* 1 kolom di layar kecil */
    }
}

.product-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-title {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 15px 0 10px;
}

.product-price {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-buy {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-buy:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.price-highlight {
    font-size: 1.5rem;
    background-color: var(--primary-color);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

/* Video Section Styles */
.video-section {
    background-color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin: 2rem auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.video-caption {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 0 1rem;
    color: var(--gray-color);
    font-size: 1.1rem;
    line-height: 1.7;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-item h3 {
    margin-top: 1rem;
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .video-section {
        padding: 3rem 0;
    }

    .video-container {
        margin: 1.5rem auto;
    }

    .video-caption {
        font-size: 1rem;
    }
}



.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.about-left {
    flex: 0 0 58%;
    max-width: 58%;
    color: var(--dark-color);
}

.about-right {
    flex: 0 0 38%;
    max-width: 38%;
}

/* Gambar */
.about-image {
    margin-bottom: 20px;
    margin-left: 22px;
}

.about-image img {
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

/* Text */
.about-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-left: 12px;

}

.about-text p {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.6;
    margin-left: 12px;
}

/* Fitur */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    background-color: var(--light-gray);
    border-left: 5px solid var(--accent-color);
    padding: 15px;
    border-radius: 8px;
    align-items: flex-start;
}

.icon-large,
.feature-icon span {
    font-size: 2rem;
    color: var(--accent-color);
}

.feature-text h4,
.feature-text h2 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--dark-color);
    line-height: 1.5;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-left,
    .about-right {
        max-width: 100%;
        flex: 100%;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}


/* Facilities Section */
.facilities-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

/* Container utama - default untuk desktop (horizontal) */
.facilities-container {
    display: flex;
    /* Menggunakan flexbox */
    flex-wrap: wrap;
    /* Memungkinkan wrap ke baris baru */
    gap: 2rem;
    /* Jarak antar item */
    margin-top: 3rem;
}

/* Gaya untuk setiap kategori fasilitas */
.facility-category {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    flex: 1;
    /* Membagi ruang secara merata */
    min-width: 45%;
    /* Minimal lebar 45% */
}

/* Header kategori */
.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.category-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.category-header h3 {
    margin: 0;
    color: var(--primary-color);
}

/* Daftar fasilitas */
.facility-list {
    list-style: none;
    padding-left: 0;
}

.facility-list li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}

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

.facility-list li i {
    margin-right: 10px;
    color: var(--primary-color);
    min-width: 25px;
    font-size: 1.1rem;
}

/* Badge untuk fasilitas aktif */
.badge-active {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-left: 8px;
    font-weight: bold;
}

/* Catatan tambahan */
.facility-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #e9ecef;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.facility-note p {
    margin: 0;
    color: var(--primary-color);
}

/* Efek hover */
.facility-category:hover {
    transform: translateY(-5px);
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .facilities-container {
        flex-direction: column;
        /* Ubah ke vertikal */
    }

    .facility-category {
        min-width: 100%;
        /* Full width di mobile */
        flex: none;
        /* Reset flex */
        padding: 1.5rem;
        /* Padding lebih kecil di mobile */
    }

    .facility-section {
        padding: 3rem 0;
        /* Padding section lebih kecil */
    }

    .category-header i {
        font-size: 1.5rem;
        /* Ukuran icon lebih kecil */
    }
}


/* Location Section */
.location-section {
    background-color: var(--light-gray);
}

.location-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.location-map {
    flex: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.location-info {
    flex: 1;
}

.location-info ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.location-info ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
    min-width: 25px;
}

/* Pricing Section Styles */
.pricing-section {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 kolom sama lebar */
    gap: 1.5rem;
    margin: 3rem 0;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-color);
    margin: 1.5rem 0;
}

.price span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.pricing-card ul {
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.pricing-card ul li i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1rem;
}

/* Featured Card */
.featured {
    border: 2px solid var(--accent-color);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: rgb(117, 3, 3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    color: white;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.promo-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.promo-content small {
    opacity: 0.9;
    font-size: 0.85rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        /* 2 kolom di tablet */
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        /* 1 kolom di mobile */
    }

    .promo-banner {
        flex-direction: column;
        text-align: center;
    }

    .promo-content {
        margin-bottom: 1rem;
    }
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}


/* Footer */
.footer {
    background-color: #f8f9fa;
    /* bisa diganti sesuai tema */
    color: #333;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-about h3 span {
    color: var(--accent-color);
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0.8;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 50px 0 20px;
    font-size: 0.95rem;
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 kolom */
    gap: 40px;
}

.footer-column h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

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

.footer-column ul li {
    margin-bottom: 10px;
    color: var(--light-color);
    line-height: 1.5;
}

.footer-column ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Copyright */
footer .copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-color);
    color: var(--gray-color);
    font-size: 0.9rem;
}

body.dark-mode .footer {
    background-color: #111;
    color: #eee;
    border-top-color: #444;
}

/* Responsive untuk HP */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        /* jadi 1 kolom di HP */
        text-align: center;
    }

    .footer-column h3 {
        margin-top: 20px;
    }
}

/* WHATSAPP POPUP */
.wa-fixed {
    position: fixed;
    bottom: 20px;
    /* Jarak dari bawah */
    right: 20px;
    /* Jarak dari kanan */
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.wa-fixed:hover {
    transform: scale(1.05);
    background-color: #1ebc5a;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {

    .about-content,
    .location-content,
    .contact-content {
        flex-direction: column;
    }

    .about-image,
    .location-map,
    .contact-info {
        width: 100%;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .promo-banner {
        flex-direction: column;
        text-align: center;
    }

    .promo-content {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 2rem;
    }

    nav ul li {
        margin: 1rem 0;
    }

    #menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .price-highlight {
        font-size: 1.2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .price-highlight {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: scale(1);
    }
}

/* Style untuk form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
}

/* Style untuk validasi */
input:invalid,
select:invalid,
textarea:invalid {
    border-color: #ff6b6b;
}

input:focus:invalid,
select:focus:invalid,
textarea:focus:invalid {
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

/* Reset Slider */
.gallery-slider {
    position: relative;
    max-width: 100%;
    margin: 2rem auto;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
    /* Rasio gambar 4:3 */
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 1.5rem 1rem 1rem;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 kolom di laptop */
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 kolom di tablet */
    }

    .gallery-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        /* 1 kolom di mobile */
    }

    .caption {
        padding: 1rem 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}


.carousel-container {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

.carousel-title {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.carousel {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    z-index: 2;
}

.carousel-button.prev {
    left: 15px;
}

.carousel-button.next {
    right: 15px;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* HALAMAN SAWARGA */
.video-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.video-section h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card styling */
.video-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Wrapper untuk menjaga rasio video */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

.video-title {
    font-size: 1rem;
    padding: 15px;
    color: var(--primary-color);
}

.tentang-section {
    padding: 80px 20px;
    background-color: #fff;
}

.tentang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .tentang-grid {
        grid-template-columns: 1fr;
    }
}


/* TENTANG SAWARGA */
.tentang-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.tentang-image img:hover {
    transform: scale(1.03);
}

.tentang-content h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 20px;
}

.tentang-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.tentang-fitur {
    list-style: none;
    padding: 0;
}

.tentang-fitur li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

.tentang-fitur i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* FASILITAS PENDUKUNG */
.fasilitas-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.fasilitas-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.fasilitas-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fasilitas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.fasilitas-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.fasilitas-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.fasilitas-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Dark mode wrapper */
body.dark-mode {
    background-color: var(--primary-color);
    color: #eee;
}

/* Dark mode - Section Fasilitas */
body.dark-mode .fasilitas-section {
    background-color: #340101;
}

body.dark-mode .fasilitas-title {
    color: #fff;
}

body.dark-mode .fasilitas-card {
    background: #2a2a2a;
    color: #ccc;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.05);
}

body.dark-mode .fasilitas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

body.dark-mode .fasilitas-card h3 {
    color: #fff;
}

body.dark-mode .fasilitas-card p {
    color: #bbb;
}

body.dark-mode .fasilitas-card i {
    color: #e88989;
    /* hijau neon lembut */
}

.wahana-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    color: #333;
}

.wahana-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.wahana-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.wahana-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 24px;
    transition: transform 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.wahana-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.wahana-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.wahana-card:hover {
    transform: translateY(-6px);
}

.galeri-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.galeri-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 600;
}

.gambar-wrapper {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gambar-wrapper:hover {
    transform: scale(1.02);
}

.gambar-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* SECTION AJAKAN SURVEY */

.survey-section {
    padding: 60px 20px;
    background-color: #f1f5f9;
    color: #333;
}

.survey-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.survey-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.survey-box p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.survey-box ul {
    text-align: left;
    margin: 0 auto 20px;
    max-width: 600px;
    padding-left: 20px;
    color: #444;
}

.survey-box ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.promo-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fefcea, #f1f5f9);
    text-align: center;
}

.promo-box {
    background: #fff;
    padding: 40px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: auto;
    border: 2px dashed #e69500;
}

.promo-box h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.promo-box .subtext {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.harga-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.harga-wrapper .harga-normal,
.harga-wrapper .harga-promo {
    background: #fef3c7;
    padding: 20px;
    border-radius: 12px;
    width: 200px;
    margin: 10px;
}

.harga-wrapper .harga-promo {
    background: var(--primary-color);
    box-shadow: 0 0 10px #ff0000;
}

.harga-wrapper .label {
    display: block;
    font-size: 0.9rem;
    color: #080606;
    margin-bottom: 5px;
}

.harga-wrapper .value {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1f2937;
}

.harga-wrapper .harga-promo .value {
    font-size: 1.5rem;
    color: var(--light-color);
}

.promo-box .note {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* cowndown */
.countdown-timer {
    margin: 30px 0;
    color: #1f2937;
}

.countdown-label {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.countdown-wrapper div {
    background-color: #fff7ed;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-width: 70px;
}

.countdown-wrapper span {
    font-size: 1.6rem;
    font-weight: bold;
    display: block;
    color: #b45309;
}

.countdown-wrapper small {
    font-size: 0.75rem;
    color: #555;
}

/* FOTO SECTION */
.foto-gallery-slider {
    padding: 60px 20px;
    background-color: #f9fafb;
    text-align: center;
    position: relative;
}

.foto-gallery-slider h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1f2937;
}

/* Track Wrapper */
.foto-track-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.foto-track {
    display: flex;
    gap: 20px;
}

.foto-slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.foto-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Grid for desktop */
@media (min-width: 768px) {
    .foto-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .slider-nav {
        display: none;
    }

    .foto-track-wrapper {
        overflow: visible;
    }
}

/* Navigasi tombol */
.slider-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-nav button {
    background-color: #f59e0b;
    color: white;
    border: none;
    padding: 10px 16px;
    font-size: 1.4rem;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.ajb-carousel-section {
    padding: 60px 20px;
    background-color: #f9fafb;
    text-align: center;
}

.ajb-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.ajb-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.ajb-carousel-slide {
    flex: 0 0 100%;
}

.ajb-carousel-slide img {
    width: 100%;
    height: 220px;
    /* Atur tinggi tetap */
    object-fit: cover;
    /* Potong gambar agar pas */
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}


.ajb-carousel-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ajb-carousel-button {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 1.4rem;
    border-radius: 50%;
    cursor: pointer;
}

@media (min-width: 768px) {
    .ajb-carousel-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .ajb-carousel-slide {
        flex: 1 1 auto;
    }

    .ajb-carousel-nav {
        display: none;
    }
}

/* FORM KHUSUS BTN */
.btn-submit {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

/* POP UP WHATSAPP */
.wa-popup-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.wa-floating-btn {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 10%;
    width: 55px;
    height: 55px;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.wa-floating-btn:hover {
    transform: scale(1.1);
}

.wa-form-popup {
    background: white;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
    width: 260px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wa-form-popup input,
.wa-form-popup textarea {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.wa-form-popup button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.hidden {
    display: none;
}


/* TAMPILAN GRID GAMBAR */
.image-grid-section {
    padding: 2rem;
    background-color: #fdfcfc;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.card {
    background-color: #fff;
    border: 2px solid #800000;
    /* maroon */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(128, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(128, 0, 0, 0.3);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1rem;
    background-color: #800000;
    /* maroon */
    color: #fff;
    text-align: center;
}

@media (min-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}