/* ===========================================
   PELUANG INVESTASI STYLESHEET
   Brand Colors: Coklat Tua Premium + Orange Hangat
   =========================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    /* Primary Colors - Coklat Tua Premium */
    --primary-color: #5D2906;
    --primary-light: #8B4513;
    --primary-lighter: #A0522D;
    --primary-dark: #3A1A04;
    --primary-gradient: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    
    /* Secondary Colors - Orange Hangat */
    --secondary-color: #D2691E;
    --secondary-light: #E67E22;
    --secondary-dark: #B3540C;
    --secondary-gradient: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    
    /* Background Colors */
    --bg-dark: #1A0F0A;
    --bg-light: #2C1810;
    --bg-section: #3A1A04;
    --bg-card: rgba(255, 255, 255, 0.12);
    
    /* Text Colors */
    --text-dark: #FFFFFF;
    --text-light: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.9);
    --text-bold: #FFFFFF;
    
    /* Additional Colors */
    --bronze: #CD7F32;
    --silver: #C0C0C0;
    --gold: #FFD700;
    --success: #27AE60;
    --info: #3498DB;
    
    /* Spacing */
    --section-spacing: 5rem;
    --card-spacing: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== NAVBAR CUSTOMIZATION ========== */
/* ========== NAVBAR STYLING ========== */
/* ============================================================
   NAVBAR - DESKTOP
   ============================================================ */

/* ============================================================
   NAVBAR - Warung Bakakak
   ============================================================ */

/* ── BASE NAVBAR ── */
/* ============================================================
   NAVBAR - Warung Bakakak
   ============================================================ */

/* ── BASE NAVBAR ── */
.navbar {
    background-color: #3B1A08 !important; /* Override Bootstrap navbar-light / bg-white */
    border-bottom: 3px solid #C85A0A;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
    padding: 0;
    min-height: 70px;
    z-index: 1050;
    overflow: visible;
}

/*
 * Container: logo di kiri — nav di tengah — ruang kanan seimbang.
 * Trik: collapse (flex-grow:1) + justify-content:center
 * menggeser nav ke pusat dari sisa lebar setelah logo.
 */
.navbar .container {
    display: flex;
    align-items: center;
    min-height: 70px;
    max-width: 1200px;
    padding: 0 24px;
    overflow: visible;
}


/* ============================================================
   LOGO
   ============================================================ */

.navbar-brand {
    padding: 0;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(200, 90, 10, 0.5));
}


/* ============================================================
   COLLAPSE — flex, nav di-center
   ============================================================ */

.navbar-collapse {
    flex-grow: 1;
    overflow: visible;
    display: flex;
    justify-content: center; /* pusatkan navbar-nav di dalam collapse */
}


/* ============================================================
   NAV LIST
   ============================================================ */

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
    margin: 0 !important; /* batalkan ms-auto dari HTML */
}


/* ============================================================
   NAV LINK — putih & tebal
   ============================================================ */

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: #ffffff !important; /* putih, override Bootstrap */
    padding: 8px 13px;
    border-radius: 8px;
    white-space: nowrap;
    background: transparent;
    letter-spacing: 0.1px;
    transition: color 0.22s ease, background 0.22s ease;
}

.navbar-nav .nav-link:hover {
    color: #FFD700 !important;
    background: rgba(200, 90, 10, 0.28);
}

.navbar-nav .nav-link.active {
    background: #E8650A;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(232, 101, 10, 0.5);
}


/* ============================================================
   DROPDOWN TOGGLE CARET
   ============================================================ */

.navbar-nav .dropdown-toggle::after {
    border-top-color: #ffffff;
    transition: transform 0.25s ease;
}

.navbar-nav .nav-item.show .dropdown-toggle::after {
    transform: rotate(180deg);
}


/* ============================================================
   DROPDOWN MENU — DESKTOP
   ============================================================ */

.dropdown-menu.dropdown-menu-orange {
    background: #4A2008;
    border: 1px solid #7A3510;
    border-radius: 14px;
    padding: 10px 8px;
    min-width: 230px;
    position: fixed !important;  /* Override Bootstrap absolute agar tidak terpotong */
    top: 70px !important;
    right: calc((100vw - 1200px) / 2 + 24px) !important;
    left: auto !important;
    margin: 0;
    z-index: 99999;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(200, 90, 10, 0.35);
    animation: ddFadeIn 0.2s ease forwards;
}

@keyframes ddFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dropdown-menu.dropdown-menu-orange .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #F5DEB3;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 11px 16px;
    border-radius: 8px;
    background: transparent;
    margin-bottom: 2px;
    transition: background 0.2s ease, padding-left 0.2s ease, color 0.2s ease;
}

.dropdown-menu.dropdown-menu-orange .dropdown-item:hover {
    background: rgba(232, 101, 10, 0.32);
    color: #ffffff;
    padding-left: 22px;
}

/* Icon desktop — lebar tetap agar teks sejajar */
.dropdown-menu.dropdown-menu-orange .dropdown-item i {
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.dropdown-menu.dropdown-menu-orange .dropdown-item:hover i {
    transform: scale(1.2);
}

/* Warna icon per item */
.dropdown-menu.dropdown-menu-orange .dropdown-item:nth-child(1) i { color: #4CAF50; filter: drop-shadow(0 0 5px rgba(76,175,80,0.6)); }
.dropdown-menu.dropdown-menu-orange .dropdown-item:nth-child(2) i { color: #29B6F6; filter: drop-shadow(0 0 5px rgba(41,182,246,0.6)); }
.dropdown-menu.dropdown-menu-orange .dropdown-item:nth-child(3) i { color: #FFC107; filter: drop-shadow(0 0 5px rgba(255,193,7,0.6)); }
.dropdown-menu.dropdown-menu-orange .dropdown-item:nth-child(4) i { color: #00E676; filter: drop-shadow(0 0 5px rgba(0,230,118,0.6)); }
.dropdown-menu.dropdown-menu-orange .dropdown-item:nth-child(6) i { color: #FF5252; filter: drop-shadow(0 0 5px rgba(255,82,82,0.6)); }

.dropdown-menu.dropdown-menu-orange .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.12);
    margin: 5px 4px;
}


/* ============================================================
   TOGGLER
   ============================================================ */

.navbar-toggler {
    border: 2px solid rgba(210, 105, 30, 0.7);
    border-radius: 10px;
    padding: 7px 11px;
    background: rgba(210, 105, 30, 0.15);
    transition: all 0.2s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.35);
    outline: none;
}

.navbar-toggler-icon {
    filter: invert(1) brightness(1.5);
}


/* ============================================================
   BODY PADDING
   ============================================================ */

body {
    padding-top: 70px;
}


/* ============================================================
   TABLET & MOBILE  (≤ 991px)
   ============================================================ */

@media screen and (max-width: 991px) {

    .navbar,
    .navbar.fixed-top {
        min-height: 64px;
    }

    .navbar .container {
        min-height: 64px;
        padding: 0 16px;
        justify-content: space-between;
        flex-wrap: nowrap;
        position: relative;
    }

    .navbar-brand img {
        height: 42px;
    }

    /* ── COLLAPSE PANEL MOBILE ── */
    nav.navbar.fixed-top .navbar-collapse {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
        justify-content: flex-start; /* reset centering desktop */
        background: linear-gradient(160deg, #2A1204 0%, #3D1A06 100%);
        border-top: 2px solid #D2691E;
        border-bottom: 3px solid rgba(210, 105, 30, 0.4);
        border-radius: 0 0 20px 20px;
        padding: 12px 0 16px;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1040;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    }

    nav.navbar.fixed-top .navbar-collapse.show {
        animation: mobileMenuIn 0.25s ease forwards;
    }

    @keyframes mobileMenuIn {
        from { opacity: 0; transform: translateY(-8px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* ── NAV LIST MOBILE ── */
    nav.navbar.fixed-top .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 0 12px;
        gap: 2px;
        margin: 0 !important;
    }

    nav.navbar.fixed-top .navbar-nav .nav-item {
        width: 100%;
    }

    /* ── NAV LINK MOBILE ── */
    nav.navbar.fixed-top .navbar-nav .nav-link {
        font-size: 1rem;
        font-weight: 700;
        padding: 13px 16px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-bottom: 1px solid rgba(210, 105, 30, 0.2);
        white-space: normal;
        color: #ffffff !important;
    }

    nav.navbar.fixed-top .navbar-nav .nav-link:hover {
        background: rgba(210, 105, 30, 0.2);
        color: #FFD700 !important;
    }

    nav.navbar.fixed-top .navbar-nav .nav-link.active {
        background: rgba(210, 105, 30, 0.25);
        color: #FFD700 !important;
        border-left: 4px solid #D2691E;
        border-right: 4px solid #D2691E;
        box-shadow: none;
        font-weight: 700;
    }

    /* ── DROPDOWN TOGGLE MOBILE ── */
    nav.navbar.fixed-top .navbar-nav .dropdown-toggle::after {
        display: none;
    }

    nav.navbar.fixed-top .navbar-nav .dropdown-toggle::before {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #D2691E;
        font-size: 0.9rem;
        margin-left: 8px;
        transition: transform 0.25s ease, color 0.25s ease;
    }

    nav.navbar.fixed-top .navbar-nav .nav-item.show .dropdown-toggle::before {
        transform: rotate(180deg);
        color: #FFD700;
    }

    /* ── DROPDOWN MENU MOBILE ── */
    nav.navbar.fixed-top .navbar-nav .dropdown-menu.dropdown-menu-orange {
        position: static !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        float: none;
        width: 100%;
        background: rgba(20, 8, 2, 0.92);
        border: 1px solid rgba(210, 105, 30, 0.3);
        border-left: 4px solid #D2691E;
        border-radius: 12px;
        padding: 6px 0;
        margin: 4px 0 8px;
        box-shadow: none;
        animation: none;
    }

    nav.navbar.fixed-top .navbar-nav .dropdown-menu.dropdown-menu-orange.show {
        animation: ddSlideDown 0.2s ease forwards;
    }

    @keyframes ddSlideDown {
        from { opacity: 0; transform: translateY(-6px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* ── DROPDOWN ITEM MOBILE ── */
    nav.navbar.fixed-top .navbar-nav .dropdown-menu.dropdown-menu-orange .dropdown-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(210, 105, 30, 0.12);
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.92);
        font-size: 0.95rem;
        margin-bottom: 0;
    }

    nav.navbar.fixed-top .navbar-nav .dropdown-menu.dropdown-menu-orange .dropdown-item:last-child {
        border-bottom: none;
    }

    nav.navbar.fixed-top .navbar-nav .dropdown-menu.dropdown-menu-orange .dropdown-item:hover {
        background: rgba(210, 105, 30, 0.25);
        color: #FFD700;
        padding-left: 20px;
    }

    /* Icon mobile — kolom seragam agar teks sejajar */
    nav.navbar.fixed-top .navbar-nav .dropdown-menu.dropdown-menu-orange .dropdown-item i {
        font-size: 1.05rem;
        width: 26px;
        min-width: 26px;
        text-align: center;
        flex-shrink: 0;
        line-height: 1;
    }

    /* Span teks — rata kiri dalam blok yang di-center */
    nav.navbar.fixed-top .navbar-nav .dropdown-menu.dropdown-menu-orange .dropdown-item span {
        text-align: left;
        flex: 1 1 auto;
        min-width: 0;
    }

    nav.navbar.fixed-top .navbar-nav .dropdown-menu.dropdown-menu-orange .dropdown-divider {
        border-color: rgba(210, 105, 30, 0.25);
        margin: 4px 8px;
    }
}


/* ============================================================
   MOBILE  (≤ 767px)
   ============================================================ */

@media screen and (max-width: 767px) {

    body { padding-top: 58px; }

    .navbar,
    .navbar.fixed-top          { min-height: 58px; }
    .navbar .container          { min-height: 58px; }
    .navbar-brand img           { height: 38px; }

    nav.navbar.fixed-top .navbar-collapse { top: 58px; }
}


/* ============================================================
   MOBILE KECIL  (≤ 575px)
   ============================================================ */

@media screen and (max-width: 575px) {

    body { padding-top: 54px; }

    .navbar,
    .navbar.fixed-top          { min-height: 54px; }
    .navbar .container          { min-height: 54px; padding: 0 12px; }
    .navbar-brand img           { height: 34px; }

    nav.navbar.fixed-top .navbar-collapse {
        top: 54px;
        border-radius: 0 0 16px 16px;
    }

    nav.navbar.fixed-top .navbar-nav { padding: 0 8px; }

    nav.navbar.fixed-top .navbar-nav .nav-link {
        font-size: 0.95rem;
        padding: 11px 14px;
    }

    nav.navbar.fixed-top .navbar-nav .dropdown-menu.dropdown-menu-orange .dropdown-item {
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    nav.navbar.fixed-top .navbar-nav .dropdown-menu.dropdown-menu-orange .dropdown-item:hover {
        padding-left: 16px;
    }
}


/* ============================================================
   LANDSCAPE  (tinggi < 550px)
   ============================================================ */

@media screen and (max-height: 550px) and (orientation: landscape) {

    nav.navbar.fixed-top .navbar-collapse {
        max-height: calc(100vh - 54px);
        overflow-y: auto;
    }

    nav.navbar.fixed-top .navbar-nav .nav-link {
        padding: 9px 14px;
        font-size: 0.9rem;
    }

    nav.navbar.fixed-top .navbar-nav .dropdown-menu.dropdown-menu-orange .dropdown-item {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}


/* ============================================================
   TOUCH DEVICE
   ============================================================ */

@media (hover: none) and (pointer: coarse) {

    nav.navbar.fixed-top .navbar-nav .nav-link:active {
        background: rgba(210, 105, 30, 0.25);
    }

    nav.navbar.fixed-top .navbar-nav .dropdown-menu.dropdown-menu-orange .dropdown-item:active {
        background: rgba(210, 105, 30, 0.3);
        color: #FFD700;
    }
}

/* ========== HERO SECTION STYLES ========== */
/* ============================================================
   INVESTASI HERO SECTION - Warung Bakakak
   ============================================================ */

/* ── HERO SECTION ── */
.investasi-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a0800;

    /*
     * PERBAIKAN UTAMA: hapus margin-top karena body sudah punya
     * padding-top dari navbar (70px). margin-top di sini justru
     * mendorong section ke bawah dan menciptakan gap kosong.
     */
    margin-top: 0;
}


/* ============================================================
   VIDEO BACKGROUND
   ============================================================ */

.hero-video-container {
    position: absolute;
    inset: 0;          /* top:0 right:0 bottom:0 left:0 */
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* ── OVERLAY — sedikit lebih gelap agar teks jelas ── */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(20, 6, 0, 0.72) 0%,
        rgba(30, 10, 0, 0.801) 50%,
        rgba(20, 6, 0, 0.897) 100%
    );
    z-index: 2;
}


/* ============================================================
   HERO CONTENT
   ============================================================ */

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

/* ── LOGO ── */
.hero-logo-wrapper {
    margin-bottom: 6px;
}

.hero-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.55));
}

/* ── TITLE ── */
.hero-title {
    margin-top: 0;
    margin-bottom: 6px;
}

.hero-greeting {
    font-size: 1.7rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.2;
    display: inline-block;
}

/* Garis dekorasi di bawah judul */
.hero-greeting::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FF8C00);
    margin: 8px auto 6px;
    border-radius: 2px;
}

/* ── DESCRIPTION ── */
.hero-description {
    margin: 6px auto 22px;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Teks highlight kuning */
.highlight {
    color: #FFD700;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}


/* ============================================================
   TOMBOL WHATSAPP CTA
   ============================================================ */

.btn-wa-investasi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: 2px solid rgba(255, 215, 0, 0.35);
    border-radius: 50px;
    padding: 12px 30px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3), 0 5px 15px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-wa 2.5s infinite;
}

/* Efek shine */
.btn-wa-investasi::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-wa-investasi:hover {
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(135deg, #128C7E, #075E54);
    border-color: rgba(255, 215, 0, 0.65);
    box-shadow: 0 20px 35px rgba(37, 211, 102, 0.5), 0 10px 20px rgba(0, 0, 0, 0.4);
    animation: none;
    color: #ffffff;
}

.btn-wa-investasi:hover::before {
    left: 100%;
}

/* Icon WhatsApp */
.btn-wa-investasi i.bi-whatsapp {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn-wa-investasi:hover i.bi-whatsapp {
    transform: rotate(5deg) scale(1.1);
}

/* Teks dua baris */
.btn-wa-investasi .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-wa-investasi .btn-main-text {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-wa-investasi .btn-sub-text {
    font-size: 0.65rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Icon panah */
.btn-wa-investasi .btn-arrow {
    font-size: 1.3rem;
    opacity: 0.8;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-wa-investasi:hover .btn-arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* Animasi pulse */
@keyframes pulse-wa {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}


/* ============================================================
   TOMBOL DOWNLOAD PROPOSAL (opsional)
   ============================================================ */

.btn-download-proposal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #D2691E, #8B4513);
    border: 2px solid #FFD700;
    border-radius: 50px;
    padding: 12px 30px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-download-proposal i {
    font-size: 1.2rem;
    color: #FFD700;
}

.btn-download-proposal:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #E67E22, #A0522D);
    border-color: #FFA500;
    box-shadow: 0 15px 30px rgba(210, 105, 30, 0.4);
    color: #ffffff;
}


/* ============================================================
   RESPONSIVE — DESKTOP  (≥ 992px)
   ============================================================ */

@media (min-width: 992px) {

    .investasi-hero-section {
        height: 100vh;
    }

    .hero-logo {
        height: 120px;
    }

    .hero-greeting {
        font-size: 3.5rem;
    }

    .hero-greeting::after {
        width: 80px;
        height: 4px;
        margin: 15px auto 12px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.6;
    }

    .btn-wa-investasi {
        padding: 18px 45px;
        font-size: 1.1rem;
        gap: 15px;
    }

    .btn-wa-investasi i.bi-whatsapp {
        font-size: 2rem;
    }

    .btn-wa-investasi .btn-main-text {
        font-size: 1.2rem;
    }

    .btn-wa-investasi .btn-sub-text {
        font-size: 0.8rem;
    }

    .btn-wa-investasi .btn-arrow {
        font-size: 1.8rem;
    }
}


/* ============================================================
   RESPONSIVE — TABLET  (768px – 991px)
   ============================================================ */

@media (min-width: 768px) and (max-width: 991px) {

    .investasi-hero-section {
        height: 100vh;
    }

    .hero-logo {
        height: 100px;
    }

    .hero-greeting {
        font-size: 2.4rem;
    }

    .hero-greeting::after {
        width: 70px;
        height: 3px;
        margin: 10px auto 8px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .btn-wa-investasi {
        padding: 15px 35px;
        gap: 12px;
    }

    .btn-wa-investasi i.bi-whatsapp {
        font-size: 1.8rem;
    }

    .btn-wa-investasi .btn-main-text {
        font-size: 1rem;
    }

    .btn-wa-investasi .btn-sub-text {
        font-size: 0.7rem;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE  (≤ 767px)
   ============================================================ */

@media (max-width: 767px) {

    .investasi-hero-section {
        height: 100svh; /* svh: safe viewport height, handle browser chrome */
        min-height: 480px;
    }

    .hero-logo {
        height: 70px;
    }

    .hero-greeting {
        font-size: 1.6rem;
    }

    .hero-greeting::after {
        width: 48px;
        margin: 6px auto 5px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 8px;
    }

    .hero-description {
        margin-bottom: 18px;
    }

    .btn-wa-investasi {
        padding: 11px 22px;
        gap: 10px;
    }

    .btn-wa-investasi i.bi-whatsapp {
        font-size: 1.3rem;
    }

    .btn-wa-investasi .btn-main-text {
        font-size: 0.8rem;
    }

    .btn-wa-investasi .btn-sub-text {
        font-size: 0.62rem;
    }

    .btn-wa-investasi .btn-arrow {
        font-size: 1.1rem;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE KECIL  (≤ 575px)
   ============================================================ */

@media (max-width: 575px) {

    .hero-logo {
        height: 58px;
    }

    .hero-greeting {
        font-size: 1.45rem;
    }

    .hero-greeting::after {
        width: 38px;
        margin: 5px auto 4px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0 4px;
    }

    .btn-wa-investasi {
        padding: 10px 18px;
        gap: 8px;
        width: 100%;
        max-width: 290px;
        margin: 0 auto;
    }

    .btn-wa-investasi i.bi-whatsapp {
        font-size: 1.2rem;
    }

    .btn-wa-investasi .btn-main-text {
        font-size: 0.75rem;
    }

    .btn-wa-investasi .btn-sub-text {
        font-size: 0.6rem;
    }

    .btn-wa-investasi .btn-arrow {
        font-size: 1rem;
    }
}


/* ============================================================
   RESPONSIVE — LANDSCAPE  (tinggi < 500px)
   ============================================================ */

@media (max-height: 500px) and (orientation: landscape) {

    .investasi-hero-section {
        height: auto;
        min-height: 100vh;
        padding: 90px 0 40px; /* top: beri ruang navbar; bottom: napas */
    }

    .hero-logo {
        height: 50px;
    }

    .hero-greeting {
        font-size: 1.4rem;
    }

    .hero-greeting::after {
        margin: 4px auto 4px;
        width: 36px;
    }

    .hero-subtitle {
        font-size: 0.82rem;
    }

    .hero-description {
        margin-bottom: 14px;
    }

    .btn-wa-investasi {
        padding: 9px 20px;
        font-size: 0.8rem;
    }

    .btn-wa-investasi i.bi-whatsapp {
        font-size: 1.1rem;
    }

    .btn-wa-investasi .btn-main-text {
        font-size: 0.78rem;
    }

    .btn-wa-investasi .btn-sub-text {
        font-size: 0.58rem;
    }
}


/* ========== SECTION 1: MENGAPA BERINVESTASI ========== */
/* =============================================
   SECTION: MENGAPA INVESTASI (PREMIUM LOOK)
   ============================================= */

/* ============================================================
   SECTION MENGAPA BERINVESTASI - Warung Bakakak
   ============================================================ */

/* ── BASE SECTION ── */
.section-mengapa {
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Dekorasi background radial */
.section-mengapa::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.section-mengapa .container {
    position: relative;
    z-index: 2;
}


/* ============================================================
   SECTION HEADER
   ============================================================ */

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 1rem;

    /*
     * Paksa 2 baris saja:
     * HTML sudah ada <br> di antara "Mengapa" dan "Berinvestasi di…"
     * Pastikan white-space normal agar <br> tetap bekerja.
     */
    white-space: normal;
}

/* Garis dekorasi bawah judul */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FFC107, #FF8C00);
    margin: 14px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
}


/* ============================================================
   WHY CARDS
   ============================================================ */

.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /* Border yang jelas dan terlihat */
    border: 1.5px solid rgba(255, 193, 7, 0.25);
    border-radius: 20px;
    padding: 2.5rem 1.8rem;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #FFC107;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45),
                0 0 0 1px rgba(255, 193, 7, 0.4);
}

/* ── ICON ── */
.why-icon {
    width: 82px;
    height: 82px;
    background: rgba(255, 193, 7, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease, transform 0.4s ease;
}

.why-icon i {
    font-size: 2.4rem;
    color: #FFC107;
    transition: color 0.3s ease;
}

.why-card:hover .why-icon {
    background: #FFC107;
    transform: rotateY(180deg);
}

.why-card:hover .why-icon i {
    color: #1a110e;
}

/* ── TITLE ── */
.why-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0.85rem;
}

/* ── DESCRIPTION ── */
.why-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.8rem;
    flex-grow: 1; /* dorong .why-stat selalu ke bawah */
}

/* ── STAT BOX ── */
.why-stat {
    background: linear-gradient(145deg, #3d231a, #2a1812);
    border: 1.5px solid rgba(255, 193, 7, 0.35);
    border-radius: 14px;
    padding: 1rem 2rem;
    width: 100%;
    margin-top: auto;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover .why-stat {
    border-color: rgba(255, 193, 7, 0.65);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFC107;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* ============================================================
   RESPONSIVE — DESKTOP LEBAR  (≥ 1200px)
   ============================================================ */

@media (min-width: 1200px) {
    .section-title {
        font-size: 2.6rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .why-card {
        padding: 2.8rem 2rem;
    }

    .why-icon {
        width: 90px;
        height: 90px;
    }

    .why-icon i {
        font-size: 2.6rem;
    }

    .stat-number {
        font-size: 2.4rem;
    }
}


/* ============================================================
   RESPONSIVE — TABLET  (768px – 991px)
   ============================================================ */

@media (min-width: 768px) and (max-width: 991px) {
    .section-mengapa {
        padding: 65px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .why-card {
        padding: 2rem 1.4rem;
    }

    .why-icon {
        width: 72px;
        height: 72px;
    }

    .why-icon i {
        font-size: 2rem;
    }

    .why-title {
        font-size: 1.2rem;
    }

    .why-description {
        font-size: 0.88rem;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .why-stat {
        padding: 0.85rem 1.2rem;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE  (≤ 767px)
   ============================================================ */

@media (max-width: 767px) {
    .section-mengapa {
        padding: 55px 0;
    }

    .section-title {
        font-size: 1.7rem;
        padding: 0 8px;
    }

    .section-title::after {
        width: 48px;
        margin-top: 10px;
    }

    .section-subtitle {
        font-size: 0.92rem;
        padding: 0 4px;
    }

    .why-card {
        padding: 1.8rem 1.3rem;
        /* nonaktifkan hover lift saat touch agar tidak aneh saat scroll */
        transform: none;
    }

    .why-card:hover {
        transform: none;
    }

    .why-icon {
        width: 65px;
        height: 65px;
    }

    .why-icon i {
        font-size: 1.8rem;
    }

    .why-title {
        font-size: 1.15rem;
    }

    .why-description {
        font-size: 0.875rem;
        margin-bottom: 1.4rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.68rem;
        letter-spacing: 1.5px;
    }

    .why-stat {
        padding: 0.8rem 1rem;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE KECIL  (≤ 575px)
   ============================================================ */

@media (max-width: 575px) {
    .section-mengapa {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.88rem;
    }

    .why-card {
        padding: 1.6rem 1.1rem;
    }

    .why-icon {
        width: 58px;
        height: 58px;
    }

    .why-icon i {
        font-size: 1.6rem;
    }

    .why-title {
        font-size: 1.05rem;
        margin-bottom: 0.65rem;
    }

    .why-description {
        font-size: 0.84rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .stat-number {
        font-size: 1.65rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .why-stat {
        padding: 0.7rem 0.9rem;
        border-radius: 10px;
    }
}


/* ============================================================
   RESPONSIVE — LANDSCAPE  (tinggi < 500px)
   ============================================================ */

@media (max-height: 500px) and (orientation: landscape) {
    .section-mengapa {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .why-card {
        padding: 1.4rem 1rem;
    }

    .why-icon {
        width: 54px;
        height: 54px;
    }

    .why-icon i {
        font-size: 1.5rem;
    }

    .why-title {
        font-size: 1rem;
    }

    .why-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .why-stat {
        padding: 0.6rem 0.8rem;
    }
}


/* ============================================================
   TOUCH DEVICE — nonaktifkan efek hover yang tidak natural
   ============================================================ */

@media (hover: none) and (pointer: coarse) {
    .why-card:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 193, 7, 0.25);
        box-shadow: none;
    }

    .why-card:hover .why-icon {
        background: rgba(255, 193, 7, 0.12);
        transform: none;
    }

    .why-card:hover .why-icon i {
        color: #FFC107;
    }

    .why-card:hover .why-stat {
        border-color: rgba(255, 193, 7, 0.35);
        box-shadow: none;
    }
}


/* ========== SECTION 3: ALUR INVESTASI ========== */
/* ============================================================
   SECTION ALUR INVESTASI - Warung Bakakak
   ============================================================ */

/* ── BASE SECTION ── */
.section-alur {
    background-color: var(--primary-dark);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.section-alur .container {
    position: relative;
    z-index: 2;
}


/* ============================================================
   ALUR CARD
   ============================================================ */

.alur-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg,
        rgba(54, 34, 19, 0.95) 0%,
        rgba(65, 41, 23, 0.92) 50%,
        rgba(76, 47, 25, 0.90) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(210, 180, 140, 0.25);
    border-radius: 16px;
    padding: 1.6rem 1.3rem;
    position: relative;
    overflow: visible;      /* jangan hidden — agar konten tidak terpotong */
    height: 100%;
    min-height: 0;          /* biarkan tumbuh natural, tanpa batas max-height */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.alur-card:hover {
    transform: translateY(-8px);
    border-color: rgba(210, 180, 140, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

/* Step number (dekorasi) */
.step-number {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(210, 180, 140, 0.07);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    pointer-events: none;
}


/* ============================================================
   ICON
   ============================================================ */

.alur-icon {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D2B48C;
    margin: 0.4rem 0 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.alur-card:hover .alur-icon {
    transform: scale(1.15);
    color: #FFD700;
}


/* ============================================================
   TITLE & DESCRIPTION
   ============================================================ */

.alur-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFAF0;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 0.65rem;
}

.alur-description {
    color: #E8D8C8;
    font-size: 0.875rem;
    line-height: 1.55;
    text-align: center;
    opacity: 0.9;
    margin-bottom: 1.2rem;
    flex-grow: 1;   /* dorong elemen bawah (btn/infobox/rekening) ke bottom */
}


/* ============================================================
   TOMBOL ISI FORM
   ============================================================ */

.btn-alur {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    max-width: 180px;
    padding: 0.85rem 1.2rem;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #8B4513 100%);
    border: 2px solid #D2691E;
    border-radius: 10px;
    color: #FFFAF0;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

/* Shine effect */
.btn-alur::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.btn-alur:hover::before { left: 100%; }

.btn-alur:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 50%, #A0522D 100%);
    border-color: #FFD700;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.6), 0 0 15px rgba(210, 105, 30, 0.4);
    color: #FFFAF0;
}

.btn-alur:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.btn-alur-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-alur:hover .btn-alur-icon {
    transform: rotate(10deg) scale(1.2);
}

.btn-alur-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}


/* ============================================================
   INFO BOX  (step 2 & 4)
   ============================================================ */

.alur-info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 180px;
    padding: 0.85rem 1rem;
    background: rgba(65, 41, 23, 0.85);
    border: 2px solid rgba(210, 180, 140, 0.3);
    border-radius: 10px;
    margin-top: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, border-color 0.3s ease,
                transform 0.3s ease, box-shadow 0.3s ease;
}

.alur-info-box:hover {
    background: rgba(76, 47, 25, 0.95);
    border-color: rgba(210, 180, 140, 0.55);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.info-icon {
    font-size: 1.3rem;
    color: #D2B48C;
}

.info-text {
    color: #FFFAF0;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
}


/* ============================================================
   REKENING BOX  (step 3)
   ============================================================ */

.alur-rekening-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 1rem;
    background: rgba(65, 41, 23, 0.85);
    border: 2px solid rgba(210, 180, 140, 0.3);
    border-radius: 10px;
    margin-top: auto;
    box-sizing: border-box;     /* padding masuk ke lebar, tidak overflow */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, border-color 0.3s ease,
                transform 0.3s ease, box-shadow 0.3s ease;
}

.alur-rekening-box:hover {
    background: rgba(76, 47, 25, 0.95);
    border-color: rgba(210, 180, 140, 0.55);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

/* Bank name */
.bank-section {
    width: 100%;
    text-align: center;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(210, 180, 140, 0.2);
}

.bank-name {
    font-weight: 700;
    font-size: 1rem;
    color: #D2B48C;
    line-height: 1.2;
}

/* Nomor rekening */
.rek-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.rek-number {
    display: block;
    width: 100%;                /* penuh lebar parent agar tidak terpotong */
    font-weight: 800;
    font-size: 1rem;
    color: #FFFAF0;
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(210, 180, 140, 0.22);
    border-radius: 6px;
    padding: 7px 10px;
    text-align: center;
    letter-spacing: 1.5px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;    /* fallback jika nomor sangat panjang */
    box-sizing: border-box;
}

/* Nama rekening */
.name-section {
    width: 100%;
    text-align: center;
    padding-top: 6px;
    border-top: 1px solid rgba(210, 180, 140, 0.2);
}

.name-label {
    font-size: 0.7rem;
    color: #E8D8C8;
    opacity: 0.9;
    font-weight: 500;
    margin-bottom: 3px;
}

.account-name {
    color: #FFFAF0;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
}


/* ============================================================
   RESPONSIVE — DESKTOP LEBAR  (≥ 1200px)
   ============================================================ */

@media (min-width: 1200px) {
    .alur-card {
        padding: 1.8rem 1.5rem;
    }

    .alur-icon {
        font-size: 2.4rem;
    }

    .alur-title {
        font-size: 1.15rem;
    }

    .alur-description {
        font-size: 0.9rem;
    }

    .step-number {
        font-size: 2.6rem;
    }
}


/* ============================================================
   RESPONSIVE — TABLET  (768px – 991px)
   ============================================================ */

@media (min-width: 768px) and (max-width: 991px) {
    .section-alur {
        padding: 65px 0;
    }

    .alur-card {
        padding: 1.5rem 1.2rem;
    }

    .alur-icon {
        font-size: 2rem;
        margin: 0.3rem 0 0.85rem;
    }

    .alur-title {
        font-size: 1.05rem;
    }

    .alur-description {
        font-size: 0.85rem;
    }

    .step-number {
        font-size: 2.2rem;
    }

    .btn-alur,
    .alur-info-box {
        max-width: 165px;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE  (≤ 767px)
   ============================================================ */

@media (max-width: 767px) {
    .section-alur {
        padding: 55px 0;
    }

    .alur-card {
        padding: 1.4rem 1.1rem;
        /* matikan hover lift di touch — tidak natural saat scroll */
        transform: none;
    }

    .alur-card:hover {
        transform: none;
    }

    .alur-icon {
        font-size: 1.85rem;
        margin: 0.25rem 0 0.75rem;
    }

    .alur-title {
        font-size: 1rem;
    }

    .alur-description {
        font-size: 0.82rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .step-number {
        font-size: 2rem;
        top: 8px;
        right: 10px;
    }

    .btn-alur,
    .alur-info-box {
        max-width: 160px;
    }

    .rek-number {
        font-size: 0.92rem;
        letter-spacing: 1.2px;
    }

    .account-name {
        font-size: 0.74rem;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE KECIL  (≤ 575px)
   ============================================================ */

@media (max-width: 575px) {
    .section-alur {
        padding: 48px 0;
    }

    .alur-card {
        padding: 1.2rem 1rem;
    }

    .alur-icon {
        font-size: 1.65rem;
        margin: 0.2rem 0 0.65rem;
    }

    .alur-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .alur-description {
        font-size: 0.8rem;
        margin-bottom: 0.9rem;
    }

    .step-number {
        font-size: 1.8rem;
        top: 7px;
        right: 9px;
    }

    .btn-alur,
    .alur-info-box {
        max-width: 100%;    /* full width di layar sempit */
        padding: 0.75rem 1rem;
    }

    .btn-alur-text {
        font-size: 0.8rem;
    }

    .info-text {
        font-size: 0.82rem;
    }

    .alur-rekening-box {
        padding: 0.85rem;
        gap: 6px;
    }

    .rek-number {
        font-size: 0.88rem;
        letter-spacing: 1px;
        padding: 6px 8px;
    }

    .bank-name {
        font-size: 0.95rem;
    }

    .account-name {
        font-size: 0.72rem;
    }

    .name-label {
        font-size: 0.67rem;
    }
}


/* ============================================================
   RESPONSIVE — LANDSCAPE  (tinggi < 500px)
   ============================================================ */

@media (max-height: 500px) and (orientation: landscape) {
    .section-alur {
        padding: 40px 0;
    }

    .alur-card {
        padding: 1.1rem 0.9rem;
    }

    .alur-icon {
        font-size: 1.5rem;
        margin: 0.2rem 0 0.55rem;
    }

    .alur-title {
        font-size: 0.9rem;
    }

    .alur-description {
        font-size: 0.78rem;
        margin-bottom: 0.8rem;
    }

    .step-number {
        font-size: 1.6rem;
    }

    .btn-alur,
    .alur-info-box {
        padding: 0.65rem 0.9rem;
    }

    .btn-alur-text,
    .info-text {
        font-size: 0.78rem;
    }

    .rek-number {
        font-size: 0.84rem;
        padding: 5px 7px;
    }
}


/* ============================================================
   TOUCH DEVICE
   ============================================================ */

@media (hover: none) and (pointer: coarse) {
    .alur-card:hover {
        transform: none;
        border-color: rgba(210, 180, 140, 0.25);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .alur-card:hover .alur-icon {
        transform: none;
        color: #D2B48C;
    }

    .alur-info-box:hover,
    .alur-rekening-box:hover {
        transform: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .btn-alur:hover {
        transform: none;
    }
}


/* ========== SECTION 4: FAQ ========== */
.section-faq {
    padding: var(--section-spacing) 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.section-faq .faq-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
}

.section-faq .faq-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.section-faq .container {
    position: relative;
    z-index: 3;
}

/* Judul FAQ */
.section-title-light {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.section-subtitle-light {
    font-size: 1.2rem;
    color: #e8e8e8;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* FAQ Accordion - CSS ONLY SOLUTION */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(54, 34, 19, 0.95);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(139, 90, 43, 0.3);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-item {
    border-bottom: 1px solid rgba(139, 90, 43, 0.3);
    position: relative;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Hide checkbox */
.faq-checkbox {
    display: none;
    position: absolute;
    opacity: 0;
}

/* FAQ Question as label */
.faq-question {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(210, 105, 30, 0.1);
}

.faq-icon {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: var(--secondary-light);
    flex-shrink: 0;
}

.faq-text {
    flex-grow: 1;
    text-align: left;
}

.faq-toggle {
    margin-left: auto;
    font-size: 1rem;
    color: var(--secondary-light);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Answer - Initially hidden */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    background: rgba(45, 28, 16, 0.8);
    transition: all 0.3s ease;
}

.faq-answer p {
    color: #f0f0f0;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* CSS-ONLY: When checkbox is checked */
.faq-checkbox:checked + .faq-question {
    background: rgba(139, 90, 43, 0.25);
    border-left: 4px solid var(--secondary-light);
}

.faq-checkbox:checked + .faq-question .faq-toggle i {
    transform: rotate(45deg);
}

.faq-checkbox:checked + .faq-question + .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem 2rem;
}

/* WhatsApp CTA */
.whatsapp-cta-container {
    margin-top: 3rem;
    text-align: center;
    padding: 0 1rem;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    border: none;
    min-width: 280px;
}

.whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

.whatsapp-text {
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.whatsapp-subtext {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive */
@media (max-width: 767px) {
    .section-title-light {
        font-size: 2.2rem;
    }
    
    .section-subtitle-light {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-checkbox:checked + .faq-question + .faq-answer {
        padding: 1.2rem 1.5rem 1.5rem;
        max-height: 800px;
    }
    
    .whatsapp-cta {
        min-width: 250px;
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}





/* ========== FOOTER STYLES ========== */
.footer-modern {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 3px solid var(--secondary-color);
}

.footer-modern img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-modern .text-white-50 {
    color: #ffffff !important;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Instagram - Warna asli dengan efek smooth */
.social-links a:first-child {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite;
    color: #ffffff;
}

/* TikTok - Warna asli dengan efek smooth */
.social-links a:last-child {
    background: linear-gradient(45deg, #000000, #25F4EE, #FE2C55, #000000);
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite 0.5s;
    color: #ffffff;
}

/* Animasi gradient bergerak */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-links a:hover i {
    animation: iconPulse 0.5s ease;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.footer-modern h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-modern h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-light);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
    font-size: 0.95rem;
    opacity: 0.9;
    padding: 0.2rem 0;
}

.footer-links a:hover {
    color: var(--secondary-light);
    transform: translateX(5px);
    opacity: 1;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: #ffffff;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--secondary-light);
    margin-top: 0.2rem;
    margin-right: 0.8rem;
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--secondary-light);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 3rem 0 1.5rem;
    opacity: 0.3;
}

/* COPYRIGHT SECTION - TEKS PUTIH BOLD */
.footer-modern .text-center p {
    color: #ffffff !important;
    font-weight: 700; /* Bold */
    font-size: 0.95rem;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-modern .text-center a {
    color: #ffffff !important;
    font-weight: 700; /* Bold */
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
}

.footer-modern .text-center a:hover {
    color: var(--secondary-light) !important;
    text-decoration: underline;
}

/* Separator pipe */
.footer-modern .text-center p::before {
    content: "|";
    margin: 0 10px;
    opacity: 0.7;
}

/* ========== RESPONSIVE FOOTER ========== */
@media (max-width: 991px) {
    .footer-modern {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-modern .col-lg-4,
    .footer-modern .col-lg-2,
    .footer-modern .col-lg-3 {
        margin-bottom: 2rem;
    }
    
    .footer-modern h5 {
        margin-bottom: 1rem;
    }
    
    .footer-divider {
        margin: 2rem 0 1.5rem;
    }
}

@media (max-width: 767px) {
    .footer-modern {
        text-align: center;
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-modern img {
        margin: 0 auto 1rem;
        display: block;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-modern h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: center;
    }
    
    .footer-contact i {
        margin-top: 0;
    }
    
    /* Adjust copyright for mobile */
    .footer-modern .text-center p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-modern .text-center p::before {
        display: inline-block;
        margin: 0 8px;
    }
}

@media (max-width: 575px) {
    .footer-modern {
        padding: 2rem 0 1rem;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.6rem;
    }
    
    .footer-contact li {
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
    }
    
    .footer-modern .text-center p {
        font-size: 0.85rem;
    }
}