/* === 1. DEFINISI WARNA === */
:root {
    --color-primary: #1a237e;
    /* Biru Tua (Navy) */
    --color-primary-dark: #121858;
    /* Biru Gelap */
    --color-secondary: #ffc107;
    /* Kuning Emas */
    --color-secondary-light: #ffeb3b;
    /* Kuning Terang */
    --color-bg-light: #f4f4f4;
    --color-text-dark: #333;
}

/* === 2. RESET DASAR === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* === 3. NAVBAR (BIRU TUA & KUNING) === */
/* === NAVBAR CLEAN FIX === */
.navbar {
    position: fixed;
    /* Tetap di atas */
    top: 0;
    left: 0;
    width: 100%;
    /* Pastikan memenuhi layar */
    display: flex;
    justify-content: space-between;
    /* Logo kiri, Menu tengah/kanan */
    align-items: center;
    padding: 15px 8%;
    /* Padding samping yang konsisten */
    background-color: var(--color-primary);
    /* Biru Tua */
    border-bottom: 3px solid var(--color-secondary);
    /* Garis Emas */
    z-index: 2000;
    /* Pastikan paling atas */
    box-sizing: border-box;
    /* Penting agar padding tidak merusak lebar */
}

/* Logo */
.logo {
    flex-shrink: 0;
    /* Logo tidak akan gepeng */
}

.logo a {
    color: var(--color-secondary) !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Container Menu */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    /* Jarak antar menu */
    align-items: center;
}

.nav-links li a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--color-secondary) !important;
}

/* Tombol CTA di Navbar */
.cta-nav {
    background: var(--color-secondary) !important;
    color: var(--color-primary) !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.cta-nav:hover {
    background: var(--color-secondary-light) !important;
    transform: translateY(-2px);
}

/* Penyesuaian Body agar tidak tertutup Navbar */
body {
    padding-top: 70px;
    /* Berikan ruang setinggi navbar */
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Jarak antara gambar logo dan teks */
    text-decoration: none;
}

.logo-img {
    height: 50px;
    /* Atur sesuai keinginan */
    width: auto;
    filter: drop-shadow(0 0 8px rgba(191, 149, 63, 0.4));
    /* Efek glow emas halus */
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05) rotate(2deg);
    /* Animasi kecil saat di-hover */
}

/* Styling Teks Logo agar tetap mewah di samping gambar */
.logo-text {
    font-family: 'Playfair Display', serif;
    /* Font klasik/mewah */
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.logo-text span {
    color: #bf953f;
    /* Warna Emas */
    font-size: 0.9rem;
    letter-spacing: 4px;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1rem;
    }
}


/* --- HERO SECTION REFINEMENT --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero/hero.webp') center/cover no-repeat;
    overflow: hidden;
    padding-top: 80px;
    /* Kompensasi navbar */
}

/* Overlay Gelap yang Mewah (Vignette Effect) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(26, 35, 126, 0.4) 0%, rgba(18, 24, 88, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

/* Badge di atas judul */
.badge-premium {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--color-secondary);
    /* Efek Hollow Text */
    -webkit-text-stroke: 1px var(--color-secondary);
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
}

/* Tombol */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-video-outline {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.play-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.btn-video-outline:hover .play-icon {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary);
}

/* Animasi Mouse Scroll */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--color-secondary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 2px;
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% {
        opacity: 0;
        top: 5px;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 25px;
    }
}


/*  YOUTUBE SECTION */
/* --- DOUBLE VIDEO SECTION --- */
.double-video-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.video-grid-double {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Membagi menjadi 2 kolom sama besar */
    gap: 40px;
}

.video-card-mewah {
    background: #fff;
    padding: 12px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(13, 18, 64, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: 0.4s ease;
}

.video-card-mewah:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    box-shadow: 0 20px 50px rgba(13, 18, 64, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* Rasio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Label di bawah video */
.video-label {
    margin-top: 25px;
    padding: 0 10px;
}

.video-label h3 {
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-label h3 i {
    color: #ff0000;
    /* Warna merah YouTube */
}

.video-label p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* RESPONSIVE: Di HP Jadi 1 Kolom */
@media (max-width: 850px) {
    .video-grid-double {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .video-label {
        text-align: center;
    }

    .video-label h3 {
        justify-content: center;
    }
}

/* === SECTION KEUNTUNGAN === */
.keuntungan-section {
    padding: 100px 8%;
    background-color: #ffffff;
}

.section-header-left {
    margin-bottom: 50px;
}

.section-header-left .sub-title {
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header-left .main-title {
    font-size: 2.8rem;
    color: var(--color-primary-dark);
    font-weight: 800;
    line-height: 1.2;
}

.section-header-left .main-title span {
    color: var(--color-primary);
}

.divider-left {
    width: 60px;
    height: 4px;
    background: var(--color-secondary);
    margin-top: 20px;
}

/* Grid Keuntungan */
.keuntungan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    /* Dua kolom besar */
    gap: 40px;
}

.keuntungan-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: var(--color-bg-light);
    border-radius: 20px;
    transition: 0.4s;
    border: 1px solid transparent;
}

.keuntungan-item:hover {
    background: #fff;
    border-color: var(--color-secondary);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.08);
    transform: translateY(-5px);
}

.keuntungan-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: 0.4s;
}

.keuntungan-item:hover .keuntungan-icon {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.keuntungan-text h3 {
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.keuntungan-text p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .keuntungan-grid {
        grid-template-columns: 1fr;
        /* Satu kolom di HP */
    }

    .keuntungan-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-header-left {
        text-align: center;
    }

    .divider-left {
        margin: 20px auto;
    }
}

/* --- CONTAINER & GRID --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fasilitas-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Membagi 3 kolom sama rata */
    gap: 30px;
    /* Jarak antar kotak */
    margin-top: 40px;
}

/* --- LUXURY HEADER SECTION --- */
.section-header-center-luxury {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 20px;
}

/* Badge Wrapper di paling atas */
.luxury-badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.sub-title-premium {
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.luxury-line {
    width: 30px;
    height: 1px;
    background: var(--color-secondary);
    opacity: 0.5;
}

/* Judul Utama */
.main-title-luxury {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-primary-dark);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.gold-gradient-text {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Badge Sold Out yang Elegan */
.sold-out-badge-elegant {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a237e;
    /* Navy Background */
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.15);
}

.badge-text b {
    color: var(--color-secondary);
}

/* Animasi Pulse Dot */
.pulse-icon {
    width: 8px;
    height: 8px;
    background: #ff4757;
    border-radius: 50%;
    position: relative;
}

.pulse-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff4757;
    border-radius: 50%;
    animation: luxury-pulse 2s infinite;
}

@keyframes luxury-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Divider Emas Modern */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-secondary));
}

.gold-divider::after {
    background: linear-gradient(to left, transparent, var(--color-secondary));
}

.gold-divider .dot {
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
    margin: 0 10px;
}

/* --- CARD STYLING --- */
.f-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Memastikan ikon & teks di tengah */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.f-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary);
    box-shadow: 0 15px 30px rgba(26, 35, 126, 0.1);
}

/* --- ICON BOX --- */
.f-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.f-card h3 {
    font-size: 1.3rem;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.f-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* --- HIGHLIGHT CARD (500 MDPL) --- */
.f-card.highlight-card {
    background: #fff9e6 !important;
    border: 2px dashed var(--color-secondary) !important;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .fasilitas-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 2 Kolom di Tablet */
}

@media (max-width: 768px) {
    .fasilitas-grid-modern {
        grid-template-columns: 1fr;
    }

    /* 1 Kolom di HP */
    .title-mewah {
        font-size: 2rem;
    }
}

/* Tambahkan Kode Sold Out Badge & Promo Banner Anda di bawah sini */
/* === PROMO BANNER PREMIUM === */
.promo-banner-premium {
    margin-top: 80px;
    position: relative;
    background: linear-gradient(135deg, #1a237e 0%, #0d1240 100%);
    padding: 60px 50px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    /* Biar efek glow tidak keluar */
    border: 1px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 20px 50px rgba(13, 18, 64, 0.3);
}

/* Efek Cahaya di Latar Belakang */
.banner-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.promo-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 193, 7, 0.2);
    color: var(--color-secondary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.promo-content h3 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.promo-content h3 span {
    color: var(--color-secondary);
}

.promo-content p {
    color: #cbd5e0;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Tombol Mewah yang Bersinar */
.btn-glow-gold {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 18px 35px;
    background: var(--color-secondary);
    color: var(--color-primary-dark) !important;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    text-transform: uppercase;
}

.btn-glow-gold i {
    margin-left: 10px;
    transition: 0.3s;
}

.btn-glow-gold:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.btn-glow-gold:hover i {
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .promo-banner-premium {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .promo-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .promo-content h3 {
        font-size: 1.8rem;
    }
}

/* === 6. TOMBOL CTA (KUNING EMAS) === */
.cta-button,
.btn-primary-gold {
    background-color: var(--color-secondary) !important;
    color: var(--color-primary) !important;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--color-secondary-light) !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

/* Hamburger Styling */
.hamburger {
    display: none;
    /* Sembunyi di desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 2100;
    /* Pastikan di atas menu */
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-secondary);
    /* Warna Kuning Emas */
    border-radius: 3px;
    transition: 0.3s;
}

/* Update bagian Mobile Menu */
@media (max-width: 768px) {
    .nav-links {
        display: flex !important;
        /* Paksa muncul sebagai flex */
        position: fixed;
        top: 0;
        right: -100%;
        /* Sembunyi di kanan layar */
        width: 70%;
        height: 100vh;
        background-color: var(--color-primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.4s ease-in-out;
        z-index: 2050;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    /* Ini yang membuat menu muncul */
    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex !important;
        /* Paksa muncul di mobile */
    }

    /* Animasi ke tanda silang */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* SERAH TERIMA SHM ------------------------------*/
/* --- LEGALITAS SECTION --- */
/* --- CONTAINER UTAMA & LAYOUT --- */
.luxury-legal-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Ini akan memotong semua elemen yang 'nongol' ke samping */
    padding: 100px 0;
}

.container-luxury {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Gunakan padding, jangan margin untuk jarak pinggir */
    width: 100%;
    /* Pastikan tidak melebihi lebar layar */
}

.luxury-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    /* Pastikan margin nol agar tidak mendorong keluar */
    width: 100%;
    gap: 40px;
}

.luxury-text-col {
    flex: 1;
    min-width: 320px;
}

.luxury-gallery-col {
    flex: 1.2;
    min-width: 320px;
}

/* --- ELEMEN JUDUL & BADGE --- */
.status-badge {
    background: #bf953f;
    color: white;
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
}

.luxury-title {
    font-size: 3rem;
    color: #0a1128;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
}

.gold-text {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- TRUST LIST (Gaya Kartu Modern) --- */
.trust-list-luxury {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 35px 0;
}

.trust-item {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 15px;
    border: 1px solid rgba(191, 149, 63, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: 0.4s ease;
}

.trust-icon {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #bf953f;
    font-size: 1.2rem;
    margin-right: 20px;
    min-width: 30px;
}

.trust-item p {
    margin: 0;
    color: #444;
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-item:hover {
    transform: translateX(10px);
    border-color: #bf953f;
    background: #fffcf5;
}

/* --- STATS BOX (Navy Gold Premium) --- */
.trust-stats-luxury {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #0a1128 0%, #1c2a4a 100%);
    padding: 30px 20px;
    border-radius: 20px;
    margin-top: 40px;
    position: relative;
    border: 1px solid rgba(191, 149, 63, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-box {
    text-align: center;
    flex: 1;
}

.stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(to bottom, #bf953f, #fcf6ba, #b38728);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    display: block;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(191, 149, 63, 0.5), transparent);
}

/* --- GALLERY MASONRY DESKTOP --- */
.gallery-wrapper {
    display: grid;
    gap: 15px;
}

.photo-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.photo-card:hover img {
    transform: scale(1.05);
}

.large {
    height: 450px;
}

.photo-grid-sub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.small {
    height: 180px;
}

.medium {
    grid-column: span 2;
    height: 220px;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- RESPONSIVE MOBILE OPTIMIZATION --- */
.mobile-gallery-preview {
    display: none;
}

@media (max-width: 768px) {
    .mobile-gallery-preview {
        display: block;
        margin: 25px 0;
        border-radius: 15px;
        /* Sedikit lebih kecil agar lebih elegan di HP */
        overflow: hidden;
        border: 2px solid #bf953f;
        /* Gunakan border emas agar lebih mewah dari putih */
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);

        /* Menentukan rasio gambar (pilih salah satu) */
        height: 250px;
        /* Tinggi tetap agar layout tidak melompat */
        width: 100%;
    }

    .luxury-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .status-badge {
        display: block;
        width: fit-content;
        margin: 0 auto 20px;
    }

    .luxury-gallery-col {
        display: none;
    }

    /* Galeri berat hilang di mobile */

    .mobile-gallery-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ini kuncinya: Gambar akan mengisi area tanpa gepeng */
        object-position: center;
        /* Fokus ke tengah gambar */
        display: block;
    }

    .trust-stats-luxury {
        padding: 25px 10px;
        flex-direction: row;
        /* Tetap sejajar agar eyecatching */
    }

    .stat-num {
        font-size: 1.6rem;
    }
}

/* PISIKOLOGIS */
/* --- CTA ACTION SECTION --- */
.luxury-cta-action {
    padding: 100px 0;
    background: #fdfdfd;
}

.cta-glass-card {
    background: #0a1128;
    /* Deep Navy */
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10, 17, 40, 0.3);
    border: 2px solid #bf953f;
}

/* Efek cahaya di background */
.cta-glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(191, 149, 63, 0.1) 0%, transparent 60%);
}

.cta-sub {
    color: #bf953f;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
}

.cta-heading {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.2;
}

.cta-text {
    color: #cbd5e0;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* List Alasan */
.action-reasons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(191, 149, 63, 0.2);
}

.reason-item i {
    color: #bf953f;
}

/* Button & Push */
.final-push p {
    color: #fcf6ba;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1rem;
}

.btn-action-now {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #bf953f 0%, #aa771c 100%);
    color: #000 !important;
    padding: 22px 50px;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(191, 149, 63, 0.4);
}

.btn-action-now:hover {
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.availability-badge {
    display: block;
    margin-top: 20px;
    color: #ff4d4d;
    font-weight: 700;
    font-size: 0.85rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-heading {
        font-size: 1.8rem;
    }

    .action-reasons {
        flex-direction: column;
        align-items: center;
    }

    .cta-glass-card {
        padding: 40px 20px;
    }
}

/* --- MOTIVATION SECTION --- */
.luxury-motivation {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.motivation-grid {
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.motivation-visual {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.motivation-text {
    flex: 1.2;
    min-width: 350px;
}

/* Visual Styling */
.main-visual-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.main-visual-box img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: 0.6s ease;
}

.floating-stat {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid #bf953f;
}

.stat-icon {
    background: #0a1128;
    color: #bf953f;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Typography & Content */
.motivation-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0a1128;
    line-height: 1.2;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefit-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-pill {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pill-icon {
    background: #fcf6ba;
    color: #b38728;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.pill-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1128;
    margin-bottom: 5px;
}

.pill-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.motivational-footer {
    padding: 25px;
    background: #f9f9f9;
    border-radius: 15px;
    border-left: 4px dashed #bf953f;
    margin-bottom: 40px;
}

.motivational-footer p {
    font-style: italic;
    color: #444;
    font-size: 1rem;
}

/* Survey CTA */
.btn-survey-premium {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #0a1128;
    color: #fff !important;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s;
}

.btn-survey-premium:hover {
    background: #bf953f;
    transform: translateY(-5px);
}

.survey-cta small {
    display: block;
    margin-top: 10px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .motivation-title {
        font-size: 2.2rem;
    }

    .main-visual-box img {
        height: 350px;
    }

    .motivation-grid {
        gap: 40px;
    }
}

/* PRICELIST */
/* --- INVESTMENT LOGIC SECTION --- */
.investment-logic-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.logic-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

/* Price Card Styling */
.price-offer-card {
    flex: 1;
    min-width: 320px;
    background: #0a1128;
    border-radius: 25px;
    overflow: hidden;
    color: white;
    box-shadow: 0 25px 50px rgba(10, 17, 40, 0.2);
    border: 2px solid #bf953f;
}

.price-header {
    background: linear-gradient(135deg, #1c2a4a 0%, #0a1128 100%);
    padding: 40px;
    text-align: center;
    border-bottom: 1px solid rgba(191, 149, 63, 0.3);
}

.block-tag {
    background: #bf953f;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.main-price {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: #fcf6ba;
    line-height: 1;
}

.suffix {
    font-size: 1.2rem;
    color: #bf953f;
    font-weight: 600;
}

.price-body {
    padding: 40px;
}

.price-body ul {
    list-style: none;
    margin-bottom: 30px;
}

.price-body li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0.9;
    display: flex;
    gap: 10px;
}

.price-body li i {
    color: #bf953f;
}

.btn-grab-price {
    display: block;
    text-align: center;
    background: #bf953f;
    color: #000;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

/* Comparison Boxes */
.logic-content {
    flex: 1.5;
    min-width: 350px;
}

.logic-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a1128;
    margin-bottom: 20px;
}

.logic-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.logic-box {
    padding: 25px;
    border-radius: 15px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.logic-box.warning {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
}

.logic-box.success {
    background: #dcfce7;
    border-left: 4px solid #22c55e;
}

.logic-box h4 {
    margin-bottom: 10px;
    color: #1f2937;
    font-weight: 700;
}

.logic-footer {
    font-size: 1.1rem;
    color: #4b5563;
    font-style: italic;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .logic-comparison {
        grid-template-columns: 1fr;
    }

    .logic-title {
        font-size: 2rem;
    }
}

/* --- SITEPLAN COMMAND CENTER --- */
/* Grid Siteplan 2 Kolom */
.siteplan-grid-luxury {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.siteplan-card {
    position: relative;
}

.siteplan-label {
    background: #bf953f;
    color: #0a1128;
    display: inline-block;
    padding: 5px 20px;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 5px 5px 0 0;
    letter-spacing: 1px;
}

.siteplan-wrapper {
    border: 2px solid #bf953f;
    border-radius: 0 15px 15px 15px;
    overflow: hidden;
    position: relative;
    background: #0a1128;
}

.siteplan-img {
    width: 100%;
    transition: 0.5s;
    cursor: zoom-in;
}

.siteplan-img:hover {
    transform: scale(1.1);
}

/* Unit List Full Width di Bawah */
/* Header Rekomendasi */
.recommendation-header {
    margin-top: 50px;
    /* Jarak dari siteplan di atasnya */
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(191, 149, 63, 0.3);
    /* Garis emas transparan */
    padding-bottom: 15px;
}

.recommendation-header h3 {
    color: #ad6206;
    /* Putih terang agar kontras dengan background gelap */
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

/* Warna Emas untuk Icon Star */
.text-gold {
    color: #bf953f;
    /* Warna emas identitas Anda */
    margin-right: 10px;
}

/* Warna Font di dalam Unit Card */
.unit-card-wide h3 {
    color: #016e09;
    /* Nomor unit putih */
    margin: 5px 0;
    font-size: 1.3rem;
}

.unit-specs span {
    color: rgba(2, 9, 136, 0.7);
    /* Putih transparan untuk detail kecil */
    font-weight: 400;
}

/* Hover effect agar teks tetap terbaca */
.unit-card-wide:hover h3 {
    color: #bf953f;
    /* Berubah jadi emas saat di-hover */
    transition: 0.3s;
}

.unit-list-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* Responsif otomatis */
    gap: 20px;
}

.unit-card-wide {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 149, 63, 0.2);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.unit-card-wide:hover {
    background: rgba(191, 149, 63, 0.1);
    border-color: #bf953f;
}

.unit-tag-status {
    font-size: 0.7rem;
    color: #bf953f;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.unit-specs {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    display: flex;
    gap: 15px;
}

.btn-calculate-luxury {
    background: #bf953f;
    color: #0a1128;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-calculate-luxury:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* Mobile Responsive Logic */
@media (max-width: 992px) {
    .siteplan-grid-luxury {
        grid-template-columns: 1fr;
        /* Jadi 1 kolom di HP */
        gap: 40px;
    }

    .unit-card-wide {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .unit-specs {
        justify-content: center;
    }

    .btn-calculate-luxury {
        width: 100%;
        justify-content: center;
    }
}

/* --- LUXURY CALCULATOR STYLING --- */
.premium-calculator-section {
    padding: 80px 0;
    background: #f8f9fa;
    /* Background luar cerah agar card terlihat kontras */
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #0a1128;
    /* Deep Navy */
    border-radius: 40px;
    padding: 50px;
    color: #fff;
    box-shadow: 0 40px 80px rgba(10, 17, 40, 0.25);
    border: 1px solid rgba(191, 149, 63, 0.3);
    position: relative;
    overflow: hidden;
}

/* Aksesoris Background */
.calculator-wrapper::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(191, 149, 63, 0.15) 0%, transparent 70%);
}

.calc-header {
    text-align: center;
    margin-bottom: 40px;
}

.badge-gold {
    background: #bf953f;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.calc-header h2 {
    font-size: 2.5rem;
    margin-top: 15px;
    font-weight: 800;
}

.text-gold {
    color: #bf953f;
}

/* Grid Layout */
.calc-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Form Styling */
.form-group-luxury {
    margin-bottom: 25px;
}

.form-group-luxury label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #bf953f;
    font-weight: 600;
}

.luxury-select,
.luxury-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 149, 63, 0.5);
    padding: 18px;
    border-radius: 15px;
    color: #05c41b;
    font-size: 1.1rem;
    transition: 0.3s;
}

.luxury-select:focus,
.luxury-input:focus {
    outline: none;
    border-color: #bae0fc;
    background: rgba(255, 255, 255, 0.1);
}

.input-hint {
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
    display: block;
}

/* Result Card Glassmorphism */
.result-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 30px;
}

.result-item {
    margin-bottom: 20px;
}

.result-item span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.price-strikethrough {
    text-decoration: line-through;
    color: #ff6b6b;
    font-size: 1.1rem;
}

.discount-text {
    color: #2ecc71;
    font-weight: 700;
    font-size: 1.3rem;
}

.divider-gold {
    height: 1px;
    background: linear-gradient(to right, transparent, #bf953f, transparent);
    margin: 25px 0;
}

.final-price {
    color: #fcf6ba;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.urgency-tag {
    font-size: 0.75rem;
    font-style: italic;
    color: #bf953f;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Button Action */
.btn-gold-action {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #bf953f 0%, #aa771c 100%);
    color: #000 !important;
    padding: 22px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    margin-top: 40px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(191, 149, 63, 0.4);
}

.btn-gold-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(191, 149, 63, 0.6);
    background: #fff;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .calculator-wrapper {
        padding: 30px 20px;
        border-radius: 30px;
    }

    .calc-body-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .calc-header h2 {
        font-size: 1.8rem;
    }

    .final-price {
        font-size: 1.8rem;
    }

    .calc-footer {
        text-align: center;
    }

    .btn-gold-action {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
    }
}

/* Container Action */
.unit-action {
    display: flex;
    align-items: center;
}

/* Tombol Mewah Utama */
.btn-luxury-action {
    position: relative;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 16px;
    /* Squircle style, lebih mewah dari bulat biasa */
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 50%, #b38728 100%);
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 20px rgba(191, 149, 63, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

/* Efek Cahaya di Belakang (Pulse) */
.btn-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(252, 246, 186, 0.6);
    filter: blur(15px);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-gold 2s infinite;
    opacity: 0;
    transition: 0.5s;
}

/* Animasi Denyut Emas */
@keyframes pulse-gold {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

/* Hover Effect */
.btn-luxury-action:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(191, 149, 63, 0.5);
    color: #fff;
    background: #0a1128;
    /* Berubah jadi Navy saat di-hover */
    border: 1px solid #bf953f;
}

.btn-luxury-action:hover .btn-glow {
    opacity: 1;
}

.btn-luxury-action i {
    z-index: 2;
    transition: 0.3s;
}

.btn-luxury-action:hover i {
    transform: rotate(-10deg);
    background: linear-gradient(to right, #bf953f, #fcf6ba);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sembunyikan teks di desktop, muncul di mobile jika perlu */
.btn-text-mobile {
    display: none;
}

@media (max-width: 768px) {
    .btn-luxury-action {
        width: auto;
        padding: 0 20px;
        height: 45px;
        border-radius: 12px;
        gap: 10px;
    }

    .btn-text-mobile {
        display: block;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}

.luxury-cta {
    position: relative;
    padding: 120px 0;
    background: #011041;
    /* Sangat gelap untuk kesan eksklusif */
    overflow: hidden;
    text-align: center;
}

/* Efek cahaya emas di pojok-pojok */
.luxury-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(191, 149, 63, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    color: #bf953f;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 20px;
}

.cta-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.cta-divider {
    width: 80px;
    height: 3px;
    background: #bf953f;
    margin: 0 auto 30px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.6);
    max-width: 650px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Action Buttons */
.luxury-action-group {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-luxury-outline,
.btn-luxury-solid {
    position: relative;
    padding: 20px 45px;
    border-radius: 50px;
    /* Lebih rounded = lebih modern/luxury */
    font-weight: 800;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-luxury-outline {
    border: 2px solid #bf953f;
    color: #bf953f;
}

.btn-luxury-solid {
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 50%, #bf953f 100%);
    color: #0a1128;
    border: none;
    box-shadow: 0 10px 30px rgba(191, 149, 63, 0.3);
}

.btn-luxury-outline:hover {
    background: #bf953f;
    color: #0a1128;
    transform: scale(1.05);
}

.btn-luxury-solid:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(191, 149, 63, 0.5);
}

.cta-footer-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.cta-footer-info i {
    color: #bf953f;
    margin-right: 5px;
}

/* Mobile Adaptability */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }

    .luxury-action-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-luxury-outline,
    .btn-luxury-solid {
        width: 100%;
        max-width: 300px;
    }

    .cta-footer-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* FOOTER===== */
.luxury-footer-minimal {
    background: #050a18;
    /* Navy Gelap sesuai tema */
    padding: 40px 0;
    text-align: center;
    width: 100%;
}

.footer-divider {
    height: 1px;
    width: 100px;
    /* Garis pendek di tengah memberikan kesan artistik */
    background: linear-gradient(to right, transparent, #bf953f, transparent);
    margin: 0 auto 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    /* Putih transparan agar kalem */
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    /* Spasi lebar khas brand mewah */
    text-transform: uppercase;
    margin: 0;
}

.gold-text-footer {
    color: #bf953f;
    font-weight: 600;
}

/* Hilangkan scroll horizontal jika ada */
.luxury-footer-minimal {
    overflow: hidden;
}