/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary: #1b3322; 
    --accent: #8fa89b; 
    --text: #2c3531; 
    --white: #ffffff;
    --bg-light: #f5f7f5; 
    --header-height: 85px;
}

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

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    color: var(--text); 
    line-height: 1.6; 
    background: #fff; 
}

h1, h2, h3, h4 { 
    font-family: 'Playfair Display', serif; 
    color: var(--primary); 
    font-weight: 700;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 70px 0; }
.text-center { text-align: center; }

/* =========================================
   2. HEADER & NAVIGATION (FIXED)
   ========================================= */
.site-header {
    background: #ffffff;
    height: var(--header-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.mobile-toggle {
    display: none; /* Sembunyi di desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 3000;
}

.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

/* =========================================
   MOBILE MENU LOGIC (PENTING)
   ========================================= */
.mobile-nav {
    display: none; /* Sembunyi default */
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #ffffff;
    z-index: 2500;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    gap: 25px;
}

/* Class ini akan dipicu oleh JavaScript */
.mobile-nav.active {
    display: flex !important; 
}

.mobile-nav a {
    text-decoration: none;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .nav-links { display: none !important; }
    .mobile-toggle { display: flex !important; }
}
/* =========================================
/* =========================================
   HERO SECTION - PERBAIKAN AREA LONGGAR & LUAS
   ========================================= */
.hero {
    position: relative;
    /* SOLUSI 1: Naikkan dari 85vh ke 95vh atau 100vh agar area gambar terasa sangat luas dan megah */
    min-height: 95vh; 
    background: url('../images/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* SOLUSI 2: Perbesar padding atas dan bawah agar teks tidak mepet ke tepi layar */
    padding: 120px 0; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(27, 51, 34, 0.85) 0%, 
        rgba(27, 51, 34, 0.55) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 900px; /* Diperlebar sedikit agar baris kalimat mengalir lebih panjang */
    padding: 0 24px;
}

.subtitle-gold {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px; /* Jarak antar huruf diperlebar agar terkesan eksklusif */
    display: block;
    /* SOLUSI 3: Perbesar jarak bawah subtitle ke judul utama */
    margin-bottom: 28px; 
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.2rem); 
    color: #ffffff;
    line-height: 1.25; /* Ditambahkan kelonggaran antar baris tulisan h1 */
    font-weight: 700;
    /* SOLUSI 4: Perbesar jarak dari judul ke paragraf penjelasan */
    margin-bottom: 28px; 
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.9); 
}

.hero-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    /* SOLUSI 5: Perbesar jarak dari paragraf ke area tombol CTA */
    margin-bottom: 45px; 
    font-weight: 300;
    line-height: 1.7; /* Membuat teks paragraf lebih renggang dan nyaman dibaca */
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3; /* FIX UTAMA: Naikkan layer tombol ke tingkat paling atas agar tidak tertutup kaca film overlay */
    margin-top: 25px;
}

.btn {
    display: inline-block; /* Wajib ada agar padding tombol bekerja sempurna */
    padding: 14px 35px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* FIX TOMBOL UTAMA: Jika warna variabel --accent Anda belum terbaca, kita kunci dengan warna hijau sage/perak yang tegas */
.btn-gold { 
    background-color: #8fa89b !important; /* Warna Sage Sidemen yang sejuk */
    color: #1b3322 !important;            /* Warna Teks Hijau Hutan Tua agar sangat kontras */
    border: 1px solid #8fa89b !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-gold:hover {
    background-color: #ffffff !important;
    color: #1b3322 !important;
    border-color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* FIX TOMBOL WA/OUTLINE: Memastikan garis putih luar terlihat jelas */
.btn-outline { 
    border: 2px solid #ffffff !important; 
    color: #ffffff !important; 
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.btn-outline:hover {
    background-color: #ffffff !important;
    color: #1b3322 !important; /* Saat di-hover, tombol menjadi putih dan tulisan menjadi hijau hutan */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* KOREKSI RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 0 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 15px 20px; /* Di HP tombol dibuat lebih tebal agar mudah ditekan */
    }
}
/* Premium Why Choose Us Styling */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card-premium {
    background: var(--white);
    padding: 50px 35px;
    border: 1px solid #e0e0e0; /* Border dasar halus */
    border-top: 4px solid var(--accent); /* Aksen emas di bagian atas */
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.why-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--accent); /* Border berubah jadi emas penuh saat di-hover */
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.15); /* Bayangan emas lembut */
}

.why-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    color: rgba(197, 160, 89, 0.1); /* Angka emas transparan di background */
    position: absolute;
    top: 10px;
    right: 20px;
    font-weight: 700;
}

.why-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.why-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Responsif Mobile */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr; /* Atas-bawah di HP */
    }
}

/* CSS Khusus untuk 2 Paket Harga */
.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Membuat tepat 2 kolom */
    gap: 30px;
    max-width: 850px; /* Membatasi lebar agar kartu tidak terlalu lebar ke samping */
    margin: 40px auto 0; /* Mengetengahkan grid */
}

.price-card {
    padding: 50px 40px;
    border: 1px solid #eee;
    background: #fff;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .pricing-grid-two {
        grid-template-columns: 1fr; /* Menjadi atas-bawah di HP */
        padding: 0 10px;
    }
    
    .price-card.featured {
        transform: scale(1); /* Menghilangkan zoom di HP agar tidak mepet layar */
        margin-top: 20px;
    }
}

/* =========================================
   4. CONTENT GRID (Gallery 3 Kolom)
   ========================================= */
.why-grid, .pricing-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gallery-grid img {
    width: 100%; 
    height: 280px; /* Tinggi gambar lebih proporsional */
    object-fit: cover;
    border-radius: 5px;
}

/* =========================================
   5. MOBILE (WAJIB ADA AGAR TIDAK BERAK)
   ========================================= */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .why-grid, .pricing-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .why-grid, .pricing-grid, .gallery-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.2rem; }
}
/* Location Section Refined */
.location-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Membagi 50% kiri, 50% kanan agar sejajar */
    gap: 50px;
    align-items: center; /* Membuat teks di kiri sejajar tengah dengan peta */
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.location-info-card h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.loc-text {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
}

.mt-30 { margin-top: 30px; }

/* Menyesuaikan Ukuran Map */
.map-wrapper {
    width: 100%;
    height: 350px; /* Membatasi tinggi peta agar sejajar dengan tinggi teks di kiri */
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.btn-gold-outline {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-gold-outline:hover {
    background: var(--accent);
    color: white;
}

/* Responsive Tablet & HP */
@media (max-width: 992px) {
    .location-grid-premium {
        grid-template-columns: 1fr; /* Stack atas-bawah di layar kecil */
        padding: 30px;
        gap: 30px;
    }
    
    .map-wrapper {
        height: 300px; /* Peta sedikit lebih kecil di HP */
    }
}


/* Footer Modern Dark Style */
.site-footer {
    background: #111111; /* Hitam pekat agar kontras dengan section Lokasi yang terang */
    color: #eeeeee;
    padding: 80px 0 30px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Kolom branding sedikit lebih lebar */
    gap: 60px; /* Jarak antar kolom lebih lega */
    border-bottom: 1px solid #222;
    padding-bottom: 50px;
}

/* Memperkecil Logo Footer agar Seimbang */
.logo-f {
    height: 50px; /* Ukuran proporsional, tidak mendominasi */
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Membuat logo menjadi putih/silver agar muncul di background hitam */
}

.footer-branding p {
    color: #999;
    line-height: 1.8;
    max-width: 300px;
}

.footer-column h4 {
    color: var(--accent); /* Warna emas untuk judul kolom */
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 15px;
    color: #999;
}

.footer-list a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-list a:hover {
    color: var(--accent); /* Hover berubah jadi emas */
    padding-left: 5px;
}

/* Bagian Hak Cipta */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: #666;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Menjadi satu kolom di HP */
        gap: 40px;
        text-align: center;
    }
    
    .footer-branding p {
        margin: 0 auto;
    }
}

/* PERBAIKAN LOKASI MENJADI 2 KOLOM */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info kiri, Map kanan */
    gap: 40px;
    align-items: center;
}

/* Tombol Instagram & Tombol Map agar Terlihat */
.btn-ig, .btn-map, .btn-card {
    display: inline-block;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.8rem;
    border: 2px solid var(--accent);
    color: var(--primary);
    transition: 0.3s;
}

.btn-card.gold {
    background: var(--accent);
    color: white;
}
.price-box .old {
    position: relative;
    color: #999;
    font-size: 0.9rem;
    margin-right: 10px;
    text-decoration: none; /* Matikan coretan standar */
}

.price-box .old::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #ff4d4d; /* Warna garis merah */
    transform: rotate(-10deg); /* Membuat garis miring */
    border-radius: 2px;
}

/* Responsive: Jika dibuka di HP, baru menjadi Atas-Bawah */
@media (max-width: 768px) {
    .pricing-grid, .footer-grid, .location-grid {
        grid-template-columns: 1fr; /* 1 Kolom saja di HP */
    }
}
/* WhatsApp Modern Styling */
.wa-float-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-main-card {
    background: #25D366;
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.wa-icon-box {
    width: 45px;
    height: 45px;
    background: white;
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.wa-icon-box svg {
    width: 25px;
    height: 25px;
}

.wa-text-modern {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Status Online Badge */
.wa-badge {
    position: absolute;
    top: -5px;
    left: 15px;
    background: #ff4757;
    color: white;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Animasi Denyut / Pulse */
.wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.4);
    border-radius: 50px;
    z-index: -1;
    animation: wa-ripple 2s infinite;
}

@keyframes wa-ripple {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Hover Interaction */
.wa-float-modern:hover {
    transform: scale(1.05) translateY(-5px);
}

.wa-float-modern:hover .wa-main-card {
    background: #20ba5a;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Mobile View: Sembunyikan Teks agar Minimalis */
@media (max-width: 768px) {
    .wa-text-modern { display: none; }
    .wa-main-card { padding: 8px; }
    .wa-icon-box { margin-left: 0; }
    .wa-badge { left: 0; right: 0; text-align: center; }
}
/* =========================================
   BLOG SECTION - INDEX PAGE
   ========================================= */
.blog-section {
    background: #fdfdfd;
    padding: 80px 0;
}

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

.blog-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.blog-card .category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card .read-more {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.blog-card .read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more::after {
    transform: translateX(5px);
}

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