/* =============================================
   COACH CARE - Ice Hockey Coaches Website
   Custom Styles & Animations
   ============================================= */

/* =============================================
   ROOT VARIABLES
   ============================================= */
:root {
    --primary: #0a0a0f;
    --secondary: #0f172a;
    --navy: #1e3a5f;
    --navy-light: #2563eb;
    --navy-dark: #0c1929;
    --accent: #3b82f6;
    --ice: #e0f2fe;
    --white: #ffffff;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Light Mode Variables */
.light-mode {
    --primary: #ffffff;
    --secondary: #f8fafc;
    --text-primary: #0a0a0f;
    --text-secondary: #374151;
}

/* =============================================
   GLOBAL STYLES
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

body.light-mode {
    background-color: var(--white);
    color: var(--text-primary);
}

/* Selection Styling */
::selection {
    background: var(--accent);
    color: var(--white);
}

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    opacity: 0.5;
}

.custom-cursor.hover,
.cursor-follower.hover {
    transform: translate(-50%, -50%) scale(1.5);
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
    .custom-cursor,
    .cursor-follower {
        display: none;
    }
    body {
        cursor: auto;
    }
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
#header {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 58, 95, 0.2);
}

#header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.light-mode #header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

.logo-container {
    position: relative;
}

.logo-svg {
    transition: transform var(--transition-normal);
}

.logo-container:hover .logo-svg {
    transform: rotate(360deg);
}

.logo-circle {
    animation: logo-pulse 3s ease-in-out infinite;
}

.logo-shield {
    animation: logo-float 4s ease-in-out infinite;
}

.logo-puck {
    animation: puck-bounce 2s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes puck-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(2px); }
}

/* Navigation Links */
.nav-link {
    position: relative;
    padding: 0.5rem 0;
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--navy-light));
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.light-mode .nav-link {
    color: var(--gray-500);
}

.light-mode .nav-link:hover {
    color: var(--navy);
}

.nav-link-mobile {
    padding: 0.75rem 0;
    color: var(--gray-400);
    font-size: 1rem;
    border-bottom: 1px solid rgba(30, 58, 95, 0.2);
    display: block;
    transition: color var(--transition-normal);
}

.nav-link-mobile:hover {
    color: var(--accent);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--navy));
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent), var(--navy));
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-primary-xl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--accent), var(--navy));
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary-xl::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-light), var(--accent));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.btn-primary-xl:hover::before {
    opacity: 1;
}

.btn-primary-xl span,
.btn-primary-xl svg {
    position: relative;
    z-index: 1;
}

.btn-primary-xl:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

.btn-secondary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--navy);
    transition: all var(--transition-normal);
}

.btn-secondary-lg:hover {
    background: var(--navy);
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(30, 58, 95, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
                linear-gradient(180deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(30, 58, 95, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 58, 95, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

/* Ice Particles */
.ice-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ice-particles::before,
.ice-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--ice);
    border-radius: 50%;
    animation: float-particle 15s linear infinite;
    opacity: 0.3;
}

.ice-particles::before {
    left: 10%;
    animation-delay: 0s;
}

.ice-particles::after {
    left: 80%;
    animation-delay: -7s;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ice-flake {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--ice);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(2px);
}

.ice-1 {
    top: 20%;
    left: 15%;
    animation: float 6s ease-in-out infinite;
}

.ice-2 {
    top: 60%;
    right: 20%;
    width: 30px;
    height: 30px;
    animation: float 8s ease-in-out infinite reverse;
}

.ice-3 {
    bottom: 30%;
    left: 25%;
    width: 15px;
    height: 15px;
    animation: float 5s ease-in-out infinite;
    animation-delay: -2s;
}

.puck-float {
    position: absolute;
    top: 40%;
    right: 10%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: puck-float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes puck-float {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-20px) rotateX(15deg); }
}

/* Hero Content */
.animate-fade-in-up {
    animation: fade-in-up 1s ease forwards;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--navy-light), var(--ice));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Image Placeholder */
.hero-image-container {
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(10, 10, 15, 0.8));
    border: 2px dashed rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 45%, rgba(59, 130, 246, 0.1) 50%, transparent 55%);
    background-size: 300% 300%;
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 200%; }
    100% { background-position: -200% -200%; }
}

.placeholder-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Stats */
.stat-item {
    position: relative;
}

/* Scroll Indicator */
.scroll-indicator {
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gray-500);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* =============================================
   WHY COACH CARE SECTION
   ============================================= */
.section-bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(30, 58, 95, 0.1) 0%, transparent 50%);
}

.why-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(10, 10, 15, 0.9));
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--navy-light));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.light-mode .why-card {
    background: linear-gradient(135deg, var(--white), #f8fafc);
    border-color: rgba(30, 58, 95, 0.1);
}

.light-mode .why-card:hover {
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(30, 58, 95, 0.3));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    transition: all var(--transition-normal);
}

.why-card:hover .card-icon {
    background: linear-gradient(135deg, var(--accent), var(--navy));
    color: var(--white);
    transform: scale(1.1);
}

/* =============================================
   OWNER MESSAGE SECTION
   ============================================= */
.ice-texture {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.quote-container {
    position: relative;
    padding: 3rem 2rem;
}

.quote-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
}

.quote-open {
    top: 0;
    left: 0;
}

.quote-close {
    bottom: 0;
    right: 0;
}

.owner-image-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--accent);
}

/* =============================================
   PARTNERS SECTION
   ============================================= */
.partners-scroll {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    animation: scroll-partners 30s linear infinite;
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    flex-shrink: 0;
    padding: 0 2rem;
}

.partner-placeholder {
    width: 150px;
    height: 80px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(10, 10, 15, 0.5));
    border: 1px dashed rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    transition: all var(--transition-normal);
}

.partner-placeholder:hover {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
}

.sales-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(10, 10, 15, 0.8));
    border-radius: 16px;
    border: 1px solid rgba(30, 58, 95, 0.2);
}

.sales-stat .stat-number,
.sales-stat .stat-suffix {
    display: inline-block;
}

/* =============================================
   PROGRAM FEATURES / TIERS SECTION
   ============================================= */
.tier-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(10, 10, 15, 0.95));
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.tier-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(15, 23, 42, 0.95));
    transform: scale(1.05);
}

.tier-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--navy-light));
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tier-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(30, 58, 95, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.tier-icon {
    color: var(--accent);
    margin: 0 auto;
}

.tier-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    space-y: 0.75rem;
}

.tier-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(30, 58, 95, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-300);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features .check {
    color: var(--accent);
    font-weight: bold;
}

.tier-features .x {
    color: var(--gray-500);
}

.tier-features li.disabled {
    color: var(--gray-500);
    opacity: 0.5;
}

.tier-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 12px;
    transition: all var(--transition-normal);
    cursor: pointer;
    text-align: center;
}

.tier-btn:hover {
    background: var(--navy);
    border-color: var(--accent);
}

.tier-btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--navy));
    border-color: transparent;
}

.tier-btn-primary:hover {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* =============================================
   BENEFITS SECTION - INFOGRAPHIC STYLE
   ============================================= */

/* Animated Background Texture */
.benefits-bg-texture {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.texture-layer {
    position: absolute;
    inset: 0;
}

.texture-dots {
    background-image: radial-gradient(rgba(59, 130, 246, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: texture-shift 30s linear infinite;
}

@keyframes texture-shift {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

.texture-lines {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(30, 58, 95, 0.03) 100px,
        rgba(30, 58, 95, 0.03) 200px
    );
    animation: lines-move 20s linear infinite;
}

@keyframes lines-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(200px); }
}

.texture-glow {
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(30, 58, 95, 0.2) 0%, transparent 50%);
    animation: glow-pulse 8s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 58, 95, 0.05));
    filter: blur(1px);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation: float-shape 15s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation: float-shape 12s ease-in-out infinite reverse;
    animation-delay: -3s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation: float-shape 18s ease-in-out infinite;
    animation-delay: -7s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 20%;
    animation: float-shape 10s ease-in-out infinite reverse;
    animation-delay: -2s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 30%;
    animation: float-shape 14s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(90deg); }
    50% { transform: translate(-10px, 20px) rotate(180deg); }
    75% { transform: translate(30px, 10px) rotate(270deg); }
}

/* Ice Rink SVG Background */
.benefits-rink-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.rink-circle {
    animation: rink-rotate 60s linear infinite;
    transform-origin: center;
}

.rink-circle-small {
    animation: rink-rotate 40s linear infinite reverse;
    transform-origin: center;
}

.rink-line {
    animation: line-dash 10s linear infinite;
    stroke-dasharray: 20 10;
}

@keyframes rink-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes line-dash {
    to { stroke-dashoffset: -100; }
}

/* Infographic Container */
.infographic-container {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Hub */
.infographic-hub {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hub-inner {
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hub-icon {
    width: 80px;
    height: 80px;
}

.hub-circle-outer {
    animation: hub-pulse 3s ease-in-out infinite;
}

.hub-circle-inner {
    animation: hub-glow 2s ease-in-out infinite alternate;
}

@keyframes hub-pulse {
    0%, 100% { stroke-dasharray: 240; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 240; stroke-dashoffset: 120; }
}

@keyframes hub-glow {
    0% { filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.8)); }
}

.hub-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.75rem;
    text-align: center;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-top: 0.5rem;
}

/* Pulse Rings */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0;
}

.pulse-1 {
    width: 160px;
    height: 160px;
    animation: pulse-expand 3s ease-out infinite;
}

.pulse-2 {
    width: 160px;
    height: 160px;
    animation: pulse-expand 3s ease-out infinite;
    animation-delay: 1s;
}

.pulse-3 {
    width: 160px;
    height: 160px;
    animation: pulse-expand 3s ease-out infinite;
    animation-delay: 2s;
}

@keyframes pulse-expand {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* Infographic Benefits Cards */
.infographic-benefits {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    margin: 0 auto;
}

.infographic-card {
    position: absolute;
    width: 220px;
    transition: all 0.4s ease;
}

.infographic-card:hover {
    transform: scale(1.05);
    z-index: 20;
}

.infographic-card:hover .card-content {
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
}

/* Card Positions - Hexagonal Layout */
.card-1 { top: 0; left: 50%; transform: translateX(-50%); }
.card-2 { top: 15%; right: 0; }
.card-3 { bottom: 15%; right: 0; }
.card-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.card-5 { bottom: 15%; left: 0; }
.card-6 { top: 15%; left: 0; }

.card-content {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(10, 10, 15, 0.98));
    border: 1px solid rgba(30, 58, 95, 0.4);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.card-icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(30, 58, 95, 0.2));
    border-radius: 50%;
    position: relative;
}

.card-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px dashed rgba(59, 130, 246, 0.3);
    animation: icon-rotate 20s linear infinite;
}

@keyframes icon-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.card-desc {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.card-stat {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(30, 58, 95, 0.3);
}

.stat-value {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Connection Lines */
.infographic-lines {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 600px;
    pointer-events: none;
    display: none;
}

@media (min-width: 1024px) {
    .infographic-lines {
        display: block;
    }
}

.connect-line {
    stroke-dasharray: 8 4;
    animation: line-flow 2s linear infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.3s; }
.line-3 { animation-delay: 0.6s; }
.line-4 { animation-delay: 0.9s; }
.line-5 { animation-delay: 1.2s; }
.line-6 { animation-delay: 1.5s; }

@keyframes line-flow {
    to { stroke-dashoffset: -24; }
}

/* Card Connector */
.card-connector {
    display: none;
}

/* Benefits Stats Bar */
.benefits-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(10, 10, 15, 0.9));
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.stats-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.stats-bar-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(30, 58, 95, 0.3));
    border-radius: 12px;
    color: var(--accent);
}

.stats-bar-icon svg {
    width: 24px;
    height: 24px;
}

.stats-bar-content {
    text-align: left;
}

.stats-bar-value {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--accent);
    line-height: 1;
}

.stats-bar-value::before {
    content: '$';
}

.stats-bar-value:not([data-target])::before {
    content: '';
}

.stats-bar-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stats-bar-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(30, 58, 95, 0.5), transparent);
}

/* Responsive Infographic */
@media (max-width: 1024px) {
    .infographic-container {
        min-height: auto;
    }
    
    .infographic-hub {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 3rem;
    }
    
    .infographic-benefits {
        position: relative;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding-top: 0;
    }
    
    .infographic-card {
        position: relative;
        width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
    
    .infographic-container {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .infographic-benefits {
        grid-template-columns: 1fr;
    }
    
    .benefits-stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stats-bar-divider {
        width: 60%;
        height: 1px;
    }
}

/* Light Mode */
.light-mode .card-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
    border-color: rgba(30, 58, 95, 0.15);
}

.light-mode .card-title {
    color: var(--navy);
}

.light-mode .hub-text {
    color: var(--navy);
}

.light-mode .benefits-stats-bar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border-color: rgba(30, 58, 95, 0.1);
}

.light-mode .texture-dots {
    background-image: radial-gradient(rgba(30, 58, 95, 0.1) 1px, transparent 1px);
}

.light-mode .texture-glow {
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(30, 58, 95, 0.1) 0%, transparent 50%);
}

/* =============================================
   OWNER MESSAGE SECTION 2
   ============================================= */
.diagonal-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(30, 58, 95, 0.05) 40px,
        rgba(30, 58, 95, 0.05) 80px
    );
}

.owner-main-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(10, 10, 15, 0.8));
    border: 2px dashed rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* =============================================
   ECONOMICS SECTION
   ============================================= */
.economics-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(10, 10, 15, 0.9));
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
}

.savings-visualization {
    space-y: 1.5rem;
}

.savings-bar {
    position: relative;
    margin-bottom: 1.5rem;
}

.savings-fill {
    height: 40px;
    background: linear-gradient(90deg, var(--accent), var(--navy-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    width: 0;
    animation: fill-bar 1.5s ease forwards;
    animation-play-state: paused;
}

.savings-bar.animate .savings-fill {
    animation-play-state: running;
}

@keyframes fill-bar {
    to { width: var(--target-width); }
}

.savings-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: var(--white);
}

.savings-label {
    display: block;
    margin-top: 0.5rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.total-savings {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 58, 95, 0.3);
    margin-top: 2rem;
}

.economics-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.econ-stat {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(10, 10, 15, 0.8));
    border: 1px solid rgba(30, 58, 95, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-normal);
}

.econ-stat:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.econ-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(30, 58, 95, 0.3));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

/* =============================================
   NETWORK SECTION
   ============================================= */
.network-bg-animation {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.network-visual {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.network-center {
    position: relative;
    width: 400px;
    height: 400px;
}

.network-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 10;
}

.animate-pulse-slow {
    animation: pulse-slow 3s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.network-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    z-index: 5;
    transition: all var(--transition-normal);
}

.network-node:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.node-1 { top: 10px; left: 50%; transform: translateX(-50%); }
.node-2 { top: 25%; right: 10px; }
.node-3 { bottom: 25%; right: 10px; }
.node-4 { bottom: 10px; left: 50%; transform: translateX(-50%); }
.node-5 { bottom: 25%; left: 10px; }
.node-6 { top: 25%; left: 10px; }

.network-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.network-line {
    stroke: var(--accent);
    stroke-width: 1;
    stroke-dasharray: 5;
    opacity: 0.3;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -100; }
}

.network-feature {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(10, 10, 15, 0.8));
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all var(--transition-normal);
}

.network-feature:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.feature-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

/* =============================================
   FEATURED COACHES SECTION
   ============================================= */
.coach-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(10, 10, 15, 0.9));
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 20px;
    padding: 0;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.coach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--navy-light));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    z-index: 2;
}

.coach-card:hover::before {
    transform: scaleX(1);
}

.coach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.coach-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5), rgba(10, 10, 15, 0.8));
}

.coach-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 58, 95, 0.2));
}

.coach-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.coach-card:hover .coach-overlay {
    opacity: 1;
}

.coach-content {
    padding: 1.5rem;
}

.coach-link {
    transition: all var(--transition-normal);
}

.coach-card:hover .coach-link svg {
    transform: translateX(4px);
}

.light-mode .coach-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-color: rgba(30, 58, 95, 0.1);
}

.light-mode .coach-card:hover {
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15);
}

.light-mode .coach-image-container {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(30, 58, 95, 0.1));
}

.light-mode .coach-image-placeholder {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(30, 58, 95, 0.1));
}

/* =============================================
   FEATURED COACHES BACKGROUND TEXTURE ANIMATIONS
   ============================================= */
.coaches-bg-texture {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Hockey Stick Pattern Texture */
.texture-sticks {
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(59, 130, 246, 0.03) 40px,
            rgba(59, 130, 246, 0.03) 41px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(30, 58, 95, 0.02) 40px,
            rgba(30, 58, 95, 0.02) 41px
        );
    background-size: 80px 80px, 80px 80px;
    animation: sticks-move 25s linear infinite;
    opacity: 0.6;
}

@keyframes sticks-move {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 80px 80px, -80px -80px; }
}

/* Ice Surface Texture */
.texture-ice-surface {
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(224, 242, 254, 0.1) 1px, transparent 0),
        radial-gradient(circle at 8px 8px, rgba(59, 130, 246, 0.08) 1px, transparent 0);
    background-size: 20px 20px, 40px 40px;
    animation: ice-shimmer 15s ease-in-out infinite alternate;
    opacity: 0.4;
}

@keyframes ice-shimmer {
    0% { 
        background-position: 0 0, 0 0;
        opacity: 0.3;
    }
    50% {
        background-position: 20px 20px, 40px 40px;
        opacity: 0.5;
    }
    100% { 
        background-position: 40px 40px, 80px 80px;
        opacity: 0.4;
    }
}

/* Coach Grid Pattern */
.texture-coach-grid {
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-drift 30s linear infinite;
    opacity: 0.3;
}

@keyframes grid-drift {
    0% { transform: translate(0, 0); }
    25% { transform: translate(30px, 30px); }
    50% { transform: translate(0, 60px); }
    75% { transform: translate(-30px, 30px); }
    100% { transform: translate(0, 0); }
}

/* Floating Coach Badges */
.floating-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.coach-badge {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(30, 58, 95, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(1px);
}

.coach-badge::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), transparent);
    border-radius: 50%;
    animation: badge-pulse 3s ease-in-out infinite;
}

.coach-badge::after {
    content: '★';
    position: absolute;
    color: rgba(59, 130, 246, 0.4);
    font-size: 24px;
    animation: badge-rotate 8s linear infinite;
}

.badge-1 {
    top: 10%;
    left: 5%;
    animation: badge-float-1 12s ease-in-out infinite;
}

.badge-2 {
    top: 20%;
    right: 8%;
    width: 60px;
    height: 60px;
    animation: badge-float-2 15s ease-in-out infinite;
    animation-delay: -2s;
}

.badge-3 {
    bottom: 25%;
    left: 10%;
    width: 70px;
    height: 70px;
    animation: badge-float-3 14s ease-in-out infinite;
    animation-delay: -4s;
}

.badge-4 {
    top: 50%;
    right: 12%;
    width: 55px;
    height: 55px;
    animation: badge-float-4 13s ease-in-out infinite;
    animation-delay: -1s;
}

.badge-5 {
    bottom: 15%;
    right: 20%;
    width: 65px;
    height: 65px;
    animation: badge-float-5 16s ease-in-out infinite;
    animation-delay: -3s;
}

.badge-6 {
    top: 60%;
    left: 8%;
    width: 50px;
    height: 50px;
    animation: badge-float-6 11s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes badge-float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(90deg); }
    50% { transform: translate(-10px, -50px) rotate(180deg); }
    75% { transform: translate(30px, -20px) rotate(270deg); }
}

@keyframes badge-float-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-25px, 20px) rotate(120deg); }
    66% { transform: translate(15px, -35px) rotate(240deg); }
}

@keyframes badge-float-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, 15px) rotate(-90deg); }
    50% { transform: translate(-20px, 30px) rotate(-180deg); }
    75% { transform: translate(10px, -25px) rotate(-270deg); }
}

@keyframes badge-float-4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -20px) rotate(180deg); }
}

@keyframes badge-float-5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(25px, 30px) rotate(120deg); }
    66% { transform: translate(-15px, 20px) rotate(240deg); }
}

@keyframes badge-float-6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, -15px) rotate(90deg); }
    50% { transform: translate(20px, -30px) rotate(180deg); }
    75% { transform: translate(-10px, 25px) rotate(270deg); }
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.9; }
}

@keyframes badge-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Glow Orbs */
.coach-glow-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent);
    top: 10%;
    left: 15%;
    animation: orb-drift-1 20s ease-in-out infinite;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.3), transparent);
    bottom: 20%;
    right: 20%;
    animation: orb-drift-2 25s ease-in-out infinite;
    animation-delay: -5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orb-pulse 8s ease-in-out infinite;
}

@keyframes orb-drift-1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(50px, -30px); }
    50% { transform: translate(-30px, -60px); }
    75% { transform: translate(40px, -20px); }
}

@keyframes orb-drift-2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-40px, 50px); }
    66% { transform: translate(30px, -40px); }
}

@keyframes orb-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.4; }
}

/* Light Mode Adjustments */
.light-mode .texture-sticks {
    opacity: 0.2;
}

.light-mode .texture-ice-surface {
    opacity: 0.15;
}

.light-mode .texture-coach-grid {
    opacity: 0.1;
}

.light-mode .coach-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(30, 58, 95, 0.05));
    border-color: rgba(59, 130, 246, 0.15);
}

.light-mode .glow-orb {
    opacity: 0.15;
}

/* =============================================
   DESERVE MORE SECTION
   ============================================= */
.deserve-content {
    position: relative;
}

.deserve-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* =============================================
   REGISTRATION FORM SECTION
   ============================================= */
.form-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 95, 0.1) 0%, transparent 40%);
}

.form-benefits {
    space-y: 1rem;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-300);
}

.registration-form-container {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(10, 10, 15, 0.95));
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
}

.registration-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .registration-form {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

@media (max-width: 640px) {
    .form-group.full-width {
        grid-column: span 1;
    }
}

.form-group label {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(30, 58, 95, 0.2);
    border: 1px solid rgba(30, 58, 95, 0.4);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--gray-400);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    cursor: pointer;
}

.submit-btn {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent), var(--navy));
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-normal);
}

@media (max-width: 640px) {
    .submit-btn {
        grid-column: span 1;
    }
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* =============================================
   FOOTER
   ============================================= */
.social-link {
    width: 40px;
    height: 40px;
    background: rgba(30, 58, 95, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-link {
    color: var(--gray-400);
    font-size: 0.875rem;
    transition: color var(--transition-normal);
}

.footer-link:hover {
    color: var(--accent);
}

/* =============================================
   MODAL
   ============================================= */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.hidden {
    display: none;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border: 1px solid rgba(30, 58, 95, 0.5);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: modal-in 0.3s ease;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-icon {
    margin-bottom: 1.5rem;
}

/* =============================================
   ANIMATIONS ON SCROLL
   ============================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   LIGHT MODE STYLES
   ============================================= */
.light-mode {
    background: #ffffff;
    color: #0a0a0f;
}

.light-mode .text-gradient {
    background: linear-gradient(135deg, var(--navy), var(--accent), var(--navy-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.light-mode #header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(30, 58, 95, 0.1);
}

.light-mode #header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.light-mode .hero-bg {
    background: radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(30, 58, 95, 0.1) 0%, transparent 50%),
                linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

.light-mode .grid-overlay {
    background-image: 
        linear-gradient(rgba(30, 58, 95, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 58, 95, 0.05) 1px, transparent 1px);
}

.light-mode h1,
.light-mode h2,
.light-mode h3,
.light-mode h4 {
    color: var(--primary);
}

.light-mode p {
    color: #4b5563;
}

.light-mode .text-gray-400 {
    color: #6b7280 !important;
}

.light-mode .text-gray-500 {
    color: #9ca3af !important;
}

.light-mode .why-card,
.light-mode .tier-card,
.light-mode .benefit-item,
.light-mode .economics-card,
.light-mode .econ-stat,
.light-mode .network-feature,
.light-mode .registration-form-container,
.light-mode .sales-stat,
.light-mode .coach-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-color: rgba(30, 58, 95, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.light-mode .tier-card.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), #ffffff);
}

.light-mode .form-group input,
.light-mode .form-group select,
.light-mode .form-group textarea {
    background: #f8fafc;
    border-color: rgba(30, 58, 95, 0.2);
    color: var(--primary);
}

.light-mode .modal-content {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.light-mode #owner-message-1,
.light-mode #owner-message-2 {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.light-mode #footer {
    background: #0a0a0f;
    color: #ffffff;
}

.light-mode blockquote {
    color: var(--navy) !important;
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 768px) {
    .quote-mark {
        font-size: 4rem;
    }
    
    .network-center {
        width: 300px;
        height: 300px;
    }
    
    .network-node {
        width: 50px;
        height: 50px;
        font-size: 0.65rem;
    }
    
    .network-hub {
        width: 60px;
        height: 60px;
    }
}

/* Animation delay utility classes */
.animation-delay-1000 {
    animation-delay: 1000ms;
}

.animation-delay-2000 {
    animation-delay: 2000ms;
}


/* =============================================
   COACH DETAIL PAGE STYLES
   ============================================= */

/* Coach Hero Section */
.coach-hero-section {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
}

.coach-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Texture Layers */
.coach-texture-layer {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.coach-texture-layer.texture-1 {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='coachNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23coachNoise)'/%3E%3C/svg%3E");
    animation: texture-move 25s linear infinite;
    mix-blend-mode: overlay;
}

.coach-texture-layer.texture-2 {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(59, 130, 246, 0.02) 100px,
        rgba(59, 130, 246, 0.02) 200px
    );
    animation: texture-shift-diagonal 30s linear infinite;
}

.coach-texture-layer.texture-3 {
    background-image: radial-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: texture-grid 20s linear infinite;
}

@keyframes texture-move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.05); }
}

@keyframes texture-shift-diagonal {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

@keyframes texture-grid {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* Gradient Orbs */
.coach-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orb-float 15s ease-in-out infinite;
}

.coach-gradient-orb.orb-1 {
    width: 700px;
    height: 700px;
    top: -300px;
    left: -300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
}

.coach-gradient-orb.orb-2 {
    width: 600px;
    height: 600px;
    bottom: -250px;
    right: -250px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.4) 0%, transparent 70%);
    animation-duration: 18s;
    animation-delay: -5s;
}

.coach-gradient-orb.orb-3 {
    width: 500px;
    height: 500px;
    top: 50%;
    right: 10%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    animation-duration: 20s;
    animation-delay: -10s;
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(80px, -60px) scale(1.2);
        opacity: 0.5;
    }
}

/* Animated Grid */
.coach-animated-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-slide 25s linear infinite;
}

@keyframes grid-slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Floating Particles */
.coach-floating-particles {
    position: absolute;
    inset: 0;
}

.coach-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(59, 130, 246, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    left: var(--x);
    top: var(--y);
    animation: particle-float var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -150px) scale(0.5);
        opacity: 0;
    }
}

/* Flowing Lines */
.coach-flowing-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.coach-flow-line {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: line-flow 10s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes line-flow {
    0% {
        stroke-dashoffset: 1500;
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* Coach Image Section */
.coach-image-container {
    position: relative;
}

/* Decorative SVG */
.coach-decorative-svg {
    position: absolute;
    inset: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.coach-svg-circle {
    transform-origin: center;
    animation: svg-circle-rotate 20s linear infinite;
}

.coach-svg-circle.circle-1 {
    animation-duration: 25s;
}

.coach-svg-circle.circle-2 {
    animation-duration: 20s;
    animation-direction: reverse;
}

.coach-svg-circle.circle-3 {
    animation-duration: 15s;
}

@keyframes svg-circle-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.coach-svg-line {
    animation: svg-line-pulse 3s ease-in-out infinite;
}

.coach-svg-line.line-horizontal {
    animation-delay: 0s;
}

.coach-svg-line.line-vertical {
    animation-delay: 1.5s;
}

@keyframes svg-line-pulse {
    0%, 100% { opacity: 0.2; stroke-width: 1; }
    50% { opacity: 0.4; stroke-width: 2; }
}

.coach-svg-path {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: svg-path-draw 8s ease-in-out infinite;
}

.coach-svg-path.path-1 {
    animation-delay: 0s;
}

.coach-svg-path.path-2 {
    animation-delay: 4s;
    animation-direction: reverse;
}

@keyframes svg-path-draw {
    0% {
        stroke-dashoffset: 500;
        opacity: 0;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.5;
    }
    100% {
        stroke-dashoffset: -500;
        opacity: 0;
    }
}

.coach-svg-glow {
    animation: svg-glow-pulse 4s ease-in-out infinite;
}

@keyframes svg-glow-pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

.coach-image-wrapper {
    position: relative;
    z-index: 2;
}

.coach-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.coach-image-icon {
    width: 200px;
    height: 200px;
    opacity: 0.3;
    transition: all var(--transition-normal);
}

.coach-image-placeholder:hover .coach-image-icon {
    opacity: 0.5;
    transform: scale(1.1);
}

.coach-icon-circle {
    animation: icon-circle-spin 10s linear infinite;
    transform-origin: center;
}

@keyframes icon-circle-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.coach-icon-head {
    animation: icon-head-bounce 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes icon-head-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.coach-icon-body {
    animation: icon-body-wave 3s ease-in-out infinite;
}

@keyframes icon-body-wave {
    0%, 100% { d: path("M50 160 Q100 140 150 160"); }
    50% { d: path("M50 160 Q100 150 150 160"); }
}

.coach-image-placeholder {
    width: 100%;
    aspect-ratio: 5/6;
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.4), rgba(10, 10, 15, 0.9));
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.coach-image-placeholder:hover {
    border-color: var(--accent);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.coach-image-placeholder:hover::before {
    opacity: 0.3;
}

.coach-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 45%, rgba(59, 130, 246, 0.1) 50%, transparent 55%);
    background-size: 300% 300%;
    animation: shimmer 4s ease infinite;
}

.coach-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: glow-pulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.coach-image-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.coach-img-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(59, 130, 246, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    transition: all var(--transition-normal);
}

.coach-image-container:hover .coach-img-particle {
    transform: scale(1.5);
    box-shadow: 0 0 30px rgba(59, 130, 246, 1);
}

.coach-img-particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation: particle-spin 8s linear infinite;
}

.coach-img-particle:nth-child(2) {
    bottom: 25%;
    right: 20%;
    animation: particle-spin 10s linear infinite reverse;
    animation-delay: -2s;
}

.coach-img-particle:nth-child(3) {
    top: 60%;
    left: 10%;
    animation: particle-spin 12s linear infinite;
    animation-delay: -4s;
}

.coach-img-particle:nth-child(4) {
    top: 40%;
    right: 15%;
    animation: particle-spin 9s linear infinite reverse;
    animation-delay: -1s;
}

.coach-img-particle:nth-child(5) {
    bottom: 15%;
    left: 50%;
    animation: particle-spin 11s linear infinite;
    animation-delay: -3s;
}

@keyframes particle-spin {
    0% {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

/* Coach Info Section */
.coach-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.coach-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(10, 10, 15, 0.8));
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 16px;
    transition: all var(--transition-normal);
}

.coach-stat-item {
    transition: all var(--transition-normal);
}

.coach-stat-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(15, 23, 42, 0.8));
}

.coach-stat-item:hover .coach-stat-label {
    color: var(--accent);
}

.coach-stat-label {
    transition: color var(--transition-normal);
}

.coach-stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.coach-stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coach-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.coach-tag {
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--accent);
    transition: all var(--transition-normal);
}

.coach-tag {
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.coach-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.coach-tag:hover::before {
    left: 100%;
}

.coach-tag:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--accent);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.coach-tag svg {
    transition: transform var(--transition-normal);
}

.coach-tag:hover svg {
    transform: rotate(15deg) scale(1.2);
}

/* Courses Section */
.coach-courses-section {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}

.coach-courses-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.courses-texture-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='courseNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23courseNoise)'/%3E%3C/svg%3E");
    opacity: 0.2;
    animation: texture-drift 30s linear infinite;
    mix-blend-mode: overlay;
}

.courses-gradient-waves {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(30, 58, 95, 0.2) 0%, transparent 50%);
    animation: wave-pulse 8s ease-in-out infinite alternate;
}

@keyframes wave-pulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.courses-floating-shapes {
    position: absolute;
    inset: 0;
}

.courses-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 58, 95, 0.05));
    filter: blur(2px);
    animation: shape-float 20s ease-in-out infinite;
}

.courses-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.courses-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 10%;
    animation-duration: 30s;
    animation-delay: -8s;
}

.courses-shape.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-duration: 22s;
    animation-delay: -12s;
}

@keyframes shape-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -80px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Course Cards */
.course-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(10, 10, 15, 0.95));
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 24px;
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--navy-light));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-card {
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.course-card:hover .course-card-svg {
    opacity: 1;
}

.course-card:hover .course-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--accent), var(--navy));
    color: var(--white);
}

.course-card:hover .course-icon-svg {
    animation: icon-bounce 0.6s ease;
}

@keyframes icon-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.course-card-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
    z-index: 0;
}

.course-svg-bg {
    transition: opacity var(--transition-normal);
}

.course-card:hover .course-svg-bg {
    animation: svg-bg-shimmer 2s ease-in-out infinite;
}

@keyframes svg-bg-shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.course-svg-glow {
    animation: svg-glow-expand 3s ease-in-out infinite;
}

@keyframes svg-glow-expand {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.course-card-featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(15, 23, 42, 0.95));
    transform: scale(1.05);
}

.course-card-featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.course-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.course-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(30, 58, 95, 0.3));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.course-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--navy-light));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.course-card:hover .course-icon::before {
    opacity: 1;
}

.course-icon svg {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-normal);
}

.course-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(30, 58, 95, 0.4);
    border: 1px solid rgba(30, 58, 95, 0.6);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-300);
}

.course-badge-featured {
    background: linear-gradient(135deg, var(--accent), var(--navy-light));
    border-color: transparent;
    color: var(--white);
}

.course-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.course-description {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.course-features {
    margin-bottom: 2rem;
    space-y: 0.75rem;
}

.course-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-300);
    font-size: 0.875rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(30, 58, 95, 0.3);
}

.course-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--accent);
    line-height: 1;
}

.price-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
}

.course-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.course-btn {
    position: relative;
    overflow: hidden;
}

.course-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.course-btn:hover::before {
    left: 100%;
}

.course-btn:hover {
    background: var(--navy);
    border-color: var(--accent);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.course-btn span,
.course-btn svg {
    position: relative;
    z-index: 1;
}

.course-btn:hover svg {
    transform: translateX(5px);
}

.course-btn-featured {
    background: linear-gradient(135deg, var(--accent), var(--navy));
    border-color: transparent;
}

.course-btn-featured:hover {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* =============================================
   TEAM STORE SECTION
   ============================================= */
.team-store-section {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}

.team-store-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.store-texture-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(59, 130, 246, 0.03) 2px,
            rgba(59, 130, 246, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(30, 58, 95, 0.03) 2px,
            rgba(30, 58, 95, 0.03) 4px
        );
    background-size: 40px 40px;
    animation: pattern-shift-store 20s linear infinite;
    opacity: 0.4;
}

@keyframes pattern-shift-store {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

.store-gradient-flow {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(30, 58, 95, 0.2) 0%, transparent 50%);
    animation: store-gradient-flow 12s ease-in-out infinite alternate;
}

@keyframes store-gradient-flow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.store-floating-elements {
    position: absolute;
    inset: 0;
}

.store-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 58, 95, 0.05));
    filter: blur(2px);
    animation: store-element-float 20s ease-in-out infinite;
}

.store-element.element-1 {
    width: 250px;
    height: 250px;
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.store-element.element-2 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 10%;
    animation-duration: 30s;
    animation-delay: -8s;
}

.store-element.element-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-duration: 22s;
    animation-delay: -12s;
}

.store-element.element-4 {
    width: 150px;
    height: 150px;
    bottom: 25%;
    left: 15%;
    animation-duration: 28s;
    animation-delay: -5s;
}

@keyframes store-element-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(60px, -100px) rotate(180deg);
        opacity: 0.6;
    }
}

.store-decorative-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    pointer-events: none;
}

.store-svg-bg {
    animation: store-svg-pulse 8s ease-in-out infinite;
}

@keyframes store-svg-pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

/* Store Filters */
.store-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.store-filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(30, 58, 95, 0.3);
    border: 1px solid rgba(30, 58, 95, 0.5);
    border-radius: 25px;
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.store-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.store-filter-btn:hover::before {
    left: 100%;
}

.store-filter-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.store-filter-btn.active {
    background: linear-gradient(135deg, var(--accent), var(--navy-light));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

/* Products Grid */
.store-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 640px) {
    .store-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Card */
.store-product-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(10, 10, 15, 0.95));
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    cursor: pointer;
}

.store-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--navy-light));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    z-index: 2;
}

.store-product-card:hover::before {
    transform: scaleX(1);
}

.store-product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.store-product-card.hidden {
    display: none;
}

/* Product Image */
.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(10, 10, 15, 0.5));
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image-icon {
    width: 120px;
    height: 120px;
    color: var(--navy-light);
    opacity: 0.3;
    transition: all var(--transition-normal);
}

.store-product-card:hover .product-image-icon {
    opacity: 0.5;
    transform: scale(1.1) rotate(5deg);
}

.product-placeholder-text {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
}

.product-badge-new {
    background: linear-gradient(135deg, var(--accent), var(--navy-light));
    color: var(--white);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.product-badge-sale {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

.product-badge-featured {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 4;
}

.store-product-card:hover .product-overlay {
    opacity: 1;
}

.product-quick-view {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--navy-light));
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-normal);
    transform: translateY(20px);
}

.store-product-card:hover .product-quick-view {
    transform: translateY(0);
}

.product-quick-view:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Product Info */
.product-info {
    padding: 1.5rem;
}

.product-category {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    transition: color var(--transition-normal);
}

.store-product-card:hover .product-name {
    color: var(--accent);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.rating-value {
    color: var(--white);
    font-weight: 600;
}

.rating-count {
    color: var(--gray-500);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(30, 58, 95, 0.3);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.price-current {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--accent);
    line-height: 1;
}

.price-original {
    font-size: 1rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.product-add-cart {
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.product-add-cart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--navy-light));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-add-cart:hover::before {
    opacity: 1;
}

.product-add-cart:hover {
    border-color: var(--accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.product-add-cart svg {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-normal);
}

.product-add-cart:hover svg {
    transform: scale(1.2);
    color: var(--white);
}

/* Light Mode Styles for Store */
.light-mode .team-store-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.light-mode .store-product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border-color: rgba(30, 58, 95, 0.1);
}

.light-mode .store-product-card:hover {
    box-shadow: 0 30px 60px rgba(30, 58, 95, 0.15);
}

.light-mode .store-filter-btn {
    background: rgba(248, 250, 252, 0.8);
    border-color: rgba(30, 58, 95, 0.2);
    color: var(--gray-600);
}

.light-mode .store-filter-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--navy);
}

.light-mode .product-name {
    color: var(--navy);
}

.light-mode .store-product-card:hover .product-name {
    color: var(--navy);
}

.light-mode .product-image-container {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(255, 255, 255, 0.9));
}

.light-mode .price-current {
    color: var(--navy);
}

.light-mode .rating-value {
    color: var(--navy);
}

/* Appointment Section */
.coach-appointment-section {
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
}

.coach-appointment-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.appointment-texture-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(59, 130, 246, 0.02) 2px,
            rgba(59, 130, 246, 0.02) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(30, 58, 95, 0.02) 2px,
            rgba(30, 58, 95, 0.02) 4px
        );
    background-size: 50px 50px;
    animation: pattern-move 20s linear infinite;
    opacity: 0.5;
}

@keyframes pattern-move {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.appointment-gradient-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(30, 58, 95, 0.15) 0%, transparent 50%);
    animation: mesh-pulse 10s ease-in-out infinite alternate;
}

@keyframes mesh-pulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.appointment-animated-circles {
    position: absolute;
    inset: 0;
}

.appointment-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.2);
    animation: circle-expand 8s ease-in-out infinite;
}

.appointment-circle.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.appointment-circle.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.appointment-circle.circle-3 {
    width: 180px;
    height: 180px;
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.appointment-circle.circle-4 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes circle-expand {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

.appointment-connecting-lines {
    position: absolute;
    inset: 0;
}

.appointment-lines-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.appointment-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: line-draw-appointment 12s ease-in-out infinite;
}

.appointment-line:nth-child(2) {
    animation-delay: 4s;
}

@keyframes line-draw-appointment {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    30% {
        opacity: 0.6;
    }
    70% {
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* Appointment Form */
.appointment-form-container {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(10, 10, 15, 0.98));
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.appointment-form .form-group {
    display: flex;
    flex-direction: column;
}

.appointment-form .form-group.full-width {
    grid-column: span 2;
}

@media (max-width: 640px) {
    .appointment-form .form-group.full-width {
        grid-column: span 1;
    }
}

.appointment-form label {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    background: rgba(30, 58, 95, 0.2);
    border: 1px solid rgba(30, 58, 95, 0.4);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-normal);
    font-family: 'Space Grotesk', sans-serif;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.appointment-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
}

.appointment-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent), var(--navy));
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-normal);
    margin-top: 1rem;
}

.appointment-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* Calendar */
.calendar-container {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(10, 10, 15, 0.98));
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.calendar-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(30, 58, 95, 0.3);
    border: 1px solid rgba(30, 58, 95, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.calendar-nav-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--accent);
}

.calendar-month {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 0.1em;
}

.calendar-grid {
    margin-bottom: 1.5rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.calendar-day.empty {
    cursor: default;
    opacity: 0;
}

.calendar-day.available {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--white);
}

.calendar-day.available {
    position: relative;
}

.calendar-day.available::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--navy-light));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.calendar-day.available:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--accent);
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
    z-index: 10;
}

.calendar-day.available:hover::before {
    opacity: 0.3;
}

.calendar-day.booked {
    background: rgba(30, 58, 95, 0.4);
    border-color: rgba(30, 58, 95, 0.6);
    color: var(--gray-500);
    cursor: not-allowed;
    position: relative;
}

.calendar-day.booked::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 2px solid rgba(30, 58, 95, 0.5);
}

.legend-color.available {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.legend-color.booked {
    background: rgba(30, 58, 95, 0.4);
    border-color: rgba(30, 58, 95, 0.6);
}

/* Appointment Info Box */
.appointment-info-box {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(10, 10, 15, 0.98));
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 24px;
    padding: 2rem;
}

.info-box-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.info-box-content {
    space-y: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

/* Light Mode Styles for Coach Detail */
.light-mode .coach-hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

.light-mode .coach-image-placeholder {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(248, 250, 252, 0.9));
    border-color: rgba(59, 130, 246, 0.2);
}

.light-mode .coach-stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    border-color: rgba(30, 58, 95, 0.1);
}

.light-mode .coach-stat-item:hover {
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
}

.light-mode .coach-tag {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--navy);
}

.light-mode .coach-tag:hover {
    background: rgba(59, 130, 246, 0.15);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
}

.light-mode .course-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border-color: rgba(30, 58, 95, 0.1);
}

.light-mode .course-card:hover {
    box-shadow: 0 30px 60px rgba(30, 58, 95, 0.15);
}

.light-mode .course-title {
    color: var(--navy);
}

.light-mode .course-description {
    color: var(--gray-500);
}

.light-mode .appointment-form-container,
.light-mode .calendar-container,
.light-mode .appointment-info-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border-color: rgba(30, 58, 95, 0.1);
}

.light-mode .appointment-form input,
.light-mode .appointment-form select,
.light-mode .appointment-form textarea {
    background: rgba(248, 250, 252, 0.8);
    border-color: rgba(30, 58, 95, 0.2);
    color: var(--primary);
}

.light-mode .appointment-form input:focus,
.light-mode .appointment-form select:focus,
.light-mode .appointment-form textarea:focus {
    background: rgba(59, 130, 246, 0.05);
}

.light-mode .calendar-day.available {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--navy);
}

.light-mode .calendar-day.available:hover {
    background: rgba(59, 130, 246, 0.15);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
}

.light-mode .calendar-day.booked {
    background: rgba(30, 58, 95, 0.1);
    border-color: rgba(30, 58, 95, 0.2);
    color: var(--gray-400);
}

.light-mode .coach-decorative-svg {
    opacity: 0.3;
}

.light-mode .coach-svg-circle,
.light-mode .coach-svg-line,
.light-mode .coach-svg-path {
    opacity: 0.2;
}

.light-mode .course-card-svg {
    opacity: 0.2;
}

.light-mode .course-card:hover .course-card-svg {
    opacity: 0.4;
}

/* Responsive Adjustments for Coach Detail */
@media (max-width: 1024px) {
    .coach-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .coach-stat-number {
        font-size: 2rem;
    }
    
    .course-card-featured {
        transform: scale(1);
    }
    
    .coach-decorative-svg {
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .coach-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .coach-gradient-orb {
        filter: blur(60px);
        opacity: 0.25;
    }
    
    .coach-particle {
        width: 4px;
        height: 4px;
    }
    
    .courses-shape {
        filter: blur(1px);
        opacity: 0.3;
    }
    
    .appointment-circle {
        display: none;
    }
    
    .coach-decorative-svg {
        opacity: 0.2;
    }
    
    .coach-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
}