:root {
    --primary-color: #ff6b00; /* Vibrant Orange */
    --primary-dark: #cc5500;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-secondary-light {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}
.btn-secondary-light:hover {
    background-color: rgba(0,0,0,0.1);
}

.btn-icon {
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366; /* WhatsApp Green */
    background: rgba(37, 211, 102, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* ─── Scroll-Driven Image Sequence Hero ─── */

/* The outer section is very tall so scrolling drives the sequence */
.hero-sequence-section {
    height: 600vh; /* 6x viewport — gives slow cinematic feel across 80 frames */
    position: relative;
}

/* Sticky container — stays in viewport as user scrolls through the section */
.hero-sequence-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* Canvas fills the sticky container */
#hero-canvas {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Loading bar at top */
.seq-loading-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-color);
    z-index: 100;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.8);
}

/* Overlay text panel */
.hero-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 60px 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.hero-overlay-content.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.hero-seq-title {
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 18px;
    background: linear-gradient(to right, #fff 60%, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-seq-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-overlay-content .hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 1;
    transition: opacity 0.5s ease;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
    animation: scroll-line 1.5s ease-in-out infinite;
}

@keyframes scroll-line {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* Frame counter (dev aid, hidden by default) */
.frame-counter {
    display: none;
}


/* Trust Bar */
.trust-bar {
    background-color: var(--primary-color);
    padding: 20px 0;
    color: #000;
}

.trust-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.trust-item {
    font-size: 1.1rem;
    font-weight: 500;
}
.trust-item strong {
    font-size: 1.5rem;
    display: block;
}

/* Why Us */
.why-us {
    padding: 100px 0;
}

.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Shop By Sport */
.shop-by-sport {
    padding: 80px 0;
    background-color: var(--bg-darker);
}

.shop-by-sport h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

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

.sport-card {
    height: 300px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gym-card {
    background-color: #222;
}

.sport-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transition: var(--transition);
}

.sport-card:hover .sport-overlay {
    padding-bottom: 40px;
}

.sport-overlay h3 {
    font-size: 1.8rem;
    margin: 0;
}

/* Products */
.shop-by-product {
    padding: 80px 0;
}
.shop-by-product h2 { margin-bottom: 40px; font-size: 2.5rem;}
.product-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.badge {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.badge:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Process */
.process {
    padding: 100px 0;
    background: var(--bg-darker);
}
.process h2 { font-size: 2.5rem; margin-bottom: 60px; }
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.step {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}
.step h3 { font-size: 1.5rem; margin-bottom: 15px;}
.step p { color: var(--text-gray); }

/* Education Split */
.split-section { padding: 100px 0; }
.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.split-text { flex: 1; }
.split-text h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--primary-color); }
.split-text p { font-size: 1.1rem; color: var(--text-gray); }
.split-image {
    flex: 1;
    height: 400px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
}
.shield-icon { font-size: 5rem; }

/* Banners */
.team-orders {
    background: var(--primary-color);
    color: #000;
    padding: 80px 0;
}
.team-orders h2 { font-size: 2.5rem; margin-bottom: 20px; }
.team-orders p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; margin-inline: auto;}
.btn-primary-dark {
    background: #000;
    color: #fff;
}
.btn-primary-dark:hover {
    background: #222;
    transform: translateY(-2px);
}

/* Forms */
.bulk-orders {
    padding: 100px 0;
    background: var(--bg-darker);
}
.align-start { align-items: flex-start; }
.form-container {
    flex: 1;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    width: 100%;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.1);
}
.btn-block { width: 100%; }
.privacy-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 15px;
    text-align: center;
}

/* FAQ */
.faq-section { padding: 100px 0; }
.faq-section h2 { font-size: 2.5rem; margin-bottom: 50px; }
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
}
.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question:hover { color: var(--primary-color); }
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-gray);
}
.faq-item.active .faq-answer {
    max-height: 200px; /* arbitrary large value */
}
.faq-item.active .icon {
    transform: rotate(45deg);
}
.icon {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Footer */
.footer {
    padding: 100px 0 50px;
    background: radial-gradient(circle at bottom, var(--bg-card) 0%, var(--bg-dark) 100%);
}
.footer h2 { font-size: 3rem; margin-bottom: 20px; color: var(--primary-color);}
.footer-p { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 40px; }
.justify-center { justify-content: center; margin-bottom: 60px; }
.footer-info {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}
.map-placeholder { flex: 1; width: 100%; }
.map-mockup {
    background: #2a2a2a;
    height: 150px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    width: 100%;
}
.store-details { flex: 1; width: 100%; }
.store-details p { margin-bottom: 10px; color: var(--text-gray);}
.store-details strong { color: #fff; }

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .split-container, .footer-info { flex-direction: column; text-align: center; }
    .nav-menu { display: none; }
    .sports-grid, .process-steps { grid-template-columns: 1fr; }
    .split-text h2 { font-size: 2rem; }
    .store-details { text-align: center; margin-top: 20px; }
    .hero-overlay-content { padding: 40px 30px 60px; }
    .hero-seq-title { font-size: clamp(1.6rem, 5vw, 2.8rem); }
    .hero-seq-sub { font-size: 1rem; }
    .scroll-indicator { right: 20px; bottom: 20px; }
}
@media (max-width: 768px) {
    .trust-content { flex-direction: column; gap: 20px; }
    .hero-overlay-content { padding: 30px 20px 50px; }
    .hero-badge { font-size: 0.7rem; }
    .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
    /* On very small screens reduce the scroll length so sequence isn't too long */
    .hero-sequence-section { height: 400vh; }
}

