/* ========================================================================= */
/* --- BB STUDIO: THE MONOLITH --- */
/* LIGHT MONOLITH (Putih/Terang) & ROSE GOLD ACCENT */
/* ========================================================================= */

/* ========================================================================= */
/* --- 0. GLOBAL RESET & CORE FIXES (REVISI FINAL) --- */
/* ========================================================================= */

/* 1. Variabel Warna (Wajib di Paling Atas) */
:root {
    --color-primary: #333333;           /* Teks Utama Hitam Gelap */
    --color-background: #ffffff;        /* Background Putih Bersih */
    --color-accent-rose-gold: #B76E79;  /* Rose Gold Cemerlang */
    --color-light-grey: #f8f8f8;        /* Abu Super Terang */
}

/* 2. Reset Dasar */
html {
    scroll-behavior: smooth; /* Membuat efek scroll mengalir pelan */
    
    /* OFFSET: Beri jarak di atas saat scroll agar judul section 
       tidak tertutup oleh Header (asumsi tinggi header Anda 80px) */
    scroll-padding-top: 100px; 
}

html, body {
    margin: 0;
    padding: 0;
    
    /* FIX KRUSIAL: Scroll & Height Control */
    min-height: 100%; 
    height: auto; 
    overflow-y: auto !important; 
    overflow-x: hidden !important;
}

*, *:before, *:after {
    box-sizing: border-box;
}

/* 3. Styling Body & Background Image */
body {
    /* Font & Warna Dasar */
    color: var(--color-primary);
    font-family: 'Roboto', 'Noto Sans SC', 'Noto Sans KR', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    background-color: var(--color-background); /* Warna cadangan */
    
    /* Pastikan path gambar ini benar sesuai folder Anda */
    background-image: url('../images/background/body_bg.jpg'); 
    
    background-size: cover;        
    background-position: center;   
    background-attachment: fixed;  
    background-repeat: no-repeat;
    
    /* PENTING: Position Relative agar Overlay bisa menempel */
    position: relative; 
    z-index: 1; 
}

/* 4. White Overlay (Lapisan Putih Transparan) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.70); 
    
    z-index: 2; /* Di atas Background Image, di bawah Konten */
    pointer-events: none; /* Agar tetap bisa klik/scroll meski ada overlay */
}

/* 5. Konten di Atas Overlay (Supaya Teks Tidak Tertutup) */
#header, section, footer, .main-content {
    position: relative;
    z-index: 3; /* Wajib lebih tinggi dari body::before (2) */
}

/* 6. Typography Global */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--color-primary);
    letter-spacing: 0.05em; 
}

.rose-gold-text {
    color: var(--color-accent-rose-gold);
    font-weight: 700;
}

.highlight-seo {
    font-style: italic; 
}

/* ========================================================================= */
/* --- 1. HEADER & NAVIGATION (FIXED LAYOUT) --- */
/* ========================================================================= */

#header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 950; 
    
    background: transparent; 
    box-shadow: none; 
    
    /* REVISI: Padding diperkecil agar header lebih ramping */
    padding: 0.3em 3%; 
    
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    transition: all 0.3s ease; 
}

#header h1 {
    margin: 0; /* Hapus margin atas/bawah */
    line-height: 1; /* Rapatkan baris agar tidak ada ruang kosong vertikal */
    display: flex;
    align-items: center;
}

#header h1 a {
    color: white; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); 
    text-decoration: none;
    font-size: 1.0em; /* Sesuaikan ukuran logo jika perlu */
}

/* Hamburger Icon */
.menu-btn {
    text-decoration: none;
    line-height: 1; /* Penting untuk alignment */
}
.menu-btn i.fas.fa-bars {
    color: white; 
    /* Ukuran ikon diperbesar agar seimbang dengan tombol Hubungi */
    font-size: 1.6em; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
    
    /* PENTING: Vertical Align agar sejajar tengah dengan tombol Hubungi */
    vertical-align: middle; 
}
#header.header-scrolled {
    /* 1. BACKGROUND CONFIGURATION (Konsep Menu: Image + Overlay) */
    background-image: 
        /* Layer 1: Overlay Putih ke Rose Gold pudar (Opacity 0.9) agar teks hitam terbaca JELAS */
        linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 225, 229, 0.4)),
        url('../images/background/header_bg.jpg');
    
    background-size: cover;          /* Gambar memenuhi area header */
    background-position: center;     /* Fokus di tengah gambar */
    background-repeat: no-repeat;
    background-attachment: fixed; 
    
    /* 2. DIMENSI & SHADOW (Sesuai setting Slim sebelumnya) */
    padding: 5px 5%; /* Padding tipis */
    
    /* Subtle Shadow with Rose Gold Halo */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 
                0 0 5px rgba(183, 110, 121, 0.4);
}

#header.header-scrolled h1 a, 
#header.header-scrolled .menu-btn i.fas.fa-bars {
    color: var(--color-primary); /* Balik ke Hitam/Gelap */
    text-shadow: none;
}
/* --- TAMBAHAN VISUAL POLISH: QUICK CTA HEADER (HUBUNGI) --- */
.header-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px; /* Jarak antara Tombol Hubungi dan Hamburger */
}

.button.alt-small {
    font-size: 0.8em; 
    padding: 0.5em 2em;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none !important;
}

/* Tombol Hubungi di State Awal (di atas Hero) */
.button.desktop-only {
    color: white; 
    border: 1px solid white;
    background: transparent;
    transition: all 0.3s ease;
}

/* Tombol Hubungi di State Scrolled */
#header.header-scrolled .button.desktop-only {
    color: white;
    background: var(--color-accent-rose-gold); 
    border: 1px solid var(--color-accent-rose-gold);
    box-shadow: 0 0 8px rgba(183, 110, 121, 0.6); /* Rose Gold Halo Shadow */
}

/* Sembunyikan Tombol Hubungi di Mobile */
@media screen and (max-width: 980px) {
    .button.desktop-only {
        display: none;
    }
}

/* ========================================================================= */
/* --- STORY BLOCK BUTTONS (BERDASARKAN ALT-SMALL) --- */
/* ========================================================================= */

/* Tombol Dasar untuk Story Block*/
.button-story {
    padding: 0.6em 2.2em; 
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

/* 1. Tombol Blok 1: Rose Gold Gelap (Background Putih) */
.button-story-dark {
    border: 1px solid var(--color-accent-rose-gold); /* Border Rose Gold */
    background-color: var(--color-accent-rose-gold); /* Fill Rose Gold Gelap */
    color: var(--color-background); /* Teks Putih */
}

.button-story-dark:hover {
    background-color: transparent;
    color: var(--color-accent-rose-gold);
}

/* 2. Tombol Blok 2: Rose Gold Terang/Outline (Background Rose Gold Muda) */
.button-story-light {
    border: 1px solid var(--color-primary); /* Border Hitam */
    background-color: transparent; /* Transparan agar terlihat ringan di background berwarna */
    color: var(--color-primary); /* Teks Hitam Gelap */
}

.button-story-light:hover {
    background-color: var(--color-primary); /* Fill Hitam saat hover */
    color: var(--color-background); /* Teks Putih saat hover */
}

.story-block .actions {
    display: flex; /* Aktifkan mode Flexbox pada wadah UL */
    justify-content: center; /* FIX KRUSIAL: Pusatkan item (tombol) secara horizontal */
    padding: 0; /* Hapus padding default jika ada */
    margin: 1.5em 0 0 0; /* Jaga margin bawah agar tidak menempel */
    list-style: none; /* Hapus bullet point */
    gap: 15px; /* Tambahkan jarak antar tombol */
}

/* FIX: Pastikan list item di dalamnya tidak punya margin/padding aneh */
.story-block .actions li {
    margin: 0;
    padding: 0;
}
.story-block .story-content p {
    font-size: 1.05em; /* Sedikit perbesar ukuran font */
    line-height: 1.8; /* FIX KRUSIAL: Tambah jarak antar baris agar lebih lega/mewah */
    letter-spacing: 0.5px; /* Sedikit spasi huruf agar terasa lebih editorial */
    margin-bottom: 1.5em; 
}

/* ========================================================================= */
/* --- 3. SECTION STRUCTURE (Whitespace & Asimetris) --- */
/* ========================================================================= */

.section-spacing {
    padding: 8em 5%; /* Whitespace Luas (Sesuai Permintaan) */
    max-width: 1200px;
    margin: 0 auto;
}
.section-heading {
    text-align: center;
    margin-bottom: 0.5em;
    color: var(--color-accent-rose-gold);
    font-weight: 700;
    font-size: 35px
}
.section-subheading {
    text-align: center;
    color: #666;
    margin-bottom: 1em; 
}

/* ========================================================================= */
/* --- 4. WHATSAPP FIXED BUTTON --- */
/* ========================================================================= */

#whatsapp-fixed-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--color-accent-rose-gold);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    z-index: 900;
    text-decoration: none;
    transition: backgrounds 0.3s;
    
    /* Rose Gold Halo */
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.6); 
}

#whatsapp-fixed-btn:hover {
    background: #A3646F;
    box-shadow: 0 6px 15px rgba(183, 110, 121, 0.8);
}

/* ========================================================================= */
/* --- 5. PRELOADER & HAMBURGER MENU OFF-CANVAS FIX --- */
/* ========================================================================= */

/* 5.1. Preloader Garis Rose Gold */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px; 
    background: var(--color-accent-rose-gold); /* Rose Gold */
    z-index: 99999;
    width: 100%; /* Lebar Penuh */
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    transform: scaleX(0); /* Awalnya tersembunyi */
    transform-origin: left;
}

/* Saat body punya class is-preload, loader muncul. */
body.is-preload #page-loader {
    opacity: 1;
    transform: scaleX(1);
    /* Buat animasi loop sederhana (opsional) */
    animation: loading-loop 2s infinite linear;
}

@keyframes loading-loop {
    0% { transform: scaleX(0.1); opacity: 0.5; }
    50% { transform: scaleX(0.8); opacity: 1; }
    100% { transform: scaleX(0.1); opacity: 0.5; }
}

/* Setelah is-preload dihapus, loader hilang (opacity 0 dan scaleX(0)) */
body:not(.is-preload) #page-loader {
    opacity: 0;
    transform: scaleX(0);
}

/* ========================================================================= */
/* --- 6. HERO SECTION (FULL BLEED, DRAMATIC & CENTERED) --- */
/* ========================================================================= */

#hero {
    height: 100vh;
    display: flex;
    align-items: center; /* Konten di tengah vertikal */
    
    /* FIX 1: Pusatkan konten teks di tengah horizontal */
    justify-content: center; 
    
    position: relative;
    padding: 0 5%;
    
    background-image: url('../images/fulls/hero_bg.jpg');
    background-size: cover;
    
    /* FIX 2: Fokus background di tengah */
    background-position: center center; 
    
    background-color: #f0f0f0;
}

.hero-content {
    /* FIX 3: Lebarkan sedikit agar Judul Besar muat */
    max-width: 600px; 
    
    /* FIX 4: Tambah padding agar lebih lega dan mewah */
    padding: 3em; 
    
    /* FIX 5: Translucent Background dengan Blur */
    background: rgba(255, 255, 255, 0.7); 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    
    z-index: 10;
    
    /* FIX 6: Box shadow lebih lembut */
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    
    /* FIX 7: Pusatkan semua teks di dalam kotak */
    text-align: center; 
}

.main-headline {
    /* FIX 8: Perbesar font secara signifikan */
    font-size: 4.8em;
    font-weight: 700; /* Pastikan font tebal */
    line-height: 1; /* Rapatkan baris untuk efek dramatis */
    margin-bottom: 0.2em;
}

.sub-headline {
    color: #333; /* Pastikan warna teks gelap (hitam) agar kontras di wadah putih */
    margin-bottom: 1.5em;
    /* Alignment otomatis mengikuti .hero-content (terpusat) */
}

/* Caption (Hanya disesuaikan jika teks dipusatkan) */
.editorial-caption {
    position: absolute;
    bottom: 20px;
    right: 50%; /* Pindahkan posisi ke tengah bawah */
    transform: translateX(50%); /* Geser kembali 50% untuk centering */
    color: rgb(255, 245, 245);
    font-size: 0.8em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    z-index: 10;
    text-align: center;
}

/* FIX: Mobile Responsif (Headline dan Content Box) */
@media screen and (max-width: 768px) {
    .hero-content {
        max-width: 90%;
        padding: 2em;
    }
    .main-headline {
        font-size: 2.8em; /* Turunkan ukuran agar tidak pecah di HP */
    }
    .editorial-caption {
        display: none; /* Sembunyikan caption di HP agar tidak terlalu ramai */
    }
}

/* ========================================================================= */
/* --- 7. ANIMASI (Fade In Dasar) --- */
/* ========================================================================= */

@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-lookbook-reveal {
    opacity: 0;
    transform: translateX(-50px); 
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-lookbook-reveal.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* =================================== */
/* --- 8. MINI GALLERY --- */
/* =================================== */

.mini-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 500px; 
    overflow: hidden;
    grid-gap: 15px;
    margin: 0 auto;
    max-width: 1200px;
    align-items: start; 
}

/* Base Styling Gambar */
.gallery-item {
    width: 100%;
    height: 400px; 
    position: relative;
    margin-top: 0; 
    transition: margin 0.3s ease;
}

/* Styling Gambar di dalam Item (Untuk Hover) */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}
.gallery-item:hover img {
    transform: scale(1.05); /* Zoom in halus */
}


/* --- MAPPING ZIGZAG VERTICAL (ATAS RATA) --- */
.mini-gallery-grid .item-2,
.mini-gallery-grid .item-4 {
    margin-top: 100px; 
}


/* --- MOBILE FIX (PENTING: KEMBALIKAN KE NORMAL) --- */
@media screen and (max-width: 736px) {
    .mini-gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
        grid-auto-rows: 250px; 
        grid-gap: 10px;
        align-items: stretch;
    }
    
    /* Hapus penataan Zigzag di mobile (Semua item normal) */
    .mini-gallery-grid .gallery-item {
        margin-top: 0 !important;
    }
}

/* ========================================================================= */
/* --- 9. STUDIO STORY (ZIG-ZAG LAYOUT) --- */
/* ========================================================================= */

/* Container Utama Section */
#studio-story {
    padding: 0; /* Hapus padding default agar block bisa full width */
}

/* Base Block (Setiap Story) */
.story-block {
    display: flex;
    align-items: center; 
    padding: 2em 5%;
    transition: backgrounds 0.3s ease;
}

/* Kolom Teks (60%) dan Gambar (40%) */
.story-content {
    flex: 0 0 60%;
    padding: 0 4em; /* Padding horizontal agar teks tidak mepet */
}
.story-image {
    flex: 0 0 40%;
    overflow: hidden; /* Kontrol agar gambar tidak melebihi batas */
}
.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05); 
    transition: transform 0.5s ease;
}

/* --- WARNA DAN LAYOUT ZIG-ZAG --- */

/* Blok 1 (Teks Kiri, Gambar Kanan) - Background Putih */
.story-block-1 {
    flex-direction: row !important;
    background: rgba(255, 255, 255, 0.6);
}

/* Blok 2 (Gambar Kiri, Teks Kanan) - Background Rose Gold Light */
.story-block-2 {
    flex-direction: row !important;
    background: rgba(248, 209, 209, 0.6);
}

.story-block-1 .story-content { order: 1; }
.story-block-1 .story-image { order: 2; }

.story-block-2 .story-content { order: 2; }
.story-block-2 .story-image { order: 1; }

.story-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.8em; /* Tambah sedikit ruang di bawah judul */
    margin-top: 0; /* Pastikan tidak ada margin atas yang aneh */
    color: var(--color-primary);
}

.story-quote {
    font-size: 1.4em; 
    font-weight: 700;
    font-family: 'Playfair Display', serif; 
    line-height: 1.5;
    margin-top: 1.5em; 
    margin-bottom: 2em;
    color: var(--color-primary);
    border-left: 5px solid var(--color-accent-rose-gold);
    padding-left: 15px;
}
.story-block:last-of-type {
    padding-bottom: 3em !important;
}


/* MOBILE RESPONSIF: Stack Vertikal */
@media screen and (max-width: 980px) {
    .story-block {
        flex-direction: column !important;
        padding: 4em 5%;
    }
    .story-content, .story-image {
        flex: none; /* Hilangkan flex, kembali ke lebar normal */
        width: 100%;
        padding: 0;
    }
    .story-content {
        order: 2; /* Teks di bawah (order 2) */
        padding-top: 2em;
    }
    .story-image {
        order: 1; /* Gambar di atas (order 1) */
        margin-bottom: 1em;
    }
}


/* ======================================================= */
/* --- 8. FOOTER (REVISI FINAL: DARK MONOLITH 3 KOLOM) --- */
/* ======================================================= */

.site-footer {
    background-color: #544e4e; 
    color: #ffffff;
    padding: 2em 0 0 0;
    position: relative;
    z-index: 10;
    backdrop-filter: none; 
    -webkit-backdrop-filter: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 2em 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    gap: 40px;
}

/* Base Style untuk Judul Kolom (Kunjungi Kami, Hubungi Kami) */
.footer-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2em;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0.5em; 
    text-transform: capitalize;
    letter-spacing: 1;
}

/* --- KOLOM 1: KUNJUNGI KAMI (Kiri, Rata Kiri) --- */
.footer-col-map {
    flex: 0 1 20%; 
    min-width: 180px;
    text-align: left;
}
.map-location-text {
    font-size: 0.9em;
    font-weight: 700;
    margin-bottom: 0.5em;
    color: #ffffff; /* Putih solid */
}
.map-address-text {
    color: #f0f0f0;
    font-size: 0.8em;
    margin-top: 0;
    margin-bottom: 1em;
}

/* --- KOLOM 2: BRAND CENTERED --- */
.footer-col-brand-center {
    flex: 0 1 60%;
    min-width: 300px; 
    text-align: center; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: flex-start;
    padding-top: 0; 
}

/* Styling Logo Gambar (PNG) */
.footer-logo-img {
    height: 100px; 
    width: auto;
    margin: 0 0 0.2em 0; 
    display: block;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2em;
    color: #f0f0f0; 
    margin: 0;
}

/* --- KOLOM 3: HUBUNGI KAMI (KANAN, Rata Kanan) --- */
.footer-col-connect {
    flex: 0 1 20%; 
    min-width: 180px;
    text-align: right; 
}

.footer-col-connect .footer-col-title {
    text-align: right;
}

.footer-col-connect .connect-info {
     /* Rata Kanan */
     text-align: right;
}

.footer-socials {
    margin-top: 1.5em;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.footer-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 0.80em;
    margin-bottom: 0.3em;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}
.footer-link:hover {
    color: var(--color-accent-rose-gold);
}

/* FIX: Ikon Sosial media agar tidak rose gold saat biasa (sesuai gambar) */
.social-icon {
    color: #fff;
    font-size: 1.4em;
    transition: transform 0.3s ease, color 0.3s ease;
}
.social-icon:hover {
    color: var(--color-accent-rose-gold); /* Tetap kasih efek hover */
}


/* --- THE SLIM BASE (COPYRIGHT BAR) --- */
.footer-bottom {
    background-color: #000000; /* FIX 2: Hitam Pekat Sesuai Gambar */
    padding: 10px 5%;
    display: flex;
    justify-content: center; /* Posisikan semua di tengah */
    align-items: center;
    border-top: none; /* Hilangkan garis pemisah (tidak ada di gambar) */
    font-size: 0.75em;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}
.copyright {
    font-size: 0.8em;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
    text-align: center;
}
.copyright-center {
    text-align: center;
}
.footer-location-link {
    display: block;
    text-decoration: none;
    font-size: 0.8em;
    font-weight: 700;
    color: #ffffff; 
    margin-bottom: 0.5em;
    transition: color 0.3s ease;
    text-align: left;
}
.footer-location-link:hover {
    color: var(--color-accent-rose-gold);
}
.contact-address-text {
    font-size: 0.8em;
    color: #f0f0f0;
    margin-bottom: 0.5em;
    text-align: right;
}

/* Responsive Mobile FIX: Mobile 2 Kolom (Brand Kiri, Kontak Kanan) */
@media screen and (max-width: 980px) {
    .site-footer {
        padding: 3em 0 0 0;
    }
    .footer-content {
        flex-direction: row; 
        flex-wrap: wrap; 
        justify-content: space-between;
    }
    
    .footer-col-map {
        display: none !important; /* Gmap Hilang di Mobile */
    }

    .footer-col-brand-center, 
    .footer-col-connect {
        flex: 1 1 45%; 
        min-width: 45%;
        padding-top: 0;
    }
    
    /* BRAND KIRI, Rata Kiri */
    .footer-col-brand-center {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        order: -1; 
        text-align: left;
    }

    /* KONTAK KANAN, Rata Kanan */
    .footer-col-connect {
        text-align: right;
    }
    .footer-col-connect .footer-col-title,
    .footer-col-connect .connect-info {
        text-align: right;
    }
    .footer-socials {
        justify-content: flex-end;
    }

    /* Ponsel Murni (Di bawah 600px), paksa menumpuk 1 kolom */
    @media screen and (max-width: 600px) {
        .footer-content {
            flex-direction: column; 
        }
        .footer-col-brand-center, 
        .footer-col-connect {
            flex-basis: 100%; 
            min-width: 100%;
            text-align: center; 
        }
        .footer-col-brand-center {
            align-items: center; 
        }
        .footer-col-connect .footer-col-title,
        .footer-col-connect .connect-info {
            text-align: center;
        }
        .footer-socials {
            justify-content: center; 
        }
    }
}

/* ========================================================================= */
/* --- 12. MOBILE RESPONSIVE FIXES (Critical) --- */
/* ========================================================================= */

@media screen and (max-width: 980px) {
    /* Umum */
    .section-spacing {
        padding: 5em 5%;
    }
    
    /* About Asimetris jadi Vertikal */
    .about-row, .about-row.reverse {
        flex-direction: column;
        margin-bottom: 4em;
    }
    .about-text, .about-image {
        width: 100%;
        padding: 0;
        margin-bottom: 2em;
    }
    .about-row.reverse .about-image {
        order: 1; /* Pindah gambar ke atas */
        margin-bottom: 1em;
    }
    .about-row.reverse .about-text {
        order: 2;
    }

    /* Contact */
    .contact-inner {
        flex-direction: column;
        gap: 2em;
    }
}

@media screen and (max-width: 736px) {
    /* Hero */
    .main-headline {
        font-size: 2.5em;
    }
    
    /* Gallery unik jadi 2 kolom (tetap unik) */
    .mini-gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom di HP */
        grid-gap: 10px;
    }
    /* Di HP, kita buat pola lebih sederhana agar tidak terlalu padat */
    .mini-gallery-grid .item-1, .mini-gallery-grid .item-4, .mini-gallery-grid .item-5 { 
        grid-column: span 1; 
        grid-row: span 1;
        /* Menghilangkan pola tinggi/lebar di HP untuk kecepatan */
    }
    
    /* WhatsApp Button lebih kecil */
    #whatsapp-fixed-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5em;
    }
}


/* ========================================================================= */
/* --- ODOO STYLE ANIMATIONS --- */
/* ========================================================================= */

/* 1. Base Class (Kondisi Awal: Tersembunyi & Siap Animasi) */
.o_animate {
    visibility: hidden; /* Sembunyi dulu sebelum di-scroll */
    animation-duration: 1s;
    animation-fill-mode: both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* 2. Keyframes: Fade In + Slide From Left */
@keyframes o_anim_fade_in_left {
    0% {
        opacity: 0;
        transform: translate3d(-100px, 0, 0); /* Muncul dari kiri sejauh 100px */
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0); /* Posisi normal */
    }
}

/* 3. Class Penggabung (Trigger Animasi) */
.o_anim_fade_in.o_anim_from_left {
    animation-name: o_anim_fade_in_left;
}

/* 4. State Visible (Saat JS mendeteksi scroll) */
.o_animate.o_visible {
    visibility: visible;
    animation-play-state: running;
}

/* OPSI TAMBAHAN: Biar gallery muncul berurutan (Staggered Delay) */
/* Item 2 delay 0.1s, Item 3 delay 0.2s, dst */
.gallery-item:nth-child(2) .o_animate { animation-delay: 0.1s; }
.gallery-item:nth-child(3) .o_animate { animation-delay: 0.2s; }
.gallery-item:nth-child(4) .o_animate { animation-delay: 0.3s; }
.gallery-item:nth-child(5) .o_animate { animation-delay: 0.4s; }

/* ========================================================================= */
/* --- ANIMASI ODOO (MASUK DARI KIRI SATU-PER-SATU) --- */
/* ========================================================================= */

/* 1. Definisi Keyframes (Gerakan) */
@keyframes odooSlideInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-200px, 0, 0); /* Dari Kiri Jauh */
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0); /* Ke Posisi Asli */
    }
}
@keyframes odooSlideInRight {
    0% {
        opacity: 0;
        transform: translate3d(200px, 0, 0); /* Dari KANAN (+200px) */
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0); /* Ke Posisi Asli */
    }
}

.o_anim_fade_in_right { /* Class baru untuk teks di blok 2 */
    animation-name: odooSlideInRight !important; 
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* 2. Class Dasar (Default Hidden) */
.o_animate {
    opacity: 0; /* Wajib hidden di awal */
    /* Jangan pasang animation-name di sini, nanti jalan duluan sebelum scroll */
}

/* 3. Class Pemicu (Saat JS mendeteksi scroll) */
.o_animate.o_visible {
    animation-duration: 1s;          /* Durasi total gerakan */
    animation-fill-mode: both;       /* Diam di posisi akhir */
    animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1); /* Gerakan elegan */
}

.anim-from-left.o_animate.o_visible {
    animation-name: odooSlideInLeft !important;
}

.anim-from-right.o_animate.o_visible {
    animation-name: odooSlideInRight !important;
}

/* 4. STAGGERED DELAY (KUNCI RAHASIA "SATU PER SATU") */
/* Ini yang membuat gambar masuk berurutan: tek... tek... tek... */
.item-1 .o_animate.o_visible { animation-delay: 0s; }
.item-2 .o_animate.o_visible { animation-delay: 0.15s; }
.item-3 .o_animate.o_visible { animation-delay: 0.3s; }
.item-4 .o_animate.o_visible { animation-delay: 0.45s; }
.item-5 .o_animate.o_visible { animation-delay: 0.6s; }

/* RESPONSIVE MOBILE */
@media screen and (max-width: 768px) {
    .mini-gallery-grid {
        display: flex;
        flex-direction: column; /* Tumpuk ke bawah di HP */
        gap: 15px;
    }
    .mini-gallery-grid {
        grid-template-rows: auto; /* Tinggi otomatis di HP */
    }
    .gallery-item {
        height: 250px; /* Tinggi fix di HP */
    }
}

/* ========================================================================= */
/* --- 6. THE INVESTMENT (4 PILLARS - 1:3 RATIO) --- */
/* ========================================================================= */

.investment-header {
    text-align: center;
    margin-bottom: 3em;
}

/* Grid Layout: 4 Kolom */
.pillars-grid.four-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Kolom Rata */
    gap: 20px; /* Jarak antar pilar dipersempit agar terlihat menyatu */
    max-width: 1400px; /* Perlebar container agar pilar tidak terlalu kurus */
    margin: 0 auto;
    padding: 0 2%;
}

/* Base Card */
.pillar-card {
    display: block;
    text-decoration: none;
    position: relative;
}

/* Image Container (THE SKYSCRAPER RATIO 1:3) */
.pillar-image {
    width: 100%;
    aspect-ratio: 1 / 1.7; 
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5em;
    background-color: #f0f0f0;
}

.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Overlay Rose Gold */
.pillar-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(183, 110, 121, 0.15); /* Tint sangat tipis */
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* --- VISUAL POLISH TYPOGRAPHY --- */

.pillar-content {
    text-align: center;
    position: relative;
    padding-top: 10px;
}

/* Nomor Urut Kecil (Visual Detail) */
.pillar-number {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75em;
    color: #ccc; /* Abu-abu muda elegan */
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 700;
}

/* Judul Kategori */
.pillar-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em; /* Ukuran font disesuaikan agar muat 1 baris */
    color: var(--color-primary);
    margin: 0 0 0.3em 0;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Deskripsi Singkat di Bawah */
.pillar-desc {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    font-weight: 400;
    margin-top: 0.5em; 
}

.center-aligned {
    text-align: center;
}

.pillars-grid-footer {
    text-align: center;
    margin-top: 4em; /* Jarak dari pilar ke tombol */
}

/* --- INTERAKSI HOVER --- */

.pillar-card:hover .pillar-image img {
    transform: scale(1.03); /* Zoom in halus */
}
.pillar-card:hover .pillar-overlay {
    opacity: 1;
}
.pillar-card:hover h3 {
    color: var(--color-accent-rose-gold); /* Judul berubah jadi Rose Gold */
}
.pillar-card:hover .pillar-number {
    color: var(--color-accent-rose-gold); /* Nomor juga berubah */
}

.no-bottom-spacing {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.no-top-spacing {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* --- RESPONSIVE ADJUSTMENTS --- */

@media screen and (max-width: 1024px) {
    /* Tablet: Ubah jadi 2 kolom (2 baris) */
    .pillars-grid.four-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    /* Di Tablet, rasio 1:3 mungkin terlalu tinggi, kita turunkan sedikit ke 2:3 agar nyaman */
    .pillar-image {
        aspect-ratio: 2 / 3; 
    }
}

@media screen and (max-width: 600px) {
    /* HP: Ubah jadi 1 kolom (Vertical scroll) */
    .pillars-grid.four-columns {
        grid-template-columns: 1fr;
    }
    .pillar-image {
        aspect-ratio: 3 / 4; /* Rasio standar di HP */
    }
}

/* ========================================================================= */
/* --- 7. FAQ SECTION (ACCORDION) --- */
/* ========================================================================= */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2em 0;
}

.faq-container .section-heading,
.faq-container .section-subheading {
    text-align: center;
}

.accordion-item {
    border-bottom: 1px solid var(--color-light-grey); /* Border tipis, minimalis */
    margin-bottom: 0;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5em 0;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

/* Aksen Rose Gold pada Header */
.accordion-header:hover,
.accordion-header[aria-expanded="true"] {
    color: var(--color-accent-rose-gold); 
}

/* Judul Pertanyaan */
.accordion-title {
    font-family: 'Playfair Display', serif; /* Font mewah untuk pertanyaan */
    font-weight: 600;
}

/* Ikon Buka/Tutup (+/-) */
.accordion-icon {
    font-size: 1.5em;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--color-primary);
    line-height: 1;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg); /* Putar ikon '+' menjadi 'x' atau ubah ke '-' */
    color: var(--color-accent-rose-gold);
}

/* Isi Jawaban */
.accordion-content {
    padding: 0 0 1.5em 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out; /* Transisi untuk buka/tutup */
}

.accordion-content[hidden] {
    display: none; /* Fallback for browsers without JS */
}

.accordion-content p {
    font-size: 0.95em;
    line-height: 1.7;
    padding-right: 20px;
}

#faqs.section-spacing {
    padding-top: 5px !important; 
    padding-bottom: 10px !important; 
}



/* ========================================================================================================================= */
/* --- 10. PACKAGES & PRICING PAGE --- */
/* ========================================================================================================================= */

/* --- A. PACKAGES HERO --- */
#packages-hero {
    height: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    z-index: 3; 
}

.hero-image-full {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    min-width: 100%;
    min-height: 100%;
    z-index: 5;
    object-fit: cover;
    filter: grayscale(20%); 
    transition: filter 0.5s ease;
}

#packages-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 6;
}

.hero-content {
    position: relative;
    z-index: 7; 
    color: #ffffff; 
    text-align: center;
    padding: 20px;
    max-width: 90%; /* Konten tidak terlalu lebar */
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 3.5em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em; 
    
    margin-bottom: 0.3em;
    border-bottom: 2px solid var(--color-accent-rose-gold); /* Garis Rose Gold di bawah judul */
    padding-bottom: 15px;
    display: inline-block; /* Agar garis border hanya selebar teks */
}

.hero-content p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.2em;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 700px;
    margin: 10px auto 0;
    color: rgba(0, 0, 0, 0.7);
}

/* ========================================================================================================================= */
/* --- MENU NAVIGASI --- */
/* ========================================================================================================================= */

/* 2. DEFINISI ULANG MENU (PASTI MUNCUL) */
#menu {
    position: fixed !important;
    top: 0 !important;
    right: -320px !important;
    width: 300px !important;
    height: 100vh !important;
    z-index: 10000 !important;
    
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('../images/background/menu_bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    
    transition: right 0.4s ease, visibility 0.4s ease !important;
    visibility: hidden;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);

    padding: 0 !important;
    overflow: hidden !important; 
    
    display: block !important; 
}

#menu > .inner {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important; /* KUNCI: Paksa tinggi 100% layar */
    width: 100% !important;
    padding: 0 !important;
}

#menu .links {
    flex-grow: 1 !important;
    overflow-y: auto !important;
    width: 100%;
    padding: 0 2em !important;
    margin: 0 !important;
    scrollbar-width: thin; 
}

#menu .links::-webkit-scrollbar { width: 4px; }
#menu .links::-webkit-scrollbar-thumb { background: #ccc; }

/* 3. LOGIKA PEMBUKA (JEMBATAN KE JAVASCRIPT) */
body.is-menu-visible #menu {
    right: 0 !important;  
    visibility: visible !important;
}

/* 4. TOMBOL CLOSE (X) */
.close-menu-btn {
    position: absolute !important;
    top: 5px !important;
    right: 40px !important;
    font-size: 1.6em !important;
    color: #B76E79 !important;
    text-shadow: 0 0 8px rgba(183, 110, 121, 0.7);
    transition: transform 0.2s ease, color 0.2s ease;
    z-index: 10005 !important;
    display: block !important;
}

.close-menu-btn:hover {
    color: #cc8490 !important;
    transform: rotate(90deg);
}

.menu-brand-header {
    flex: 0 0 auto !important;
    padding-top: 40px !important;
    padding-left: 20px !important;
    padding-right: 2em !important;
    padding-bottom: 40px !important;
    width: 100%;
    text-align: center;
}

.menu-tagline {
    display: none !important; 
}

.menu-logo-text {
    display: block !important;
    width: 180px !important;
    height: 90px !important; 
    margin: 0 auto !important;
    
    text-indent: -9999px !important; 
    overflow: hidden !important;
    color: transparent !important;
    
    background-image: url('../images/background/logo.png') !important;
    
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: contain !important;

    border: none !important;
    padding: 0 !important;
}

/* --- 5. ITEM MENU (FINAL CLEAN LOOK) --- */
#menu .links li a:not(.submenu-link) {
    display: block !important;
    font-size: 1.25em !important;
    font-weight: 700 !important;
    color: #222 !important;
    padding: 0.5em 0 !important; 
    border-bottom: none !important; 
    letter-spacing: 2px !important;
    transition: color 0.2s ease, padding 0.2s ease;
}

#menu .links li a:not(.submenu-link):hover {
    color: var(--color-accent-rose-gold) !important;
    padding-left: 10px;
}

/* 6. SUBMENU KECIL */
.submenu-item a.submenu-link {
    font-size: 0.8em !important;
    font-weight: 550 !important;
    color: #434343 !important;
    padding: 0.3em 0 !important;
    text-transform: uppercase !important;
}

#menu .links li a,
.submenu-item a.submenu-link {
    text-align: left !important;
}

#menu .links ul {
    padding-bottom: 20px !important; /* Jarak aman di akhir scroll */
}

.menu-quick-contact {
    flex: 0 0 auto !important;
    margin-top: auto !important; 
    width: 100% !important;
    padding: 20px 2em 30px 2em !important; 
    border-top: 1px solid rgba(183, 110, 121, 0.3) !important;
    background-color: transparent !important;
}

.contact-link-menu {
    display: block !important;
    font-size: 0.9em !important;
    margin-bottom: 5px !important;
    color: #555 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
}

.contact-link-menu:hover {
    color: var(--color-accent-rose-gold) !important; /* Berubah jadi Rose Gold */
    padding-left: 5px; /* Sedikit geser ke kanan agar terlihat interaktif */
}

.contact-link-menu i {
    margin-right: 12px !important;
    transition: transform 0.3s ease !important;
    width: 20px;
    text-align: center;
}

.contact-link-menu:hover i {
    color: var(--color-accent-rose-gold) !important;
    transform: scale(1.2); /* Icon sedikit membesar saat dihover */
}

#menu ul, 
#menu ol, 
#menu li, 
#menu .links,
#menu .submenu-item {
    list-style: none !important;      /* Matikan style list */
    list-style-type: none !important; /* Matikan tipe ikon list */
    list-style-image: none !important; /* Matikan gambar list */
}

/* 2. GESER SUBMENU KE KANAN (INDENTASI LEBIH DALAM) */
.submenu-item {
    margin-left: 20px !important;
    border-left: 2px solid var(--color-accent-rose-gold) !important;
    padding-left: 15px !important;
}

.submenu-item a.submenu-link {
    font-size: 0.85em !important; 
    padding: 0.5em 0 !important; /* Beri sedikit napas vertikal */
    display: block !important;
    text-decoration: none !important; /* Hapus garis bawah link jika ada */
}

/* ========================================================================= */
/* ---  PRICING MASTER  --- */
/* ========================================================================= */

/* 1. CONTAINER & JUDUL */
.pricing-section {
    padding: 80px 20px;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-category-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.pricing-category-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    letter-spacing: 0.2em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pricing-category-title p {
    letter-spacing: 3px !important; /* Memberikan kesan eksklusif */
    text-transform: uppercase;
    font-size: 0.85em !important;
    opacity: 0.7;
}

.category-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-accent-rose-gold);
    margin: 0 auto;
}

.section-spacer {
    height: 120px; /* Tinggi total area pemisah */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-spacer::after {
    content: '';
    width: 550px;
    height: 1px;
    background-color: var(--color-accent-rose-gold);
    opacity: 0.5; 
    background: linear-gradient(
        to right, 
        transparent, 
        var(--color-accent-rose-gold), 
        transparent
    );
}

/* 2. GRID SYSTEM (FLEXBOX CENTER) */
.pricing-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important; /* Kartu sisa otomatis di tengah */
    gap: 30px !important;
    width: 100%;
}

/* 3. KARTU HARGA*/
.price-card {
    flex: 0 1 350px !important;
    display: flex !important;
    flex-direction: column !important; 
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative; /* Untuk badge popular */
    height: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02); 
}

/* Efek Hover Mewah */
.price-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(183, 110, 121, 0.12) !important;
    border-color: rgba(183, 110, 121, 0.6);
}

/* 4. POPULAR CARD (Highlight) */
.price-card.popular-card {
    border: 1px solid var(--color-accent-rose-gold) !important;
    box-shadow: 0 10px 25px rgba(183, 110, 121, 0.1) !important;
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-rose-gold);
    color: #fff;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 20px;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* 5. TYPOGRAPHY & CONTENT */

/* Nama Paket */
.package-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #222;
    text-transform: uppercase;
    font-weight: 700;
}

/* Harga */
.price-container {
    margin-bottom: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #333;
}

.price-prefix {
    display: block;
    font-size: 0.8em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

.currency {
    font-family: 'Playfair Display', serif;
    font-size: 0.6em;
    vertical-align: top;
    margin-right: 5px;
    position: relative;
    top: 0.5em;
    font-weight: 700;
    color: #999999 !important;
}

.amount {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 2.5em;
    letter-spacing: 0px;
    
    color: #222222 !important;
}

.period {
    font-size: 1em;
    color: #999;
}

/* Deskripsi Pendek */
.package-desc {
    font-size: 0.85em;
    color: #666;
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    line-height: 1.5;
    min-height: 40px; /* Menjaga kerapian jika deskripsi panjang/pendek */
}

/* List Fitur */
.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    
    /* LOGIKA TOMBOL RATA BAWAH */
    margin-bottom: auto !important; /* Dorong elemen setelahnya (tombol) ke dasar */
}

.package-features li {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95em;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.03); /* Garis bantu super tipis */
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li strong {
    color: #000;
    font-weight: 500;
}

/* 6. TOMBOL (GHOST BUTTON) */
.button.ghost-button {
    background-color: transparent !important;
    border: 1px solid #333 !important;
    color: #333 !important;
    font-size: 0.8em !important;
    letter-spacing: 2px !important;
    padding: 0 30px !important;
    height: 45px !important;
    line-height: 43px !important; /* Center text vertical */
    box-shadow: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100%; /* Tombol Full Width di dalam kartu */
    display: block;
    text-align: center;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

button.ghost-button:hover {
    background-color: var(--color-accent-rose-gold) !important;
    color: #fff !important;
    border-color: var(--color-accent-rose-gold) !important;
}

.button.ghost-button:hover,
.button.ghost-button.active {
    border-color: var(--color-accent-rose-gold) !important;
    color: var(--color-accent-rose-gold) !important;
}

.button.ghost-button.active {
    background-color: var(--color-accent-rose-gold) !important; /* Solid color untuk Popular */
    color: #fff !important;
}

/* 7. ADD-ONS WIDE LAYOUT (Horizontal List) */
.price-card.wide-card {
    flex: 0 1 500px !important;
    max-width: 100%;
}

.price-card.wide-card .package-desc {
    min-height: auto; /* Reset height constraint */
    text-align: center;
}

.addon-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    width: 100%;
    text-align: left; /* Reset text align */
}

.addon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.addon-name {
    font-weight: 500;
    color: #444;
}

.addon-price {
    font-weight: 700;
    color: var(--color-accent-rose-gold);
    font-family: 'Roboto', sans-serif;
}

/* 8. RESPONSIVE FIX (MOBILE & TABLET) */
@media screen and (max-width: 980px) {
    .pricing-grid {
        gap: 20px !important;
    }
    .price-card {
        flex: 0 1 48% !important; /* Tablet: 2 Kolom */
    }
    .price-card.wide-card {
        flex: 0 1 100% !important; /* Wide card jadi full */
    }
    .pricing-category-title h2 {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 600px) {
    .pricing-section {
        padding: 60px 15px;
    }
    .price-card {
        flex: 0 1 100% !important; /* HP: 1 Kolom Full */
        margin-bottom: 20px;
        padding: 30px 20px;
    }
    .addon-row {
        font-size: 0.9em;
    }
}


/* ========================================================================= */
/* --- CONTACT PAGE: ASYMMETRICAL EDITORIAL LAYOUT (SAFE MODE) --- */
/* ========================================================================= */

/* 1. CONTAINER UTAMA (SPLIT LAYOUT) */
.contact-split-container {
    display: flex;
    flex-wrap: wrap;
    /* Pastikan minimal setinggi layar agar tidak ada gap putih aneh */
    min-height: 85vh; 
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

/* 2. SISI KIRI: INFO & MAPS */
.contact-info-side {
    flex: 1;
    min-width: 300px; /* Batas minimal lebar sebelum wrap */
    background-color: #f9f9f9; /* Abu sangat muda untuk kontras halus */
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    animation: fadeInLeft 1s ease both;
}

.info-wrapper {
    padding: 60px 40px;
    flex: 0 0 auto;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
}

.divider-small {
    width: 40px;
    height: 2px;
    background: var(--color-accent-rose-gold); /* Mengambil variabel dari skrip Anda */
    margin-bottom: 25px;
}

.info-desc {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
}

/* LIST DETAIL KONTAK */
.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details-list li {
    margin-bottom: 35px !important;
    border-left: 2px solid rgba(183, 110, 121, 0.2);
    padding-left: 20px !important;
}

.contact-details-list .label {
    display: block;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-details-list .value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #111;
    line-height: 1.6;
}

/* MAP CONTAINER (Style Elegan) */
.map-container {
    flex: 1; /* Mengisi sisa ruang kosong ke bawah */
    min-height: 300px;
    background: #e0e0e0;
    
    /* Visual Polish: Map Hitam Putih agar mewah */
    filter: grayscale(100%); 
    transition: filter 0.5s ease;
}

.map-container:hover {
    filter: grayscale(0%); /* Berwarna saat mouse di atasnya */
}

/* 3. SISI KANAN: FORMULIR */
.contact-form-side {
    flex: 1.5;
    min-width: 350px;
    background-color: #ffffff;
    padding: 80px 60px;
    
    display: flex;
    align-items: center; 
    justify-content: center;

    animation: fadeInRight 1s ease both;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-wrapper {
    width: 100%;
    max-width: 600px;
}

.form-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em !important;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
    color: #222;
}
.form-subheading {
    color: #777;
    margin-bottom: 50px;
    font-size: 0.95em;
    font-family: 'Roboto', sans-serif;
}

/* 4. GAYA INPUT (UNDERLINE STYLE - MONOLITH) */
.form-group {
    margin-bottom: 35px;
    position: relative;
}

.form-group:focus-within::after {
    width: 100%;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent-rose-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.form-group label {
    display: block;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 10px;
}

/* Reset Input Bawaan & Terapkan Gaya Garis Bawah */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd; /* Hanya garis bawah tipis */
    padding: 10px 0;
    
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    color: #333;
    
    border-radius: 0;
    outline: none;
    box-shadow: none; /* Hilangkan shadow bawaan browser */
    transition: border-color 0.3s ease;
}

/* Efek saat diketik: Garis jadi Rose Gold */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--color-accent-rose-gold) !important;
}

/* Form Row (2 Kolom Sejajar) */
.form-row {
    display: flex;
    gap: 30px;
}

.form-group.half {
    flex: 1; /* Membagi ruang sama rata */
}

/* Select Styling Wrapper (Agar panah rapi) */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f107'; /* Icon FontAwesome Angle Down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent-rose-gold);
    pointer-events: none; /* Agar panah tidak menghalangi klik */
}

select {
    appearance: none; /* Hilangkan panah asli browser */
    -webkit-appearance: none;
}

/* 5. TOMBOL AKSI (CUSTOM BUTTONS) */
.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Tombol Solid (WhatsApp) */
.button.primary-solid {
    background-color: var(--color-accent-rose-gold) !important;
    color: #fff !important;
    border: 1px solid var(--color-accent-rose-gold) !important;
    
    padding: 0 30px !important;
    height: 50px !important;
    line-height: 48px !important;
    
    letter-spacing: 2px !important;
    font-size: 0.85em !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.button.primary-solid:hover {
    background-color: #9e5b65 !important; /* Rose Gold lebih gelap */
    border-color: #9e5b65 !important;
    transform: translateY(-2px);
}

/* Tombol Ghost Dark (Email) */
.button.ghost-dark {
    background-color: transparent !important;
    color: #333 !important;
    border: 1px solid #333 !important;
    
    padding: 0 30px !important;
    height: 50px !important;
    line-height: 48px !important;
    
    letter-spacing: 2px !important;
    font-size: 0.85em !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.button.ghost-dark:hover {
    background-color: #333 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.button.primary-solid:active, 
.button.ghost-dark:active {
    transform: scale(0.95) !important; /* Efek membal saat ditekan */
    transition: transform 0.1s ease;
}

.form-note {
    font-size: 0.75em;
    color: #aaa;
    margin-top: 15px;
    font-style: italic;
}

/* 6. RESPONSIVE FIXES (MOBILE) */
@media screen and (max-width: 980px) {
    .contact-split-container {
        flex-direction: column-reverse; /* Peta di bawah, Form di atas (UX Mobile) */
    }
    
    .contact-form-side {
        padding: 60px 25px; /* Kurangi padding di HP */
    }
    
    .info-wrapper {
        padding: 50px 25px;
    }
    
    .form-heading {
        font-size: 2.2em;
    }
    
    .form-row {
        flex-direction: column; /* Input tanggal & layanan jadi atas-bawah */
        gap: 0;
    }
    
    .form-actions {
        flex-direction: column; /* Tombol jadi atas-bawah */
    }
    
    .button.full-width-mobile {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 10px;
    }
}


/* ========================================================================= */
/* --- 7. MOBILE OPTIMIZATION (KHUSUS HP) --- */
/* Kode di bawah ini TIDAK AKAN mengganggu tampilan Desktop */
/* ========================================================================= */

@media screen and (max-width: 768px) {

    /* --- A. HEADER & NAVIGASI --- */
    /* Sembunyikan tombol header desktop agar tidak penuh sesak */
    .desktop-only {
        display: none !important;
    }

    #header {
        padding: 15px 20px; /* Perkecil padding header */
    }

    #header h1 a {
        font-size: 1.2rem; /* Perkecil logo teks */
    }

    /* --- B. TYPOGRAPHY (TEKS) --- */
    /* Kecilkan judul raksasa agar muat di layar HP */
    h1, .hero-title {
        font-size: 2.2rem !important; 
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    p {
        font-size: 0.95rem !important; /* Teks paragraf lebih nyaman dibaca */
        line-height: 1.6 !important;
    }

    /* --- C. LAYOUTING (UMUM) --- */
    /* Mengubah semua layout samping-sampingan menjadi atas-bawah */
    .inner, section {
        padding: 40px 20px !important; /* Hemat ruang layar (sebelumnya mungkin 100px) */
    }

    /* --- D. HALAMAN KONTAK (contact.html) --- */
    .contact-split-container {
        display: flex;
        flex-direction: column-reverse; /* Peta di Bawah, Form di Atas (atau sebaliknya) */
    }

    .contact-map-side {
        height: 300px; /* Batasi tinggi peta di HP */
        width: 100%;
    }

    .contact-form-side {
        width: 100%;
        padding: 0 0 40px 0;
    }

    /* Tombol jadi lebar penuh agar mudah ditekan jempol */
    .full-width-mobile {
        width: 100% !important;
        display: block;
        margin-bottom: 10px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    /* --- E. HALAMAN PAKET (packages.html) --- */
    /* Asumsi Anda menggunakan Flexbox/Grid untuk daftar paket */
    .packages-grid, .pricing-container {
        display: flex;
        flex-direction: column; /* Paket jadi berurutan ke bawah */
        gap: 30px;
    }

    .package-card {
        width: 100%; /* Kartu paket memenuhi lebar layar */
        margin: 0;
    }

    /* --- F. HERO SECTION (index.html) --- */
    /* Agar background tidak nge-zoom berlebihan di HP */
    .hero-section {
        background-attachment: scroll !important; /* Matikan efek parallax di HP biar ringan */
        background-position: center center;
        min-height: 60vh; /* Tinggi hero tidak perlu full screen */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        padding: 0 15px;
    }

    #the-investment .pillars-grid {
        display: grid !important;
        /* Membagi menjadi 2 kolom sama rata */
        grid-template-columns: 1fr 1fr !important; 
        gap: 15px !important;
        padding: 0 15px !important;
    }

    /* 2. Kartu Per Item (The Pillar Card) */
    .pillar-card {
        width: 100% !important;
        margin-bottom: 0 !important;
        display: block !important;
    }

    /* 3. Gambar di dalam kartu agar tidak gepeng */
    .pillar-image {
        width: 100% !important;
        height: auto !important; /* Matikan tinggi statis 180px yang tadi */
        
        /* Set Rasio 1 (lebar) : 1.5 (tinggi) atau setara 2:3 */
        aspect-ratio: 2 / 3 !important; 
        
        overflow: hidden !important;
        position: relative !important;
    }

    .pillar-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* KUNCINYA: Gambar akan terpotong rapi, bukan ditarik */
        object-position: center !important;
    }

    /* 4. Teks di dalam kartu (The Portrait, The Wedding, dll) */
    .pillar-content h3 {
        font-size: 0.9rem !important;
        letter-spacing: 1px !important;
    }

    .pillar-desc {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
        display: block !important;
    }

    body {
    background-color: #B76E79 !important;
    }
    
}

