/* ========================================
   DYNAMO YOUTH FOOTBALL CLUB PUCHONG
   Barca-Inspired Professional Design
   ======================================== */

/* Reset and Base Styles - Universal Browser Compatibility */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

/* ========================================
   NAVIGATION BAR (Barca Style - Clean & Minimal)
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.8rem 0;
}

.logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* SMALL LOGO - Barca Style */
.logo-img {
    height: 40px;
    width: auto;
    max-width: 100px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease;
}

.logo-img:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.nav-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 2.5rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e94560;
    -webkit-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    -moz-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #e94560;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: #e94560;
}

/* ========================================
   HERO SECTION WITH SLIDESHOW
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    overflow: hidden;
    padding-bottom: 50px;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    -webkit-transition: opacity 1.5s ease-in-out;
    -o-transition: opacity 1.5s ease-in-out;
    -moz-transition: opacity 1.5s ease-in-out;
    transition: opacity 1.5s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.6)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    -webkit-animation: fadeInUp 1s ease;
    -moz-animation: fadeInUp 1s ease;
    -o-animation: fadeInUp 1s ease;
    animation: fadeInUp 1s ease;
}

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

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

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

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

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: #e94560;
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
    -moz-box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 15px 40px rgba(233, 69, 96, 0.7);
    -moz-box-shadow: 0 15px 40px rgba(233, 69, 96, 0.7);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.7);
    background: #d63850;
}

/* Slideshow Navigation Dots */
.hero-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 3;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 40px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border-color: white;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats {
    padding: 5rem 0;
    background: #1a1a2e;
    color: white;
}

.stats-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease;
}

.stat-item:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}

.stat-item i {
    font-size: 3rem;
    color: #e94560;
    margin-bottom: 1.5rem;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease;
}

.stat-item:hover i {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    background: -webkit-gradient(linear, left top, right bottom, from(#e94560), to(#ff6b8a));
    background: -webkit-linear-gradient(135deg, #e94560, #ff6b8a);
    background: -moz-linear-gradient(135deg, #e94560, #ff6b8a);
    background: -o-linear-gradient(135deg, #e94560, #ff6b8a);
    background: linear-gradient(135deg, #e94560, #ff6b8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.stat-item p {
    font-size: 1rem;
    letter-spacing: 2px;
    opacity: 0.9;
    font-weight: 600;
}

/* ========================================
   LOCATIONS SECTION
   ======================================== */
.locations {
    padding: 6rem 0;
    background: #f8f9fa;
}

.location-main {
    max-width: 900px;
    margin: 0 auto;
}

.location-card-large {
    background: white;
    padding: 4rem 3rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.location-card-large:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.location-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #667eea), to(#764ba2));
    background: -webkit-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: -moz-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: -o-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-animation: pulse 2s infinite;
    -moz-animation: pulse 2s infinite;
    -o-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0%, 100% {
        -webkit-box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        -webkit-box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }
}

@-moz-keyframes pulse {
    0%, 100% {
        -moz-box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        -moz-box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }
}

@-o-keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        -webkit-box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
        -moz-box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        -webkit-box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
        -moz-box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }
}

.location-icon i {
    font-size: 3rem;
    color: white;
}

.location-card-large h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 800;
}

.location-address {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 2;
}

.location-address i {
    color: #e94560;
    margin-right: 0.8rem;
}

.training-schedule {
    background: #f8f9fa;
    padding: 2.5rem;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    margin: 2.5rem 0;
}

.training-schedule h4 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
    font-weight: 700;
}

.training-schedule h4 i {
    color: #667eea;
    margin-right: 0.8rem;
}

.schedule-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.schedule-item {
    background: white;
    padding: 1.8rem 1.5rem;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.schedule-item:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
    -moz-box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.schedule-item .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.8rem;
}

.schedule-item .time {
    display: block;
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.location-btn {
    display: inline-block;
    background: #e94560;
    color: white;
    padding: 1.2rem 2.8rem;
    text-decoration: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 2rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 8px 20px rgba(233, 69, 96, 0.4);
    -moz-box-shadow: 0 8px 20px rgba(233, 69, 96, 0.4);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.4);
}

.location-btn:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 12px 30px rgba(233, 69, 96, 0.6);
    -moz-box-shadow: 0 12px 30px rgba(233, 69, 96, 0.6);
    box-shadow: 0 12px 30px rgba(233, 69, 96, 0.6);
    background: #d63850;
}

.location-btn i {
    margin-right: 0.8rem;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 3.5rem;
    color: #1a1a2e;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: -webkit-gradient(linear, left top, right top, from(#667eea), to(#e94560));
    background: -webkit-linear-gradient(left, #667eea, #e94560);
    background: -moz-linear-gradient(left, #667eea, #e94560);
    background: -o-linear-gradient(left, #667eea, #e94560);
    background: linear-gradient(90deg, #667eea, #e94560);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 6rem 0;
    background: white;
}

.about-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(280px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.about-item {
    text-align: center;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.about-item:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.8rem;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #667eea), to(#764ba2));
    background: -webkit-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: -moz-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: -o-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.about-item:hover .about-icon {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    transform: rotateY(360deg);
    -webkit-box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    -moz-box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.about-icon i {
    font-size: 2.2rem;
    color: white;
}

.about-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #1a1a2e;
    font-weight: 700;
}

.about-item p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* ========================================
   PROGRAMS SECTION
   ======================================== */
.programs {
    padding: 6rem 0;
    background: #1a1a2e;
    color: white;
}

.programs .section-title {
    color: white;
}

.programs .section-title::after {
    background: -webkit-gradient(linear, left top, right top, from(#e94560), to(#667eea));
    background: -webkit-linear-gradient(left, #e94560, #667eea);
    background: -moz-linear-gradient(left, #e94560, #667eea);
    background: -o-linear-gradient(left, #e94560, #667eea);
    background: linear-gradient(90deg, #e94560, #667eea);
}

.programs-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(320px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.program-card {
    background: #252541;
    padding: 3rem 2.5rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: relative;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    border: 3px solid transparent;
}

.program-card:hover {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
    border-color: #e94560;
    -webkit-box-shadow: 0 20px 50px rgba(233, 69, 96, 0.3);
    -moz-box-shadow: 0 20px 50px rgba(233, 69, 96, 0.3);
    box-shadow: 0 20px 50px rgba(233, 69, 96, 0.3);
}

.program-card.featured {
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #667eea), to(#764ba2));
    background: -webkit-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: -moz-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: -o-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    border-color: #e94560;
}

.program-card.featured:hover {
    -webkit-transform: scale(1.08) translateY(-15px);
    -moz-transform: scale(1.08) translateY(-15px);
    -ms-transform: scale(1.08) translateY(-15px);
    -o-transform: scale(1.08) translateY(-15px);
    transform: scale(1.08) translateY(-15px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #e94560;
    color: white;
    padding: 0.6rem 1.8rem;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    -webkit-box-shadow: 0 5px 15px rgba(233, 69, 96, 0.5);
    -moz-box-shadow: 0 5px 15px rgba(233, 69, 96, 0.5);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.5);
}

.program-card h3 {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.age-group {
    font-size: 1.1rem;
    color: #e94560;
    margin-bottom: 2rem;
    font-weight: 700;
}

.program-card.featured .age-group {
    color: white;
    opacity: 0.95;
}

.program-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.program-card ul li {
    padding: 0.9rem 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.program-card ul li i {
    color: #e94560;
    font-size: 1.2rem;
}

.program-card.featured ul li i {
    color: white;
}

.program-btn {
    display: block;
    background: #e94560;
    color: white;
    padding: 1.1rem 2.5rem;
    text-align: center;
    text-decoration: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-btn:hover {
    background: #d63850;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 10px 25px rgba(233, 69, 96, 0.4);
    -moz-box-shadow: 0 10px 25px rgba(233, 69, 96, 0.4);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.4);
}

.program-card.featured .program-btn {
    background: white;
    color: #667eea;
}

.program-card.featured .program-btn:hover {
    background: #f0f0f0;
    color: #5568d3;
}

/* ========================================
   TRYOUT / REGISTRATION SECTION
   ======================================== */
.tryout {
    padding: 6rem 0;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #667eea), to(#764ba2));
    background: -webkit-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: -moz-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: -o-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tryout-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.tryout-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tryout-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* WhatsApp Quick Contact */
.whatsapp-quick-contact {
    margin: 2.5rem 0;
    text-align: center;
}

.whatsapp-register-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    background: #25D366;
    color: white;
    padding: 1.4rem 2.8rem;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    -moz-box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-register-btn:hover {
    background: #128C7E;
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
    -moz-box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-register-btn i {
    font-size: 1.6rem;
}

/* Form Divider */
.form-divider {
    text-align: center;
    margin: 3rem 0;
    position: relative;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.form-divider::before {
    left: 0;
}

.form-divider::after {
    right: 0;
}

.form-divider span {
    background: transparent;
    padding: 0 1.5rem;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    opacity: 0.9;
}

/* Tryout Form */
.tryout-form {
    background: white;
    padding: 3.5rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.tryout-form input,
.tryout-form select,
.tryout-form textarea {
    width: 100%;
    padding: 1.1rem;
    border: 2px solid #e0e0e0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    color: #333;
}

.tryout-form textarea {
    resize: vertical;
    min-height: 100px;
    margin-bottom: 1.5rem;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / -1;
}

.tryout-form input:focus,
.tryout-form select:focus,
.tryout-form textarea:focus {
    outline: none;
    border-color: #667eea;
    -webkit-box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    -moz-box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    width: 100%;
    background: #e94560;
    color: white;
    padding: 1.4rem;
    border: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #d63850;
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
    -moz-box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
}

.submit-btn i {
    font-size: 1.2rem;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    padding: 6rem 0;
    background: #f8f9fa;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3.5rem;
    font-style: italic;
}

.gallery-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    -o-transition: transform 0.6s ease;
    -moz-transition: transform 0.6s ease, -moz-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease, -moz-transform 0.6s ease;
}

.gallery-item:hover img {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, right bottom, from(rgba(102, 126, 234, 0.9)), to(rgba(233, 69, 96, 0.9)));
    background: -webkit-linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(233, 69, 96, 0.9));
    background: -moz-linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(233, 69, 96, 0.9));
    background: -o-linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(233, 69, 96, 0.9));
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(233, 69, 96, 0.9));
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay i {
    font-size: 3rem;
    color: white;
    -webkit-animation: zoomInOut 1s infinite;
    -moz-animation: zoomInOut 1s infinite;
    -o-animation: zoomInOut 1s infinite;
    animation: zoomInOut 1s infinite;
}

@-webkit-keyframes zoomInOut {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@-moz-keyframes zoomInOut {
    0%, 100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@-o-keyframes zoomInOut {
    0%, 100% {
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes zoomInOut {
    0%, 100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
}

/* ========================================
   LIGHTBOX MODAL
   ======================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 50px 20px 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-animation: zoomIn 0.4s ease;
    -moz-animation: zoomIn 0.4s ease;
    -o-animation: zoomIn 0.4s ease;
    animation: zoomIn 0.4s ease;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

@-webkit-keyframes zoomIn {
    from {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@-moz-keyframes zoomIn {
    from {
        -moz-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        -moz-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@-o-keyframes zoomIn {
    from {
        -o-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -o-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.lightbox-close:hover {
    color: #e94560;
    -webkit-transform: rotate(90deg) scale(1.2);
    -moz-transform: rotate(90deg) scale(1.2);
    -ms-transform: rotate(90deg) scale(1.2);
    -o-transform: rotate(90deg) scale(1.2);
    transform: rotate(90deg) scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    padding: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: rgba(102, 126, 234, 0.6);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(102, 126, 234, 1);
    -webkit-transform: translateY(-50%) scale(1.15);
    -moz-transform: translateY(-50%) scale(1.15);
    -ms-transform: translateY(-50%) scale(1.15);
    -o-transform: translateY(-50%) scale(1.15);
    transform: translateY(-50%) scale(1.15);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    color: white;
    text-align: center;
    padding: 1rem 2.5rem;
    background: rgba(0, 0, 0, 0.8);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    max-width: 80%;
    font-size: 1rem;
}

/* ========================================
   SPONSORS & PARTNERS SECTION
   ======================================== */
.sponsors {
    padding: 6rem 0;
    background: white;
}

.sponsors-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3.5rem;
}

.sponsors-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sponsor-item {
    background: #f8f9fa;
    padding: 3rem 2.5rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    text-align: center;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sponsor-item:hover {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background: white;
}

.sponsor-item img {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: -webkit-filter 0.4s;
    transition: -webkit-filter 0.4s;
    -o-transition: filter 0.4s;
    -moz-transition: filter 0.4s, -moz-filter 0.4s;
    transition: filter 0.4s;
    transition: filter 0.4s, -webkit-filter 0.4s, -moz-filter 0.4s;
}

.sponsor-item:hover img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.sponsor-info h3 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.sponsor-info p {
    color: #666;
    font-size: 1rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 6rem 0;
    background: #f8f9fa;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3.5rem;
}

.contact-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-item {
    background: white;
    padding: 3rem 2.5rem;
    text-align: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.contact-item:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    font-size: 2.8rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #1a1a2e;
    font-weight: 700;
}

.contact-item p {
    color: #666;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    display: block;
    margin: 0.5rem 0;
    font-weight: 600;
}

.contact-item a:hover {
    color: #e94560;
}

/* WhatsApp Styling */
.whatsapp-item i {
    color: #25D366 !important;
}

.whatsapp-link {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: #25D366;
    color: white !important;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    font-weight: 700;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0.8rem 0;
}

.whatsapp-link:hover {
    background: #128C7E;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    color: white !important;
}

/* ========================================
   SOCIAL MEDIA FOLLOW SECTION
   ======================================== */
.social-follow {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 3px solid #e0e0e0;
    text-align: center;
}

.social-follow h3 {
    font-size: 1.7rem;
    color: #1a1a2e;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.social-follow h3 i {
    color: #667eea;
    margin-right: 0.8rem;
}

.social-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.social-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 2.3rem;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.social-btn i {
    font-size: 1.6rem;
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.facebook:hover {
    background: #145dbf;
}

.social-btn.instagram {
    background: -webkit-gradient(linear, left bottom, right top, from(#F58529), color-stop(#DD2A7B), color-stop(#8134AF), to(#515BD4));
    background: -webkit-linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    background: -moz-linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    background: -o-linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-btn.instagram:hover {
    background: -webkit-gradient(linear, left bottom, right top, from(#d96e1f), color-stop(#c41f6a), color-stop(#6d2a94), to(#3d43b0));
    background: -webkit-linear-gradient(45deg, #d96e1f, #c41f6a, #6d2a94, #3d43b0);
    background: -moz-linear-gradient(45deg, #d96e1f, #c41f6a, #6d2a94, #3d43b0);
    background: -o-linear-gradient(45deg, #d96e1f, #c41f6a, #6d2a94, #3d43b0);
    background: linear-gradient(45deg, #d96e1f, #c41f6a, #6d2a94, #3d43b0);
}

.social-btn.tiktok {
    background: #000000;
}

.social-btn.tiktok:hover {
    background: #333333;
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    font-size: 36px;
    -webkit-box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    -moz-box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    z-index: 999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-animation: floatPulse 3s infinite;
    -moz-animation: floatPulse 3s infinite;
    -o-animation: floatPulse 3s infinite;
    animation: floatPulse 3s infinite;
}

@-webkit-keyframes floatPulse {
    0%, 100% {
        -webkit-box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@-moz-keyframes floatPulse {
    0%, 100% {
        -moz-box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -moz-box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
        -moz-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@-o-keyframes floatPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@keyframes floatPulse {
    0%, 100% {
        -webkit-box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        -moz-box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
        -moz-box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

.whatsapp-float:hover {
    background-color: #128C7E;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-box-shadow: 0 12px 45px rgba(37, 211, 102, 0.9);
    -moz-box-shadow: 0 12px 45px rgba(37, 211, 102, 0.9);
    box-shadow: 0 12px 45px rgba(37, 211, 102, 0.9);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1rem;
}

/* SMALL FOOTER LOGO - Barca Style */
.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 110px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-logo p {
    opacity: 0.85;
    font-size: 1rem;
}

.footer-social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: #252541;
    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: #e94560;
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 8px 20px rgba(233, 69, 96, 0.5);
    -moz-box-shadow: 0 8px 20px rgba(233, 69, 96, 0.5);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    opacity: 0.85;
    font-size: 0.95rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet & Mobile (768px and below) */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        gap: 1.5rem;
    }

    .hero {
        height: 80vh;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 1rem 2.3rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .form-row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .about-grid,
    .programs-grid,
    .contact-grid,
    .sponsors-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        -ms-grid-columns: (minmax(250px, 1fr))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 32px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-register-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .tryout-form {
        padding: 2.5rem 2rem;
    }

    .footer-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-logo {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .logo-img {
        height: 35px;
    }

    .footer-logo-img {
        height: 45px;
    }

    .program-card.featured {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .hero-dots {
        bottom: 25px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 30px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 32px;
        width: 55px;
        height: 55px;
        padding: 15px;
    }

    .lightbox-close {
        font-size: 45px;
        right: 25px;
        top: 15px;
    }

    .social-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1.5rem;
    }

    .social-btn {
        width: 100%;
        max-width: 300px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-dots {
        bottom: 15px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 25px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .gallery-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 28px;
        width: 45px;
        height: 45px;
        padding: 10px;
    }

    .lightbox-close {
        font-size: 38px;
        right: 15px;
        top: 10px;
    }

    .lightbox-caption {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
        bottom: 15px;
    }

    .tryout-form {
        padding: 2rem 1.5rem;
    }

    .location-card-large {
        padding: 3rem 2rem;
    }

    .schedule-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

/* ========================================
   END OF STYLESHEET
   ======================================== */
