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

:root {
    --primary-red: #FF4757;
    --primary-yellow: #FFC048;
    --primary-green: #2ED573;
    --primary-blue: #3742FA;
    --secondary-red: #FF3838;
    --secondary-yellow: #FFD32A;
    --secondary-green: #00D68F;
    --secondary-blue: #5352ED;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark: #2C3E50;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Fredoka', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

.section {
    padding: 80px 0;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite linear;
    opacity: 0.1;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: var(--primary-yellow);
    top: 60%;
    left: 80%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--primary-blue);
    top: 30%;
    left: 70%;
    animation-delay: -15s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    background: var(--secondary-red);
    top: 10%;
    left: 50%;
    animation-delay: -7s;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
}

.logo i {
    margin-right: 10px;
    font-size: 28px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-red);
    transition: var(--transition);
}

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

/* Buttons */
.cta-btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    box-shadow: var(--shadow);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.cta-btn.secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.cta-btn.large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.hero-animated-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-animated-elements i {
    position: absolute;
    opacity: 0.15;
}

.anim-ball-1 {
    font-size: 80px;
    color: var(--primary-red);
    top: 15%;
    left: 10%;
    animation: bounce-diagonal 6s ease-in-out infinite;
}

.anim-ball-2 {
    font-size: 70px;
    color: var(--primary-yellow);
    top: 20%;
    right: 8%;
    animation: spin-bounce 5s ease-in-out infinite 1s;
}

.anim-star-1 {
    font-size: 50px;
    color: var(--primary-yellow);
    top: 10%;
    left: 30%;
    animation: twinkle-float 3s ease-in-out infinite;
}

.anim-star-2 {
    font-size: 40px;
    color: var(--primary-yellow);
    top: 25%;
    right: 25%;
    animation: twinkle-float 3s ease-in-out infinite 1s;
}

.anim-star-3 {
    font-size: 45px;
    color: var(--primary-yellow);
    bottom: 15%;
    left: 15%;
    animation: twinkle-float 3s ease-in-out infinite 2s;
}

.anim-heart-1 {
    font-size: 60px;
    color: var(--primary-red);
    top: 40%;
    left: 5%;
    animation: heartbeat-float 2s ease-in-out infinite;
}

.anim-heart-2 {
    font-size: 50px;
    color: var(--primary-red);
    bottom: 25%;
    right: 10%;
    animation: heartbeat-float 2s ease-in-out infinite 1s;
}

.anim-palette {
    font-size: 65px;
    color: var(--primary-blue);
    top: 60%;
    left: 8%;
    animation: swing-rotate 4s ease-in-out infinite;
}

.anim-music {
    font-size: 55px;
    color: var(--primary-green);
    top: 35%;
    right: 12%;
    animation: wave-dance 3s ease-in-out infinite;
}

.anim-rocket {
    font-size: 70px;
    color: var(--primary-blue);
    bottom: 30%;
    left: 20%;
    animation: rocket-launch 5s ease-in-out infinite;
    transform: rotate(-45deg);
}

.anim-crown {
    font-size: 60px;
    color: var(--primary-yellow);
    top: 50%;
    right: 5%;
    animation: crown-shine 4s ease-in-out infinite;
}

.anim-smile {
    font-size: 65px;
    color: var(--primary-yellow);
    bottom: 10%;
    left: 35%;
    animation: happy-bounce 3s ease-in-out infinite;
}

.anim-trophy {
    font-size: 55px;
    color: var(--primary-yellow);
    top: 70%;
    right: 20%;
    animation: trophy-wiggle 3s ease-in-out infinite;
}

.anim-brush {
    font-size: 50px;
    color: var(--primary-red);
    bottom: 40%;
    right: 30%;
    animation: paint-stroke 4s ease-in-out infinite;
}

@keyframes bounce-diagonal {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(60px, 0) rotate(180deg); }
    75% { transform: translate(30px, 30px) rotate(270deg); }
}

@keyframes spin-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-40px) rotate(360deg) scale(1.2); }
}

@keyframes twinkle-float {
    0%, 100% { opacity: 0.1; transform: translateY(0) scale(1) rotate(0deg); }
    50% { opacity: 0.3; transform: translateY(-20px) scale(1.3) rotate(180deg); }
}

@keyframes heartbeat-float {
    0%, 100% { transform: scale(1) translateY(0); }
    25% { transform: scale(1.3) translateY(-10px); }
    50% { transform: scale(1) translateY(-20px); }
    75% { transform: scale(1.3) translateY(-10px); }
}

@keyframes swing-rotate {
    0%, 100% { transform: rotate(-15deg) translateX(0); }
    50% { transform: rotate(15deg) translateX(20px); }
}

@keyframes wave-dance {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    25% { transform: translateY(-15px) translateX(10px) rotate(10deg); }
    50% { transform: translateY(-30px) translateX(0) rotate(0deg); }
    75% { transform: translateY(-15px) translateX(-10px) rotate(-10deg); }
}

@keyframes rocket-launch {
    0%, 100% { transform: rotate(-45deg) translateY(0); opacity: 0.15; }
    50% { transform: rotate(-45deg) translateY(-60px); opacity: 0.3; }
}

@keyframes crown-shine {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.15; }
    50% { transform: scale(1.2) rotate(10deg); opacity: 0.3; }
}

@keyframes happy-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(-5deg); }
    50% { transform: translateY(-40px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes trophy-wiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    50% { transform: rotate(10deg) scale(1.2); }
    75% { transform: rotate(-10deg) scale(1.1); }
}

@keyframes paint-stroke {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-20px) rotate(-15deg); }
    50% { transform: translateX(20px) rotate(15deg); }
    75% { transform: translateX(-10px) rotate(-10deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-title .highlight {
    color: var(--primary-red);
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 8px solid var(--white);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-playground {
    width: 500px;
    height: 500px;
    position: relative;
}

.hero-playground i {
    position: absolute;
}

.hero-playground .fa-child-reaching {
    font-size: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-red);
    animation: jump 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.hero-playground .fa-futbol {
    font-size: 60px;
    top: 10%;
    left: 20%;
    color: var(--primary-red);
    animation: float-rotate 4s ease-in-out infinite;
}

.hero-playground .fa-basketball-ball {
    font-size: 50px;
    top: 15%;
    right: 15%;
    color: var(--primary-yellow);
    animation: bounce-spin 3s ease-in-out infinite 0.5s;
}

.hero-playground .fa-palette {
    font-size: 55px;
    bottom: 20%;
    left: 10%;
    color: var(--primary-blue);
    animation: swing 3s ease-in-out infinite;
}

.hero-playground .fa-music {
    font-size: 45px;
    top: 30%;
    right: 5%;
    color: var(--primary-green);
    animation: float-up 4s ease-in-out infinite 1s;
}

.hero-playground .fa-star {
    font-size: 40px;
    top: 5%;
    left: 50%;
    color: var(--primary-yellow);
    animation: twinkle 2s ease-in-out infinite;
}

.hero-playground .fa-heart {
    font-size: 35px;
    bottom: 10%;
    right: 20%;
    color: var(--primary-red);
    animation: heartbeat 1.5s ease-in-out infinite;
}

.hero-playground .fa-smile {
    font-size: 50px;
    bottom: 30%;
    right: 10%;
    color: var(--primary-yellow);
    animation: bounce-spin 3s ease-in-out infinite 1.5s;
}

.hero-playground .fa-rocket {
    font-size: 45px;
    top: 40%;
    left: 5%;
    color: var(--primary-blue);
    animation: rocket-fly 5s ease-in-out infinite;
}

.hero-playground .fa-crown {
    font-size: 40px;
    bottom: 5%;
    left: 40%;
    color: var(--primary-yellow);
    animation: float-rotate 4s ease-in-out infinite 2s;
}

@keyframes jump {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-30px); }
}

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

@keyframes bounce-spin {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(360deg); }
}

@keyframes swing {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

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

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
}

@keyframes rocket-fly {
    0%, 100% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(-40px) rotate(-45deg); }
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
}

.page-header.contact-banner {
    background: url('assets/images/contact banner.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
}

.page-header.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.page-header.contact-banner .container {
    position: relative;
    z-index: 1;
}

.page-header.stages-header {
    overflow: hidden;
}

.stages-header-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.stages-header-elements i {
    position: absolute;
    opacity: 0.1;
}

.stages-hero-1 {
    font-size: 100px;
    color: var(--primary-red);
    top: 20%;
    left: 10%;
    animation: bounce-diagonal 5s ease-in-out infinite;
}

.stages-hero-2 {
    font-size: 90px;
    color: var(--primary-yellow);
    top: 30%;
    right: 15%;
    animation: spin-bounce 4s ease-in-out infinite 1s;
}

.stages-hero-3 {
    font-size: 80px;
    color: var(--primary-blue);
    bottom: 20%;
    left: 20%;
    animation: swing-rotate 3s ease-in-out infinite;
}

.stages-hero-4 {
    font-size: 70px;
    color: var(--primary-yellow);
    top: 15%;
    left: 50%;
    animation: twinkle-float 2s ease-in-out infinite;
}

.stages-hero-5 {
    font-size: 75px;
    color: var(--primary-red);
    bottom: 25%;
    right: 10%;
    animation: heartbeat-float 2s ease-in-out infinite 0.5s;
}

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

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

/* About Section */
.about {
    position: relative;
    background: url('assets/images/about.png') center center;
    background-size: cover;
    background-attachment: fixed;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gray);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.coach-illustration img {
    width: 150%;
    height: auto;
    display: block;
}

/* Objectives Section */
.objectives {
    background: rgba(248, 249, 250, 0.9);
}

.objectives .container {
    overflow: hidden;
}

.objectives-grid {
    display: flex;
    gap: 30px;
    animation: slideCarousel 20s linear infinite;
}

.objectives-grid:hover {
    animation-play-state: paused;
}

@keyframes slideCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-380px * 5));
    }
}

.objective-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    flex: 0 0 auto;
    width: 220px;
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.objective-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.objective-icon i {
    font-size: 32px;
    color: var(--white);
}

.objective-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

/* Why Choose Section */
.why-choose {
    position: relative;
    background: url('assets/images/1_9F58aFdoEchmxTUDJAQlIw.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.why-choose .container {
    position: relative;
    z-index: 1;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

.feature-icon i {
    font-size: 40px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    font-size: 16px;
    color: var(--gray);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 71, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

/* Schedule Section */
.schedule {
    background: rgba(248, 249, 250, 0.9);
}

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

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateX(10px);
}

.timeline-time {
    font-weight: 700;
    color: var(--primary-red);
    min-width: 120px;
    font-size: 18px;
}

.timeline-content {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.timeline-content i {
    font-size: 24px;
    margin-right: 15px;
    color: var(--primary-blue);
}

.timeline-content span {
    font-size: 18px;
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.pricing-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.pricing-bg-elements i {
    position: absolute;
    opacity: 0.08;
}

.pricing-elem-1 {
    font-size: 200px;
    color: var(--primary-red);
    top: 10%;
    left: -50px;
    animation: orbit-1 15s linear infinite;
}

.pricing-elem-2 {
    font-size: 180px;
    color: var(--primary-blue);
    top: 50%;
    right: -50px;
    animation: orbit-2 18s linear infinite;
}

.pricing-elem-3 {
    font-size: 220px;
    color: var(--primary-yellow);
    bottom: 10%;
    left: 50%;
    animation: orbit-3 20s linear infinite;
}

.pricing-elem-4 {
    font-size: 160px;
    color: var(--primary-green);
    top: 30%;
    right: 20%;
    animation: orbit-4 12s linear infinite;
}

@keyframes orbit-1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 50px) rotate(360deg); }
}

@keyframes orbit-2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-80px, 80px) rotate(-360deg); }
}

@keyframes orbit-3 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-50px, -50px) rotate(180deg) scale(1.2); }
    100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

@keyframes orbit-4 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(60px, -60px) rotate(360deg); }
}

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

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

.price-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.price-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-red);
}

.price-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    color: var(--gray);
}

.price-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.price-features i {
    font-size: 24px;
    color: var(--primary-blue);
}

.pricing-note {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-green);
}

/* Stages Grid */
.stages-grid {
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.stages-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.stages-bg-elements i {
    position: absolute;
    opacity: 0.06;
}

.stages-elem-1 {
    font-size: 180px;
    color: var(--primary-yellow);
    top: 5%;
    left: 5%;
    animation: float-spin 20s ease-in-out infinite;
}

.stages-elem-2 {
    font-size: 150px;
    color: var(--primary-blue);
    top: 15%;
    right: 10%;
    animation: bounce-rotate 15s ease-in-out infinite 2s;
}

.stages-elem-3 {
    font-size: 200px;
    color: var(--primary-red);
    bottom: 20%;
    left: 10%;
    animation: drift-spin 18s ease-in-out infinite 4s;
}

.stages-elem-4 {
    font-size: 140px;
    color: var(--primary-green);
    top: 40%;
    right: 5%;
    animation: wave-float 16s ease-in-out infinite 1s;
}

.stages-elem-5 {
    font-size: 160px;
    color: var(--primary-blue);
    bottom: 10%;
    right: 20%;
    animation: float-spin 22s ease-in-out infinite 3s;
}

.stages-elem-6 {
    font-size: 130px;
    color: var(--primary-yellow);
    top: 60%;
    left: 15%;
    animation: bounce-rotate 14s ease-in-out infinite 5s;
}

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

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

@keyframes drift-spin {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-40px, -40px) rotate(360deg) scale(1.2); }
}

@keyframes wave-float {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(20px) translateY(-20px) rotate(45deg); }
    50% { transform: translateX(0) translateY(-40px) rotate(90deg); }
    75% { transform: translateX(-20px) translateY(-20px) rotate(135deg); }
}

.stages-grid .container {
    position: relative;
    z-index: 1;
}

.stages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.stage-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.stage-card:nth-child(1)::before { background: linear-gradient(135deg, var(--primary-red), var(--secondary-red)); }
.stage-card:nth-child(2)::before { background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow)); }
.stage-card:nth-child(3)::before { background: linear-gradient(135deg, var(--primary-green), var(--secondary-green)); }
.stage-card:nth-child(4)::before { background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); }
.stage-card:nth-child(5)::before { background: linear-gradient(135deg, var(--primary-red), var(--secondary-red)); }
.stage-card:nth-child(6)::before { background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow)); }
.stage-card:nth-child(7)::before { background: linear-gradient(135deg, var(--primary-green), var(--secondary-green)); }
.stage-card:nth-child(8)::before { background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); }

.stage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stage-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stage-card:nth-child(1) .stage-icon { background: linear-gradient(135deg, var(--primary-red), var(--secondary-red)); }
.stage-card:nth-child(2) .stage-icon { background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow)); }
.stage-card:nth-child(3) .stage-icon { background: linear-gradient(135deg, var(--primary-green), var(--secondary-green)); }
.stage-card:nth-child(4) .stage-icon { background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); }
.stage-card:nth-child(5) .stage-icon { background: linear-gradient(135deg, var(--primary-red), var(--secondary-red)); }
.stage-card:nth-child(6) .stage-icon { background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow)); }
.stage-card:nth-child(7) .stage-icon { background: linear-gradient(135deg, var(--primary-green), var(--secondary-green)); }
.stage-card:nth-child(8) .stage-icon { background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); }

.stage-icon i {
    font-size: 32px;
    color: var(--white);
}

.stage-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.stage-content p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
}

.age-groups {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.age-tag {
    background: var(--light-gray);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.9);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-container h2,
.contact-info h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

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

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item:nth-child(1) .contact-icon { background: linear-gradient(135deg, var(--primary-red), var(--secondary-red)); }
.contact-item:nth-child(2) .contact-icon { background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow)); }
.contact-item:nth-child(3) .contact-icon { background: linear-gradient(135deg, var(--primary-green), var(--secondary-green)); }

.contact-icon i {
    font-size: 24px;
    color: var(--white);
}

.contact-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-text p {
    color: var(--gray);
}

.social-media {
    margin-top: 40px;
}

.social-media h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:nth-child(1) { background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); }
.social-link:nth-child(2) { background: linear-gradient(135deg, var(--primary-red), var(--secondary-red)); }
.social-link:nth-child(3) { background: linear-gradient(135deg, var(--primary-green), var(--secondary-green)); }

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* FAQ Section */
.faq-section {
    background: rgba(248, 249, 250, 0.9);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item:nth-child(1) .faq-question i { color: var(--primary-red); }
.faq-item:nth-child(2) .faq-question i { color: var(--primary-yellow); }
.faq-item:nth-child(3) .faq-question i { color: var(--primary-green); }
.faq-item:nth-child(4) .faq-question i { color: var(--primary-blue); }

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .cta-btn.primary {
    background: var(--white);
    color: var(--primary-red);
}

.cta-section .cta-btn.primary:hover {
    background: var(--light-gray);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
}

.footer-logo i {
    margin-right: 10px;
    font-size: 28px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-image {
        width: 400px;
        height: 400px;
    }
    
    .objective-card {
        width: 200px;
    }
    
    .coach-illustration img {
        width: 120%;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .cta-btn.primary {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        width: 300px;
        height: 300px;
    }
    
    .hero-animated-elements i {
        font-size: 40px !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .coach-illustration img {
        width: 100%;
    }
    
    .objectives-grid {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .objective-card {
        width: calc(50% - 15px);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-content {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .pricing-bg-elements i,
    .stages-bg-elements i,
    .stages-header-elements i {
        font-size: 80px !important;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .cta-btn.large {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .objective-card {
        width: 100%;
    }
    
    .stages-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .hero-animated-elements i,
    .pricing-bg-elements i,
    .stages-bg-elements i,
    .stages-header-elements i {
        font-size: 30px !important;
        opacity: 0.05;
    }
}