/*
Theme Name: GT247FPA
Description: A cutting-edge WordPress theme for sports academies with modern design patterns, enhanced performance, and advanced user experience features.
Author: Erik Grozdanov
Version: 2.0.0
Text Domain: gt247fpa
*/

/* Modern CSS Custom Properties (Design System) */
:root {
    /* Color System */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    
    --brand-primary: #0251f9;
    --brand-primary-dark: #0040c7;
    --brand-secondary: #60a5fa;
    --brand-accent: #4285f4;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Semantic Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-muted: #6b7280;
    --surface: #ffffff;
    --surface-secondary: #f8f9fa;
    --background: #ffffff;
    --background-dark: #000000;
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Font Weights */
    --font-thin: 100;
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-backdrop: blur(20px);
    
    /* Animations */
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Container Sizes */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
    --container-max: 1200px;
}

/* CSS Reset with Modern Practices */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
}

body {
    font-family: 'Inter Variable', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-variation-settings: 'wght' var(--font-normal);
    line-height: var(--leading-relaxed);
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1;
    overflow-x: hidden;
}

/* Improved Focus Styles */
:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Modern Container System with Container Queries */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    container-type: inline-size;
}

/* Container Query Breakpoints */
@container (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

@container (min-width: 1024px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

/* Modern Typography with Variable Fonts */
h1, h2, h3, h4, h5, h6 {
    font-variation-settings: 'wght' var(--font-semibold);
    margin-bottom: var(--space-lg);
    line-height: var(--leading-tight);
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-wrap: balance;
}

h1 {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
    font-variation-settings: 'wght' var(--font-bold);
    line-height: var(--leading-none);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-5xl));
    font-variation-settings: 'wght' var(--font-semibold);
}

h3 {
    font-size: clamp(var(--text-xl), 3vw, var(--text-4xl));
    font-variation-settings: 'wght' var(--font-semibold);
}

h4 {
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
    font-variation-settings: 'wght' var(--font-medium);
}

h5 {
    font-size: var(--text-lg);
    font-variation-settings: 'wght' var(--font-medium);
}

h6 {
    font-size: var(--text-base);
    font-variation-settings: 'wght' var(--font-medium);
}

p {
    margin-bottom: var(--space-lg);
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    text-wrap: pretty;
}

/* Modern Link Styles */
a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    outline-offset: 4px;
}

a:hover {
    color: var(--brand-primary-dark);
    transform: translateY(-1px);
}

/* Link Underline Animation */
a:not(.nav-cta-button):not(.cta-button):not(.submit-btn):hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    border-radius: 1px;
    animation: linkUnderline var(--duration-normal) var(--ease-out) forwards;
}

@keyframes linkUnderline {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Top Navigation Bar */
.top-nav-bar {
    background: #2c2c2c;
    color: #fff;
    font-size: 0.8rem;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.top-nav-bar.hidden {
    transform: translateY(-100%);
}

.top-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.top-nav-item i {
    color: #4083f5;
    font-size: 0.9rem;
}

.top-nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.follow-text {
    color: #ccc;
    font-weight: 500;
    font-size: 0.8rem;
}

.top-social-links {
    display: flex;
    gap: 0.5rem;
}

.top-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    color: #4083f5;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.top-social-links a:hover {
    background: #4083f5;
    color: #fff;
    transform: translateY(-1px);
}

/* Header Styles */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    top: 40px; /* Account for top nav bar */
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.9rem 0;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.top-hidden {
    top: 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-link::after {
    display: none !important;
}

.logo img {
    max-height: 56px;
    width: auto;
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 700;
    color: black;
    letter-spacing: -0.02em;
    font-family: 'Archivo Black', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.main-nav .nav-cta a {
    margin-top: 0;
}

.main-nav a:hover {
    color: #0251f9;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Navigation CTA Button */
.nav-cta {
    margin-left: 1.5rem;
}

.nav-cta-button {
    background: #4083f5 !important;
    color: #fff !important;
    padding: 0.8rem 1.8rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-family: 'Archivo Black', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 8px rgba(0, 79, 190, 0.3) !important;
    border: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.nav-cta-button:hover {
    background: #0040c6 !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 85, 190, 0.4) !important;
    text-decoration: none !important;
}

.nav-cta-button::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    width: 100%;
    max-width: none;
    padding: 0 2rem;
    margin-top: 135px; /* desktop spacing from top */
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: #4083f5;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-content .cta-button {
    display: inline-block;
    background: #4083f5;
    color: #fff;
    padding: 1rem 2rem;
    font-weight: 600;
    font-family: 'Archivo Black', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 79, 190, 0.3);
}

.hero-content .cta-button:hover {
    background: #0040c6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 85, 190, 0.4);
}

/* Section Styles */
.section {
    padding: 4.5rem 0; /* tightened to reduce large gaps between sections */
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    color: #1a1a1a;
    font-family: 'Archivo Black', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0251f9, #4285f4);
    border-radius: 2px;
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0251f9, #4285f4);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(2, 81, 249, 0.1);
    border-color: rgba(2, 81, 249, 0.1);
}

.program-card .icon {
    font-size: 2.5rem;
    color: #0251f9;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.program-card:hover .icon {
    transform: scale(1.1);
}

.program-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-card h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    background: #f8f9fa;
}

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

.about-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 2rem;
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0251f9;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    
}

/* Video Section */
.video-section {
    background: #000;
    color: #fff;
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0251f9;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #4083f5;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Archivo Black', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

/* Secondary button font */
.btn-secondary {
    font-family: 'Archivo Black', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.submit-btn:hover {
    background: #0040c6;
    transform: translateY(-2px);
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-item .icon {
    font-size: 1.5rem;
    color: #4083f5;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.contact-item .info h4 {
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

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

/* Social Media */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #0251f9;
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0040c7;
    transform: translateY(-2px);
}

/* Contact section follow block */
.contact-follow {
    margin-top: 1rem;
}

.contact-follow h5 {
    margin: 0.5rem 0 0.75rem;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0251f9;
    color: #fff;
    border-radius: 8px;
    font-size: 1.1rem; /* slightly bigger than header icons */
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    background: #0040c7;
    transform: translateY(-2px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #4083f5;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 79, 190, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #0040c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 81, 249, 0.4);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 90px; /* Moved to make space for scroll-to-top */
    background: #25D366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: white;
    padding: 3rem 0 1rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle fill="rgba(255,255,255,0.1)" cx="200" cy="200" r="3"/><circle fill="rgba(255,255,255,0.08)" cx="800" cy="300" r="2"/><circle fill="rgba(255,255,255,0.12)" cx="1000" cy="600" r="4"/><circle fill="rgba(255,255,255,0.06)" cx="400" cy="500" r="2"/></svg>');
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    color: white !important;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-family: 'Archivo Black', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-section a::after {
    display: none !important;
}

/* Footer Links without dots */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    position: relative;
}

.footer-links a:hover {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: none;
}

.footer-links a::after {
    display: none !important;
}

/* Footer Contact Icons */
.footer-contact i {
    color: rgba(255, 255, 255, 0.8) !important;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    color: #fff;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-left p { margin: 0; color: #fff; }
.footer-right { display: flex; align-items: center; gap: 0.5rem; }
.footer-right a { color: #fff; text-decoration: none; cursor: pointer; }
.footer-right a:hover { text-decoration: none; filter: none; background: none; box-shadow: none; }
.footer-right .divider { color: rgba(255,255,255,0.8); }

/* Animations */
.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Content Text Styles */
.content-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.content-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-text li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #666;
}

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card,
.vision-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.mission-card h3,
.vision-card h3 {
    color: #0251f9;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Subsection Title */
.subsection-title {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-family: 'Archivo Black', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Age Range Styling */
.age-range {
    color: #0251f9;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Individual Training Section */
.individual-training {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.individual-training h4 {
    color: #0251f9;
    margin-bottom: 1.5rem;
}

.individual-training ul {
    list-style: none;
    padding-left: 0;
}

.individual-training li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
}

.individual-training li:last-child {
    border-bottom: none;
}

/* Methodology Grid */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.methodology-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.methodology-item:hover {
    transform: translateY(-5px);
}

.methodology-item .icon {
    font-size: 2.5rem;
    color: #0251f9;
    margin-bottom: 1rem;
}

.methodology-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

/* Competitive Opportunities */
.competitive-opportunities {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.competitive-opportunities h3 {
    color: #0251f9;
    margin-bottom: 1.5rem;
}

.competitive-opportunities ul {
    list-style: none;
    padding-left: 0;
}

.competitive-opportunities li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
}

.competitive-opportunities li::before {
    content: '⚽';
    position: absolute;
    left: 0;
    color: #0251f9;
    font-size: 1.2rem;
}

/* Competitive Opportunities Content Grid */
.competitive-content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
    margin-top: 1.5rem;
}

.competitive-text {
    flex: 1;
}

.competitive-text p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1rem;
}

.competitive-text ul {
    list-style: none;
    padding-left: 0;
}

.competitive-text li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    color: #666;
    border-bottom: 1px solid #e9ecef;
}

.competitive-text li:last-child {
    border-bottom: none;
}

.competitive-text li::before {
    content: '⚽';
    position: absolute;
    left: 0;
    color: #0251f9;
    font-size: 1.2rem;
}

/* Competitive Opportunities Video */
.competitive-video-container {
    width: 100%;
    max-width: 400px;
}

.competitive-video-container video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.competitive-video-container video:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .competitive-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .competitive-video-container {
        max-width: 100%;
        justify-self: center;
    }
    
    .competitive-video-container video {
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        max-width: 400px;
    }
    
    .competitive-video-container video:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
}

/* Staff Grid */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.staff-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
}

.staff-card h4 {
    color: #0251f9;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.staff-card .position {
    color: #666;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.staff-card .qualification {
    color: #0251f9;
    font-style: italic;
    font-size: 0.9rem;
}

/* Camps Grid */
.camps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.camp-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #0251f9;
}

.camp-card h4 {
    color: #0251f9;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.camp-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: #fff;
    padding: 4rem 0;
}

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

.overall-rating h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: #ffc107;
    font-size: 1.5rem;
}

.overall-rating p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.google-logo {
    font-size: 2rem;
    font-weight: 400;
}

.google-g { color: #4285f4; }
.google-o1 { color: #ea4335; }
.google-o2 { color: #fbbc04; }
.google-g2 { color: #4285f4; }
.google-l { color: #34a853; }
.google-e { color: #ea4335; }

.testimonials-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .testimonials-slider-container {
        padding: 0 50px;
    }
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
}

.testimonial-slide {
    width: calc((100% - 2rem) / 3);
    min-width: 300px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    margin-right: 0;
}

.testimonial-slide:last-child {
    margin-right: 0;
}

@media (max-width: 1024px) {
    .testimonial-slide {
        width: calc((100% - 1rem) / 2);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        width: 100%;
        margin-right: 0;
        min-width: 280px;
    }
}

.testimonial-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-content {
    flex: 1;
}

.testimonial-header {
    margin-bottom: 0.5rem;
}

.testimonial-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.1rem;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-date {
    color: #666;
    font-size: 0.85rem;
}

.testimonial-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.read-more-btn {
    background: none;
    border: none;
    color: #1a73e8;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-nav i {
    color: #666;
    font-size: 0.9rem;
}

/* Modern Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, var(--primary-50) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, var(--brand-secondary) 0%, transparent 60%);
    opacity: 0.2;
    z-index: 0;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: var(--space-3xl);
    container-type: inline-size;
}

@container (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@container (min-width: 600px) and (max-width: 899px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Enhanced Gallery Items */
.gallery-item {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-out);
    border: 1px solid var(--glass-border);
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
    z-index: -1;
    border-radius: inherit;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--brand-primary);
}

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

/* Modern Gallery Image Container */
.gallery-image-container {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    background: var(--gray-100);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--duration-slow) var(--ease-out);
    filter: brightness(0.95);
}

.gallery-image-container:hover .gallery-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Enhanced Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 81, 249, 0.8) 0%, rgba(66, 133, 244, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-out);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.gallery-image-container:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--surface);
    font-size: var(--text-4xl);
    transition: all var(--duration-normal) var(--ease-bounce);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.gallery-image-container:hover .gallery-overlay i {
    transform: scale(1.2) rotate(15deg);
}

/* Modern Gallery Titles */
.gallery-title {
    padding: var(--space-lg);
    color: var(--text-primary);
    font-size: var(--text-base);
    font-variation-settings: 'wght' var(--font-medium);
    margin: 0;
    text-align: center;
    line-height: var(--leading-snug);
    transition: color var(--duration-normal) var(--ease-out);
}

.gallery-item:hover .gallery-title {
    color: var(--brand-primary);
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image-container {
        height: 250px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop-only nav spacing */
@media (min-width: 769px) {
    .main-nav ul {
        gap: 25px;
    }
    .main-nav li {
        margin-top: 10px;
    }
    .main-nav li.nav-cta {
        margin-top: 0;
    }
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.gallery-close:hover {
    color: #0251f9;
}

#galleryModalImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.gallery-modal-title {
    color: #fff;
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 800px;
}



/* Modal open body class */
body.modal-open {
    overflow: hidden;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-green {
    color: #60a5fa;
}

.bg-dark {
    background: #000;
    color: #fff;
}

.bg-light {
    background: #f8f9fa;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Video Caption */
.video-caption {
    text-align: center;
    margin-top: 0.5rem;
}

.video-caption p {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Top Navigation Bar Mobile - Hide completely */
    .top-nav-bar {
        display: none;
    }
    
    /* Adjust main header position when top nav is hidden */
    .site-header {
        top: 0;
    }
    
    .top-nav-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .top-nav-left {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .top-nav-item {
        font-size: 0.75rem;
    }
    
    .top-nav-right {
        gap: 0.5rem;
    }
    
    .follow-text {
        font-size: 0.75rem;
    }
    
    .top-social-links a {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background: #ffffff;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        color: #111827;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    
    .mobile-menu-toggle:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
    
    .mobile-menu-toggle:active {
        transform: translateY(0) scale(0.98);
    }
    
    .main-nav {
        display: none;
        position: fixed;
        height: 100vh;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff; /* solid white */
        border: none;
        border-radius: 0;
        box-shadow: none;
        z-index: 9999; /* keep above everything */
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    /* Overlay behind the menu for better UX */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.35);
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s ease;
        z-index: 9998;
    }
    .nav-overlay.active { opacity: 1; visibility: visible; }
    
    .main-nav.active {
        display: block;
        animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        min-height: 100vh !important;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1.25rem;
        margin: 0;
        background: #ffffff;
    }

/* removed WP primary menu helpers (using original static anchors) */
    
    .main-nav li {
        border-bottom: 1px solid #e5e7eb;
        margin: 0;
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        display: block;
        color: #111111 !important;
        font-size: 1.1rem;
        font-weight: 500;
        text-align: left;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 12px;
        position: relative;
        overflow: hidden;
    }
    
    .main-nav a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .main-nav a:hover,
    .main-nav a:focus,
    .main-nav a.active,
    .main-nav a:active {
        color: #0251f9 !important;
        transform: none;
        box-shadow: none;
    }
    .main-nav .nav-cta a,
    .main-nav .nav-cta a:hover,
    .main-nav .nav-cta a:focus,
    .main-nav .nav-cta a:active {
        color: #ffffff !important;
    }
    
    .main-nav a:hover::before {
        left: 100%;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .nav-cta {
        margin: 1rem 0 0 0;
        padding-top: 1rem;
        border-top: 1px solid #e5e7eb;
    }
    
    .nav-cta-button {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
        background: #4083f5 !important;
        color: #fff !important;
        padding: 0.8rem 1.8rem !important;
        border-radius: 6px !important;
        font-weight: 600 !important;
        font-family: 'Archivo Black', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-size: 0.95rem !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        border: none !important;
        box-shadow: 0 2px 8px rgba(0, 79, 190, 0.3) !important;
    }
    
    .nav-cta-button:hover {
        background: #0040c6 !important;
        color: #ffffff !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(0, 85, 190, 0.4) !important;
    }
    
    /* Responsive Grid Sections */
    .community-grid,
    .development-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .community-features,
    .development-stats {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* About section grids with inline styles */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .hero-content {
        margin-top: 45px; /* tablet/mobile spacing */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 2.25rem 0; /* slightly tighter on mobile */
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    /* Keep the quote section centered */
    .footer-section:first-child {
        text-align: center;
    }
    
    /* Left align everything else */
    .footer-section:not(:first-child) {
        text-align: left;
    }
    
    .footer-section:not(:first-child) h4 {
        text-align: left;
    }
    
    .footer-links {
        text-align: left;
    }
    
    .footer-contact {
        text-align: left;
    }
    
    /* Keep copyright centered */
    .footer-bottom { flex-direction: column; gap: 0.5rem; }
    .footer-bottom-left p { text-align: left; width: 100%; }
    .legal-links { width: 100%; justify-content: flex-end; }
    
    .social-links {
        justify-content: center;
    }
    
    /* Scroll to top and WhatsApp buttons mobile */
    .scroll-to-top,
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 20px;
    }
    
    .whatsapp-btn {
        right: 75px;
    }
    
    .scroll-to-top {
        right: 20px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .subtitle {
        font-size: 1rem;
    }
    
    .program-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .whatsapp-btn,
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    * {
        color: #000 !important;
        background: #fff !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .program-card,
    .contact-form,
    .contact-item {
        border: 2px solid #000;
    }
    
    .hero-section {
        background: #000;
    }
    
    .section-title::after {
        background: #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: smooth;
    }
}
