/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Color Variables - Enhanced Sports Theme */
:root {
    --raw-yellow: #FFD700;
    --raw-yellow-bright: #FFED4A;
    --raw-cyan: #00CED1;
    --raw-cyan-bright: #00E5FF;
    --raw-black: #000000;
    --raw-white: #FFFFFF;
    --raw-orange: #FF6B35;
    --raw-red: #FF3B30;
    --raw-green: #30D158;
    --gray-100: #f7f8fc;
    --gray-200: #e1e5e9;
    --gray-300: #c7cdd3;
    --gray-400: #a0a6ac;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-neon: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(0, 206, 209, 0.3);
    --shadow-intense: 0 0 30px rgba(255, 107, 53, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px var(--raw-yellow); }
    50% { box-shadow: 0 0 20px var(--raw-yellow), 0 0 30px var(--raw-cyan); }
    100% { box-shadow: 0 0 5px var(--raw-yellow); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes energyPulse {
    0% { 
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
        transform: scale(1);
    }
}

@keyframes basketballBounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0) rotate(0deg);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0) rotate(180deg);
    }
    70% {
        transform: translate3d(0, -15px, 0) rotate(270deg);
    }
    90% {
        transform: translate3d(0, -4px, 0) rotate(350deg);
    }
}

@keyframes courtLines {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.7;
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.5),
                     0 0 10px rgba(255, 215, 0, 0.3),
                     0 0 15px rgba(0, 206, 209, 0.2);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.8),
                     0 0 20px rgba(255, 215, 0, 0.6),
                     0 0 30px rgba(0, 206, 209, 0.4),
                     0 0 40px rgba(255, 107, 53, 0.2);
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotate3D {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: rotateY(90deg) rotateX(10deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(0deg);
    }
    75% {
        transform: rotateY(270deg) rotateX(-10deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(0deg);
    }
}

@keyframes perspectiveShift {
    0%, 100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
    }
    50% {
        transform: perspective(1000px) rotateX(0deg) rotateY(10deg);
    }
    75% {
        transform: perspective(1000px) rotateX(-5deg) rotateY(5deg);
    }
}

@keyframes floatingBall {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-20px) rotateZ(90deg);
    }
    50% {
        transform: translateY(-40px) rotateZ(180deg);
    }
    75% {
        transform: translateY(-20px) rotateZ(270deg);
    }
}

@keyframes neonGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)) drop-shadow(0 0 15px rgba(0, 206, 209, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 30px rgba(0, 206, 209, 0.6)) drop-shadow(0 0 40px rgba(255, 107, 53, 0.4));
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out 0.2s both;
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: none;
}

.sticky-cta .cta-button {
    background: linear-gradient(135deg, var(--raw-yellow), var(--raw-cyan));
    color: var(--raw-black);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-intense);
    transition: all 0.3s ease;
    animation: energyPulse 3s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.sticky-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.4s ease;
}

.sticky-cta .cta-button:hover::before {
    left: 100%;
}

.sticky-cta .cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 60px rgba(255, 107, 53, 0.6),
        0 15px 40px rgba(0, 0, 0, 0.3);
    animation: basketballBounce 0.6s ease-out;
}

/* Hero Section - Enhanced Sports Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 206, 209, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    background-image: url('https://images.unsplash.com/photo-1546519638-68e109498ffc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        background-attachment: fixed;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 206, 209, 0.05) 50%, transparent 70%);
    animation: energyWave 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes energyWave {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero::after {
    content: '🏀';
    position: absolute;
    top: 30%;
    right: 10%;
    font-size: 4rem;
    transform: perspective(1000px) rotateX(15deg);
    animation: floatingBall 4s ease-in-out infinite, neonGlow 2s ease-in-out infinite alternate;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* 3D Basketball Elements */
.hero-3d-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-basketball {
    position: absolute;
    font-size: 2rem;
    animation: floatingBall 6s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
}

.floating-basketball:nth-child(1) {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
    transform: scale(0.8);
}

.floating-basketball:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: 2s;
    transform: scale(1.2);
}

.floating-basketball:nth-child(3) {
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
    transform: scale(0.6);
}

/* 3D Court Floor Effect */
.hero-court-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 215, 0, 0.1) 20%, 
            rgba(0, 206, 209, 0.1) 40%, 
            rgba(255, 107, 53, 0.1) 60%, 
            rgba(255, 215, 0, 0.1) 80%, 
            transparent 100%
        );
    transform: perspective(500px) rotateX(60deg);
    transform-origin: bottom;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 30%, rgba(0, 206, 209, 0.1) 100%);
    z-index: 2;
}

/* Basketball Court Lines */
.hero-court-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.1;
    pointer-events: none;
}

.court-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--raw-yellow), transparent);
    animation: courtLines 3s ease-in-out infinite;
}

.court-line-1 {
    top: 20%;
    left: 0;
    right: 0;
    height: 2px;
    animation-delay: 0s;
}

.court-line-2 {
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    animation-delay: 1s;
}

.court-line-3 {
    top: 80%;
    left: 0;
    right: 0;
    height: 2px;
    animation-delay: 2s;
}

/* Header Navigation Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-header {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo-header:hover {
    transform: scale(1.05);
    filter: 
        drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4))
        drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--raw-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--raw-yellow), var(--raw-cyan));
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--raw-yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cta-nav {
    background: linear-gradient(135deg, var(--raw-yellow), var(--raw-cyan));
    color: var(--raw-black) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-nav:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 107, 53, 0.3);
    text-shadow: none;
}

.cta-nav::after {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--raw-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2rem 0;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-link {
    color: var(--raw-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--raw-yellow);
    padding-left: 2.5rem;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--raw-yellow), var(--raw-cyan));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover::before {
    transform: scaleY(1);
}

.mobile-cta {
    background: linear-gradient(135deg, var(--raw-yellow), var(--raw-cyan));
    color: var(--raw-black) !important;
    margin: 1rem 2rem;
    padding: 1rem 2rem !important;
    border-radius: 25px;
    text-align: center;
    font-weight: 700;
    border-bottom: none !important;
}

.mobile-cta:hover {
    background: linear-gradient(135deg, var(--raw-orange) 0%, var(--raw-yellow) 100%);
    transform: scale(1.02);
    padding-left: 2rem !important;
}

.mobile-cta::before {
    display: none;
}

/* Header Mobile Styles */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-header {
        height: 40px;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--raw-white);
    max-width: 900px;
    margin: 0 auto;
    transform: perspective(1000px);
    animation: perspectiveShift 8s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3),
        0 0 30px rgba(0, 206, 209, 0.2),
        2px 2px 0px rgba(0, 0, 0, 0.8),
        4px 4px 0px rgba(0, 0, 0, 0.6);
    animation: textGlow 2s ease-in-out infinite alternate;
    position: relative;
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--raw-yellow) 0%, var(--raw-orange) 50%, var(--raw-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    animation: slideInLeft 1s ease-out;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--raw-yellow-bright) 0%, var(--raw-orange) 30%, var(--raw-cyan-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}


.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    min-width: 180px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-intense);
}

.cta-primary {
    background: linear-gradient(135deg, var(--raw-yellow), var(--raw-cyan));
    color: var(--raw-black);
    animation: energyPulse 3s infinite;
}

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

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

.cta-primary:hover {
    transform: perspective(1000px) translateY(-8px) rotateX(10deg) scale(1.08);
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.8),
        0 0 80px rgba(255, 107, 53, 0.6),
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(0, 206, 209, 0.3);
    animation: basketballBounce 0.6s ease-out;
    filter: brightness(1.1) saturate(1.2);
}

.cta-secondary {
    background: linear-gradient(135deg, transparent, rgba(255, 215, 0, 0.1));
    color: var(--raw-white);
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--raw-yellow), var(--raw-cyan)) 1;
    position: relative;
}

.cta-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--raw-yellow), var(--raw-cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-secondary:hover::after {
    opacity: 1;
}

.cta-secondary:hover {
    color: var(--raw-black);
    transform: perspective(1000px) translateY(-8px) rotateX(10deg) scale(1.08);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(0, 206, 209, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--raw-black);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section - Modern Timeline Design */
.about {
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 206, 209, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.about::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatSlow 8s ease-in-out infinite alternate;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatSlow 6s ease-in-out infinite alternate-reverse;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--raw-orange), var(--raw-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Journey Section */
.journey-section {
    margin: 5rem 0;
    position: relative;
    z-index: 2;
}

.journey-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--raw-black);
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--raw-orange), var(--raw-cyan));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--raw-orange), var(--raw-cyan));
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 0 0 4px white, 0 0 20px rgba(255, 215, 0, 0.3);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: calc(50% - 40px);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 40px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--raw-black);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Pillars Section */
.pillars-section {
    margin: 5rem 0;
    position: relative;
    z-index: 2;
}

.pillars-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--raw-black);
    margin-bottom: 3rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.pillar-card:hover::before {
    left: 100%;
}

.pillar-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 215, 0, 0.3);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--raw-yellow), var(--raw-cyan));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pillar-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.pillar-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--raw-black);
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* About Section - Mobile Responsive */
@media (max-width: 1024px) {
    .pillars-grid {
        gap: 1.5rem;
    }
    
    .pillar-card {
        padding: 2rem 1.5rem;
    }
    
    .pillar-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .pillar-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .pillar-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .pillar-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .journey-title, .pillars-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .timeline::before {
        left: 20px;
        transform: none;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
        margin-top: 1rem !important;
    }
    
    /* Mobile: Switch to 2x2 grid for better readability */
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 0;
    }
    
    .pillar-card {
        padding: 2rem 1.5rem;
        min-height: auto;
        display: block;
    }
    
    .pillar-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .pillar-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .pillar-card h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .pillar-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 0;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .journey-title, .pillars-title {
        font-size: 1.8rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h4 {
        font-size: 1.2rem;
    }
    
    /* Mobile: Keep 2x2 grid but with better spacing */
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        margin: 0;
    }
    
    .pillar-card {
        padding: 1.8rem 1.2rem;
        border-radius: 18px;
        min-height: auto;
        display: block;
    }
    
    .pillar-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }
    
    .pillar-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .pillar-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .pillar-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 360px) {
    .about {
        padding: 2.5rem 0;
    }
    
    /* Small mobile: Maintain 2x2 grid with compact design */
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 0;
    }
    
    .pillar-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
        min-height: auto;
        display: block;
    }
    
    .pillar-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .pillar-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .pillar-card h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .pillar-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .pillars-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-container {
        margin: 1.5rem 0;
    }
    
    .journey-section {
        margin: 3rem 0;
    }
    
    .pillars-section {
        margin: 3rem 0;
    }
}

/* Coach Section */
.coach {
    background: var(--raw-white);
    padding: 4rem 0;
}

.coach-header {
    text-align: center;
    margin-bottom: 3rem;
}

.coach-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--raw-black);
    margin-bottom: 1rem;
}

.coach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.coach-image img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    display: block;
}

.coach-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--raw-cyan);
    margin-bottom: 0.5rem;
}

.coach-title {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-weight: 500;
}

.coach-bio p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.coach-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--raw-yellow), var(--raw-cyan));
    border-radius: 15px;
    color: var(--raw-black);
}

.highlight-item .number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.highlight-item .label {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Coach Section - Mobile Layout */
@media (max-width: 768px) {
    .coach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coach-image {
        order: 1;
    }
    
    .coach-info {
        order: 2;
    }
    
    .coach-image img {
        max-width: 300px;
        height: 400px;
    }
    
    .coach-info h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .coach-title {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .coach-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* Secondary Coach Styling */
.coach-secondary {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.coach-secondary .coach-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem;
    align-items: center;
}

.coach-secondary .coach-image {
    order: 2;
}

.coach-secondary .coach-info {
    order: 1;
}

.coach-secondary .coach-info h3 {
    color: var(--raw-orange);
}

@media (max-width: 768px) {
    .coach-secondary {
        margin-top: 3rem;
        padding-top: 3rem;
    }
    
    .coach-secondary .coach-image,
    .coach-secondary .coach-info {
        order: initial;
    }
}

@media (max-width: 480px) {
    .coach {
        padding: 3rem 0;
    }
    
    .coach-secondary {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .coach-header {
        margin-bottom: 2rem;
    }
    
    .coach-image img {
        max-width: 280px;
        height: 350px;
    }
    
    .coach-info h3 {
        font-size: 1.6rem;
    }
    
    .coach-title {
        font-size: 1rem;
    }
    
    .coach-bio p {
        font-size: 1rem;
    }
    
    .coach-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1.5rem 1rem;
    }
}

/* Gallery Section - Enhanced Sports Design */
.gallery {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 206, 209, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
}

.gallery-container {
    position: relative;
}

/* Desktop Gallery Grid */
.desktop-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Mobile Gallery Carousel */
.mobile-gallery {
    display: none;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 15px;
}

.carousel-btn-next {
    right: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: linear-gradient(135deg, var(--raw-orange), var(--raw-cyan));
    transform: scale(1.2);
}

/* Testimonials Section */
.testimonials {
    background: var(--raw-white);
    padding: 4rem 0;
}

.testimonials-container {
    position: relative;
}

/* Desktop Testimonials Grid */
.desktop-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--raw-yellow), var(--raw-orange), var(--raw-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.testimonial-card:hover {
    transform: perspective(1000px) translateY(-15px) rotateX(8deg) rotateY(-5deg) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 3px rgba(255, 215, 0, 0.4),
        0 0 50px rgba(255, 215, 0, 0.3),
        0 0 70px rgba(0, 206, 209, 0.2);
    filter: brightness(1.05);
}

.video-placeholder {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-placeholder img,
.video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder video {
    border: none;
    outline: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--raw-yellow) 0%, var(--raw-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--raw-black);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        0 0 0 0 rgba(255, 215, 0, 0.7);
    animation: energyPulse 3s infinite;
}

.play-button::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: energyPulse 2s infinite;
}

.testimonial-info {
    padding: 2rem;
}

.testimonial-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--raw-black);
    margin-bottom: 1rem;
}

.testimonial-info p {
    color: var(--gray-600);
    line-height: 1.6;
    font-style: italic;
}

/* Mobile Testimonials Carousel */
.mobile-testimonials {
    display: none;
    position: relative;
}

.mobile-testimonials .carousel-slide {
    padding: 0 1rem;
}

.mobile-testimonials .testimonial-card {
    margin: 0 auto;
    max-width: 350px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .desktop-gallery,
    .desktop-testimonials {
        display: none !important;
    }
    
    .mobile-gallery,
    .mobile-testimonials {
        display: block !important;
    }
    
    .gallery,
    .testimonials {
        padding: 3rem 0;
    }
    
    .carousel-slide img {
        height: 220px;
    }
    
    /* Mobile video specific styling */
    .video-placeholder {
        position: relative;
        height: 200px;
        overflow: hidden;
        background: #000;
    }
    
    .video-placeholder video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        background: #000;
        /* Force video to show poster on mobile */
        -webkit-appearance: none;
        appearance: none;
        /* Ensure video loads metadata on mobile */
        display: block;
        /* Force poster to show */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    /* Ensure video poster shows on mobile */
    .video-placeholder video[poster] {
        background-image: attr(poster url);
    }
    
    /* Ensure play button is visible on mobile */
    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        pointer-events: auto;
        touch-action: manipulation;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
}

/* Ensure desktop shows grids and hides carousels */
@media (min-width: 769px) {
    .desktop-gallery,
    .desktop-testimonials {
        display: grid !important;
    }
    
    .mobile-gallery,
    .mobile-testimonials {
        display: none !important;
    }
}

.gall.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(0, 206, 209, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery {
    background: 
        radial-gradient(circle at 30% 10%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 90%, rgba(0, 206, 209, 0.1) 0%, transparent 60%),
        linear-gradient(45deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: var(--raw-white);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 215, 0, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 206, 209, 0.03) 25%, transparent 25%);
    background-size: 60px 60px;
    animation: courtPattern 20s linear infinite;
}

@keyframes courtPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.gallery .section-header h2 {
    color: var(--raw-white);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(0, 206, 209, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: '🏀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    z-index: 3;
    transition: transform 0.3s ease;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    animation: basketballBounce 0.6s ease-out;
}

.gallery-item:hover {
    transform: perspective(1000px) translateY(-20px) rotateX(15deg) rotateY(10deg) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 4px rgba(255, 215, 0, 0.6),
        0 0 50px rgba(255, 215, 0, 0.4),
        0 0 80px rgba(0, 206, 209, 0.3);
    filter: brightness(1.2) contrast(1.1);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Testimonials Section - Enhanced Sports Design */
.testimonials {
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 206, 209, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatUp 8s ease-in-out infinite alternate;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--raw-white) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--raw-yellow), var(--raw-orange), var(--raw-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.testimonial-card:hover {
    transform: perspective(1000px) translateY(-15px) rotateX(8deg) rotateY(-5deg) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 3px rgba(255, 215, 0, 0.4),
        0 0 50px rgba(255, 215, 0, 0.3),
        0 0 70px rgba(0, 206, 209, 0.2);
    filter: brightness(1.05);
}

.video-placeholder {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-placeholder img,
.video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder video {
    border: none;
    outline: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--raw-yellow) 0%, var(--raw-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--raw-black);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        0 0 0 0 rgba(255, 215, 0, 0.7);
    animation: energyPulse 3s infinite;
}

.play-button::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: energyPulse 2s infinite;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 
        0 15px 40px rgba(255, 215, 0, 0.6),
        0 0 0 10px rgba(255, 215, 0, 0.2),
        0 0 50px rgba(255, 107, 53, 0.4);
    animation: basketballBounce 0.6s ease-out;
}

.testimonial-info {
    padding: 1.5rem;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--raw-black);
}

.testimonial-info p {
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.6;
}

/* Camp Details Section */
.camp-details {
    background: var(--gray-100);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: var(--raw-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.detail-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--raw-black);
}

.detail-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.detail-note {
    background: linear-gradient(135deg, var(--raw-yellow), var(--raw-cyan));
    color: var(--raw-black);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem !important;
}

.detail-card ul {
    list-style: none;
    text-align: left;
}

.detail-card li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.detail-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--raw-cyan);
    font-weight: bold;
}

/* FAQ Section - Enhanced Sports Design */
.faq {
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0, 206, 209, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #f7f8fc 0%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatUp 10s ease-in-out infinite alternate;
}

.faq::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--raw-white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    transform: perspective(1000px) translateY(-8px) rotateX(5deg) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 215, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--raw-black);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--raw-yellow), var(--raw-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--raw-black);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.faq-item:hover .faq-toggle {
    transform: scale(1.1) rotate(45deg);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 107, 53, 0.3);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--raw-yellow), var(--raw-cyan));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--raw-black) 0%, #1a1a1a 100%);
    color: var(--raw-white);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-urgency {
    color: var(--raw-yellow);
    font-weight: 600;
    margin-bottom: 2rem !important;
}

.cta-button-large {
    background: linear-gradient(135deg, var(--raw-yellow), var(--raw-cyan));
    color: var(--raw-black);
    border: none;
    padding: 1.5rem 4rem;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-intense);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: energyPulse 4s infinite;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button-large:hover::before {
    left: 100%;
}

.cta-button-large:hover {
    transform: perspective(1000px) translateY(-12px) rotateX(15deg) scale(1.08);
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 1.0),
        0 0 100px rgba(255, 107, 53, 0.8),
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 120px rgba(0, 206, 209, 0.4);
    animation: basketballBounce 0.8s ease-out;
    filter: brightness(1.15) saturate(1.3);
}

/* Contact Form Section */
.contact-form {
    background: var(--gray-100);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--raw-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--raw-black);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--raw-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--raw-cyan);
    box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.1);
}

.form-submit {
    background: linear-gradient(135deg, var(--raw-yellow), var(--raw-cyan));
    color: var(--raw-black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    animation: glow 1s ease-in-out;
}

.form-success {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-radius: 15px;
    margin-top: 2rem;
}

.form-success h3 {
    color: #155724;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.form-success p {
    color: #155724;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--raw-black);
    color: var(--raw-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Footer Logo Styles */
.logo-footer {
    height: 60px;
    width: auto;
    max-width: 200px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
    filter: 
        drop-shadow(0 6px 20px rgba(0, 0, 0, 0.3))
        drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--raw-white);
}

.footer-brand p {
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--raw-white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-600);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--raw-yellow), var(--raw-cyan));
    color: var(--raw-black);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-400);
}

.developer-link {
    color: var(--raw-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: var(--raw-cyan);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .about-grid,
    .coach-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sticky-cta {
        display: block;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 6rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .form-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Simple video container styling */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #000;
}

.video-container video {
    width: 100%;
    display: block;
    max-height: 350px;
}

@media (max-width: 768px) {
    .video-container video {
        max-height: 200px;
    }
}
