:root {
    --bg-darker: #020811; /* Deepest blue/black */
    --bg-dark: #0a1f3a;
    --brand-orange: #C64E2E; 
    --brand-orange-light: #ff6a00;
    --brand-orange-glow: rgba(198, 78, 46, 0.5);
    --brand-teal: #00818F; 
    --brand-teal-glow: rgba(0, 129, 143, 0.4);
    --brand-green: #2ecc71;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --accent-blue: #3b82f6;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1280px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-slow: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-premium: 0 30px 60px rgba(0,0,0,0.6);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-surface: rgba(10, 31, 58, 0.6);
    
    /* Fluid Typography - Responsive scaling without media queries for size */
    --fs-h1: clamp(2.5rem, 8vw, 5.5rem);
    --fs-h2: clamp(2rem, 5vw, 3.2rem);
    --fs-h3: clamp(1.2rem, 3vw, 1.8rem);
    --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);

    /* Luxury Customizer Extensions */
    --neon-lime: #29bf12;
    --fiery-orange: #ff4500;
    --charcoal: #121212;
    --luxury-shadow: 0 50px 100px rgba(0,0,0,0.8);
    --glow-lime: 0 0 20px rgba(41, 191, 18, 0.4);
    --glow-orange: 0 0 25px rgba(255, 69, 0, 0.5);
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-orange);
    color: white;
    padding: 15px 30px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 2000;
    text-decoration: none;
    font-weight: 800;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-darker);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: var(--fs-body);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px; /* Slightly more breathing room */
}

/* Base Grid Layout System */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1100px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: var(--fs-h2);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: -0.04em;
}

.highlight {
    color: var(--brand-orange);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(198, 78, 46, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--brand-orange);
    background: rgba(198, 78, 46, 0.1);
    transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-dark);
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

.top-bar a {
    color: var(--text-white);
    text-decoration: none;
    margin-left: 10px;
}

/* Navbar */
.navbar {
    background-color: rgba(5, 15, 29, 0.9);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    position: relative;
}

.nav-toggle-label span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    margin: 5px 0;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links > li > a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 10px 0;
    display: inline-block;
}

nav a {
    position: relative !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

nav a::after {
    content: '' !important;
    position: absolute !important;
    bottom: -5px !important; /* Position below the text */
    left: 0 !important;
    width: 0 !important;
    height: 3px !important;
    background-color: #00aeef !important;
    transition: width 0.3s ease !important;
    display: block !important;
}

nav a:hover::after, nav a.active::after {
    width: 100% !important;
}

nav a:hover, nav a.active {
    color: #00d2ff; /* Vibrant teal from screenshot */
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 10px);
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    background-color: #000000 !important;
    width: 280px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 8px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    align-items: flex-start !important;
    z-index: 1001;
}

/* Transparent Bridge to prevent hover loss - LARGER AREA */
.dropdown-menu::before {
    content: '' !important;
    position: absolute !important;
    top: -40px !important;
    left: 0 !important;
    width: 100% !important;
    height: 40px !important;
    background: transparent !important;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

.dropdown-menu li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.dropdown-menu a {
    padding: 0 24px !important;
    display: flex !important;
    align-items: center !important;
    height: 48px !important;
    line-height: 1 !important;
    width: 100% !important;
    font-size: 0.825rem !important;
    color: #ffffff !important;
    letter-spacing: 0.05em !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-family: var(--font-heading) !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    border-bottom: none !important;  /* Force remove any borders */
    position: relative !important;
    transition: all 0.3s ease;
}

/* Smooth Underline Implementation */
.dropdown-menu a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 8px !important;
    left: 24px !important; /* Match horizontal padding */
    width: 0 !important;
    height: 3px !important;
    background-color: #00aeef !important;
    transition: width 0.3s ease !important;
}

.dropdown-menu a:hover::after {
    width: 40px !important; /* Clean, fixed-width underline for items */
}

.dropdown-menu a:hover {
    background-color: transparent !important;
    color: #00aeef !important;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 700px; /* More robust than vh alone */
    padding: 120px 0; /* Add padding for content safety */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #020811; 
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    filter: brightness(0.65) saturate(1.2);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding: 40px 20px;
    margin: 0 auto;
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.9;
    margin-bottom: 20px;
    font-weight: 950;
    letter-spacing: -0.05em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.4rem); /* Slightly smaller for subheader feel */
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8);
    margin: 0 auto 15px;
    font-weight: 600;
    max-width: 800px;
    letter-spacing: 0.02em;
}

.hero-subheadline {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--brand-orange);
    margin-bottom: 45px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-teaser-row {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-pill {
    border-radius: 50px !important;
}

.btn-teaser {
    background: var(--brand-orange);
    color: white;
    font-size: 0.85rem !important;
    padding: 10px 25px !important;
    border: none;
    box-shadow: 0 5px 15px rgba(198, 78, 46, 0.3);
}

.btn-glow {
    position: relative;
    box-shadow: 0 0 30px rgba(198, 78, 46, 0.6) !important;
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 20px rgba(198, 78, 46, 0.5); }
    50% { box-shadow: 0 0 45px rgba(198, 78, 46, 0.8); }
    100% { box-shadow: 0 0 20px rgba(198, 78, 46, 0.5); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero .btn-primary {
    font-size: 1.2rem;
    padding: 22px 55px; /* Slightly larger for impact */
    background: linear-gradient(135deg, var(--brand-orange), #ff6a00);
}

.hero .btn-secondary {
    font-size: 1.1rem;
    padding: 20px 45px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: white;
}

.hero .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 45px rgba(198, 78, 46, 0.6);
}


/* Sport Grid */
.sport-grid-section {
    padding: 120px 0;
    background-color: var(--bg-darker);
}

.sport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sport-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1.2;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    background-color: var(--bg-dark);
}

.sport-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.6) grayscale(0.2);
}

.sport-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.8) grayscale(0);
}

.sport-card-content, .view-all-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(5, 15, 29, 0.98) 30%, transparent 100%);
    z-index: 2;
    transition: var(--transition);
}

.sport-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.8rem; /* Slightly smaller for better fit */
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    transition: var(--transition);
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.sport-card:hover .sport-card-content h3 {
    transform: translateY(-5px);
    color: var(--brand-orange);
}

.sport-card:focus-visible {
    outline: 3px solid var(--brand-orange);
    outline-offset: 4px;
}

/* View All Card */
.view-all-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark), var(--brand-orange));
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
}

.view-all-card:hover {
    box-shadow: 0 15px 40px rgba(198, 78, 46, 0.4), inset 0 0 100px rgba(0,0,0,0.3);
    border-color: var(--brand-orange-light);
}

.view-all-content {
    position: relative;
    background: none;
    padding: 0;
    z-index: 3;
}

.icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    opacity: 0.4;
    font-size: 1.5rem;
}

.view-all-card:hover .icon-grid {
    opacity: 0.8;
    transform: scale(1.1);
    transition: var(--transition);
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
}

.featured-cta {
    background: linear-gradient(135deg, rgba(255, 98, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--brand-orange) !important;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 98, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 98, 0, 0.4);
}

/* Premium Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism for Testimonials */
.testimonial-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating CTA Pulse - Enhanced */
@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(255, 98, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 98, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 98, 0, 0); }
}

.floating-cta.visible {
    animation: pulse-orange 2s infinite;
}

/* Typography Polish */
h1, h2, h3 {
    letter-spacing: -0.02em;
}

.section-title {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}
.process-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--bg-darker), #1a365d);
    color: var(--brand-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1; /* Ensure perfect vertical centering */
    border: 2px solid rgba(198, 78, 46, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Catalog Showcase */
.catalog-section {
    padding: 120px 0;
    background-color: var(--bg-darker);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background-color: #0b1e3b;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure all cards in a row have same height */
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.2);
}

.product-img {
    width: 100%;
    aspect-ratio: 1/1.1;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brand-orange);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 0.9;
}

/* Premium Gold Badge Styling */
.gold-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    color: #020811; /* Dark background color for contrast */
    font-family: var(--font-heading);
    font-weight: 950;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(170, 119, 28, 0.4);
    position: relative;
    overflow: hidden;
}

.gold-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: rotate(45deg);
    animation: shine-gold 4s infinite;
}

@keyframes shine-gold {
    0% { transform: translateX(-100%) rotate(45deg); }
    30% { transform: translateX(100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}


.spec-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    color: var(--brand-orange);
    border: 1px solid var(--brand-orange);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 3;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.product-card:hover .spec-badge {
    opacity: 1;
    transform: translateY(0);
}

.product-info span {
    color: var(--brand-teal);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
}

.product-info h3 {
    font-size: 1.4rem;
    margin: 15px 0 25px;
    font-weight: 800;
    min-height: 3.4rem; /* Ensure consistent spacing for titles up to 2 lines */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info .btn {
    width: 100%;
    border-radius: 12px;
    margin-top: auto; /* Push button to the bottom */
}

/* Trust Section */
.trust-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.testimonial-slider-wrapper {
    position: relative;
    margin-bottom: 80px;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-orange);
    transform: translateY(-5px);
}

.testimonial-card .stars {
    color: #ff9d00;
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.coach-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.coach-img-placeholder {
    width: 50px;
    height: 50px;
    background: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.coach-meta h4 {
    font-size: 0.95rem;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.coach-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.slider-hint {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logo-marquee {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.5;
    margin-bottom: 80px;
}

.logo-item span {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.instagram-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insta-post {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(198, 78, 46, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.insta-post:hover img {
    transform: scale(1.1);
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 80%;
    }
}


/* Footer */
footer {
    padding: 80px 0 40px;
    background-color: #020811;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin: 20px 0;
    color: var(--text-muted);
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--brand-orange);
    transform: translateX(5px);
}


.footer-links h4 {
    color: var(--brand-orange);
    margin-bottom: 25px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Footer Styles Refined */

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    display: block; /* Ensure vertical stacking */
}

.dropdown-footer {
    position: relative;
    display: block;
}

.footer-sub-links {
    list-style: none;
    padding-left: 20px;
    margin-top: 12px;
    border-left: 2px solid rgba(198, 78, 46, 0.4);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-sub-links li {
    margin-bottom: 0;
}

.footer-sub-links a {
    font-size: 0.85rem;
    opacity: 0.7;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-sub-links a:hover {
    opacity: 1;
    color: #00d2ff;
    padding-left: 5px;
}

/* Accent Seam */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--brand-orange), var(--brand-green));
    z-index: 3;
}

/* Responsive Grids */
@media (max-width: 1100px) {
    .sport-grid, .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .sport-grid, .catalog-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .nav-content {
        justify-content: space-between;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* ── Hamburger button — pushed to far right via margin-left: auto ── */
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 12px 8px;
        margin-left: auto;
        z-index: 1003;
        position: relative;
        flex-shrink: 0;
    }

    .nav-toggle-label span {
        display: block;
        width: 26px;
        height: 2px;
        background-color: #ffffff;
        margin: 6px 0;
        border-radius: 2px;
        transition: all 0.28s ease;
    }

    /* ── Mobile Nav Panel — solid background, covers page fully ── */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #050f1d;
        flex-direction: column;
        padding: 8px 0 28px;
        gap: 0;
        border-bottom: 2px solid var(--brand-orange);
        z-index: 1001;
        max-height: calc(100vh - 76px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    }

    .nav-toggle:checked ~ .nav-links {
        display: flex;
        animation: slideDown 0.22s ease-out forwards;
    }

    /* ── Nav rows ── */
    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links > li:last-child {
        border-bottom: none;
        padding: 16px 20px 0;
    }

    .nav-links > li > a.nav-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 16px 20px;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        color: #ffffff;
        text-transform: uppercase;
        text-decoration: none;
        transition: color 0.2s ease;
        box-sizing: border-box;
    }

    .nav-links > li > a.nav-item:active {
        color: var(--brand-orange);
    }

    .nav-links > li > a.nav-item i.fa-chevron-down {
        font-size: 0.65rem;
        transition: transform 0.25s ease;
        color: rgba(255,255,255,0.5);
        margin-left: 8px;
        flex-shrink: 0;
    }

    .nav-links > li.dropdown.open > a.nav-item i.fa-chevron-down {
        transform: rotate(180deg);
        color: var(--brand-orange);
    }

    /* ── Accordion dropdown — hidden via max-height only, NO opacity conflict ── */
    .nav-links .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 0 !important;
        overflow: hidden !important;
        width: 100% !important;
        background: rgba(0,0,0,0.25) !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
        transition: max-height 0.3s ease !important;
        z-index: auto !important;
        flex-direction: column !important;
    }

    .nav-links .dropdown-menu::before {
        display: none !important;
    }

    .nav-links .dropdown.open .dropdown-menu {
        max-height: 400px !important;
        border-top: 1px solid rgba(255,255,255,0.07) !important;
    }

    /* Specificity (0,4,0) — beats global (0,3,0) :focus-within / :hover rule
       that applies transform: translateX(-50%) and shifts dropdown off-screen on mobile tap */
    .nav-links .dropdown:hover .dropdown-menu,
    .nav-links .dropdown:focus-within .dropdown-menu {
        transform: none !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* ── Dropdown items ── */
    .nav-links .dropdown-menu li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-links .dropdown-menu a {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 13px 20px 13px 36px !important;
        height: auto !important;
        line-height: 1.4 !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        color: rgba(255,255,255,0.8) !important;
        letter-spacing: 0.06em !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        white-space: normal !important;
        position: relative !important;
        background: transparent !important;
    }

    .nav-links .dropdown-menu a::before {
        content: '' !important;
        position: absolute !important;
        left: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 4px !important;
        height: 4px !important;
        background: var(--brand-orange) !important;
        border-radius: 50% !important;
    }

    .nav-links .dropdown-menu a::after {
        display: none !important;
        content: none !important;
    }

    .nav-links .dropdown-menu a:active {
        color: #ffffff !important;
        background: rgba(255,255,255,0.05) !important;
    }

    /* ── GET A QUOTE button ── */
    .nav-links > li > a.btn-primary {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 15px 20px !important;
        border-radius: 8px !important;
        font-size: 0.85rem !important;
        box-sizing: border-box !important;
    }

    /* ── Hamburger → X ── */
    .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
        transform: rotate(-45deg) translate(-1px, 8px);
    }
    .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
        transform: rotate(45deg) translate(-1px, -8px);
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-6px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}

/* Sizing Guide Table Alignment */
.sizing-guide-container table {
    margin-left: auto;
    margin-right: auto;
}

/* Form Styles */
.contact-form-container {
    background: var(--bg-dark);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    background-color: var(--bg-darker);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-orange);
    background-color: #0b1e3b;
    box-shadow: 0 0 0 4px rgba(198, 78, 46, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Select/Option Readability Fix */
select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.form-control option {
    background-color: var(--bg-darker);
    color: var(--text-white);
    padding: 15px;
}

/* Premium Mosaic Hero */
.hero-bg-mosaic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    z-index: 1;
    overflow: hidden;
}

/* Home page hero uses a single full-bleed image, not a mosaic grid */
#hero-mosaic {
    display: block;
}

.mosaic-item {
    position: relative;
    height: 100%;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    filter: brightness(0.65) saturate(1.1) grayscale(0.1);
    animation: kenBurns 40s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.mosaic-item:nth-child(even) img {
    animation-direction: alternate-reverse;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(-2%, -2%); }
}

.mosaic-item:hover img {
    opacity: 0.6;
    filter: brightness(0.6) saturate(1.3) grayscale(0);
}

.mosaic-prospirit img {
    object-position: top center;
    animation: kenBurnsProspirit 40s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes kenBurnsProspirit {
    0%  { transform: scale(1.5) translateY(-10%); }
    100%{ transform: scale(1.7) translateY(-12%); }
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
                rgba(2, 8, 17, 0.2) 0%,
                rgba(2, 8, 17, 0.5) 50%, 
                rgba(2, 8, 17, 1) 100%);
    z-index: 2;
}

/* Floating CTA Overlay */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--brand-orange);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    box-shadow: 0 15px 35px rgba(198, 78, 46, 0.5);
    z-index: 1500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulseOrange 2s infinite;
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta:hover {
    transform: scale(1.05) translateY(-5px);
    background: var(--brand-orange-light);
}

@keyframes pulseOrange {
    0% { box-shadow: 0 0 0 0 rgba(198, 78, 46, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(198, 78, 46, 0); }
    100% { box-shadow: 0 0 0 0 rgba(198, 78, 46, 0); }
}

@media (max-width: 900px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .hero-bg-mosaic {
        grid-template-columns: repeat(3, 1fr);
    }
    .mosaic-item:nth-child(n+4) {
        display: none;
    }
}
/* Feature Cards (Sport Pages) */
.feature-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(10, 31, 58, 0.4);
    padding: 50px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(10, 31, 58, 0.6);
    border-color: rgba(198, 78, 46, 0.3);
}

.feature-card i {
    font-size: 2.2rem;
    color: var(--brand-orange);
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--bg-dark), #162a45);
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 2px solid rgba(198, 78, 46, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-white);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

.footer .logo img {
    height: 40px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* ==========================================================================
   Order Form & Sizing Tables
   ========================================================================== */

.order-form-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.order-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.order-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 40px;
    text-align: center;
    border-bottom: 1px solid var(--accent-orange);
}

.order-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: white;
}

.order-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.order-body {
    padding: 40px;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 40px 0 25px;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.form-section-title:first-child {
    margin-top: 0;
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.roster-item {
    background: rgba(255,255,255,0.02);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.roster-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.roster-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    color: white;
    text-align: center;
    font-size: 1.1rem;
    padding: 5px 0;
    transition: var(--transition);
}

.roster-input:focus {
    outline: none;
    border-bottom-color: var(--accent-orange);
}

.sizing-table-wrapper {
    margin: 30px 0;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.sizing-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.02);
}

.sizing-table th, 
.sizing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sizing-table th {
    background: rgba(255,255,255,0.05);
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.sizing-table tr:last-child td {
    border-bottom: none;
}

.color-selector {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.color-option {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.color-option:hover {
    transform: scale(1.1);
}

.order-footer {
    background: rgba(0,0,0,0.2);
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .order-body {
        padding: 25px;
    }
    .roster-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Footer CTAs
   ========================================================================== */

.footer-ctas {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('images/gallery_2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-box {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(15px);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-box:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.06);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}

/* ==========================================================================
   PREMIUM UPGRADE: HERO & CUSTOMIZER
   ========================================================================== */
.hero {
    min-height: 850px;
    background: radial-gradient(circle at top right, #0a1f3a, #020811);
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 100px;
}

.hero-bg-mosaic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 250px;
    height: auto;
    opacity: 0.3;
    pointer-events: none;
    filter: blur(2px) grayscale(0.5);
    transition: transform 0.1s ease-out;
}

.floating-element:nth-child(1) { top: 10%; left: 5%; width: 300px; }
.floating-element:nth-child(2) { top: 60%; left: 10%; width: 220px; }
.floating-element:nth-child(3) { top: 15%; right: 10%; width: 280px; }
.floating-element:nth-child(4) { top: 70%; right: 8%; width: 240px; }
.floating-element:nth-child(5) { top: 40%; left: 50%; transform: translateX(-50%); width: 200px; opacity: 0.15; }

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(2, 8, 17, 0.5) 100%);
    z-index: 2;
}

/* PREMIUM CENTERED HERO */
.premium-centered {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
}

.hero-content.centered {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content.centered h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    max-width: 1000px;
}

.hero-content.centered p {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4rem;
}

.hero-actions {
    justify-content: center;
}

.hero-trust-bar.centered {
    justify-content: center;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(198, 78, 46, 0.15);
    color: var(--brand-orange);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    border: 1px solid rgba(198, 78, 46, 0.3);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: var(--fs-h1);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 900;
    text-shadow: 0 10px 40px rgba(0,0,0,0.5);
    letter-spacing: -0.04em;
}

.hero p {
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8);
    max-width: 550px;
    margin-bottom: 45px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-trust-bar {
    display: flex;
    gap: 35px;
    opacity: 0.8;
}

.trust-item {
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    color: var(--brand-orange);
}


/* SPORT CARDS & EXPERTISE */
.sport-grid-section {
    padding: 120px 0;
}

.sport-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.sport-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (hover: hover) {
    .sport-card:hover .sport-image-container img {
        transform: scale(1.1);
    }
}

.sport-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2,8,17,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 35px 35px 60px; /* Increased bottom padding to 60px as requested */
    opacity: 0.8; /* Partially visible at all times to address "Why are they not visible?" */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (hover: hover) {
    .sport-card:hover .sport-card-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(2,8,17,0.98) 0%, transparent 70%);
    }
}

.uniform-tag {
    align-self: flex-start;
    background: var(--brand-orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 6px 14px;
    border-radius: 4px; /* More angular for premium feel */
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gold-badge {
    display: inline-block;
    color: #D4AF37; /* Metallic Gold */
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sport-card-actions {
    transform: translateY(0); /* Removed resting offset to keep them higher */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    justify-content: center;
}

.sport-card:hover .sport-card-actions {
    transform: scale(1.1); /* Only scale on hover, no vertical movement needed */
}

.sport-info {
    padding: 30px 10px;
}

.sport-info h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 900;
}

.sport-info p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.learn-more {
    color: var(--brand-orange);
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    /* Removed position: relative to allow pseudo-element to expand to the card */
}

/* 
   THE STRETCHED LINK PATTERN
   This makes the entire .sport-card clickable through the .learn-more link
*/
.sport-card .learn-more::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10; /* Ensures it sits above other content but below any specific hover elements if needed */
}

/* Premium Hover Transitions for the Card */
.sport-card {
    position: relative;
    transition: var(--transition);
    background: var(--bg-dark);
}

@media (hover: hover) {
    .sport-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 40px 80px rgba(0,0,0,0.6);
        border-color: rgba(198, 78, 46, 0.4);
        z-index: 20;
    }
    .sport-card:hover .learn-more {
        gap: 18px;
        color: var(--brand-orange-light);
    }
}

.learn-more:hover {
    gap: 18px;
    color: var(--brand-orange-light);
}

/* EXPERTISE SECTION */
.expertise-section {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 100px 0;
}

.expertise-grid {
    gap: 40px;
}

.expertise-item {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255,255,255,0.02);
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.expertise-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--glass-border);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.expertise-icon {
    font-size: 3rem;
    color: var(--brand-orange);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px var(--brand-orange-glow));
}

.expertise-item h4 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.expertise-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* LIVE ACTIVITY BAR */
.live-activity-bar {
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
    font-size: 0.9rem;
    font-weight: 700;
}

.activity-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    justify-content: center;
}

.activity-dot {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 15px #2ecc71;
    animation: pulseActive 2s infinite;
}

#activity-text {
    transition: opacity 0.5s ease;
}

@keyframes pulseActive {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE HERO */
@media (max-width: 1200px) {
    .hero-container {
        gap: 40px;
    }
    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 160px 0 100px;
        min-height: auto;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 60px;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-trust-bar {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-customizer-card {
        max-width: 550px;
        margin: 0 auto;
    }
}

.hero-full-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .hero {
        display: flex;
        flex-direction: column;
        min-height: 0;
        padding: 0;
        align-items: unset;
        justify-content: unset;
    }
    .hero-bg-mosaic {
        position: relative;
        width: 100%;
        height: auto;
    }
    .hero-full-img {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        object-fit: unset;
        display: block;
    }
    .hero-overlay-gradient {
        position: absolute;
        inset: 0;
    }
    .hero-container {
        position: relative;
        width: 100%;
        padding: 40px 20px;
        background: rgba(2, 8, 17, 0.97);
        z-index: 10;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .control-grid {
        grid-template-columns: 1fr;
    }
    .hero-trust-bar {
        gap: 15px;
    }
}
/* ============================================================
   LUXURY CUSTOMIZER STYLES
   ============================================================ */
.customizer-body {
    background: radial-gradient(circle at center, #0a1422 0%, #020811 100%);
    overflow-x: hidden;
}

.customizer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 90vh;
    gap: 60px;
    padding: 60px 0;
    align-items: center;
}

/* 3D Mockup Stage */
.mockup-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
    z-index: 1; /* Isolates the stage rendering context */
}

.mockup-3d-wrapper {
    width: 100%;
    max-width: 650px;
    aspect-ratio: 1/1;
    position: relative;
    transform-style: preserve-3d;
    cursor: grab;
    transition: transform 0.1s ease-out;
}

.mockup-3d-wrapper:active {
    cursor: grabbing;
}

.mockup-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    pointer-events: none; /* Always none to allow drag on container */
    user-select: none;
    -webkit-user-drag: none;
    transition: opacity 0.1s steps(1), filter 0.4s ease; /* Added filter transition for smooth color swaps */
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

.mockup-frame.active {
    opacity: 1;
}

/* Depth Overlays */
.gradient-overlay-depth {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    z-index: 5;
}


/* Customization Panel */
.customizer-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--luxury-shadow);
}

.panel-section {
    margin-bottom: 45px;
}

.panel-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 900;
}

/* Color Picker Grid */
.color-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.swatch {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid rgba(255,255,255,0.1);
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-size: cover;
    box-shadow: inset 0 2px 10px rgba(255,255,255,0.2);
}

.swatch:hover {
    transform: scale(1.15);
    border-color: var(--neon-lime);
    box-shadow: var(--glow-lime);
}

.swatch.active {
    border-color: var(--fiery-orange);
    box-shadow: var(--glow-orange);
    transform: scale(1.1);
}

.swatch .texture-preview {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 120px;
    height: 120px;
    background-color: #222;
    border-radius: 15px;
    border: 3px solid var(--fiery-orange);
    background-size: 400%;
    background-position: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.swatch:hover .texture-preview {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* Material Selection */
.material-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.material-option {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.material-option:hover {
    background: rgba(41, 191, 18, 0.05);
    border-color: var(--neon-lime);
}

.material-option.active {
    background: rgba(255, 69, 0, 0.1);
    border-color: var(--fiery-orange);
}

.material-option h4 {
    font-size: 1rem;
    margin: 0;
    color: white;
}

.material-option span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Ripple Animation */
@keyframes rippleEffect {
    0% { transform: scale(0); opacity: 0.5; }
    100% { transform: scale(4); opacity: 0; }
}

.ripple {
    position: absolute;
    background: rgba(255, 69, 0, 0.4);
    border-radius: 50%;
    pointer-events: none;
    animation: rippleEffect 0.6s ease-out;
}

/* Interactive Glow Pops */
.glow-pop {
    position: absolute;
    pointer-events: none;
    background: radial-gradient(circle, var(--neon-lime), transparent 70%);
    width: 200px;
    height: 200px;
    opacity: 0;
    mix-blend-mode: screen;
    transition: opacity 0.5s ease;
}

/* Responsive Customizer */
@media (max-width: 1024px) {
    .customizer-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    .customizer-panel {
        padding: 30px;
    }
    .mockup-3d-wrapper {
        max-width: 450px;
    }
}

/* ── Apparel & Accessories Mobile Fixes ── */
@media (max-width: 1100px) {
    /* Show 2 columns on tablet instead of 3 */
    #apparel .grid-3,
    #accessories .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Reduce section padding on mobile */
    #apparel,
    #accessories {
        padding: 60px 0;
    }

    /* Single column on mobile */
    #apparel .grid-3,
    #accessories .grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Square aspect ratio on mobile — prevents overly tall images */
    #apparel .sport-image-container,
    #accessories .sport-image-container {
        aspect-ratio: 3/2;
    }

    /* Keep image centered and visible */
    #apparel .sport-image-container img,
    #accessories .sport-image-container img {
        object-fit: contain;
        background: var(--bg-dark);
        padding: 10px;
    }

    /* Tighten text area */
    #apparel .sport-info,
    #accessories .sport-info {
        padding: 20px 10px;
    }

    #apparel .sport-info h3,
    #accessories .sport-info h3 {
        font-size: 1.4rem;
    }

    /* Disable hover lift on mobile (no hover state) */
    #apparel .sport-card:hover,
    #accessories .sport-card:hover {
        transform: none;
    }

    /* Section subtitle spacing */
    #apparel .section-subtitle,
    #accessories .section-subtitle {
        font-size: 0.95rem;
        padding: 0 16px;
        margin-bottom: 28px !important;
    }
}

/* ============================================================
   MOBILE AUDIT FIXES - Full Premium Mobile Polish
   ============================================================ */

@media (max-width: 768px) {

    /* ---- Sport Card: Kill hover/tap dark overlay on mobile ---- */
    .sport-card:hover {
        transform: none;
        box-shadow: none;
        border-color: inherit;
        z-index: auto;
    }
    .sport-card:hover .sport-image-container img {
        transform: none;
    }
    .sport-card:hover .sport-card-overlay {
        opacity: 0.8;
        background: linear-gradient(to top, rgba(2,8,17,0.9) 0%, transparent 60%);
    }
    .sport-card:hover .sport-card-actions {
        transform: none;
    }
    .sport-card:hover .learn-more {
        gap: inherit;
        color: inherit;
    }

    /* ---- Hero buttons: reduce padding on mobile ---- */
    .hero .btn-primary {
        font-size: 1rem;
        padding: 16px 32px;
    }
    .hero .btn-secondary {
        font-size: 0.95rem;
        padding: 14px 28px;
    }

    /* ---- Hero h1: fluid size instead of fixed ---- */
    .hero h1 {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }

    /* ---- Sport card headings: tighter on mobile ---- */
    .sport-card h3,
    .sport-info h3 {
        font-size: 1.4rem;
    }

    /* ---- Sections with min-height:100vh: remove on mobile ---- */
    #hoodies,
    #tracksuits,
    #jackets,
    #compression,
    #socks {
        min-height: 0 !important;
        align-items: flex-start !important;
    }

    /* ---- Container: tighter side padding on mobile ---- */
    .container {
        padding: 0 16px;
    }

    /* ---- Apparel/accessories sport-info cards: un-clip the fixed aspect-ratio
       so .sport-info text below the image is visible (not cut off by overflow:hidden) ---- */
    #compression .sport-card,
    #hoodies .sport-card,
    #tracksuits .sport-card,
    #jackets .sport-card,
    #socks .sport-card,
    #accessories .sport-card {
        aspect-ratio: auto !important;
        overflow: visible !important;
    }

    #compression .sport-image-container,
    #hoodies .sport-image-container,
    #tracksuits .sport-image-container,
    #jackets .sport-image-container,
    #socks .sport-image-container,
    #accessories .sport-image-container {
        aspect-ratio: 3/2 !important;
        overflow: hidden !important;
        border-radius: 16px !important;
    }

    /* Remove dark brightness filter on product/apparel images — they need to be seen clearly */
    #compression .sport-card img,
    #hoodies .sport-card img,
    #tracksuits .sport-card img,
    #jackets .sport-card img,
    #socks .sport-card img,
    #accessories .sport-card img {
        filter: none !important;
    }
}

@media (max-width: 600px) {
    /* ---- Hero h1: even smaller on tiny screens ---- */
    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    /* ---- Hero buttons: full width stack ---- */
    .hero .btn-primary,
    .hero .btn-secondary {
        width: 100%;
        padding: 16px 20px;
    }
}

/* ============================================================
   MOBILE CENTERING & LAYOUT FIXES
   ============================================================ */
@media (max-width: 768px) {

    /* ── Prevent horizontal overflow causing false left-shift ── */
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* ── Sport-page hero mosaic: collapse to single centered image ── */
    .hero-bg-mosaic {
        grid-template-columns: 1fr !important;
        justify-items: center;
    }
    .mosaic-item:nth-child(n+2) {
        display: none;
    }
    .mosaic-item {
        width: 100%;
        height: 260px;
        overflow: hidden;
    }
    .mosaic-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    /* ── Sport grid gallery: full-width centered cards ── */
    .sport-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        width: 100%;
    }

    .sport-card {
        width: 100%;
        margin: 0 auto;
    }

    /* ── Section padding: reduced on mobile ── */
    .sport-grid-section {
        padding: 60px 0 !important;
    }

    /* ── Section titles: always centered ── */
    .section-title {
        text-align: center;
    }

    /* ── Grid containers: stretch items full width ── */
    .grid-2, .grid-3, .grid-4 {
        justify-items: stretch;
        width: 100%;
    }

    /* ── Hero overlay text: fully centered ── */
    .hero-overlay {
        text-align: center;
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
    }

    .hero-btns .btn {
        margin: 0 !important;
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}
