:root {
    --bg-dark: #050b07;
    --bg-surface: #0b160e;
    --bg-card: rgba(14, 28, 19, 0.85);
    --bg-card-hover: rgba(20, 40, 27, 0.95);
    --bg-glass: rgba(18, 35, 23, 0.75);
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-accent: rgba(34, 197, 94, 0.4);
    --accent-emerald: #22c55e;
    --accent-light: #4ade80;
    --accent-glow: rgba(34, 197, 94, 0.25);
    --accent-gold: #f59e0b;
    --text-white: #ffffff;
    --text-heading: #ffffff;
    --text-body: #f1f5f9;
    --text-muted: #cbd5e1;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-body);
    min-height: 100vh;
    line-height: 1.6;
    font-size: 0.95rem;
}

.page-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6, .brand-font, .display-font {
    font-family: 'Outfit', sans-serif;
    color: var(--text-heading);
    letter-spacing: -0.02em;
}

/* Ensure secondary text is high-contrast bright silver/white */
.text-secondary, .text-muted {
    color: var(--text-muted) !important;
}

/* ── BACKGROUND ORBS & GLOW ──────────────────── */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.22;
    max-width: 100vw;
}
.glow-orb-1 {
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #22c55e 0%, transparent 70%);
}
.glow-orb-2 {
    top: 40%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
}
.glow-orb-3 {
    bottom: 5%;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #22c55e 0%, transparent 70%);
}

/* ── NAVBAR ──────────────────────────────────── */
.navbar {
    padding: 14px 0;
    z-index: 100;
    background: rgba(5, 11, 7, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}
.brand-logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
}
.phone-badge-btn {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.phone-badge-btn:hover {
    background: rgba(34, 197, 94, 0.3);
    border-color: #22c55e;
    color: #ffffff !important;
}

/* ── FLUID TYPOGRAPHY & HEADINGS ────────────── */
.hero-title {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3.2rem);
    line-height: 1.18;
    font-weight: 800;
    color: #ffffff;
    word-break: break-word;
}

.gradient-text-emerald {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── BADGES & PILLS ──────────────────────────── */
.badge-minimal {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    max-width: 100%;
    word-break: break-word;
}

.badge-gold {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn-emerald-minimal {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #041209 !important;
    font-weight: 700;
    font-size: 0.92rem;
    font-family: 'Outfit', sans-serif;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: none;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}
.btn-emerald-minimal:hover {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #041209 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.45);
}

.btn-outline-minimal {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.45);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-outline-minimal:hover {
    background: rgba(34, 197, 94, 0.25);
    border-color: #22c55e;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #041209 !important;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
}
.btn-whatsapp:hover {
    background: #34e775;
    color: #041209 !important;
    transform: translateY(-2px);
}

/* ── GLASS CARDS & CONTAINERS ───────────────── */
.card-minimal {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}
.card-minimal:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.card-arena {
    background: linear-gradient(180deg, rgba(14, 28, 19, 0.9) 0%, rgba(9, 18, 12, 0.95) 100%);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.card-hero-highlight {
    background: linear-gradient(135deg, rgba(14, 28, 19, 0.95) 0%, rgba(7, 15, 10, 0.98) 100%);
    border: 1px solid rgba(34, 197, 94, 0.35);
}

/* ── STATS TICKER GRID ──────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    width: 100%;
}
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 16px 10px;
    text-align: center;
    transition: all 0.25s ease;
}
.stat-card:hover {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.08);
}
.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #4ade80;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}
.stat-label {
    font-size: 0.8rem;
    color: #cbd5e1;
    font-weight: 600;
    margin-top: 2px;
}

/* ── FEATURE MINI CARDS (BHUJ SPORTS COMMUNITY SECTION) ── */
.feature-mini-card {
    background: rgba(18, 35, 23, 0.75);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-sm);
    padding: 18px 16px;
    transition: all 0.25s ease;
    height: 100%;
}
.feature-mini-card:hover {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(24, 45, 30, 0.9);
    transform: translateY(-2px);
}
.feature-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── HOW IT WORKS STEPS ──────────────────────── */
.step-card {
    position: relative;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    height: 100%;
    transition: all 0.3s ease;
}
.step-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}
.step-number-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

/* ── SVG & ICON BOX ──────────────────────────── */
.icon-box-svg {
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    flex-shrink: 0;
}
.icon-box-svg svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
}

/* ── MINI SPEC LIST ──────────────────────────── */
.mini-spec-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px 0;
}
.mini-spec-list li {
    font-size: 0.9rem;
    color: #f1f5f9;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mini-spec-list li i {
    color: #4ade80;
    font-size: 0.95rem;
    background: rgba(34, 197, 94, 0.15);
    padding: 3px 6px;
    border-radius: 6px;
}

/* ── FAQ ACCORDION ───────────────────────────── */
.custom-accordion .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.custom-accordion .accordion-button {
    background: transparent;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 18px 22px;
    box-shadow: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
}
.custom-accordion .accordion-button::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(90deg);
}
.custom-accordion .accordion-body {
    background: transparent;
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.6;
    padding: 0 22px 20px 22px;
}

/* ── FOOTER ──────────────────────────────────── */
.footer-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f1f5f9;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-pill:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    color: #ffffff !important;
}

/* ── FLOATING MOBILE ACTION BAR ──────────────── */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 11, 7, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(34, 197, 94, 0.3);
    padding: 10px 16px;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.5);
}

/* ── RESPONSIVE MEDIA QUERIES ────────────────── */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 0.9rem;
        padding-bottom: 75px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mobile-action-bar {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .btn-emerald-minimal, .btn-outline-minimal, .btn-whatsapp {
        width: 100%;
        padding: 11px 16px;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.65rem !important;
    }

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

    .stat-card {
        padding: 12px 6px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }
}


