/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */
:root {
    /* Brand Colors */
    --primary-dark:      #3A1A04;
    --primary-color:     #5D2906;
    --primary-light:     #8B4513;
    --primary-lighter:   #A0522D;

    /* Secondary / Accent */
    --secondary-dark:    #B3540C;
    --secondary-color:   #D2691E;
    --secondary-light:   #E67E22;

    /* Gold accent */
    --gold:              #D4A76A;
    --gold-dark:         #B08D57;

    /* Background layers — coklat gelap warm & sedikit terang */
    --bg-dark:           #2A1406;
    --bg-mid:            #3D1E0A;
    --bg-section:        #4A2510;
    --bg-card:           rgba(255,255,255,0.08);

    /* Text */
    --text-white:        #FFFFFF;
    --text-muted:        rgba(255,255,255,0.7);
    --text-orange:       #FFA726;

    /* WhatsApp */
    --wa-green:          #25D366;
    --wa-dark:           #128C7E;

    /* Shadows */
    --shadow-sm:         0 2px 8px rgba(0,0,0,0.2);
    --shadow-md:         0 6px 20px rgba(0,0,0,0.3);
    --shadow-lg:         0 16px 40px rgba(0,0,0,0.45);
    --shadow-xl:         0 30px 60px rgba(0,0,0,0.6);

    /* Radius */
    --radius-sm:         8px;
    --radius-md:         14px;
    --radius-lg:         22px;

    /* Transitions */
    --ease-fast:         0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-med:          0.45s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-slow:         0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* ============================================================
   2. BODY / GLOBAL
   ============================================================ */
body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Bebas+Neue&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');


/* ============================================================
   3. NAVBAR
   ============================================================ */
.navbar,
.navbar.navbar-light,
.navbar.bg-white,
.navbar.fixed-top {
    background-color: #3B1A08 !important;
    background:       #3B1A08 !important;
    border-bottom:    3px solid #C85A0A !important;
    box-shadow:       0 4px 24px rgba(0,0,0,0.55) !important;
    padding-top:      0 !important;
    padding-bottom:   0 !important;
    min-height:       75px;
    z-index:          1050 !important;
    overflow:         visible !important;
}

/* ── CONTAINER: lebih sempit biar logo & menu ke tengah ────── */
.navbar .container {
    display:         flex !important;
    align-items:     center !important;
    min-height:      75px;
    max-width:       1080px !important;
    margin-left:     auto !important;
    margin-right:    auto !important;
    padding-left:    20px !important;
    padding-right:   20px !important;
    overflow:        visible !important;
}

/* ── LOGO ─────────────────────────────────────────────────── */
.navbar-brand {
    padding:      0 !important;
    margin-right: 48px !important;
    flex-shrink:  0;
    transition:   transform 0.3s ease;
}
.navbar-brand:hover { transform: scale(1.05); }
.navbar-brand img {
    height: 55px !important;
    width:  auto !important;
    filter: drop-shadow(0 2px 8px rgba(200,90,10,0.5));
}

/* ── COLLAPSE ─────────────────────────────────────────────── */
.navbar-collapse {
    flex-grow: 1 !important;
    overflow:  visible !important;
}

/* ── NAV LIST ─────────────────────────────────────────────── */
.navbar-nav {
    gap:         4px !important;
    align-items: center !important;
    overflow:    visible !important;
    flex-wrap:   nowrap !important;
}

/* ── NAV-LINK ─────────────────────────────────────────────── */
.navbar-light .navbar-nav .nav-link,
.navbar       .navbar-nav .nav-link {
    font-family:   'Poppins', sans-serif !important;
    font-weight:   500 !important;
    font-size:     0.88rem !important;
    color:         #F5DEB3 !important;
    padding:       8px 14px !important;
    border-radius: 8px !important;
    white-space:   nowrap;
    background:    transparent !important;
    transition:    color 0.22s ease, background 0.22s ease !important;
}

/* ── HOVER ────────────────────────────────────────────────── */
.navbar-light .navbar-nav .nav-link:hover,
.navbar       .navbar-nav .nav-link:hover {
    color:      #FFFFFF !important;
    background: rgba(200,90,10,0.3) !important;
}

/* ── ACTIVE ───────────────────────────────────────────────── */
.navbar-light .navbar-nav .nav-link.active,
.navbar       .navbar-nav .nav-link.active {
    background:    #E8650A !important;
    color:         #FFFFFF !important;
    font-weight:   700 !important;
    border-radius: 10px !important;
    padding:       8px 16px !important;
    box-shadow:    0 4px 14px rgba(232,101,10,0.5) !important;
}

/* ── DROPDOWN TOGGLE caret ────────────────────────────────── */
.navbar .navbar-nav .dropdown-toggle::after {
    border-top-color: #F5DEB3 !important;
}

/* ── DROPDOWN MENU ────────────────────────────────────────── */
.dropdown-menu.dropdown-menu-orange {
    background:    #4A2008 !important;
    border:        1px solid #7A3510 !important;
    border-radius: 14px !important;
    padding:       10px 8px !important;
    min-width:     230px !important;
    position:      fixed !important;
    top:           75px !important;
    right:         calc((100vw - 1080px) / 2 + 20px) !important; /* sejajar container */
    left:          auto !important;
    margin:        0 !important;
    z-index:       99999 !important;
    box-shadow:
        0 16px 48px rgba(0,0,0,0.7),
        0  0   0 1px rgba(200,90,10,0.35) !important;
    animation: ddFadeIn 0.2s ease forwards;
}

@keyframes ddFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ── DROPDOWN ITEM ────────────────────────────────────────── */
.dropdown-menu.dropdown-menu-orange .dropdown-item {
    color:         #F5DEB3 !important;
    font-family:   'Poppins', sans-serif !important;
    font-size:     0.875rem !important;
    font-weight:   500 !important;
    padding:       11px 16px !important;
    border-radius: 8px !important;
    display:       flex !important;
    align-items:   center !important;
    gap:           12px !important;
    background:    transparent !important;
    margin-bottom: 2px;
}
.dropdown-menu.dropdown-menu-orange .dropdown-item:hover {
    background:   rgba(232,101,10,0.32) !important;
    color:        #FFFFFF !important;
    padding-left: 22px !important;
}

/* ── ICON WARNA-WARNI ─────────────────────────────────────── */
.dropdown-menu.dropdown-menu-orange .dropdown-item:nth-child(1) i {
    color: #4CAF50 !important;  /* hijau  - Sewa Tempat */
    filter: drop-shadow(0 0 4px rgba(76,175,80,0.5)) !important;
}
.dropdown-menu.dropdown-menu-orange .dropdown-item:nth-child(2) i {
    color: #2196F3 !important;  /* biru   - Kontak */
    filter: drop-shadow(0 0 4px rgba(33,150,243,0.5)) !important;
}
.dropdown-menu.dropdown-menu-orange .dropdown-item:nth-child(3) i {
    color: #FFC107 !important;  /* kuning - Info Loker */
    filter: drop-shadow(0 0 4px rgba(255,193,7,0.5)) !important;
}
.dropdown-menu.dropdown-menu-orange .dropdown-item:nth-child(4) i {
    color: #00E676 !important;  /* hijau terang - Peluang Investasi */
    filter: drop-shadow(0 0 4px rgba(0,230,118,0.5)) !important;
}
.dropdown-menu.dropdown-menu-orange .dropdown-item:nth-child(6) i {
    color: #F44336 !important;  /* merah - Berita */
    filter: drop-shadow(0 0 4px rgba(244,67,54,0.5)) !important;
}

/* icon size konsisten */
.dropdown-menu.dropdown-menu-orange .dropdown-item i {
    font-size:  1.1rem !important;
    width:      20px !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s ease !important;
}
.dropdown-menu.dropdown-menu-orange .dropdown-item:hover i {
    transform: scale(1.15) !important;
}

.dropdown-menu.dropdown-menu-orange .dropdown-divider {
    border-color: rgba(255,255,255,0.12) !important;
    margin:       5px 4px !important;
}

/* ── TOGGLER ──────────────────────────────────────────────── */
.navbar-toggler {
    border:        2px solid rgba(210,105,30,0.7) !important;
    border-radius: 10px !important;
    padding:       7px 11px !important;
    background:    rgba(210,105,30,0.15) !important;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(210,105,30,0.35) !important;
    outline: none !important;
}
.navbar-toggler-icon {
    filter: invert(1) brightness(1.5) !important;
}

/* ── HERO z-index ─────────────────────────────────────────── */
.promo-hero-video-section { z-index: 1 !important; }
.promo-hero-video         { z-index: 1 !important; }
.promo-hero-overlay       { z-index: 2 !important; }
.promo-hero-content       { z-index: 3 !important; }

/* ── BODY PADDING ─────────────────────────────────────────── */
body { padding-top: 75px !important; }

/* ============================================================
   HERO SECTION  (video background)
   ============================================================ */
.promo-hero-video-section {
    position: sticky;        /* ← INI KUNCI: section menempel saat scroll */
    top: 0;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    z-index: 1;
}

/* Video background */
.promo-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 0.5;
}

/* Overlay gelap */
.promo-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.38) 100%);
    z-index: 2;
}

/* Konten hero */
.promo-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Override container Bootstrap */
.promo-hero-content .container {
    width: 100%;
    max-width: 900px;
    padding: 0 2rem;
}

/* Judul */
.promo-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 5rem;
    font-weight: 800;
    font-style: italic;
    text-transform: none;
    letter-spacing: -1px;
    margin: 0 0 1.4rem 0;
    background: linear-gradient(160deg,
        #FFE566 0%,
        #FFB830 35%,
        #E67E22 65%,
        #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter:
        drop-shadow(0 4px 18px rgba(0, 0, 0, 0.85))
        drop-shadow(0 0 30px rgba(255, 180, 0, 0.3));
}

/* Logo animasi float */
.promo-logo-container {
    margin: 0 0 1.4rem 0;
    animation: logoFloat 3.5s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-16px); }
}

.promo-hero-logo {
    width: 250px;
    max-width: 90%;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.65));
    transition: transform 0.3s ease;
}

.promo-hero-logo:hover {
    transform: scale(1.06);
}

/* Deskripsi */
.promo-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .promo-hero-title {
        font-size: 3rem;
    }
    .promo-hero-logo {
        width: 180px;
    }
    .promo-hero-desc {
        font-size: 1rem;
    }
}

/* ============================================================
   PROMO GRID SECTION  (#promo-section)
   ============================================================ */
.promo-grid-section {
    padding: 90px 0 100px;
    background: radial-gradient(ellipse at top center, #5C2E0E 0%, #3B1A07 40%, #2A1406 100%);
    position: relative;
}

/* Subtle texture overlay untuk depth */
.promo-grid-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(210,105,30,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212,167,106,0.05) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.promo-grid-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    padding: 0 20px 55px;
    background: transparent;
}

/* Badge wrapper — sekarang di atas judul */
.promo-badge-wrapper {
    display: block;            /* full width agar center bekerja */
    text-align: center;
    margin-bottom: 1.2rem;
}

.promo-badge-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(
        135deg,
        rgba(255,215,0,0.18) 0%,
        rgba(210,105,30,0.22) 100%
    );
    color: #FFD700;
    padding: 10px 32px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1.5px solid rgba(255,215,0,0.35);
    backdrop-filter: blur(8px);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {
    0%, 100% { box-shadow: 0 0 10px rgba(255,215,0,0.15); }
    50%       { box-shadow: 0 0 24px rgba(255,215,0,0.4), 0 0 40px rgba(210,105,30,0.2); }
}

/* Judul utama — font Pacifico: script dekoratif, hangat, eye-catching seperti di screenshot */
.section-title {
    font-family: 'Pacifico', cursive;
    font-size: 3.4rem;
    font-weight: 400;          /* Pacifico sudah dekoratif secara natural */
    color: #fff;
    text-transform: none;      /* Pacifico script tidak perlu uppercase */
    letter-spacing: 1px;
    margin-bottom: 0;
    line-height: 1.15;
    position: relative;
    display: inline-block;

    /* Efek gradient teks emas hangat — seperti warna kuning keemasan di screenshot */
    background: linear-gradient(
        160deg,
        #FFE566 0%,
        #FFB830 35%,
        #E67E22 65%,
        #FFD700 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Shadow untuk depth */
    filter: drop-shadow(2px 3px 6px rgba(0,0,0,0.55))
            drop-shadow(0 0 20px rgba(255,180,0,0.2));
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E67E22, #FFD700, #E67E22, transparent);
    border-radius: 2px;
    animation: lineGlow 2.5s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.7; width: 80px; }
    50%       { opacity: 1;   width: 140px; }
}

.section-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    max-width: 660px;
    margin: 28px auto 0;
    line-height: 1.7;
    padding: 0 20px;
}

.section-subtitle strong { color: #FFB74D; }

/* ============================================================
   7. PROMO CARD — Full Image + Hover Reveal  (CLEAN REBUILD)
   ============================================================ */
.promo-grid-section {
    margin-bottom: 120px; /* Jarak ke footer */
    position: relative;
}

.promo-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 1260px;
    margin: 0 auto 60px; /* Margin bottom tambahan */
    padding: 0 30px;
}

.promo-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

/* Baris terakhir tanpa margin */
.promo-row:last-child {
    margin-bottom: 0;
}

/* ============================================================
   PROMO CARD
   ============================================================ */

.promo-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: 380px;
    width: calc(33.333% - 20px);
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(210,105,30,0.35);
    background: #1a0a02;
    box-shadow: 0 4px 14px rgba(0,0,0,0.45), 0 10px 28px rgba(0,0,0,0.25);
    transition: transform 0.38s cubic-bezier(0.34, 1.5, 0.64, 1),
                box-shadow 0.38s ease,
                border-color 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255,183,0,0.6);
    box-shadow: 0 22px 48px rgba(0,0,0,0.6),
                0 8px 20px rgba(0,0,0,0.3),
                0 0 28px rgba(210,130,0,0.28),
                inset 0 1px 0 rgba(255,220,100,0.15);
}

/* Shimmer effect */
.promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
                transparent 30%,
                rgba(255,215,100,0.07) 50%,
                transparent 70%);
    z-index: 40;
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.promo-card:hover::before {
    transform: translateX(200%) skewX(-15deg);
}

.promo-card::after { display: none; }

/* Inner */
.promo-card-inner {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ============================================================
   IMAGE WRAPPER
   ============================================================ */

.promo-image-wrapper {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
    display: block;
    background: radial-gradient(ellipse at 50% 30%, #3a1a06 0%, #0f0500 100%);
}

/* Vignette effect */
.promo-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
                transparent 55%,
                rgba(0,0,0,0.28) 100%);
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.promo-card:hover .promo-image-wrapper::after {
    opacity: 0.12;
}

.promo-image-wrapper::before { display: none; }

/* Image */
.promo-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
    position: relative;
    z-index: 2;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.4s ease;
}

.promo-card:hover .promo-image {
    transform: scale(1.05);
    filter: brightness(1.06) saturate(1.1);
}

/* ============================================================
   BADGE
   ============================================================ */

.promo-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px 7px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.25);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4),
                inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Dot indicator */
.promo-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    flex-shrink: 0;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.7); }
}

.promo-badge-tersedia {
    background: linear-gradient(135deg, rgba(56,161,105,0.92), rgba(34,113,74,0.97));
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4),
                0 0 12px rgba(56,161,105,0.3),
                inset 0 1px 0 rgba(255,255,255,0.2);
}

.promo-badge-habis {
    background: linear-gradient(135deg, rgba(239,83,80,0.92), rgba(183,28,28,0.97));
    color: #fff;
}

.promo-badge-habis::before {
    animation: none;
    opacity: 0.4;
}

.promo-badge-hot {
    background: linear-gradient(135deg, rgba(255,167,38,0.92), rgba(230,81,0,0.97));
    color: #fff;
    animation: badgeHotPulse 2s ease-in-out infinite;
}

@keyframes badgeHotPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,0.4), 0 0 10px rgba(255,120,0,0.3); }
    50%      { box-shadow: 0 4px 16px rgba(0,0,0,0.4), 0 0 22px rgba(255,120,0,0.6); }
}

/* ============================================================
   INFO PANEL - Slide Up on Hover
   ============================================================ */

.promo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 44px 18px 18px;
    background: linear-gradient(to top,
                rgba(8,2,0,0.98) 0%,
                rgba(8,2,0,0.96) 35%,
                rgba(8,2,0,0.88) 60%,
                rgba(8,2,0,0.0) 100%);
    backdrop-filter: blur(10px) saturate(1.4);
    -webkit-backdrop-filter: blur(10px) saturate(1.4);
    border-top: 2px solid transparent;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1),
                opacity 0.28s ease;
}

/* Gold line di atas panel */
.promo-info::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg,
                transparent,
                #FFD700,
                #E67E22,
                #FFD700,
                transparent);
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

.promo-card:hover .promo-info {
    transform: translateY(0);
    opacity: 1;
}

.promo-card:hover .promo-info::before {
    opacity: 1;
}

/* Info baris */
.promo-cabang,
.promo-periode,
.promo-kuota {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 7px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.82);
    font-weight: 500;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease,
                transform 0.38s cubic-bezier(0.34,1.4,0.64,1);
}

.promo-card:hover .promo-cabang {
    opacity: 1;
    transform: none;
    transition-delay: 0.07s;
}

.promo-card:hover .promo-periode {
    opacity: 1;
    transform: none;
    transition-delay: 0.13s;
}

.promo-card:hover .promo-kuota {
    opacity: 1;
    transform: none;
    transition-delay: 0.19s;
}

.promo-cabang i,
.promo-periode i,
.promo-kuota i {
    color: #FFB74D;
    font-size: 0.85rem;
    margin-top: 1px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(255,183,77,0.5));
}

.promo-sisa {
    background: rgba(255,193,7,0.15);
    color: #FFD54F;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 10px;
    font-size: 0.75rem;
    border: 1px solid rgba(255,193,7,0.3);
    margin-left: 4px;
}

/* Divider */
.promo-info::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg,
                transparent,
                rgba(255,183,77,0.25),
                transparent);
    margin: 8px 0;
}

/* Harga */
.promo-harga {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 12px;
    margin: 0 0 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    border: 1px solid rgba(255,183,0,0.1);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease,
                transform 0.38s cubic-bezier(0.34,1.4,0.64,1);
}

.promo-card:hover .promo-harga {
    opacity: 1;
    transform: none;
    transition-delay: 0.25s;
}

.harga-coret {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    text-decoration: line-through;
}

.harga-diskon {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(255,215,0,0.45),
                 0 0 18px rgba(255,215,0,0.18);
}

/* Tombol CTA */
.promo-btn-ambil {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B1A, #D2691E, #B8530E);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 18px;
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(210,105,30,0.5),
                inset 0 1px 0 rgba(255,255,255,0.18);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease,
                transform 0.38s cubic-bezier(0.34,1.4,0.64,1),
                background 0.25s ease,
                box-shadow 0.25s ease;
}

/* Shimmer button */
.promo-btn-ambil::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
                transparent,
                rgba(255,255,255,0.14),
                transparent);
    transition: left 0.5s ease;
}

.promo-btn-ambil:hover::before {
    left: 100%;
}

.promo-card:hover .promo-btn-ambil {
    opacity: 1;
    transform: none;
    transition-delay: 0.31s;
}

.promo-btn-ambil:hover {
    background: linear-gradient(135deg, #FF8533, #E67E22, #C8641A);
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 26px rgba(210,105,30,0.65),
                0 0 18px rgba(255,140,0,0.22),
                inset 0 1px 0 rgba(255,255,255,0.22);
}

.promo-btn-ambil:active {
    transform: translateY(1px) !important;
}


/* ============================================================
   8. WHATSAPP FLOATING BUTTON & MODAL
   ============================================================ */

/* ── Floating WA Button (pojok kanan bawah — kontak umum) ── */
#whatsappButton,
.whatsapp-promo-button {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 62px !important;
    height: 62px !important;
    background: var(--wa-green) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 28px !important;
    box-shadow: 0 6px 22px rgba(37,211,102,0.5) !important;
    z-index: 9000 !important;
    cursor: pointer !important;
    border: 2px solid rgba(255,255,255,0.6) !important;
    transition: transform var(--ease-fast), background var(--ease-fast) !important;
    animation: waFloat 3s ease-in-out infinite;
}

@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

#whatsappButton:hover,
.whatsapp-promo-button:hover {
    background: var(--wa-dark) !important;
    box-shadow: 0 8px 28px rgba(37,211,102,0.65) !important;
    animation: none;
    transform: scale(1.1) !important;
}

/* ── OVERLAY BACKDROP ── */
#modalOverlay {
    display: none;               /* hidden by default */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#modalOverlay.overlay-active {
    opacity: 1;
}

/* ── MODAL CONTAINER — CENTER OVERLAY ── */
#whatsappModal,
.whatsapp-modal-promo {
    display: none;               /* ← HIDDEN BY DEFAULT — JS yang buka */
    position: fixed !important;

    /* Center horizontal & vertical */
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -48%) scale(0.94) !important;

    width: 460px !important;
    max-width: calc(100vw - 32px) !important;
    max-height: 90vh;

    background: linear-gradient(160deg, #3D1E0A 0%, #2A1204 100%) !important;
    border-radius: 20px !important;
    box-shadow:
        0 32px 80px rgba(0,0,0,0.75),
        0  8px 24px rgba(0,0,0,0.4),
        0  0   0  2px rgba(210,105,30,0.6),
        inset 0 1px 0 rgba(255,255,255,0.08) !important;
    border: none !important;
    z-index: 99999 !important;
    overflow: hidden;

    /* Flex column agar body bisa scroll */
    flex-direction: column;

    opacity: 0;
    transition:
        opacity   0.3s ease,
        transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1) !important;
}

/* Active state — JS tambahkan class .modal-active */
#whatsappModal.modal-active,
.whatsapp-modal-promo.modal-active {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

/* ── MODAL HEADER ── */
.whatsapp-modal-header {
    background: linear-gradient(135deg, #5D2906, #3A1A04);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(210,105,30,0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.whatsapp-modal-header h5 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    flex-wrap: wrap;
    line-height: 1.4;
}

.whatsapp-modal-header h5 .fab.fa-whatsapp {
    color: var(--wa-green);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.whatsapp-close-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--ease-fast);
    margin-left: 12px;
}

.whatsapp-close-btn:hover {
    background: rgba(255,80,80,0.2);
    border-color: rgba(255,80,80,0.4);
    color: #ff6b6b;
}

/* ── MODAL BODY — daftar cabang ── */
.whatsapp-modal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: 420px;
    display: flex;
    flex-direction: column;
    gap: 10px;

    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(210,105,30,0.4) transparent;
}

.whatsapp-modal-body::-webkit-scrollbar { width: 5px; }
.whatsapp-modal-body::-webkit-scrollbar-track { background: transparent; }
.whatsapp-modal-body::-webkit-scrollbar-thumb {
    background: rgba(210,105,30,0.4);
    border-radius: 10px;
}

/* Item cabang */
.whatsapp-branch-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(210,105,30,0.25);
    text-decoration: none;
    color: #fff;
    transition: all 0.25s ease;
    gap: 12px;
}

.whatsapp-branch-item:hover {
    background: rgba(37,211,102,0.1);
    border-color: rgba(37,211,102,0.5);
    transform: translateX(6px);
    box-shadow:
        0 4px 16px rgba(37,211,102,0.15),
        inset 0 1px 0 rgba(37,211,102,0.1);
    color: #fff;
}

.branch-simple {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.branch-title {
    margin: 0;
    font-size: 0.97rem;
    font-weight: 700;
    color: #FFB74D;
    display: flex;
    align-items: center;
    gap: 6px;
}

.branch-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.branch-contact i   { color: var(--wa-green); font-size: 1rem; }
.whatsapp-number    { color: rgba(255,255,255,0.75); font-size: 0.87rem; }

.branch-arrow {
    color: rgba(255,255,255,0.3);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: color 0.25s ease, transform 0.25s ease;
}

.whatsapp-branch-item:hover .branch-arrow {
    color: var(--wa-green);
    transform: translateX(4px);
}

/* Empty state */
.modal-empty {
    text-align: center;
    padding: 30px 20px;
    color: rgba(255,255,255,0.5);
}

.modal-empty i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
    color: rgba(255,183,77,0.4);
}

/* ── MODAL FOOTER ── */
.whatsapp-modal-footer {
    padding: 14px 20px;
    background: rgba(20,8,2,0.6);
    border-top: 1px solid rgba(210,105,30,0.25);
    text-align: center;
    flex-shrink: 0;
}

.whatsapp-modal-footer p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.whatsapp-modal-footer p::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wa-green);
    box-shadow: 0 0 6px var(--wa-green);
    animation: dotPulse 2s ease-in-out infinite;
}

/* ── RESPONSIVE MODAL ── */
@media (max-width: 480px) {
    #whatsappModal,
    .whatsapp-modal-promo {
        width: calc(100vw - 24px) !important;
        max-height: 85vh;
    }

    .whatsapp-modal-body { max-height: 55vh; }
    .whatsapp-modal-header { padding: 16px 18px; }
}


/* ============================================================
   9. FOOTER  (.footer-modern)
   ============================================================ */
/* ============================================================
   FOOTER MODERN - DESKTOP OPTIMIZED (CENTER ALIGNED)
   ============================================================ */

.footer-modern {
    background: linear-gradient(135deg, #3D1E0A 0%, #2A1204 100%);
    color: #fff;
    padding: 64px 0 32px;
    margin-top: 200px;
    position: relative;
    border-top: 3px solid #DE9E48;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    clear: both;
}

/* Container dengan max-width lebih kecil untuk center alignment */
.footer-modern .container {
    max-width: 1000px; /* Lebih sempit untuk efek center yang kuat */
    margin: 0 auto;
    padding: 0 20px !important;
}

/* Row dengan justify content center */
.footer-modern .row {
    justify-content: center !important;
    margin: 0 auto;
    gap: 0;
}

/* Semua kolom di-center secara horizontal */
.footer-modern [class*="col-"] {
    text-align: center !important; /* Semua teks di kolom menjadi center */
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center children horizontally */
}

/* Spacer */
.footer-modern::before {
    content: '';
    display: block;
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: transparent;
    pointer-events: none;
}

/* ===== HEADING STYLING ===== */
.footer-modern h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
    text-align: center !important;
    width: 100%;
}

/* Garis bawah heading di tengah */
.footer-modern h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #DE9E48;
    border-radius: 2px;
}

/* ===== LOGO SECTION ===== */
.footer-modern img {
    filter: brightness(1.1);
    transition: transform 0.3s ease;
    margin: 0 auto 20px auto !important; /* Center logo */
    display: block;
}

.footer-modern img:hover {
    transform: scale(1.05);
}

/* Description text - center aligned */
.footer-modern .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.7;
    font-size: 0.98rem;
    max-width: 90%;
    margin: 0 auto; /* Center the text block */
    text-align: center;
}

/* ===== SOCIAL ICONS - CENTERED ===== */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    justify-content: center; /* Center social icons */
    width: 100%;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Instagram - Warna gradien asli */
.social-icon .bi-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* TikTok - Warna asli */
.social-icon .bi-tiktok {
    color: #000;
    text-shadow: 2px 2px 0 #25f4ee, -2px -2px 0 #fe2c55;
    font-weight: 600;
}

/* Hover effects */
.social-icon:hover {
    background: #DE9E48;
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(222, 158, 72, 0.4);
}

.social-icon:hover .bi-instagram,
.social-icon:hover .bi-tiktok {
    -webkit-text-fill-color: white;
    background: none;
    color: white;
    text-shadow: none;
}

/* ===== FOOTER LINKS - CENTERED ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the list items */
    width: 100%;
}

.footer-links li { 
    margin-bottom: 14px;
    text-align: center;
    width: 100%;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    position: relative;
    padding: 0;
    text-align: center;
}

.footer-links a:hover {
    color: #DE9E48;
    transform: scale(1.05); /* Scale effect instead of padding-left */
}

/* Remove the arrow for centered layout */
.footer-links a::before {
    display: none;
}

/* ===== CONTACT INFO - CENTERED ===== */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center contact items */
    width: 100%;
}

.footer-contact li {
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

/* Ikon contact dengan warna asli */
.footer-contact i {
    width: 24px;
    font-size: 1.2rem;
    margin-right: 10px;
    text-align: center;
}

/* Warna asli untuk setiap ikon */
.footer-contact .bi-envelope-fill {
    color: #EA4335; /* Gmail red */
}

.footer-contact .bi-telephone-fill {
    color: #34A853; /* Google Phone green */
}

.footer-contact .bi-whatsapp {
    color: #25D366; /* WhatsApp green */
}

.footer-contact .bi-clock-fill {
    color: #DE9E48; /* Emas untuk jam */
}

/* Contact text */
.footer-contact li span {
    display: inline-block;
    text-align: left; /* Keep text left-aligned after icon */
}

/* Divider */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 45px auto 32px;
    width: 80%; /* Lebih sempit dan center */
    opacity: 0.5;
}

/* Copyright text */
.footer-modern .text-center {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-align: center !important;
    width: 100%;
}

/* ===== RESPONSIVE UNTUK DESKTOP ===== */

/* Desktop besar (1400px ke atas) */
@media (min-width: 1400px) {
    .footer-modern {
        margin-top: 250px;
        padding: 80px 0 40px;
    }
    
    .footer-modern .container {
        max-width: 1100px;
        padding: 0 30px !important;
    }
    
    .footer-modern h5 {
        font-size: 1.3rem;
    }
    
    .footer-links a,
    .footer-contact li {
        font-size: 1.05rem;
    }
}

/* Desktop medium (1200-1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .footer-modern .container {
        max-width: 1000px;
        padding: 0 25px !important;
    }
}

/* Desktop kecil / laptop (992-1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .footer-modern .container {
        max-width: 900px;
        padding: 0 20px !important;
    }
    
    .footer-modern [class*="col-"] {
        padding: 0 12px;
    }
    
    .footer-contact li {
        font-size: 0.95rem;
    }
    
    .footer-contact i {
        width: 22px;
        font-size: 1.1rem;
        margin-right: 8px;
    }
    
    .footer-modern .text-white-50 {
        max-width: 100%;
        font-size: 0.95rem;
    }
    
    .footer-divider {
        width: 90%;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .footer-modern {
        margin-top: 150px;
        padding: 48px 0 24px;
    }
    
    .footer-modern .container {
        padding: 0 20px !important;
        max-width: 100%;
    }
    
    .footer-modern [class*="col-"] {
        text-align: center !important;
        align-items: center;
    }
    
    .footer-modern h5 {
        margin-top: 25px;
        text-align: center !important;
    }
    
    .footer-modern h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-modern h5:first-of-type {
        margin-top: 0;
    }
    
    /* Ikon tetap warna asli di tablet */
    .footer-contact .bi-envelope-fill { color: #EA4335; }
    .footer-contact .bi-telephone-fill { color: #34A853; }
    .footer-contact .bi-whatsapp { color: #25D366; }
    .footer-contact .bi-clock-fill { color: #DE9E48; }
    
    .social-icon .bi-instagram {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .social-icon .bi-tiktok {
        color: #000;
        text-shadow: 2px 2px 0 #25f4ee, -2px -2px 0 #fe2c55;
    }
    
    .footer-divider {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .footer-modern {
        margin-top: 100px;
        padding: 40px 0 20px;
    }
    
    .footer-modern .container {
        padding: 0 15px !important;
    }
    
    .footer-contact li {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-divider {
        width: 100%;
        margin: 30px auto 20px;
    }
}