/* ============================================
   1. SEVA/LUMI DESIGN SYSTEM VARIABLES
============================================ */
:root {
    /* Brand Colors */
    --lumi-primary: #AD0000;
    --lumi-primary-hover: #8A0000;
    --lumi-primary-active: #660000;
    --lumi-primary-light: #FFE9EB;
    --lumi-primary-lighter: #FFF5F5;
    
    /* Semantic Colors for Hero */
    --lumi-success-bg: #D1FAE5;
    --lumi-success-text: #065F46;
    --lumi-error-bg: #FEE2E2;
    --lumi-error-text: #991B1B;

    /* Neutrals */
    --lumi-white: #FFFFFF;
    --lumi-neutral-50: #FAFAFA;
    --lumi-neutral-100: #F5F5F5;
    --lumi-neutral-200: #E5E5E5;
    --lumi-neutral-300: #D4D4D4;
    --lumi-neutral-500: #737373;
    --lumi-neutral-800: #262626;
    --lumi-neutral-900: #171717;

    /* Warna Emas untuk Affiliate */
    --lumi-gold: #D97706; /* Amber-600 */
    --lumi-gold-light: #FEF3C7; /* Amber-100 */
    --lumi-gold-text: #92400E; /* Amber-800 */

    /* Typography */
    --font-sans: 'DM Sans', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Spacing & Radius */
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-hover: 0 12px 24px rgba(173, 0, 0, 0.15);
    --shadow-float: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

/* ============================================
   2. RESET & BASE
============================================ */
body {
    font-family: var(--font-sans);
    color: var(--lumi-neutral-900);
    background-color: var(--lumi-white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a { text-decoration: none; transition: all 0.2s ease; }
img { max-width: 100%; height: auto; }

/* ============================================
   3. COMPONENTS
============================================ */
/* Navbar */
.navbar-lumi {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-lumi .nav-link {
    font-weight: 500;
    color: var(--lumi-neutral-500);
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-full);
}
.navbar-lumi .nav-link:hover, .navbar-lumi .nav-link.active {
    color: var(--lumi-primary);
    background-color: var(--lumi-primary-lighter);
}

/* Buttons */
.btn-lumi-primary {
    background-color: var(--lumi-primary);
    border: 2px solid var(--lumi-primary);
    color: white;
    border-radius: var(--radius-full);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-lumi-primary:hover {
    background-color: var(--lumi-primary-hover);
    border-color: var(--lumi-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-lumi-outline {
    background: transparent;
    border: 2px solid var(--lumi-primary);
    color: var(--lumi-primary);
    border-radius: var(--radius-full);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
}
.btn-lumi-outline:hover {
    background-color: var(--lumi-primary-lighter);
    color: var(--lumi-primary);
    transform: translateY(-2px);
}

/* Cards */
.card-lumi {
    border: 1px solid var(--lumi-neutral-200);
    border-radius: var(--radius-xl);
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}
.card-lumi:hover {
    border-color: var(--lumi-primary-light);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}
.card-lumi img {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Utilities */
.section-padding { padding: 5rem 0; }
.bg-subtle { background-color: var(--lumi-neutral-50); }
.logo-fixed { max-height: 32px; width: auto; object-fit: contain; }
@media (min-width: 992px) { .logo-fixed { max-height: 36px; } }

/* Blog Utilities */
.blog-card-img { height: 200px; object-fit: cover; width: 100%; }
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Affiliate Section */
.bg-affiliate {
    background: linear-gradient(135deg, #171717 0%, #262626 100%);
    position: relative;
    overflow: hidden;
}
.card-glass-dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}
.affiliate-coin {
    position: absolute;
    right: -20px; bottom: -20px; opacity: 0.1;
    color: #FFD700; transform: rotate(-15deg);
}

/* Accordion */
.accordion-lumi .accordion-item {
    border: 1px solid var(--lumi-neutral-200);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}
.accordion-lumi .accordion-button:not(.collapsed) {
    color: var(--lumi-primary);
    background-color: var(--lumi-primary-lighter);
}
.accordion-lumi .accordion-button:focus {
    box-shadow: none;
    border-color: var(--lumi-primary-light);
}

/* Tutor Avatar */
.tutor-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    object-fit: cover; border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   4. HERO SECTION (NEW DESIGN)
============================================ */
/* Background Blob */
.hero-bg-blob {
    position: absolute; top: -100px; left: -100px;
    width: 600px; height: 600px;
    background: var(--lumi-primary-lighter);
    filter: blur(80px); border-radius: 50%;
    z-index: -1; opacity: 0.8;
}

/* Hero Badge */
.hero-pill-badge {
    background: var(--lumi-primary-light);
    color: var(--lumi-primary);
    font-weight: 700; font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Hero Typography */
.hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800; line-height: 1.1;
    color: var(--lumi-neutral-900); margin-bottom: 1rem;
}
.hero-headline .highlight-red { color: var(--lumi-primary); }
.hero-desc {
    font-size: 1.15rem; color: var(--lumi-neutral-500);
    max-width: 520px; margin-bottom: 2.5rem; line-height: 1.6;
}

/* Trust Indicators */
.hero-trust-row {
    display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem;
}
.hero-trust-item {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.9rem; color: var(--lumi-neutral-500); font-weight: 500;
}
.hero-trust-item i { color: var(--lumi-primary); }

/* HERO VISUAL CARDS */
.seva-visual-container {
    position: relative; height: 450px; width: 100%;
    display: flex; align-items: center; justify-content: center;
}
.visual-card {
    background: white; border-radius: 16px; padding: 1.5rem;
    position: absolute; width: 280px;
    transition: all 0.5s ease-out; box-shadow: var(--shadow-float);
}
.visual-card.card-before {
    left: 0; top: 15%; z-index: 1;
    border: 1px solid var(--lumi-neutral-100);
}
.visual-card.card-after {
    right: 10px; top: 25%; z-index: 2;
    border: 1px solid var(--lumi-neutral-200);
}

/* Micro Components inside Visual Card */
.mock-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 8px;
    font-size: 0.75rem; font-weight: 700; margin-bottom: 1rem;
}
.mock-badge.bg-gray { background: #F3F4F6; color: #6B7280; }
.mock-badge.bg-red { background: var(--lumi-primary); color: white; }

.mock-status {
    padding: 8px 12px; border-radius: 8px;
    font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 6px;
}
.mock-status.error { background: var(--lumi-error-bg); color: var(--lumi-error-text); }
.mock-status.success { background: var(--lumi-success-bg); color: var(--lumi-success-text); }

.mock-text { font-size: 0.85rem; color: var(--lumi-neutral-800); line-height: 1.5; }
.mock-text-muted { color: var(--lumi-neutral-400); font-style: italic; }

.hunter-float-badge {
    position: absolute; top: -12px; right: -10px;
    background: var(--lumi-primary); color: white;
    font-size: 0.7rem; font-weight: 800;
    padding: 4px 10px; border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(173,0,0,0.3);
    animation: bounce 3s infinite;
}
.hunter-float-badge.bg-success {
    background: #059669 !important;
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ============================================
   5. CAROUSEL & SLIDER ADDITIONS
============================================ */
/* Indicators Pill Shape */
.hero-carousel-indicators { bottom: -20px; margin-bottom: 0; }
.hero-carousel-indicators button {
    width: 12px !important; height: 12px !important;
    border-radius: 50% !important;
    background-color: var(--lumi-neutral-300) !important;
    border: none; margin: 0 6px !important; opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-carousel-indicators button.active {
    width: 12px !important; 
    height: 12px !important;
    background-color: var(--lumi-primary) !important;
    border-radius: 50% !important;
    opacity: 1;
}

/* Carousel Animations */
.carousel-item .reveal-on-slide { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.carousel-item.active .reveal-on-slide { opacity: 1; transform: translateY(0); }
.carousel-item.active .reveal-on-slide.delay-100 { transition-delay: 0.1s; }
.carousel-item.active .reveal-on-slide.delay-200 { transition-delay: 0.2s; }
.carousel-item.active .reveal-on-slide.delay-300 { transition-delay: 0.3s; }

/* Visual Card Slide Anim */
.carousel-item .visual-card { opacity: 0; transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }
.carousel-item.active .visual-card.card-before {
    opacity: 0.9; transform: translateX(0) scale(0.92) rotate(-3deg);
}
.carousel-item .visual-card.card-before { transform: translateX(-50px) scale(0.8) rotate(-10deg); }
.carousel-item.active .visual-card.card-after {
    opacity: 1; transform: translateX(0) rotate(0deg);
}
.carousel-item .visual-card.card-after { transform: translateX(50px) rotate(10deg); }

/* ============================================
   REVISI: Partner Slider (Manual Grid)
============================================ */
.partner-swiper-container {
    position: relative;
    padding: 1rem 3rem; /* Padding samping ditambah untuk tombol nav */
    /* Hapus mask-image agar tidak ada efek pudar yang menutupi logo */
    mask-image: none;
    -webkit-mask-image: none;
}

.partner-swiper {
    padding: 10px 0; /* Memberi ruang untuk shadow hover */
}

.partner-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px; /* Tinggi container slide yang pasti */
}

.partner-logo-slide {
    height: 60px; /* UKURAN DIPERBESAR (Desktop) */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo-slide:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Custom Navigation Buttons (Panah) */
.partner-nav-btn {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: var(--lumi-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid var(--lumi-neutral-200);
    transition: all 0.2s;
}

.partner-nav-btn:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.partner-nav-btn:hover {
    background: var(--lumi-primary);
    color: white;
    border-color: var(--lumi-primary);
}

/* Responsive Mobile */
@media (max-width: 991px) {
    .partner-swiper-container {
        padding: 1rem; /* Reset padding di mobile */
    }
    .partner-logo-slide {
        height: 45px; /* Sedikit lebih kecil di mobile tapi tetap jelas */
    }
    /* Sembunyikan tombol panah di mobile agar clean, user bisa swipe */
    .partner-nav-btn {
        display: none;
    }
}

/* ============================================
   MOBILE RESPONSIVE FIXES (Updated)
============================================ */
@media (max-width: 991px) {
    .section-padding { padding: 3rem 0; }
    
    /* Text Alignment Center di Mobile */
    .hero-headline { font-size: 2.5rem; text-align: center; }
    .hero-desc { text-align: center; margin-left: auto; margin-right: auto; }
    .hero-pill-badge { margin: 0 auto 1.5rem; display: table; }
    .hero-cta-wrapper { justify-content: center; }
    .hero-trust-row { justify-content: center; margin-bottom: 3rem; }

    /* HIDE VISUALS ON MOBILE (Sesuai Request) */
    .seva-visual-container {
        display: none !important;
    }
    
    /* Adjust carousel layout since visual is hidden */
    header.section-padding {
        padding-bottom: 4rem; /* Kurangi padding bawah */
    }
    
    .hero-carousel-indicators {
        bottom: 0; /* Naikkan posisi dots */
    }

    .partner-logo-slide { height: 32px; }
}

/* Typography Highlight Gold */
.highlight-gold {
    color: var(--lumi-gold);
}

/* Badge Styles untuk Affiliate */
.mock-badge.bg-gold {
    background: var(--lumi-gold-light);
    color: var(--lumi-gold-text);
}

/* ============================================
   7. AFFILIATE SLIDE ADDITIONS (APPEND THIS)
============================================ */

/* Floating Coin Animation */
.visual-card .coin-float {
    position: absolute;
    right: -15px;
    top: -15px;
    background: #FFD700; /* Emas mengkilap */
    color: #B45309;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
    z-index: 10;
    animation: bounce 3s infinite;
}

/* ============================================
   8. LAYOUT FIXES (REVISI FINAL - WIDER)
   Paste/Ganti di bagian paling bawah style.css
============================================ */

/* FIX DESKTOP: Lebarin dikit (1280px) */
/* Lebih lebar dari sebelumnya (1140px), tapi tetap terjaga agar tidak terlalu luas */
@media (min-width: 1400px) {
    .container {
        max-width: 1280px !important; 
    }
}

/* FIX MOBILE: Tetap dengan ruang napas 24px */
@media (max-width: 576px) {
    .container, .container-fluid {
        padding-left: 24px !important; 
        padding-right: 24px !important; 
    }

    /* Kompensasi margin row agar grid tetap rapi */
    .row {
        margin-left: -12px;
        margin-right: -12px;
    }
    
    .col, [class*="col-"] {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Typography adjustment untuk mobile */
    .hero-headline {
        font-size: 2.25rem !important;
    }
}

/* ============================================
   9. PROGRAM PAGE SPECIFIC STYLES
============================================ */

/* Hero Background khusus Program */
.program-hero-bg {
    background: linear-gradient(180deg, var(--lumi-white) 0%, var(--lumi-neutral-50) 100%);
}

/* Guide Icons (Bingung Memilih) */
.guide-icon-box {
    width: 80px;
    height: 80px;
    background: var(--lumi-primary-lighter);
    color: var(--lumi-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.card-lumi:hover .guide-icon-box {
    background: var(--lumi-primary);
    color: white;
    transform: scale(1.1);
}

/* Pricing / Program Card */
.price-label {
    font-size: 0.85rem;
    color: var(--lumi-neutral-500);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--lumi-primary);
    line-height: 1;
    letter-spacing: -1px;
}

.program-feature-list li {
    font-size: 0.95rem;
    color: var(--lumi-neutral-600);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
    width: 100%;
    font-weight: 700;
    border-radius: var(--radius-full);
    padding: 0.6rem 1.5rem;
}

.btn-whatsapp:hover {
    background-color: #1EB954;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Steps / Alur Belajar Timeline */
.steps-container {
    position: relative;
    padding-top: 1rem;
}

/* Garis penghubung (hanya muncul di Desktop) */
.steps-line {
    position: absolute;
    top: 35px; /* Sesuaikan dengan tengah lingkaran nomor */
    left: 10%;
    width: 80%;
    height: 3px;
    background: var(--lumi-neutral-200);
    z-index: 0;
    display: none;
}

@media (min-width: 992px) {
    .steps-line { display: block; }
}

.step-item {
    position: relative;
    z-index: 1; /* Supaya di atas garis */
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--lumi-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    border: 6px solid white; /* Border tebal supaya garis terpotong rapi */
    box-shadow: var(--shadow-sm);
}

/* Why Choose Icon */
.why-icon {
    width: 56px;
    height: 56px;
    background: var(--lumi-primary-lighter);
    color: var(--lumi-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================
   10. UPDATE: BADGE FIX & SEVA PROMO (APPEND THIS)
============================================ */

/* FIX: Badge Paling Laris - Duduk di garis border atas */
.badge-floating-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%); /* Geser ke tengah & naik setengah tinggi badge */
    z-index: 10;
    width: max-content;
}

/* Helper Class: Izinkan badge "keluar" dari garis kartu */
/* Gunakan ini HANYA di card yang tidak punya gambar full di bagian atas */
.card-lumi.card-overflow-visible {
    overflow: visible !important;
}

/* NEW: SeVA Promo Card Style (Modern & Techy) */
.seva-promo-card {
    background: linear-gradient(135deg, #FFF1F2 0%, #FFFFFF 100%);
    border: 1px solid #FECDD3; /* Merah muda lembut */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.seva-promo-card:hover {
    box-shadow: 0 15px 40px rgba(173, 0, 0, 0.08);
    border-color: var(--lumi-primary);
    transform: translateY(-3px);
}

/* Dekorasi background halus */
.seva-promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--lumi-primary-light) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.seva-sparkle-icon {
    color: var(--lumi-primary);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* ============================================
   11. IELTS PAGE SPECIFIC (APPEND THIS)
============================================ */

/* Mini Score Card untuk Hero Visual */
.ielts-score-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    background: var(--lumi-neutral-50);
    padding: 0.75rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--lumi-neutral-200);
}

.ielts-score-item {
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--lumi-neutral-600);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--lumi-neutral-100);
}

.ielts-score-val {
    font-weight: 800;
    color: var(--lumi-neutral-900);
}

/* Feature Icon Box (Kurikulum) */
.curr-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.curr-icon-box.blue { background: #EFF6FF; color: #3B82F6; }
.curr-icon-box.purple { background: #FAF5FF; color: #A855F7; }
.curr-icon-box.orange { background: #FFF7ED; color: #F97316; }
.curr-icon-box.green { background: #F0FDF4; color: #22C55E; }
.curr-icon-box.red { background: #FEF2F2; color: #EF4444; }
.curr-icon-box.teal { background: #F0FDFA; color: #14B8A6; }

/* ============================================
   12. TOEFL PAGE SPECIFIC (APPEND THIS)
============================================ */

/* Visual Skor TOEFL ITP (List Style) */
.toefl-score-list {
    background: var(--lumi-neutral-50);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--lumi-neutral-200);
}

.toefl-score-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--lumi-neutral-200);
    font-size: 0.8rem;
    color: var(--lumi-neutral-600);
}

.toefl-score-row:last-child {
    border-bottom: none;
}

.toefl-score-row span:last-child {
    font-weight: 700;
    color: var(--lumi-neutral-900);
    background: white;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid var(--lumi-neutral-200);
}

/* Comparison Card (ITP vs iBT) */
.vs-card {
    background: white;
    border: 1px solid var(--lumi-neutral-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
}

.vs-card:hover {
    border-color: var(--lumi-primary-light);
    box-shadow: var(--shadow-card);
}

.vs-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--lumi-neutral-100);
}

.vs-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.vs-icon.itp { background: #E0F2FE; color: #0284C7; } /* Sky Blue */
.vs-icon.ibt { background: #FEF3C7; color: #D97706; } /* Amber */

/* ============================================
   13. ENGLISH PAGE SPECIFIC (APPEND THIS)
============================================ */

/* Chat Bubble Visual for Hero */
.chat-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-bubble {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    font-size: 0.85rem;
    position: relative;
    max-width: 90%;
    line-height: 1.5;
}

.chat-bubble.left {
    background: var(--lumi-neutral-100);
    color: var(--lumi-neutral-600);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.chat-bubble.right {
    background: var(--lumi-primary-lighter);
    color: var(--lumi-primary-active);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    margin-left: auto;
    border: 1px solid #FECDD3;
}

/* Typing Indicator Animation */
.typing-dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--lumi-neutral-400);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
    margin: 0 2px;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Vocab Card Style */
.vocab-card {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    border: 1px dashed var(--lumi-neutral-300);
    text-align: center;
    transition: all 0.3s ease;
}

.vocab-card:hover {
    border-color: var(--lumi-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   14. KAMIS ENGLISH SPECIFIC (APPEND THIS)
============================================ */

/* Virtual Meet Grid (Community Vibe) */
.meet-grid-container {
    background: white;
    padding: 10px;
    border-radius: 16px;
    box-shadow: var(--shadow-float);
    transform: rotate(-3deg);
    border: 1px solid var(--lumi-neutral-200);
}

.meet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.meet-card {
    background: var(--lumi-neutral-200);
    border-radius: 8px;
    aspect-ratio: 16/10; /* Rasio Video */
    position: relative;
    overflow: hidden;
}

.meet-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meet-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 6px 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.meet-name {
    color: white;
    font-size: 0.65rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.meet-mic {
    width: 18px;
    height: 18px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
}

.meet-mic.active {
    background: var(--lumi-primary); /* Merah saat bicara */
    animation: pulse-mic 1.5s infinite;
}

.meet-emoji-float {
    position: absolute;
    right: -20px;
    bottom: 20px;
    font-size: 2rem;
    animation: floatUp 3s infinite ease-in;
    opacity: 0;
}

.meet-emoji-float:nth-child(2) { right: 10px; animation-delay: 1s; }
.meet-emoji-float:nth-child(3) { right: -10px; bottom: 50px; animation-delay: 2s; }

@keyframes pulse-mic {
    0% { box-shadow: 0 0 0 0 rgba(173, 0, 0, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(173, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(173, 0, 0, 0); }
}

@keyframes floatUp {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    20% { opacity: 1; transform: scale(1); }
    100% { transform: translateY(-100px) scale(1.2); opacity: 0; }
}

/* Schedule Card */
.schedule-box {
    border: 2px dashed var(--lumi-neutral-300);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.schedule-box:hover {
    border-color: var(--lumi-primary);
    background: var(--lumi-primary-lighter);
}

/* ============================================
   15. CONTACT PAGE SPECIFIC (APPEND THIS)
============================================ */

/* Contact Cards (Info Box) */
.contact-info-box {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--lumi-neutral-200);
    display: flex;
    align-items: start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    border-color: var(--lumi-primary-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.contact-icon-wrapper {
    width: 42px;
    height: 42px;
    background: var(--lumi-primary-lighter);
    color: var(--lumi-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Contact Form Style */
.contact-form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--lumi-neutral-200);
}

.form-label-lumi {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--lumi-neutral-700);
    margin-bottom: 0.5rem;
}

.form-control-lumi {
    border: 1px solid var(--lumi-neutral-300);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    background-color: var(--lumi-neutral-50);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-control-lumi:focus {
    background-color: white;
    border-color: var(--lumi-primary);
    box-shadow: 0 0 0 4px var(--lumi-primary-lighter);
    outline: none;
}

/* Map Container */
.map-frame {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--lumi-neutral-200);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Support Visual (Chat Bubble Variant) */
.support-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}

.support-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #22C55E; /* Online Green */
    border: 2px solid white;
    border-radius: 50%;
}

/* ============================================
   16. CS SELECTION CARDS (APPEND THIS)
============================================ */

.cs-selection-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--lumi-neutral-200);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-card {
    background: var(--lumi-neutral-50);
    border: 1px solid var(--lumi-neutral-200);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cs-card:hover {
    background: white;
    border-color: #25D366; /* Warna WA */
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.15);
    transform: translateY(-4px);
}

.cs-avatar-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
}

.cs-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.cs-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #22C55E; /* Online Green */
    border: 3px solid white;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.btn-cs-chat {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    width: 100%;
    transition: all 0.2s;
}

.btn-cs-chat:hover {
    background-color: #1EB954;
    color: white;
}

/* ============================================
   17. AFFILIATE PAGE SPECIFIC (COMPACT VERSION)
============================================ */

/* Hero Background */
.affiliate-hero-bg {
    background: radial-gradient(circle at top right, #FFFBEB 0%, #FFFFFF 40%);
}

/* Benefit Card (Why Join) - DIPERKECIL */
.aff-benefit-card {
    border: 1px solid var(--lumi-neutral-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem; /* Dikecilkan dari 1.5rem */
    height: 100%;
    background: white;
    transition: all 0.3s ease;
}

.aff-benefit-card:hover {
    border-color: var(--lumi-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.1);
}

.aff-benefit-card h5 {
    font-size: 1.1rem; /* Font judul sedikit lebih kecil */
    margin-bottom: 0.5rem;
}

.aff-benefit-card p {
    font-size: 0.85rem; /* Font deskripsi lebih ringkas */
    line-height: 1.5;
}

.aff-icon-box {
    width: 42px; /* Dikecilkan dari 50px */
    height: 42px; /* Dikecilkan dari 50px */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem; /* Jarak bawah dikurangi */
    font-size: 1.25rem; /* Icon dikecilkan */
}

.aff-icon-box.gold { background: #FEF3C7; color: #D97706; }
.aff-icon-box.green { background: #DCFCE7; color: #166534; }
.aff-icon-box.blue { background: #DBEAFE; color: #1E40AF; }

/* Commission Scheme Card - LEBIH RAMPING */
.commission-card {
    background: linear-gradient(135deg, #171717 0%, #262626 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 2rem; /* Dikecilkan dari 2.5rem */
    position: relative;
    overflow: hidden;
    text-align: center;
    max-width: 900px; /* Batasi lebar agar tidak terlalu melar */
    margin: 0 auto; /* Tengah */
}

.commission-amount {
    font-size: 2.75rem; /* Dikecilkan dari 3.5rem agar tidak terlalu raksasa */
    font-weight: 800;
    color: #FBBF24;
    line-height: 1;
    margin: 0.75rem 0;
    text-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.commission-note {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    padding: 0.4rem 1rem; /* Padding lebih kecil */
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem; /* Font lebih kecil */
}

/* Product Tag - COMPACT */
.aff-product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem; /* Lebih tipis */
    border: 1px dashed var(--lumi-neutral-300);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    background: var(--lumi-neutral-50);
}

.aff-product-item h6 {
    font-size: 0.95rem;
}

/* Target Audience List */
.check-list-gold li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem; /* Jarak antar poin dikurangi */
    color: var(--lumi-neutral-700);
    font-size: 0.95rem;
}

.check-list-gold li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px; /* Checkmark lebih kecil */
    height: 20px;
    background: var(--lumi-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Dashboard Visual Mockup (Income Graph) */
.income-card {
    background: white;
    border-radius: 20px;
    padding: 1.25rem; /* Lebih compact */
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid var(--lumi-neutral-100);
}

.income-graph-bar {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px; /* Tinggi grafik dikurangi */
    margin-top: 1rem;
}

.i-bar {
    flex: 1;
    background: var(--lumi-neutral-100);
    border-radius: 4px;
    transition: height 1s ease;
}

.i-bar.active {
    background: linear-gradient(to top, #F59E0B, #FBBF24);
}

.income-float-badge {
    position: absolute;
    right: -10px;
    top: 15px;
    background: #22C55E;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    animation: floatUp 3s infinite ease-in-out;
}

/* ============================================
   18. AFFILIATE REGISTRATION PAGE (APPEND THIS)
============================================ */

/* Background Page */
.aff-reg-body {
    background-color: #FAFAFA;
    background-image: radial-gradient(circle at 10% 20%, #FFFBEB 0%, #FAFAFA 40%), 
                      radial-gradient(circle at 90% 80%, #FFF7ED 0%, #FAFAFA 40%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    font-family: 'DM Sans', sans-serif;
}

/* Card Container */
.aff-reg-card {
    background: white;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
    padding: 2.5rem;
}

/* Decorative Header Bar */
.aff-reg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--lumi-primary) 0%, var(--lumi-gold) 100%);
}

/* Typography */
.aff-reg-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--lumi-neutral-900);
    margin-bottom: 0.5rem;
}

.aff-reg-subtitle {
    color: var(--lumi-neutral-500);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Form Elements */
.aff-reg-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--lumi-neutral-800);
    margin-bottom: 0.5rem;
    display: block;
}

.aff-reg-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--lumi-neutral-300);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--lumi-neutral-900);
    background-color: var(--lumi-neutral-50);
    transition: all 0.2s ease;
}

.aff-reg-input:focus {
    outline: none;
    background-color: white;
    border-color: var(--lumi-gold);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1); /* Gold shadow ring */
}

/* Button */
.aff-reg-btn {
    width: 100%;
    padding: 0.85rem;
    background: var(--lumi-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.aff-reg-btn:hover {
    background: var(--lumi-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(173, 0, 0, 0.2);
}

.aff-reg-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--lumi-neutral-500);
}

.aff-reg-link {
    color: var(--lumi-primary);
    font-weight: 600;
    text-decoration: none;
}

.aff-reg-link:hover {
    text-decoration: underline;
}

/* Icon inside input */
.input-with-icon {
    position: relative;
}

.input-icon-left {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lumi-neutral-500);
    pointer-events: none;
}

.input-padded-left {
    padding-left: 2.75rem;
}

/* ============================================
   19. AFFILIATE LOGIN PAGE (APPEND THIS)
============================================ */

/* Login Card Container (Lebih ramping dari register) */
.aff-login-card {
    background: white;
    width: 100%;
    max-width: 420px; /* Lebih kecil agar pas untuk form login */
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
    padding: 2.5rem;
}

/* Gold Header Line (Kebalikan gradien register agar variasi) */
.aff-login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--lumi-gold) 0%, var(--lumi-primary) 100%);
}

/* Helper: Options Row (Remember Me & Forgot Pass) */
.aff-options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--lumi-neutral-500);
}

/* Custom Checkbox */
.form-check-input.aff-check {
    border-color: var(--lumi-neutral-300);
    width: 16px;
    height: 16px;
    margin-top: 0.15em;
}

.form-check-input.aff-check:checked {
    background-color: var(--lumi-primary);
    border-color: var(--lumi-primary);
}

.aff-forgot-link {
    color: var(--lumi-neutral-500);
    text-decoration: none;
    transition: color 0.2s;
}

.aff-forgot-link:hover {
    color: var(--lumi-primary);
}

/* Password Toggle Icon */
.input-icon-right {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lumi-neutral-500);
    cursor: pointer;
    z-index: 2;
}

.input-icon-right:hover {
    color: var(--lumi-primary);
}

/* ============================================
   20. AFFILIATE SPLIT LOGIN (APPEND THIS)
============================================ */

/* Main Container (Full Height) */
.aff-split-wrapper {
    min-height: 100vh;
    background-color: white;
    overflow-x: hidden;
}

/* Left Side (Visual) */
.aff-split-visual {
    background: linear-gradient(135deg, #FFFBEB 0%, #FFF7ED 100%); /* Gold/Cream tint */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    overflow: hidden;
}

/* Dekorasi Background di sisi kiri */
.aff-split-visual::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.aff-split-visual::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(173, 0, 0, 0.05) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    border-radius: 50%;
}

/* Testimonial/Quote Card di sisi kiri */
.aff-quote-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

/* Right Side (Form) */
.aff-split-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    max-width: 550px;
    margin: 0 auto;
    height: 100%;
}

/* Form inputs styling specific for split layout (Clean Look) */
.aff-split-input {
    background-color: var(--lumi-neutral-50);
    border: 1px solid var(--lumi-neutral-200);
    padding: 0.85rem 1rem;
    padding-left: 2.75rem; /* Space for icon */
    border-radius: 12px;
    width: 100%;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.aff-split-input:focus {
    background-color: white;
    border-color: var(--lumi-primary);
    box-shadow: 0 0 0 4px var(--lumi-primary-lighter);
    outline: none;
}

.aff-btn-primary {
    background-color: var(--lumi-primary);
    color: white;
    width: 100%;
    padding: 0.85rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    transition: all 0.2s;
}

.aff-btn-primary:hover {
    background-color: var(--lumi-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(173, 0, 0, 0.15);
}

/* ============================================
   21. CS REDIRECT PAGE (APPEND THIS)
============================================ */

/* Center Container */
.cs-redirect-wrapper {
    min-height: 80vh; /* Agar vertikal center enak dilihat */
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #FFFBEB 0%, #FFFFFF 60%);
}

/* Card Styling */
.cs-redirect-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--lumi-neutral-200);
    text-align: center;
    max-width: 480px;
    width: 90%;
    position: relative;
    overflow: hidden;
}

/* Green Line Top */
.cs-redirect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #25D366; /* WA Color */
}

/* Icon Animation */
.cs-wa-pulse {
    width: 80px;
    height: 80px;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.cs-wa-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0;
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* Progress Bar Simple */
.cs-progress {
    height: 4px;
    background: var(--lumi-neutral-200);
    border-radius: 4px;
    width: 100%;
    max-width: 200px;
    margin: 1.5rem auto 0;
    overflow: hidden;
}

.cs-progress-bar {
    height: 100%;
    background: #25D366;
    width: 0%;
    animation: fillProgress 2s ease-in-out forwards;
}

@keyframes fillProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ============================================
   21. CS HUB PAGE (STANDALONE) - APPEND THIS
============================================ */

/* Background khusus halaman CS */
.cs-hub-section {
    background-color: #FAFAFA;
    background-image: radial-gradient(circle at 50% 0%, #FFFBEB 0%, #FAFAFA 50%);
    min-height: 80vh; /* Agar konten tidak terlalu mepet atas-bawah */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-hub-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Helper untuk card agar bayangannya lebih soft di halaman ini */
.cs-card.hub-variant {
    background: white;
    border: 1px solid var(--lumi-neutral-100);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.cs-card.hub-variant:hover {
    border-color: #25D366;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
}

/* ============================================
   22. LEGAL PAGE SPECIFIC (APPEND THIS)
============================================ */

/* Header Background */
.legal-header-bg {
    background-color: var(--lumi-neutral-50);
    border-bottom: 1px solid var(--lumi-neutral-200);
    padding: 3rem 0;
}

/* Sidebar Navigation (Sticky) */
.legal-sidebar {
    position: sticky;
    top: 100px; /* Jarak dari atas saat scroll */
}

.legal-nav-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--lumi-neutral-600);
    border-left: 3px solid transparent;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    border-radius: 0 8px 8px 0;
}

.legal-nav-item:hover,
.legal-nav-item.active {
    color: var(--lumi-primary);
    border-left-color: var(--lumi-primary);
    background-color: var(--lumi-primary-lighter);
    font-weight: 600;
}

/* Content Typography */
.legal-body {
    color: var(--lumi-neutral-800);
    font-size: 1rem;
    line-height: 1.8;
}

.legal-body h2 {
    font-weight: 700;
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: var(--lumi-neutral-900);
    scroll-margin-top: 100px; /* Offset agar tidak tertutup navbar saat di-klik */
    border-bottom: 1px solid var(--lumi-neutral-200);
    padding-bottom: 0.75rem;
}

.legal-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--lumi-neutral-900);
}

.legal-body p {
    margin-bottom: 1.25rem;
    color: var(--lumi-neutral-600);
}

.legal-body ul, .legal-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--lumi-neutral-600);
}

.legal-body li {
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.85rem;
    color: var(--lumi-neutral-500);
    margin-top: 0.5rem;
}

/* ============================================
   23. ABOUT PAGE SPECIFIC (APPEND THIS)
============================================ */

/* About Hero */
.about-hero-bg {
    background: linear-gradient(135deg, #FFFBEB 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(173, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Value Card (Visi Misi) */
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--lumi-neutral-200);
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--lumi-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--lumi-neutral-100);
    line-height: 1;
    margin-bottom: -1rem;
    position: relative;
    z-index: 0;
}

.value-content {
    position: relative;
    z-index: 1;
}

/* Team Card */
.team-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.team-card:hover {
    background: white;
    border-color: var(--lumi-neutral-200);
    box-shadow: var(--shadow-card);
}

.team-img-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-sm);
}

.team-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-univ {
    height: 20px;
    object-fit: contain;
}

/* Stats Counter */
.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lumi-primary);
    margin-bottom: 0.5rem;
}

/* ============================================
   24. STUDEV TALK PAGE SPECIFIC
============================================ */

/* Hero Banner dengan pola background halus */
.talk-hero-bg {
    background-color: #FAFAFA;
    background-image: radial-gradient(#AD0000 0.5px, transparent 0.5px), radial-gradient(#AD0000 0.5px, #FAFAFA 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-repeat: repeat;
}

/* Kartu Statistik Transparan */
.stat-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--lumi-neutral-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}
.stat-glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--lumi-primary);
}

/* Badge Topik Webinar */
.topic-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--lumi-neutral-200);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--lumi-neutral-600);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}
.topic-badge:hover {
    border-color: var(--lumi-primary);
    color: var(--lumi-primary);
    transform: scale(1.05);
}

/* Timeline Card untuk Jadwal */
.event-card {
    border-left: 4px solid var(--lumi-primary);
    background: white;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}
.event-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}