/* ===== MOBILE FIRST CSS ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    /* MOBILE FRIENDLY VARIABLES */
    --gold-primary: #D4AF37;
    --gold-secondary: #F9E076;
    --gold-dark: #B8860B;
    --gold-light: #FFE55C;
    
    --bg-primary: #0A0A0A;
    --bg-secondary: #121212;
    --bg-card: #1A1A1A;
    --bg-hover: #222222;
    
    --border-color: #333333;
    --border-gold: #D4AF37;
    
    --text-primary: #E5E5E5;
    --text-secondary: #A0A0A0;
    --text-gold: #D4AF37;
    
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    
    /* MOBILE SPECIFIC */
    --safe-area-inset-top: env(safe-area-inset-top);
    --safe-area-inset-bottom: env(safe-area-inset-bottom);
    --mobile-header-height: 50px; /* DIUBAH: 60px -> 50px */
    --mobile-bottom-nav-height: 60px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    touch-action: manipulation;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    min-height: -webkit-fill-available;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: var(--mobile-header-height); /* DIUBAH: Ditambahkan */
    padding-bottom: var(--mobile-bottom-nav-height);
}

body.mobile-view {
    -webkit-overflow-scrolling: touch;
}

/* ===== LOADER ===== */
.mobile-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border-top-color: var(--gold-primary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.25rem); }

p { 
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

a { 
    text-decoration: none; 
    color: inherit;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.section-header h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.section-header p {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 3vw, 1.1rem);
}

/* ===== BUTTONS MOBILE OPTIMIZED ===== */
.btn-login, .btn-register, .btn-primary, .btn-hero, .btn-livechat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    min-height: 44px;
    min-width: 44px;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.btn-login:active, .btn-register:active, .btn-primary:active, .btn-hero:active {
    transform: scale(0.98);
}

.btn-login {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-register {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000000;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-hero {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000000;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 1.5rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-livechat {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000000;
    font-weight: 700;
}

/* MOBILE SPECIFIC BUTTONS */
.mobile-full-width {
    width: 100%;
    display: block;
    text-align: center;
    margin: 0.5rem 0;
}

.quick-access-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin: 0.5rem 0;
    transition: all 0.2s ease;
}

.quick-access-btn.secondary {
    background: var(--bg-card);
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

/* ===== NAVIGATION MOBILE OPTIMIZED ===== */
.main-nav {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed; /* DIUBAH: fixed */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--mobile-header-height); /* DIUBAH: 50px */
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: center; /* DIUBAH: center untuk mobile */
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    height: 100%;
    position: relative; /* DIUBAH: ditambahkan */
}

.logo img {
    height: 35px; /* DIUBAH: 40px -> 35px */
    width: auto;
    max-width: 140px; /* DIUBAH: ditambahkan */
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
    transition: transform 0.3s ease;
}

.logo:active img {
    transform: scale(0.95);
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none; /* Sembunyikan default */
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 1.3rem; /* DIUBAH: 1.5rem -> 1.3rem */
    cursor: pointer;
    width: 40px; /* DIUBAH: 44px -> 40px */
    height: 40px;
    align-items: center;
    justify-content: center;
    position: absolute; /* DIUBAH: absolute */
    left: 10px; /* DIUBAH: ditambahkan */
    top: 50%; /* DIUBAH: ditambahkan */
    transform: translateY(-50%); /* DIUBAH: ditambahkan */
    z-index: 1002; /* DIUBAH: ditambahkan */
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--bg-card);
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 1.5rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-links {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.mobile-menu-link:active {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.mobile-menu-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* MOBILE BOTTOM NAV */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem;
    z-index: 999;
    height: var(--mobile-bottom-nav-height);
    backdrop-filter: blur(10px);
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.7rem;
    flex: 1;
    padding: 0.5rem;
    transition: all 0.2s ease;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--gold-primary);
}

.mobile-bottom-nav .nav-item.cta-nav {
    color: #000;
    background: var(--gold-primary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-top: -20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.mobile-bottom-nav .nav-item.cta-nav i {
    font-size: 1.5rem;
}

/* ===== BANNER FIXES ===== */
.banner-wrapper {
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    background-color: #000;
}

/* HERO CAROUSEL FIXED SIZE */
#heroCarousel {
    width: 100%;
    position: relative;
    background-color: #000;
}

#heroCarousel .carousel-inner {
    height: auto;
}

/* Container untuk menjaga aspect ratio */
.carousel-image-container {
    position: relative;
    width: 100%;
    padding-top: 31.927%; /* 613/1920 = 0.31927 (31.927%) untuk aspect ratio gambar desktop */
    overflow: hidden;
    background: #000;
}

.carousel-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: stretch;
    object-position: center;
}

/* Perbaiki carousel untuk mobile */
@media (max-width: 767px) {
    .banner-wrapper {
        margin-top: var(--mobile-header-height); /* DIUBAH: ditambahkan */
    }
    
    .carousel-image-container {
        padding-top: 46.719%; /* 299/640 = 0.46719 (46.719%) untuk aspect ratio gambar mobile */
    }
    
    /* Sembunyikan carousel controls di mobile */
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    /* Perbaiki carousel indicators untuk mobile */
    .carousel-indicators {
        bottom: 5px;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

/* Tablet view */
@media (min-width: 768px) and (max-width: 1023px) {
    .carousel-image-container {
        padding-top: 40%;
    }
}

/* Desktop view */
@media (min-width: 1024px) {
    .carousel-image-container {
        padding-top: 31.927%;
    }
}

/* Pastikan gambar banner selalu terlihat */
.carousel-item {
    background-color: #000 !important;
}

.carousel-item img {
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.5s ease;
}

.carousel-item:not(.active) img {
    opacity: 0;
}

.carousel-item.active img {
    opacity: 1;
}

/* Hilangkan margin pada carousel */
.carousel-inner {
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ===== MARQUEE MOBILE ===== */
.announcement-section {
    max-width: 1200px;
    margin: 15px auto 20px auto;
    padding: 0 1rem;
    width: 100%;
}

.marquee-container {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(18, 18, 18, 0.95));
    border: 2px solid var(--gold-primary);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.marquee-icon {
    color: var(--gold-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    animation: pulse 2s infinite ease-in-out;
    min-width: 24px;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.marquee-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 3px 0;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-right: 40px;
    position: relative;
    animation: marquee-scroll 20s linear infinite;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: opacity 0.5s ease;
    opacity: 0;
}

.marquee-text.loaded {
    opacity: 1;
    animation: marquee-scroll 15s linear infinite;
}

@keyframes marquee-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.marquee-text::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.7;
    animation: dot-pulse 1.5s infinite ease-in-out;
}

@keyframes dot-pulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.7; }
    50% { transform: translateY(-50%) scale(1.3); opacity: 1; }
}

/* ===== PROVIDERS SECTION MOBILE ===== */
.providers-section {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, var(--bg-secondary), rgba(18, 18, 18, 0.9));
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.provider-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.provider-card:active {
    transform: scale(0.98);
    border-color: var(--gold-primary);
}

.provider-logo {
    height: 50px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.provider-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.provider-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000000;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* MOBILE QUICK ACCESS */
.mobile-quick-access {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* ===== FEATURES SECTION MOBILE ===== */
.features-section {
    padding: 2.5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.feature-card:active {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.progress-item, .product-item {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.progress-item:last-child, .product-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.time-label span {
    color: var(--gold-primary);
    font-weight: 600;
}

.progress-bar {
    position: relative;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 4px;
    transition: width 1s ease;
    width: 0;
}

.progress-text {
    position: absolute;
    right: 0;
    top: -20px;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.8rem;
}

/* CONTACT LINKS */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.contact-link:active {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(3px);
}

.social-media {
    margin-top: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.social-icons a:active {
    background: var(--gold-primary);
    color: #000000;
    transform: scale(1.1);
}

/* ===== MAIN CONTENT MOBILE ===== */
.main-content {
    padding: 2rem 0;
}

.content-article {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 0 0.5rem;
}

.article-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.article-header h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--gold-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    align-items: center;
}

.article-body .lead {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* MOBILE QUICK CTA */
.mobile-quick-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
    border: 2px solid var(--gold-primary);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    margin: 2rem 0;
}

.cta-box h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.advantage-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.2s ease;
}

.advantage-card:active {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #000000;
    font-size: 1.3rem;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin: 1.5rem 0;
    padding: 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 1rem;
    padding-left: 3rem;
    position: relative;
    font-size: 0.95rem;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    font-size: 0.9rem;
}

.info-notice {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--info);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-notice i {
    color: var(--info);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.info-notice p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===== FAQ MOBILE ===== */
.faq-container {
    margin: 1.5rem 0;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    min-height: 60px;
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--gold-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== FOOTER MOBILE ===== */
.main-footer {
    background: var(--bg-primary);
    border-top: 2px solid var(--border-gold);
    padding: 2rem 0 1rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.footer-links li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

.footer-links a:active {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-contact-link:active {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.copyright {
    margin-bottom: 0.5rem;
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.payment-methods {
    margin-top: 1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 1.5rem;
}

/* ===== FLOATING BUTTONS MOBILE ===== */
.floating-buttons {
    position: fixed;
    bottom: 70px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 998;
}

.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #FFFFFF;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.floating-btn:active {
    transform: scale(0.95);
}

.floating-btn.wa {
    background: #25D366;
}

.floating-btn.telegram {
    background: #0088CC;
}

.floating-btn.chat {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000000;
}

.floating-btn.phone {
    background: var(--gold-dark);
}

/* ===== SCROLLBAR MOBILE ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 3px;
}

/* ===== MEDIA QUERIES ===== */

/* SMALL PHONES */
@media (max-width: 320px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .marquee-text {
        font-size: 0.75rem;
        animation-duration: 12s !important;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-quick-access {
        grid-template-columns: 1fr;
    }
    
    .floating-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    /* Untuk layar sangat kecil */
    .logo img {
        height: 30px;
        max-width: 120px;
    }
    
    .main-nav {
        height: 45px;
    }
    
    .banner-wrapper {
        margin-top: 45px !important;
    }
}

/* TABLETS & DESKTOP */
@media (min-width: 768px) {
    body {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .main-nav {
        position: sticky;
        height: auto;
        padding: 1rem 0;
    }
    
    .mobile-bottom-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-buttons {
        display: flex !important;
        gap: 0.75rem;
    }
    
    .btn-text {
        display: inline;
    }
    
    .nav-container {
        justify-content: space-between !important;
    }
    
    .logo img {
        height: 50px; /* DIUBAH: Kembali ke ukuran normal di desktop */
    }
    
    .banner-wrapper {
        margin-top: 0 !important; /* DIUBAH: Reset margin di desktop */
    }
    
    .providers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .floating-buttons {
        bottom: 2rem;
        right: 2rem;
        gap: 1rem;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    /* Tampilkan carousel controls di desktop */
    .carousel-control-prev,
    .carousel-control-next {
        display: flex !important;
    }
}

/* DESKTOP LARGE */
@media (min-width: 1024px) {
    .logo img {
        height: 60px;
    }
    
    .marquee-text {
        font-size: 1.05rem;
        animation-duration: 25s !important;
    }
    
    .provider-card:hover,
    .feature-card:hover,
    .advantage-card:hover {
        transform: translateY(-5px);
        border-color: var(--gold-primary);
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
    }
    
    .contact-link:hover,
    .footer-links a:hover,
    .footer-contact-link:hover {
        color: var(--gold-primary);
    }
    
    .social-icons a:hover {
        background: var(--gold-primary);
        color: #000000;
        transform: scale(1.1);
    }
    
    .floating-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
}

/* LARGE DESKTOP */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
}

/* DARK MODE SUPPORT */
@media (prefers-color-scheme: dark) {
    .marquee-container {
        background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(10, 10, 10, 0.95));
    }
}

/* IOS SAFARI FIXES */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
    
    .main-nav {
        padding-top: env(safe-area-inset-top);
        height: calc(var(--mobile-header-height) + env(safe-area-inset-top));
    }
    
    .mobile-bottom-nav {
        padding-bottom: env(safe-area-inset-bottom);
        height: calc(var(--mobile-bottom-nav-height) + env(safe-area-inset-bottom));
    }
    
    .floating-buttons {
        bottom: calc(70px + env(safe-area-inset-bottom));
    }
}

/* PRINT STYLES */
@media print {
    .main-nav,
    .mobile-bottom-nav,
    .floating-buttons,
    .announcement-section,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    body {
        background: #FFFFFF !important;
        color: #000000 !important;
        padding: 0 !important;
    }
    
    .content-article {
        border: 1px solid #DDD !important;
        box-shadow: none !important;
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-buttons {
        display: none !important;
    }
}

@media (max-width: 375px) {
    .carousel-image-container {
        padding-top: 50%;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.carousel-item {
    opacity: 1 !important;
}

@media (max-width: 767px) {
    body {
        padding-bottom: calc(var(--mobile-bottom-nav-height) + env(safe-area-inset-bottom));
    }
    
    .announcement-section {
        margin: 10px auto 15px auto;
        padding: 0 0.75rem;
    }
    
    .marquee-container {
        padding: 10px 12px;
    }
    
    .marquee-text {
        font-size: 0.75rem;
        animation-duration: 15s !important;
    }
    
    .providers-section {
        padding: 2rem 0;
    }
    
    .features-section {
        padding: 2rem 0;
    }
    
    .main-content {
        padding: 1.5rem 0;
    }
}

@supports not (aspect-ratio: 1/1) {
    .carousel-item {
        height: 0;
        padding-bottom: 31.927%;
    }
    
    @media (max-width: 767px) {
        .carousel-item {
            padding-bottom: 46.719%;
        }
    }
}

.carousel-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.carousel-indicators [data-bs-target] {
    background-color: #fff;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--gold-primary);
}

