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

*:focus {
    outline: 2px solid var(--secondary-blue);
    outline-offset: 2px;
}

button, a, input, textarea {
    -webkit-tap-highlight-color: rgba(0, 198, 255, 0.3);
}

:root {
    --primary-blue: #0072FF;
    --secondary-blue: #00C6FF;
    --dark-blue: #0052CC;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --text-dark: #1A1A2E;
    --shadow: rgba(0, 114, 255, 0.2);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 114, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 198, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(0, 114, 255, 0.02) 0%, transparent 30%);
    animation: ambientGlow 15s ease-in-out infinite;
}

@keyframes ambientGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 20, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 20, 40, 0.98);
    box-shadow: 0 5px 30px rgba(0, 114, 255, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    filter: drop-shadow(0 3px 12px rgba(0, 114, 255, 0.4));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 5px 15px rgba(0, 198, 255, 0.6));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

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

/* HERO SECTION */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0072FF 0%, #00C6FF 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 48, 75, 0.85) 0%, rgba(0, 48, 75, 0.85) 45%, rgba(0, 48, 75, 0.5) 50%, rgba(153, 123, 11, 0.5) 50%, rgba(153, 123, 11, 0.85) 55%, rgba(153, 123, 11, 0.85) 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 30%, rgba(0, 198, 255, 0.2) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0, 198, 255, 0.8), transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0, 114, 255, 0.8), transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(0, 198, 255, 0.8), transparent);
    background-size: 200% 200%;
    animation: sparkle 8s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.6; background-position: 0% 0%; }
    50% { opacity: 1; background-position: 100% 100%; }
}

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

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 300;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

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

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.4s backwards;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    touch-action: manipulation;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 114, 255, 0.4);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

/* SPONSORING OVERLAY */
.sponsoring-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsoring-gradient {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, rgba(226, 191, 73, 0.3) 0%, rgba(226, 191, 73, 0.3) 50%, rgba(1, 92, 137, 0.3) 50%, rgba(1, 92, 137, 0.3) 100%); */
    background: linear-gradient(270deg, rgb(0 0 0 / 30%) 0%, rgb(0 0 0 / 30%) 50%, rgb(18 18 18 / 30%) 50%, #00304b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsoring-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
}

.sponsoring-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.sponsor-img-left {
    width: clamp(200px, 25vw, 200px);
    height: auto;
    object-fit: contain;
    margin-left: 10%;
}

.sponsor-img-right {
    width: clamp(200px, 25vw, 200px);
    height: auto;
    object-fit: contain;
    margin-right: 10%;
}

.sponsoring-text {
    text-align: center;
    color: var(--white);
}

.sponsor-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.sponsor-subtitle {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.sponsor-paragraph {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 11;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 6px;
    height: 10px;
    background: var(--white);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

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

/* CUSTOM CURSOR */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #015C89;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.custom-cursor.active {
    opacity: 0.6;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    opacity: 0.4;
}

@media (hover: none) and (pointer: coarse) {
    .custom-cursor {
        display: none;
    }
}

/* SECTIONS */
.about-section, .programmes-section, .testimonials-section, .cta-section {
    padding: 100px 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(0, 114, 255, 0.3));
}

.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.about-section {
    background: var(--white);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 114, 255, 0.05));
    z-index: 0;
}

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

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    color: var(--white);
}

/* PROGRAMMES */
.programmes-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.programme-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.programme-card:hover .card-image {
    opacity: 0.25;
    transform: scale(1.1);
}

.programme-card.featured .card-image {
    opacity: 0.2;
}

.programme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.programme-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.programme-card:hover::after {
    opacity: 1;
    animation: cardGlow 2s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.programme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 114, 255, 0.3), 0 0 40px rgba(0, 198, 255, 0.2);
}

.programme-card.featured {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    transform: scale(1.05);
}

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

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-number {
    font-size: 72px;
    font-weight: 800;
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 20px;
}

.card-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.programme-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    margin: 30px 0;
}

.card-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 15px;
}

.programme-card.featured .card-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card-features .price {
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
    touch-action: manipulation;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.programme-card.featured .btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
}

.programme-card.featured .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

/* TESTIMONIALS */
.testimonials-section {
    background: var(--white);
    overflow: hidden;
    width: 100%;
}

.testimonials-slider {
    overflow: hidden;
    margin-top: 60px;
    width: 100%;
    max-width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: slide 20s linear infinite;
    width: max-content;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

.testimonial-card {
    min-width: 400px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 114, 255, 0.3);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.quote-icon {
    font-size: 80px;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.8;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    animation: float 15s ease-in-out infinite;
}

.cta-content {
    text-align: center;
}

.cta-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 24px;
    margin-bottom: 30px;
}

/* PAGE SECTIONS */
.page-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0 60px;
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 15% 25%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 85% 15%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 45% 85%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 75% 75%, rgba(255, 255, 255, 0.5), transparent);
    background-size: 100% 100%;
    animation: twinkle 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.6), rgba(0, 198, 255, 0.5));
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 15px;
}

.page-description {
    font-size: 18px;
    opacity: 0.9;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.info-box {
    background: linear-gradient(135deg, #f5f7fa, #e8eef5);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.info-box h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 12px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    font-size: 24px;
}

.info-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 114, 255, 0.1);
    border-radius: 10px;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.2), 0 0 20px rgba(0, 198, 255, 0.15);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-blue);
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.8);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.value-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

/* ACADEMY SPECIFIC */
.vision-block, .training-block, .values-section {
    margin-bottom: 60px;
}

.vision-text {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.training-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.training-day {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.training-time {
    font-size: 32px;
    font-weight: 800;
}

.academy-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.academy-value {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.academy-value:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 114, 255, 0.2), 0 0 25px rgba(0, 198, 255, 0.2);
}

.academy-value::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-blue);
    box-shadow: 0 0 8px rgba(0, 114, 255, 0.8), 15px 15px 0 0 rgba(0, 198, 255, 0.4);
    animation: blink 3s ease-in-out infinite;
}

.academy-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.academy-value h3 {
    font-size: 22px;
    color: var(--primary-blue);
}

/* FUTSAL SPECIFIC */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.schedule-card {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--text-dark);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.schedule-category {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.schedule-time {
    font-size: 24px;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.1;
    position: absolute;
    top: -10px;
    right: 10px;
}

.benefit-item p {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* CONTACT */
.contact-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 36px;
    min-width: 50px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 18px;
}

.contact-form {
    background: linear-gradient(135deg, #f5f7fa, #e8eef5);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
    -webkit-appearance: none;
    appearance: none;
}

.contact-form button {
    width: 100%;
    cursor: pointer;
    touch-action: manipulation;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, #001428, #003366);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0, 198, 255, 0.3));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.social-icons a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--secondary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 5px 0;
    opacity: 0.8;
}

/* ANIMATIONS */
[data-aos] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
    .programmes-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .academy-values,
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .hero-title {
        font-size: clamp(40px, 7vw, 72px);
    }

    .section-title {
        font-size: clamp(32px, 5vw, 48px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 15px 20px;
        position: relative;
    }

    .logo {
        flex: 0 0 auto;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background: rgba(0, 20, 40, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .hero-section {
        min-height: 100vh;
        height: auto;
        padding: 80px 15px 40px;
    }

    .hero-content {
        padding: 20px 10px;
    }

    .hero-title {
        font-size: clamp(32px, 10vw, 56px);
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: clamp(16px, 4vw, 22px);
        margin-bottom: 30px;
    }

    .btn-primary {
        padding: 15px 35px;
        font-size: 14px;
    }

    .btn-large {
        padding: 16px 40px;
        font-size: 16px;
    }

    .about-section,
    .programmes-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: clamp(28px, 8vw, 42px);
        margin-bottom: 40px;
    }

    .about-text {
        font-size: 16px;
        padding: 0 10px;
    }

    .programmes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .programme-card {
        padding: 30px 20px;
    }

    .programme-card.featured {
        transform: scale(1);
    }

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

    .card-image {
        height: 150px;
    }

    .testimonial-card {
        min-width: 280px;
        padding: 30px 25px;
    }

    .testimonial-card p {
        font-size: 16px;
    }

    .cta-text {
        font-size: 18px;
        padding: 0 15px;
    }

    .page-section {
        padding: 80px 0 60px;
    }

    .page-hero {
        padding: 80px 15px 50px;
        margin-bottom: 50px;
    }

    .page-title {
        font-size: clamp(32px, 8vw, 56px);
    }

    .page-subtitle {
        font-size: clamp(20px, 5vw, 28px);
    }

    .page-description {
        font-size: 16px;
        padding: 0 15px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-block h2 {
        font-size: 26px;
    }

    .content-block p {
        font-size: 16px;
    }

    .info-box {
        padding: 20px;
    }

    .info-list li {
        font-size: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-item {
        padding: 25px 15px;
    }

    .training-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .academy-values {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .academy-value {
        padding: 30px 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto 15px;
    }

    .footer-links ul {
        text-align: center;
    }

    .social-icons {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }

    .hero-bg,
    .about-section,
    .page-hero {
        background-attachment: scroll !important;
    }

    body::before,
    .hero-bg::after,
    .page-hero::after {
        display: none;
    }

    .card-number {
        font-size: 56px;
        top: 15px;
        right: 15px;
    }

    .benefit-number {
        font-size: 56px;
        top: -5px;
        right: 10px;
    }

    .value-item,
    .academy-value,
    .benefit-item {
        position: relative;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .mouse {
        width: 25px;
        height: 45px;
    }

    .programme-card:hover,
    .value-item:hover,
    .academy-value:hover {
        transform: none;
    }

    .programme-card:active,
    .value-item:active,
    .academy-value:active {
        transform: scale(0.98);
    }

    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.95);
    }
    
    .sponsor-img-left,
    .sponsor-img-right {
        width: clamp(100px, 20vw, 200px);
    }
    
    .sponsor-title {
        font-size: clamp(28px, 8vw, 56px);
    }
    
    .sponsor-subtitle {
        font-size: clamp(20px, 5vw, 36px);
    }
    
    .sponsor-paragraph {
        font-size: clamp(14px, 3vw, 20px);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: clamp(28px, 10vw, 48px);
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: clamp(14px, 4vw, 18px);
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 13px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: clamp(24px, 8vw, 36px);
    }

    .programme-card {
        padding: 25px 15px;
    }

    .card-icon {
        font-size: 48px;
    }

    .programme-card h3 {
        font-size: 20px;
    }

    .card-features li {
        font-size: 14px;
        padding: 10px 0;
    }

    .testimonial-card {
        min-width: 260px;
        padding: 25px 20px;
    }

    .quote-icon {
        font-size: 60px;
    }

    .page-title {
        font-size: clamp(28px, 8vw, 48px);
    }

    .contact-form {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .contact-icon {
        font-size: 32px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    .info-box {
        padding: 20px 15px;
    }

    .training-card,
    .schedule-card {
        padding: 30px 20px;
    }

    .cta-text {
        font-size: 16px;
    }

    .cta-icon {
        font-size: 48px;
    }
}
