
    /* =========================================================
       1. GLOBAL RESET & MASTER VARIABLES
       ========================================================= */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    
    :root {
        --primary: #f9961e;       /* Jingga Kebanggaan */
        --accent-red: #dc2626;    /* Merah Premium */
        --gold: #d4af37;          /* Emas Klasik */
        --dark-slate: #111111;    /* Hitam Mewah */
        --text-muted: #555555;    /* Abu Kontras */
        --bg-ambient: #fffaf5;    /* Cream Halus */
        
        --shadow-premium: 
            0 15px 30px rgba(17, 17, 17, 0.02),
            0 35px 70px rgba(17, 17, 17, 0.06),
            0 65px 100px rgba(249, 150, 30, 0.04);
            
        --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    html { scroll-behavior: smooth; }
    body {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        color: var(--dark-slate);
        background: #ffffff;
        line-height: 1.75;
        overflow-x: hidden;
    }

    .container { max-width: 1240px; margin: 0 auto; padding: 0 30px; }
    section { padding: 120px 0; position: relative; }
    img { width: 100%; display: block; height: auto; }

    .premium-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 18px;
        background: rgba(220, 38, 38, 0.06);
        border: 1px solid rgba(220, 38, 38, 0.1);
        color: var(--accent-red);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        border-radius: 50px;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

    .center-heading { text-align: center; max-width: 800px; margin: 0 auto 60px; }
    .center-heading h2 { font-size: 42px; font-weight: 900; margin-bottom: 15px; letter-spacing: -0.5px; }
    .center-heading h2 span { color: var(--accent-red); }

    .btn-lux {
        display: inline-block;
        padding: 16px 36px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
        transition: var(--transition-smooth);
    }
    .btn-lux.primary { background: var(--accent-red); color: #fff; box-shadow: 0 10px 25px rgba(220,38,38,0.2); }
    .btn-lux.primary:hover { background: var(--primary); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(249,150,30,0.3); }
    .btn-lux.outline { border: 2px solid var(--dark-slate); color: var(--dark-slate); }
    .btn-lux.outline:hover { background: var(--dark-slate); color: #fff; transform: translateY(-3px); }

    /* =========================================================
       2. NAVBAR COMPONENT
       ========================================================= */
    .main-header {
        position: fixed;
        top: 0; left: 0; width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
        z-index: 9999;
        box-shadow: 0 4px 20px rgba(17, 17, 17, 0.03);
        transition: var(--transition-smooth);
    }
    .main-header.scrolled { background: #ffffff; box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06); }
    .navbar { height: 90px; display: flex; justify-content: space-between; align-items: center; transition: var(--transition-smooth); }
    .main-header.scrolled .navbar { height: 75px; }

    .navbar-brand { display: flex; align-items: center; gap: 15px; text-decoration: none; }
    .navbar-brand-text-wrap { display: flex; flex-direction: column; line-height: 1.2; }
    .navbar-logo-img { height: 50px; width: auto; object-fit: contain; transition: var(--transition-smooth); }
    .main-header.scrolled .navbar-logo-img { height: 42px; }
    .navbar-brand-text { font-size: 22px; font-weight: 800; color: var(--dark-slate); letter-spacing: -0.5px; }
    .navbar-brand-text span { color: var(--accent-red); }
    .navbar-brand-sub { font-size: 12px; font-weight: 700; color: var(--primary); letter-spacing: 1.2px; text-transform: uppercase; margin-top: 2px; }

    .nav-menu { display: flex; align-items: center; gap: 32px; }
    .nav-menu a { font-size: 15px; font-weight: 600; color: var(--dark-slate); text-decoration: none; position: relative; transition: 0.3s; }
    .nav-menu a::after { content: ""; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--accent-red); transition: 0.3s ease; }
    .nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
    .nav-menu a:hover, .nav-menu a.active { color: var(--accent-red); }
    .btn-nav-cta { padding: 12px 26px; background: var(--accent-red); color: #fff !important; border-radius: 12px; font-weight: 700; font-size: 14px; box-shadow: 0 6px 15px rgba(220, 38, 38, 0.15); }
    .btn-nav-cta:hover { background: var(--primary); box-shadow: 0 8px 20px rgba(249, 150, 30, 0.25); transform: translateY(-2px); }
    .btn-nav-cta::after { display: none !important; }

    .menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 10000; }
    .menu-toggle span { display: block; width: 26px; height: 2.5px; background: var(--dark-slate); border-radius: 2px; transition: var(--transition-smooth); }

    /* =========================================================
       2.1 LANGUAGE SWITCHER (ID/EN)
       ========================================================= */
    .lang-switch { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
    .lang-btn { background: none; border: none; cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 700; color: var(--text-muted); padding: 6px 10px; border-radius: 8px; transition: 0.3s; }
    .lang-btn:hover { color: var(--accent-red); }
    .lang-btn.active { background: var(--accent-red); color: #fff; box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2); }
    .lang-divider { font-size: 13px; color: rgba(17, 17, 17, 0.25); font-weight: 700; }

    /* =========================================================
       3. HERO SECTION
       ========================================================= */
    .premium-hero { padding-top: 180px; background: linear-gradient(180deg, #ffffff 0%, var(--bg-ambient) 100%); }
    .hero-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
    .hero-heading { font-size: 54px; font-weight: 900; line-height: 1.15; letter-spacing: -1px; margin-bottom: 25px; }
    .hero-heading span { color: var(--accent-red); }
    .hero-text { font-size: 18px; color: var(--text-muted); margin-bottom: 35px; max-width: 580px; }
    .hero-actions { display: flex; gap: 15px; }
    .hero-frame { border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-premium); border: 1px solid rgba(249,150,30,0.1); }

    /* =========================================================
       4. TENTANG KAMI SECTION
       ========================================================= */
    .about-section { background: #ffffff; }
    .about-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 70px; align-items: center; }
    .about-showcase { position: relative; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-premium); }
    .about-title { font-size: 40px; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.5px; }
    .about-title span { color: var(--primary); }
    .about-desc { color: var(--text-muted); margin-bottom: 25px; font-size: 16px; }

    /* =========================================================
       5. VALUE 4 GRID SECTION
       ========================================================= */
    .values-section { background: var(--bg-ambient); }
    .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
    .value-lux-card { background: #ffffff; padding: 45px 30px; border-radius: 24px; text-align: center; box-shadow: var(--shadow-premium); border-top: 4px solid var(--accent-red); transition: var(--transition-smooth); }
    .value-lux-card:hover { transform: translateY(-8px); border-top-color: var(--primary); box-shadow: 0 20px 45px rgba(249,150,30,0.1); }
    .value-icon-box { width: 70px; height: 70px; background: var(--bg-ambient); color: var(--accent-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 25px; }
    .value-lux-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
    .value-lux-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

    /* =========================================================
       6. LAYANAN KAMI (6 PREMIUM CARDS)
       ========================================================= */
    .services-section { background: #ffffff; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .service-card { background: #ffffff; border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 24px; padding: 40px 35px; box-shadow: var(--shadow-premium); transition: var(--transition-smooth); position: relative; }
    .service-card::after { content: ""; position: absolute; bottom: 0; left: 35px; width: 50px; height: 3px; background: var(--gold); transition: var(--transition-smooth); }
    .service-card:hover { transform: translateY(-5px); border-color: var(--primary); }
    .service-card:hover::after { width: calc(100% - 70px); background: var(--accent-red); }
    .service-num { font-size: 36px; font-weight: 900; color: rgba(249, 150, 30, 0.15); margin-bottom: 10px; font-family: Georgia, serif; }
    .service-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 15px; color: var(--dark-slate); line-height: 1.3; }
    .service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
    /* =========================================================
   STYLE BARU: CONTAINER IKON EMAS PREMIUM
   ========================================================= */
.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.08); /* Background soft gold */
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold, #d4af37); /* Warna emas andalan */
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Efek interaktif: Ketika kartu di-hover, ikon berubah warna menjadi merah khas */
.service-card:hover .service-icon-wrap {
    background: rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.2);
    color: var(--accent-red, #dc2626);
    transform: scale(1.05);
}



    /* =========================================================
       8. FAQs SECTION (ACCORDION - SEO)
       ========================================================= */
    .faq-section { background: var(--bg-ambient); }
    .faq-wrapper { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
    .faq-item { background: #ffffff; border-radius: 16px; box-shadow: var(--shadow-premium); overflow: hidden; border: 1px solid rgba(17,17,17,0.03); }
    .faq-trigger { width: 100%; padding: 24px 30px; text-align: left; background: none; border: none; font-size: 17px; font-weight: 700; color: var(--dark-slate); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
    .faq-icon { font-size: 20px; color: var(--accent-red); transition: var(--transition-smooth); }
    .faq-content { max-height: 0; overflow: hidden; transition: all 0.3s ease-out; padding: 0 30px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }
    .faq-item.active .faq-content { max-height: 200px; padding-bottom: 24px; }
    .faq-item.active .faq-icon { transform: rotate(45deg); color: var(--primary); }

/* =========================================================
   9. KLIEN CAROUSEL (INFINITE LOOP - ORIGINAL FULL COLOR)
   ========================================================= */
.clients-section { 
    background: #ffffff; 
    padding: 80px 0; 
    border-bottom: 1px solid rgba(17,17,17,0.05); 
}

.carousel-container { 
    width: 100%; 
    overflow: hidden; 
    position: relative; 
    margin-top: 20px; 
}

.carousel-track { 
    display: flex; 
    gap: 60px; 
    width: max-content; 
    animation: scrollInfinite 25s linear infinite; 
}

/* UPDATE: Menampilkan warna asli logo dan opasitas penuh sejak awal */
.carousel-item { 
    width: 150px; 
    height: 60px; 
    object-fit: contain; 
    filter: grayscale(0%); /* Warna asli diaktifkan murni */
    opacity: 1;            /* Terang maksimal tanpa transparan */
    transition: transform 0.3s ease; 
}

/* Efek interaktif opsional: Sedikit membesar saat di-hover agar dinamis */
.carousel-item:hover { 
    transform: scale(1.08); 
}

@keyframes scrollInfinite { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(calc(-150px * 6 - 60px * 6)); } 
}

    /* =========================================================
       9.5 FLOATING WHATSAPP BUTTON (WA PREMIUM)
       ========================================================= */
    .wa-float {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 99999;
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: linear-gradient(145deg, #f9961e, #dc2626);
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.45);
        text-decoration: none;
        transition: var(--transition-smooth);
        opacity: 0;
        transform: translateY(20px) scale(0.85);
        visibility: hidden;
    }
    .wa-float.wa-show { opacity: 1; transform: translateY(0) scale(1); visibility: visible; }
    .wa-float:hover { transform: translateY(-5px) scale(1.08); box-shadow: 0 16px 40px rgba(249, 150, 30, 0.6); }
    .wa-float svg { width: 34px; height: 34px; fill: #ffffff; }

    /* Cincin pulsa di belakang tombol */
    .wa-float::before,
    .wa-float::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: #f9961e;
        z-index: -1;
        animation: waPulse 2.2s ease-out infinite;
    }
    .wa-float::after { animation-delay: 1.1s; }
    @keyframes waPulse {
        0%   { transform: scale(1); opacity: 0.7; }
        100% { transform: scale(1.9); opacity: 0; }
    }

    /* Badge notifikasi "Online" */
    .wa-float .wa-status {
        position: absolute;
        top: -2px;
        right: -2px;
        width: 18px;
        height: 18px;
        background: var(--gold, #d4af37);
        border: 3px solid #ffffff;
        border-radius: 50%;
        box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }

    /* Tooltip saat hover */
    .wa-float .wa-tooltip {
        position: absolute;
        right: calc(100% + 14px);
        top: 50%;
        transform: translateY(-50%) translateX(8px);
        background: #ffffff;
        color: #b91c1c;
        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(17,17,17,0.15);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }
    .wa-float .wa-tooltip::after {
        content: "";
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        border: 6px solid transparent;
        border-left-color: #ffffff;
    }
    .wa-float:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

    /* =========================================================
       10. MASTER FOOTER
       ========================================================= */
    .lux-footer { background: #0c0802; color: rgba(255,255,255,0.7); padding: 100px 0 30px; font-size: 14px; }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 0.8fr 1.2fr; gap: 60px; }
    .footer-col h3 { color: #ffffff; font-size: 18px; font-weight: 700; margin-bottom: 25px; position: relative; }
    .footer-col h3::after { content: ""; position: absolute; bottom: -8px; left: 0; width: 40px; height: 2px; background: var(--primary); }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 14px; }
    .footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; }
    .footer-links a:hover { color: var(--primary); padding-left: 5px; }
    .contact-list { list-style: none; }
    .contact-list li { margin-bottom: 15px; display: flex; gap: 10px; }
    .footer-bottom { margin-top: 60px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 13px; }

    /* =========================================================
       11. RESPONSIVE MASTER SYSTEM
       ========================================================= */
    @media (max-width: 1199px) {
        .services-grid { grid-template-columns: repeat(2, 1fr); }
        .values-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    }

    @media (max-width: 991px) {
        section { padding: 90px 0; }
        .menu-toggle { display: flex; }
        .nav-menu { position: fixed; top: 0; left: -100%; width: 80%; max-width: 320px; height: 100vh; background: #ffffff; box-shadow: 20px 0 60px rgba(0,0,0,0.08); flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 100px 40px; gap: 25px; transition: var(--transition-smooth); }
        .nav-menu.active { left: 0; }
        .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .menu-toggle.active span:nth-child(2) { opacity: 0; }
        .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
        .btn-nav-cta { width: 100%; text-align: center; margin-top: 15px; }
        
        .hero-layout, .about-layout, .split-cta-layout { grid-template-columns: 1fr; text-align: center; }
        .hero-text, .about-desc { margin-left: auto; margin-right: auto; }
        .hero-actions { justify-content: center; }
        .cta-content-side { padding: 60px 30px; display: flex; flex-direction: column; align-items: center; }
        .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    }

    @media (max-width: 767px) {
        section { padding: 70px 0; }
        .container { padding: 0 20px; }
        .hero-heading { font-size: 34px; }
        .about-title { font-size: 30px; }
        .center-heading h2 { font-size: 28px; }
        .hero-actions { flex-direction: column; align-items: stretch; }
        .services-grid, .values-grid { grid-template-columns: 1fr; }
        .navbar-brand-text { font-size: 18px; }
        .navbar-brand-sub { font-size: 10px; }
        .navbar-logo-img { height: 40px; }
        .wa-float { width: 56px; height: 56px; bottom: 20px; right: 20px; }
        .wa-float svg { width: 30px; height: 30px; }
        .wa-float .wa-tooltip { display: none; }
    }
    
    /* =========================================================
       WHATSAPP POPUP AJAKAN (PREMIUM)
       ========================================================= */
    .wa-popup {
        position: fixed;
        right: 28px;
        bottom: 110px;
        z-index: 99998;
        width: 340px;
        max-width: calc(100vw - 40px);
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 22px;
        border: 1px solid rgba(249, 150, 30, 0.18);
        box-shadow: 0 30px 70px rgba(17, 17, 17, 0.22), 0 8px 24px rgba(249, 150, 30, 0.16);
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(18px) scale(0.94);
        transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.45s;
    }
    .wa-popup.wa-show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

    .wa-popup::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(120deg, #f9961e, #dc2626, #d4af37, #f9961e);
        background-size: 300% 100%;
        animation: waBorderShift 5s linear infinite;
    }
    @keyframes waBorderShift {
        0% { background-position: 0% 50%; }
        100% { background-position: 300% 50%; }
    }

    .wa-popup-head {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 20px 20px 8px;
    }
    .wa-popup-avatar {
        position: relative;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        border-radius: 50%;
        background: linear-gradient(145deg, #f9961e, #dc2626);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
    }
    .wa-popup-avatar svg { width: 26px; height: 26px; fill: #ffffff; }
    .wa-popup-status {
        position: absolute;
        bottom: 1px;
        right: 1px;
        width: 13px;
        height: 13px;
        background: #22c55e;
        border: 2px solid #ffffff;
        border-radius: 50%;
        animation: waPopPulse 1.8s ease-out infinite;
    }
    @keyframes waPopPulse {
        0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
        70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
        100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
    }
    .wa-popup-title { flex: 1; min-width: 0; }
    .wa-popup-title strong { display: block; font-size: 15px; color: var(--dark-slate); line-height: 1.35; }
    .wa-popup-title span { font-size: 12px; color: var(--text-muted); }
    .wa-popup-close {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        border: none;
        background: rgba(17, 17, 17, 0.05);
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1;
        border-radius: 50%;
        cursor: pointer;
        transition: var(--transition-smooth);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .wa-popup-close:hover { background: rgba(220, 38, 38, 0.12); color: var(--accent-red); transform: rotate(90deg); }

    .wa-popup-body { padding: 6px 20px 14px; }
    .wa-popup-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0 0 12px; }
    .wa-popup-body p strong { color: var(--dark-slate); }
    .wa-popup-chips { display: flex; flex-wrap: wrap; gap: 6px; }
    .wa-popup-chips span {
        font-size: 11px;
        font-weight: 700;
        color: var(--accent-red);
        background: linear-gradient(135deg, #fff5ec, #ffe8dc);
        border: 1px solid rgba(249, 150, 30, 0.35);
        padding: 5px 10px;
        border-radius: 999px;
    }

    .wa-popup-cta {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        margin: 4px 20px 20px;
        padding: 14px 18px;
        background: linear-gradient(135deg, #f9961e, #dc2626);
        color: #ffffff;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.2px;
        text-decoration: none;
        border-radius: 14px;
        box-shadow: 0 12px 28px rgba(220, 38, 38, 0.35);
        transition: var(--transition-smooth);
        overflow: hidden;
    }
    .wa-popup-cta svg { width: 17px; height: 17px; fill: #ffffff; }
    .wa-popup-cta::after {
        content: "";
        position: absolute;
        top: 0;
        left: -80%;
        width: 50%;
        height: 100%;
        background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.35), transparent);
        transform: skewX(-20deg);
    }
    .wa-popup-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 38px rgba(249, 150, 30, 0.5);
    }
    .wa-popup-cta:hover::after { animation: waShine 0.9s ease forwards; }
    @keyframes waShine {
        0% { left: -80%; }
        100% { left: 130%; }
    }
    .wa-popup-note { text-align: center; font-size: 10.5px; color: #9ca3af; margin: -8px 0 16px; }

    @media (max-width: 767px) {
        .wa-popup { right: 16px; left: 16px; width: auto; bottom: 96px; }
        .wa-popup-cta { margin-left: 16px; margin-right: 16px; }
    }


/* =========================================================
   3. HERO SECTION - FULL BACKGROUND OVERLAY STYLES
   ========================================================= */
.premium-hero-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    
    /* OVERLAY HITAM 20% DI ATAS GAMBAR HERO */
    background: rgba(0, 0, 0, 0.3);
    padding-top: 100px;
}
.premium-hero-full::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('../img/bg/bogor.jpg') center/cover no-repeat;
    animation: heroKenBurns 22s ease-in-out infinite alternate;
    will-change: transform;
    z-index: 0;
}
@keyframes heroKenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.12); }
}
.hero-full-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    margin: 0 auto;
    text-align: center; /* Membuat konten rata tengah yang elegan */
}

/* =========================================================
   UPDATE STYLE: BADGE MERAH & SPAN TITLE HITAM
   ========================================================= */

/* Badge atas: diubah font-nya menjadi Merah #dc2626 */
.premium-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.9); /* Sedikit ditebalkan background putihnya agar teks merah makin kontras menyala */
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #dc2626; /* WARNA MERAH PREMIUM */
    font-size: 12px;
    font-weight: 800; /* Dibuat sedikit lebih tebal agar terbaca tajam */
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

/* Kata "Bogor" di dalam Title: gradasi warna berganti & berjalan */
.hero-heading-full span {
    background: linear-gradient(90deg, #f9961e, #dc2626, #d4af37, #f9961e, #dc2626);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    animation: heroGradientShift 5s ease-in-out infinite;
    text-shadow: none;
}
@keyframes heroGradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-heading-full {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 25px;
}

.hero-text-full {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-actions-full {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Tombol outline khusus variasi background gelap */
.btn-lux.outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}
.btn-lux.outline-light:hover {
    background: #ffffff;
    color: var(--dark-slate);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.15);
}

/* Penyesuaian Responsif Layangan HP */
@media (max-width: 767px) {
    .premium-hero-full {
        background-attachment: scroll; /* Matikan fixed di HP agar enteng */
    }
    .hero-heading-full {
        font-size: 36px;
    }
    .hero-text-full {
        font-size: 16px;
    }
    .hero-actions-full {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }
}

    /* =========================================================
       WHATSAPP POPUP AJAKAN (PREMIUM)
       ========================================================= */
    .wa-popup {
        position: fixed;
        right: 28px;
        bottom: 110px;
        z-index: 99998;
        width: 340px;
        max-width: calc(100vw - 40px);
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 22px;
        border: 1px solid rgba(249, 150, 30, 0.18);
        box-shadow: 0 30px 70px rgba(17, 17, 17, 0.22), 0 8px 24px rgba(249, 150, 30, 0.16);
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(18px) scale(0.94);
        transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.45s;
    }
    .wa-popup.wa-show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

    .wa-popup::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(120deg, #f9961e, #dc2626, #d4af37, #f9961e);
        background-size: 300% 100%;
        animation: waBorderShift 5s linear infinite;
    }
    @keyframes waBorderShift {
        0% { background-position: 0% 50%; }
        100% { background-position: 300% 50%; }
    }

    .wa-popup-head {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 20px 20px 8px;
    }
    .wa-popup-avatar {
        position: relative;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        border-radius: 50%;
        background: linear-gradient(145deg, #f9961e, #dc2626);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
    }
    .wa-popup-avatar svg { width: 26px; height: 26px; fill: #ffffff; }
    .wa-popup-status {
        position: absolute;
        bottom: 1px;
        right: 1px;
        width: 13px;
        height: 13px;
        background: #22c55e;
        border: 2px solid #ffffff;
        border-radius: 50%;
        animation: waPopPulse 1.8s ease-out infinite;
    }
    @keyframes waPopPulse {
        0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
        70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
        100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
    }
    .wa-popup-title { flex: 1; min-width: 0; }
    .wa-popup-title strong { display: block; font-size: 15px; color: var(--dark-slate); line-height: 1.35; }
    .wa-popup-title span { font-size: 12px; color: var(--text-muted); }
    .wa-popup-close {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        border: none;
        background: rgba(17, 17, 17, 0.05);
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1;
        border-radius: 50%;
        cursor: pointer;
        transition: var(--transition-smooth);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .wa-popup-close:hover { background: rgba(220, 38, 38, 0.12); color: var(--accent-red); transform: rotate(90deg); }

    .wa-popup-body { padding: 6px 20px 14px; }
    .wa-popup-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0 0 12px; }
    .wa-popup-body p strong { color: var(--dark-slate); }
    .wa-popup-chips { display: flex; flex-wrap: wrap; gap: 6px; }
    .wa-popup-chips span {
        font-size: 11px;
        font-weight: 700;
        color: var(--accent-red);
        background: linear-gradient(135deg, #fff5ec, #ffe8dc);
        border: 1px solid rgba(249, 150, 30, 0.35);
        padding: 5px 10px;
        border-radius: 999px;
    }

    .wa-popup-cta {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        margin: 4px 20px 20px;
        padding: 14px 18px;
        background: linear-gradient(135deg, #f9961e, #dc2626);
        color: #ffffff;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.2px;
        text-decoration: none;
        border-radius: 14px;
        box-shadow: 0 12px 28px rgba(220, 38, 38, 0.35);
        transition: var(--transition-smooth);
        overflow: hidden;
    }
    .wa-popup-cta svg { width: 17px; height: 17px; fill: #ffffff; }
    .wa-popup-cta::after {
        content: "";
        position: absolute;
        top: 0;
        left: -80%;
        width: 50%;
        height: 100%;
        background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.35), transparent);
        transform: skewX(-20deg);
    }
    .wa-popup-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 38px rgba(249, 150, 30, 0.5);
    }
    .wa-popup-cta:hover::after { animation: waShine 0.9s ease forwards; }
    @keyframes waShine {
        0% { left: -80%; }
        100% { left: 130%; }
    }
    .wa-popup-note { text-align: center; font-size: 10.5px; color: #9ca3af; margin: -8px 0 16px; }

    @media (max-width: 767px) {
        .wa-popup { right: 16px; left: 16px; width: auto; bottom: 96px; }
        .wa-popup-cta { margin-left: 16px; margin-right: 16px; }
    }


/* =========================================================
   7. SPLIT CTA SECTION (OVERLAY GRAPHIC & BORDER BUTTON)
   ========================================================= */
.split-cta-section { 
    padding: 0; 
    background: var(--dark-slate); 
    overflow: hidden; 
}

.split-cta-layout { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    align-items: stretch; /* Memastikan tinggi kanan-kiri selalu sama murni */
}

.cta-image-side { 
    width: 100%;
    height: 100%; 
    min-height: 500px; 
    object-fit: cover; 
}

/* KONTEN KANAN: Gambar Latar Belakang + Overlay Gradasi Transparan */
.cta-content-side { 
    padding: 80px; 
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(249, 145, 110, 0.55)), 
                url('../img/bg/cta-banjarbaru.jpg'); /* Efek gambar mengintip di balik warna */
    background-size: cover;
    background-position: center;
    color: #ffffff; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.cta-content-side h2 { 
    font-size: 42px; 
    font-weight: 900; 
    margin-bottom: 20px; 
    line-height: 1.2; 
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.cta-content-side p { 
    font-size: 16px; 
    color: rgba(255, 255, 255, 0.95); 
    margin-bottom: 35px; 
    max-width: 500px; 
    line-height: 1.8;
}

/* TOMBOL CTA: Border Hitam, Hover Jadi Hitam Solid */
.btn-cta-border-black {
    display: inline-block;
    padding: 15px 35px;
    background: transparent; /* Latar bening awal */
    color: #111111 !important; /* Warna teks hitam awal */
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    border-radius: 14px;
    border: 3px solid #111111; /* Garis tebal hitam tegas */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    align-self: flex-start;
    text-align: center;
}

.btn-cta-border-black:hover {
    background: #111111; /* Hover berubah jadi Hitam Solid */
    color: #ffffff !important; /* Teks otomatis jadi Putih */
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(17, 17, 17, 0.25);
}

/* Responsif Mobile */
@media (max-width: 991px) {
    .split-cta-layout { grid-template-columns: 1fr; }
    .cta-image-side { min-height: 300px; }
    .cta-content-side { padding: 60px 30px; text-align: center; align-items: center; }
    .btn-cta-border-black { align-self: center; width: 100%; }
}

    /* =========================================================
       WHATSAPP POPUP AJAKAN (PREMIUM)
       ========================================================= */
    .wa-popup {
        position: fixed;
        right: 28px;
        bottom: 110px;
        z-index: 99998;
        width: 340px;
        max-width: calc(100vw - 40px);
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 22px;
        border: 1px solid rgba(249, 150, 30, 0.18);
        box-shadow: 0 30px 70px rgba(17, 17, 17, 0.22), 0 8px 24px rgba(249, 150, 30, 0.16);
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(18px) scale(0.94);
        transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.45s;
    }
    .wa-popup.wa-show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

    .wa-popup::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(120deg, #f9961e, #dc2626, #d4af37, #f9961e);
        background-size: 300% 100%;
        animation: waBorderShift 5s linear infinite;
    }
    @keyframes waBorderShift {
        0% { background-position: 0% 50%; }
        100% { background-position: 300% 50%; }
    }

    .wa-popup-head {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 20px 20px 8px;
    }
    .wa-popup-avatar {
        position: relative;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        border-radius: 50%;
        background: linear-gradient(145deg, #f9961e, #dc2626);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
    }
    .wa-popup-avatar svg { width: 26px; height: 26px; fill: #ffffff; }
    .wa-popup-status {
        position: absolute;
        bottom: 1px;
        right: 1px;
        width: 13px;
        height: 13px;
        background: #22c55e;
        border: 2px solid #ffffff;
        border-radius: 50%;
        animation: waPopPulse 1.8s ease-out infinite;
    }
    @keyframes waPopPulse {
        0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
        70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
        100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
    }
    .wa-popup-title { flex: 1; min-width: 0; }
    .wa-popup-title strong { display: block; font-size: 15px; color: var(--dark-slate); line-height: 1.35; }
    .wa-popup-title span { font-size: 12px; color: var(--text-muted); }
    .wa-popup-close {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        border: none;
        background: rgba(17, 17, 17, 0.05);
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1;
        border-radius: 50%;
        cursor: pointer;
        transition: var(--transition-smooth);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .wa-popup-close:hover { background: rgba(220, 38, 38, 0.12); color: var(--accent-red); transform: rotate(90deg); }

    .wa-popup-body { padding: 6px 20px 14px; }
    .wa-popup-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0 0 12px; }
    .wa-popup-body p strong { color: var(--dark-slate); }
    .wa-popup-chips { display: flex; flex-wrap: wrap; gap: 6px; }
    .wa-popup-chips span {
        font-size: 11px;
        font-weight: 700;
        color: var(--accent-red);
        background: linear-gradient(135deg, #fff5ec, #ffe8dc);
        border: 1px solid rgba(249, 150, 30, 0.35);
        padding: 5px 10px;
        border-radius: 999px;
    }

    .wa-popup-cta {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        margin: 4px 20px 20px;
        padding: 14px 18px;
        background: linear-gradient(135deg, #f9961e, #dc2626);
        color: #ffffff;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.2px;
        text-decoration: none;
        border-radius: 14px;
        box-shadow: 0 12px 28px rgba(220, 38, 38, 0.35);
        transition: var(--transition-smooth);
        overflow: hidden;
    }
    .wa-popup-cta svg { width: 17px; height: 17px; fill: #ffffff; }
    .wa-popup-cta::after {
        content: "";
        position: absolute;
        top: 0;
        left: -80%;
        width: 50%;
        height: 100%;
        background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.35), transparent);
        transform: skewX(-20deg);
    }
    .wa-popup-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 38px rgba(249, 150, 30, 0.5);
    }
    .wa-popup-cta:hover::after { animation: waShine 0.9s ease forwards; }
    @keyframes waShine {
        0% { left: -80%; }
        100% { left: 130%; }
    }
    .wa-popup-note { text-align: center; font-size: 10.5px; color: #9ca3af; margin: -8px 0 16px; }

    @media (max-width: 767px) {
        .wa-popup { right: 16px; left: 16px; width: auto; bottom: 96px; }
        .wa-popup-cta { margin-left: 16px; margin-right: 16px; }
    }

