/* ==========================================================================
   GRAHA MILENIAL - THE ABSOLUTE ULTRA LUXURY PALETTE (DARK EMERALD)
   ========================================================================== */

:root {
    --bg-dark: #050d08;         
    --surface-dark: #0b1a11;    
    --surface-light: #132a1c;   
    --gold: #D4AF37;            
    --gold-glow: rgba(212, 175, 55, 0.3);
    --gold-hover: #e5c158;
    --text-bright: #ffffff;     
    --text-muted: #8fa096;      
    --border-premium: rgba(212, 175, 55, 0.3);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--bg-dark); color: var(--text-bright); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

h1, h2, h3, h4, .logo { font-family: var(--font-heading); color: var(--text-bright); font-weight: 500; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-header h2 { font-size: 46px; margin-top: 10px; font-weight: 600; line-height: 1.2; letter-spacing: -0.5px; }
.subtitle { display: inline-block; font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); font-weight: 700; font-family: var(--font-body); }

/* --- BUTTONS & ANIMATIONS --- */
.btn-gold-solid, .btn-submit-vip { 
    background: linear-gradient(135deg, var(--gold), #b39229); color: #000; padding: 18px 40px; border-radius: 4px; text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; display: inline-block; transition: var(--transition); border: none; cursor: pointer; text-align: center; position: relative; overflow: hidden; z-index: 1; 
}
.btn-gold-solid::after, .btn-submit-vip::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); transition: all 0.7s ease; z-index: -1; }
.btn-gold-solid:hover::after, .btn-submit-vip:hover::after { left: 150%; }
.btn-gold-solid:hover, .btn-submit-vip:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 15px 35px var(--gold-glow); }

.btn-white-outline { background: transparent; color: var(--text-bright); padding: 16px 40px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.4); text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; display: inline-block; transition: var(--transition); }
.btn-white-outline:hover { border-color: var(--text-bright); background: rgba(255,255,255,0.1); transform: translateY(-4px); }

.btn-gold-outline { border: 1px solid var(--gold); color: var(--gold); padding: 12px 28px; border-radius: 4px; text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 11px; transition: var(--transition); }
.btn-gold-outline:hover { background: var(--gold); color: #000; transform: translateY(-2px); box-shadow: 0 8px 20px var(--gold-glow); }

.btn-detail-view { display: flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid rgba(212, 175, 55, 0.3); color: var(--gold); padding: 15px; border-radius: 4px; text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 11px; transition: var(--transition); margin-top: 25px; background: transparent; position: relative; overflow: hidden; }
.btn-detail-view .arrow { transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); font-size: 14px; }
.btn-detail-view:hover { background: rgba(212, 175, 55, 0.08); border-color: var(--gold); box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.1); }
.btn-detail-view:hover .arrow { transform: translateX(6px); }

/* --- NAVBAR --- */
.navbar { position: fixed; width: 100%; top: 0; z-index: 1000; padding: 35px 0; transition: var(--transition); background: linear-gradient(to bottom, rgba(5,13,8,0.95) 0%, rgba(5,13,8,0) 100%); }
.navbar.scrolled { background: rgba(5, 13, 8, 0.98); backdrop-filter: blur(20px); padding: 18px 0; box-shadow: 0 10px 40px rgba(0,0,0,0.3); border-bottom: 1px solid rgba(212, 175, 55, 0.15); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; letter-spacing: 5px; font-weight: 600; color: #fff; }
.menu { list-style: none; display: flex; gap: 45px; }
.menu a { text-decoration: none; color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; transition: var(--transition); }
.menu a:hover { color: var(--gold); }

/* --- HERO SECTION --- */
.hero-section { height: 100vh; min-height: 800px; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(5, 13, 8, 0.8) 0%, rgba(11, 26, 17, 0.9) 100%); z-index: -1; }
.hero-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=2000&q=80'); background-size: cover; background-position: center; z-index: -2; animation: slowZoom 25s infinite alternate ease-in-out; }
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-content { max-width: 950px; padding: 0 5%; z-index: 1; margin-top: 60px; }
.badge-premium { display: inline-block; border: 1px solid var(--gold); background: rgba(212, 175, 55, 0.08); color: var(--gold); padding: 8px 24px; border-radius: 50px; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 30px; }
.hero-content h1 { font-size: 68px; color: #fff; line-height: 1.15; margin-bottom: 25px; font-weight: 600; }
.hero-content p { font-size: 18px; color: var(--text-muted); margin-bottom: 50px; font-weight: 300; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; color: #fff; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; opacity: 0.5; transition: var(--transition); }
.scroll-indicator:hover { opacity: 1; color: var(--gold); }
.scroll-indicator span { margin-bottom: 10px; }
.mouse { width: 22px; height: 34px; border: 1px solid currentColor; border-radius: 15px; position: relative; }
.mouse::before { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 2px; height: 6px; background: currentColor; border-radius: 2px; animation: scrollDown 1.5s infinite; }
@keyframes scrollDown { 0% { top: 6px; opacity: 1; } 100% { top: 18px; opacity: 0; } }

/* --- PROMO STRIP (Sesuai Gambar User) --- */
.promo-strip { border-top: 1px solid rgba(212,175,55,0.2); border-bottom: 1px solid rgba(212,175,55,0.2); background: var(--surface-dark); padding: 25px 0; }
.promo-container { display: flex; justify-content: center; align-items: center; gap: 35px; font-size: 14px; letter-spacing: 1px; font-weight: 400; color: var(--text-bright); flex-wrap: wrap; }
.gold-text { color: var(--gold); font-size: 16px; margin-right: 5px; }

/* --- CORE PHILOSOPHY --- */
.features-section { padding: 140px 5%; background-color: var(--bg-dark); }
.features-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; }
.feature-card { background: var(--surface-dark); padding: 50px 35px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.03); transition: var(--transition); position: relative; }
.feature-card:hover { transform: translateY(-12px); border-color: var(--gold); background: var(--surface-light); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.card-number { font-family: var(--font-heading); font-size: 48px; color: rgba(212, 175, 55, 0.15); margin-bottom: 15px; line-height: 1; transition: var(--transition); }
.feature-card:hover .card-number { color: rgba(212, 175, 55, 0.4); transform: translateX(10px); }
.feature-card h3 { font-size: 22px; margin-bottom: 15px; font-family: var(--font-body); font-weight: 500; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

/* --- RESIDENCES COLLECTION --- */
.type-section { padding: 140px 5%; background: var(--surface-dark); border-top: 1px solid rgba(255,255,255,0.03); } 
.type-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.type-card { background: var(--bg-dark); border-radius: 4px; overflow: hidden; transition: var(--transition); border: 1px solid rgba(255,255,255,0.05); }
.type-card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.6); border-color: var(--gold); }
.card-img-box { position: relative; height: 320px; overflow: hidden; margin: 0; }
.property-img { width: 100%; height: 100%; object-fit: cover; transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); opacity: 0.8; }
.type-card:hover .property-img { transform: scale(1.08); opacity: 1; }
.card-badge { position: absolute; top: 25px; right: 25px; background: rgba(5,13,8,0.9); border: 1px solid var(--gold); color: var(--gold); padding: 6px 14px; border-radius: 2px; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.card-content { padding: 45px 40px; }
.card-content h3 { font-size: 32px; margin-bottom: 25px; letter-spacing: -0.5px; }
.specs-grid { display: flex; gap: 20px; margin-bottom: 25px; }
.spec-item { flex: 1; border-top: 1px solid rgba(212,175,55,0.15); border-bottom: 1px solid rgba(212,175,55,0.15); padding: 15px 0; text-align: center; font-size: 16px; font-weight: 700; color: #fff; }
.spec-item span { display: block; font-size: 10px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.room-details { font-size: 14px; color: var(--text-muted); padding-bottom: 25px; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.05); text-align: center; font-weight: 400; }
.price-box { display: flex; flex-direction: column; align-items: center; }
.price-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
.price-value { font-family: var(--font-heading); font-size: 28px; color: var(--gold); font-weight: 600; }

/* --- EXPERIMENTAL MEDIA --- */
.media-section { padding: 140px 5%; background: var(--bg-dark); }
.media-container { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; height: 500px; }
.video-box { border-radius: 4px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 15px; height: 100%; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; border: 1px solid rgba(255,255,255,0.05); margin: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); opacity: 0.6; filter: grayscale(30%); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(5, 13, 8, 0.65); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-overlay span { color: #fff; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; transform: translateY(15px); transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); opacity: 1; filter: grayscale(0); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* --- PATRON JOURNAL --- */
.testi-section { padding: 140px 5%; background: var(--surface-dark); border-top: 1px solid rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.03); }
.testi-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.testi-card { background: var(--bg-dark); padding: 45px; border-radius: 4px; border: 1px solid rgba(212,175,55,0.1); position: relative; transition: var(--transition); }
.testi-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 15px 30px rgba(0,0,0,0.4); }
.quote-mark { font-family: var(--font-heading); font-size: 70px; color: rgba(212, 175, 55, 0.15); position: absolute; top: 15px; right: 35px; line-height: 1; }
.testi-card p { font-size: 15px; font-weight: 300; line-height: 1.8; margin-bottom: 35px; color: rgba(255,255,255,0.85); font-style: italic; position: relative; z-index: 2; }
.testi-author { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px; }
.stars { color: var(--gold); margin-bottom: 8px; font-size: 12px; letter-spacing: 4px; }
.testi-author h4 { font-family: var(--font-body); font-size: 13px; color: #fff; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

/* --- CONCIERGE VIP FORM --- */
.form-section { padding: 140px 5%; background: var(--bg-dark); }
.form-container { max-width: 1200px; margin: 0 auto; background: var(--surface-dark); border-radius: 4px; display: grid; grid-template-columns: 1fr 1.6fr; box-shadow: 0 40px 80px rgba(0,0,0,0.5); overflow: hidden; border: 1px solid rgba(212,175,55,0.15); }
.form-kiri { background: linear-gradient(135deg, #040c08 0%, #0b1a11 100%); color: #fff; padding: 70px 55px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(212,175,55,0.1); }
.form-kiri h2 { color: #fff; font-size: 36px; margin: 15px 0 25px; line-height: 1.2; }
.form-kiri p { color: var(--text-muted); font-weight: 300; margin-bottom: 45px; font-size: 15px; line-height: 1.7; }
.form-benefits { list-style: none; }
.form-benefits li { margin-bottom: 18px; font-size: 14px; color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 12px; font-weight: 500; }

.form-kanan { padding: 70px 55px; background-color: var(--surface-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 25px; }
.input-box { width: 100%; }
.full-width { grid-column: 1 / -1; }
.input-box label { display: block; font-size: 11px; font-weight: 700; color: var(--gold); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
.input-box input, .input-box select, .input-box textarea { width: 100%; padding: 16px 20px; background-color: rgba(5, 13, 8, 0.6); border: 2px solid rgba(212, 175, 55, 0.4); border-radius: 4px; font-size: 14px; font-family: var(--font-body); color: #ffffff; transition: var(--transition); }
.input-box input::placeholder, .input-box textarea::placeholder { color: rgba(255, 255, 255, 0.25); font-weight: 400; }
.input-box input:focus, .input-box select:focus, .input-box textarea:focus { outline: none; border-color: var(--gold); background-color: var(--bg-dark); box-shadow: 0 0 15px var(--gold-glow); }
select option { background-color: var(--surface-dark); color: #fff; }

/* --- FAQ ACCORDION --- */
.faq-section { padding: 140px 5% 150px; background: var(--surface-dark); }
.faq-container { max-width: 850px; margin: 0 auto; }
.faq-item { background: var(--bg-dark); border: 1px solid rgba(212,175,55,0.15); margin-bottom: 15px; border-radius: 4px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--gold); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.faq-btn { width: 100%; text-align: left; padding: 25px 35px; background: transparent; border: none; font-size: 16px; font-weight: 600; color: #fff; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--gold); transition: var(--transition); }
.faq-item.active .faq-icon { transform: rotate(45deg); color: #fff; }
.faq-panel { padding: 0 35px; max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.faq-item.active .faq-panel { padding: 0 35px 30px; max-height: 300px; }
.faq-panel p { color: var(--text-muted); font-size: 14px; line-height: 1.8; font-weight: 300; }

/* --- BOUTIQUE MAPS & INTEGRATED FOOTER --- */
footer { position: relative; background: var(--bg-dark); border-top: 1px solid rgba(212,175,55,0.2); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; height: 500px; }
.footer-map { height: 100%; background: #0b1a11; filter: invert(90%) hue-rotate(90deg) brightness(0.8) contrast(1.2); } 
.footer-content { background: linear-gradient(135deg, #050d08 0%, var(--surface-dark) 100%); color: #fff; padding: 90px 10%; display: flex; flex-direction: column; justify-content: center; }
.footer-brand { font-family: var(--font-heading); font-size: 28px; color: var(--gold); margin-bottom: 20px; letter-spacing: 3px; }
.footer-desc { font-weight: 300; color: var(--text-muted); margin-bottom: 45px; font-size: 14px; line-height: 1.8; max-width: 500px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 22px; }
.c-icon { font-size: 14px; color: var(--gold); }
.contact-item p { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 300; }
.footer-bottom { background: #030805; text-align: center; padding: 25px; color: #4b5850; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; border-top: 1px solid rgba(255,255,255,0.02); }

/* --- FAB WHATSAPP LUXURY --- */
.fab-wa { position: fixed; bottom: 40px; right: 40px; background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 16px 32px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; display: flex; align-items: center; gap: 12px; z-index: 1000; backdrop-filter: blur(10px); transition: var(--transition); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.fab-wa:hover { background: var(--gold); color: #000; transform: translateY(-4px); box-shadow: 0 15px 35px var(--gold-glow); }

/* --- REVEAL ANIMATIONS (SMOOTH) --- */
.reveal { opacity: 0; visibility: hidden; transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.fade-up { transform: translateY(60px); }
.reveal.active { opacity: 1; visibility: visible; transform: translateY(0); }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .type-grid { grid-template-columns: 1fr; max-width: 600px; }
    .media-container, .form-container, .footer-top { grid-template-columns: 1fr; height: auto; }
    .video-box { height: 380px; }
    .footer-map { height: 380px; }
}
@media (max-width: 768px) {
    .navbar { background: rgba(5, 13, 8, 0.98); padding: 18px 5%; border-bottom: 1px solid rgba(212, 175, 55, 0.15); }
    .navbar .logo { font-size: 18px; }
    .menu, .scroll-indicator, .promo-strip { display: none; }
    .hero-content h1 { font-size: 42px; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-kanan, .form-kiri { padding: 45px 30px; }
    .fab-wa { bottom: 25px; right: 25px; padding: 14px 24px; }
}
/* --- PREMIUM PROMO STRIP (FIXED) --- */
.promo-wrapper {
    padding: 60px 5%;
    background-color: var(--bg-dark);
}

.promo-container-premium {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--surface-dark);
    padding: 30px 40px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.promo-item {
    color: var(--text-bright);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.separator {
    width: 1px;
    height: 25px;
    background: rgba(212, 175, 55, 0.3);
}

/* RESPONSIVE: Di HP akan berubah menjadi daftar ke bawah agar rapi */
@media (max-width: 768px) {
    .promo-container-premium {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }
    .separator {
        display: none;
    }
    .promo-item {
        font-size: 13px;
    }
}
/* --- PROMO SECTION (DIPAKSA TENGAH & ANTI-LARI) --- */
.promo-section {
    padding: 80px 5%;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center; /* Paksa ke tengah secara horizontal */
    width: 100%;
}

.promo-container {
    display: flex;
    justify-content: center; /* Pastikan isi di dalam kontainer terpusat */
    width: 100%;
}

.promo-list {
    list-style: none;
    display: inline-block; /* Agar list mengikuti lebar teks */
    text-align: left;      /* Teks tetap rata kiri agar bullet rapi */
    margin: 0 auto;        /* Memberikan margin auto kiri-kanan */
}

.promo-list li {
    font-size: 20px;
    color: var(--text-bright);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.promo-list li::before {
    content: '✦';
    color: var(--gold);
    margin-right: 15px;
}
