/* =====================================================
   RESET & BASE STYLES
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #08111f;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.header {
    width: 100%;
    background: #111827;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-decoration: none;
}

.logo span {
    color: #fbbf24;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.nav-menu a:hover {
    color: #fbbf24;
}

.desktop-action {
    display: flex;
    gap: 12px;
}

.mobile-action {
    display: none;
}

.btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.login {
    border: 2px solid #fbbf24;
    color: #fbbf24;
}

.login:hover {
    background: #fbbf24;
    color: #111827;
}

.register {
    background: #fbbf24;
    color: #111827;
}

.register:hover {
    opacity: .9;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

@media(max-width: 900px) {
    .navbar {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: #111827;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px;
        transition: .4s;
    }

    .navbar.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
    }

    .desktop-action {
        display: none;
    }

    .mobile-action {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 30px;
    }

    .mobile-action .btn {
        text-align: center;
    }

    .menu-btn {
        display: block;
    }
}

/* =====================================================
   HERO SECTION PREMIUM (VARIABLES)
   ===================================================== */
:root {
    --primary: #f8c94c;
    --secondary: #ffb300;
    --dark: #08121f;
    --dark2: #101b2d;
    --dark3: #15243b;
    --white: #ffffff;
    --text: #d5dceb;
    --border: rgba(255, 255, 255, .10);
    --radius: 24px;
    --transition: .35s ease;
}

.hero * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(140deg, #07111d 0%, #0b1524 35%, #14243d 100%);
    padding: 100px 0;
}

/* BACKGROUND EFFECTS */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .25;
}

.blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.blur1 {
    width: 550px;
    height: 550px;
    background: #f7b50033;
    top: -180px;
    right: -150px;
    animation: floatGlow 8s infinite ease-in-out;
}

.blur2 {
    width: 450px;
    height: 450px;
    background: #1b75ff25;
    bottom: -150px;
    left: -150px;
    animation: floatGlow2 10s infinite ease-in-out;
}

/* HERO CONTAINER LAYOUT */
.hero-container {
    position: relative;
    z-index: 5;
    width: 92%;
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* =====================================================
   HERO LEFT CONTENT
   ===================================================== */
.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(248, 201, 76, .12);
    border: 1px solid rgba(248, 201, 76, .35);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
    backdrop-filter: blur(15px);
}

.hero h1 {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--primary);
    display: block;
    text-shadow: 0 0 25px rgba(255, 193, 7, .45);
}

.hero-desc {
    font-size: 19px;
    color: var(--text);
    line-height: 1.9;
    max-width: 620px;
    margin-bottom: 42px;
}

/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 18px 34px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffd85f, #ffb000);
    color: #111;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(255, 190, 0, .30);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(255, 190, 0, .40);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 18px 34px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, .18);
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(18px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .08);
    border-color: var(--primary);
}

/* HERO KEY FEATURES */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 45px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    backdrop-filter: blur(16px);
    transition: .35s;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(248, 201, 76, .35);
}

.feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd861, #ffb000);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #111;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    color: white;
    font-size: 16px;
}

.feature-item span {
    display: block;
    margin-top: 5px;
    color: #aab8d2;
    font-size: 14px;
}

/* HERO STATS CARDS */
.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-card {
    width: 170px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    border-radius: 22px;
    text-align: center;
    padding: 28px 18px;
    backdrop-filter: blur(20px);
    transition: .35s;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(248, 201, 76, .40);
}

.stat-card h3 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-card span {
    color: #bcc7da;
    font-size: 15px;
}

/* =====================================================
   HERO RIGHT DISPLAY (VERSI MINIMALIS & CLEAN)
   ===================================================== */
.hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    gap: 30px; /* Ruang vertikal yang rapi antara gambar dan box info */
}

/* Efek Cahaya Latar Lembut */
.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, .15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Pembungkus Gambar Utama */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px; 
    z-index: 5;
}

.hero-image-wrapper img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35));
    animation: smoothFloat 5s ease-in-out infinite; /* Ayunan halus yang premium */
}

/* =====================================================
   GLASS CARD (KOTAK SPESIFIKASI MINIMALIS)
   ===================================================== */
.glass-card {
    position: relative; /* Menjadi relatif agar mengalir rapi di bawah gambar */
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 24px;
    z-index: 6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.glass-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.glass-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffd85f, #ffb300);
    color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 800;
}

.glass-header h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}

.glass-header small {
    color: #bfc9da;
    font-size: 13px;
}

.glass-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 18px 0;
}

.glass-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.glass-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.glass-item span {
    color: #cbd5e1;
    font-size: 14px;
}

.glass-item strong {
    color: #34d399; /* Warna hijau indikator yang lebih elegan */
    font-size: 16px;
}

/* MENONAKTIFKAN SEBELUMNYA FLOATING CARDS AGAR TIDAK RAMAI */
.floating-card {
    display: none !important;
}

/* =====================================================
   ANIMATION KEYFRAMES
   ===================================================== */
@keyframes smoothFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatGlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(30px); }
}

@keyframes floatGlow2 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(30px); }
}

/* =====================================================
   RESPONSIVE LAYOUT & BREAKPOINTS
   ===================================================== */
@media(max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        min-height: auto;
        margin-top: 20px;
    }

    .hero-image-wrapper {
        margin: 0 auto;
    }

    .glass-card {
        margin: 10px auto 0;
    }
}

@media(max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-image-wrapper {
        max-width: 320px;
    }

    .hero-glow {
        width: 300px;
        height: 300px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        width: 100%;
        max-width: 300px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .glass-card {
        max-width: 340px;
    }
}

@media(max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-image-wrapper {
        max-width: 260px;
    }

    .glass-card {
        padding: 20px;
    }
}

/* =====================================================
   PROVIDER SLOT ONLINE SECTION - STYLE
===================================================== */
.providers-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #101b2d 0%, #08111f 100%);
    overflow: hidden;
    z-index: 5;
}

.providers-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header styling */
.providers-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.providers-header h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

/* Mengaitkan highlight warna kuning khas Pintuplay secara natural */
.providers-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffd85f, #ffb300);
    margin: 12px auto 0;
    border-radius: 2px;
}

.providers-header p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
}

/* Grid Layout */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card Styling (Premium Glassmorphism) */
.provider-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Hover Effect */
.provider-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(248, 201, 76, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Wadah Logo Provider */
.provider-logo-box {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 10px;
}

.provider-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.95);
    transition: filter 0.3s ease;
}

.provider-card:hover .provider-logo-box img {
    filter: brightness(1); /* Logo sedikit lebih cerah saat di-hover */
}

/* Teks Info Di Dalam Card */
.provider-info h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.provider-card:hover .provider-info h3 {
    color: #fbbf24; /* Berubah jadi kuning saat di-hover */
}

.provider-info p {
    color: #94a3b8;
    font-size: 13.5px;
    line-height: 1.6;
}

/* =====================================================
   RESPONSIVENESS (BREAKPOINTS)
===================================================== */
@media(max-width: 1024px) {
    .providers-grid {
        grid-template-columns: repeat(2, 1fr); /* Menjadi 2 kolom di tablet */
        gap: 20px;
    }
    
    .providers-header h2 {
        font-size: 28px;
    }
}

@media(max-width: 600px) {
    .providers-section {
        padding: 50px 0;
    }

    .providers-grid {
        grid-template-columns: 1fr; /* Menjadi 1 kolom penuh di mobile phone */
        gap: 16px;
    }
    
    .providers-header {
        margin-bottom: 35px;
    }
    
    .providers-header h2 {
        font-size: 24px;
    }

    .provider-card {
        padding: 20px;
    }
}