/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4f46e5;
    --secondary-color: #7c3aed;
    --accent-color: #06b6d4;
    --text-dark: #1e293b;
    --text-light: #f8fafc;
    --background-light: #fefefe;
    --background-dark: #0f172a;
    --clay-color: #8b5cf6;
    --grass-color: #06b6d4;
    --gradient-primary: linear-gradient(135deg, #4f46e5, #7c3aed);
    --gradient-secondary: linear-gradient(45deg, #06b6d4, #0891b2);
    --gradient-tertiary: linear-gradient(135deg, #8b5cf6, #a855f7);
    --shadow-soft: 0 10px 30px rgba(79, 70, 229, 0.1);
    --shadow-hard: 0 20px 60px rgba(124, 58, 237, 0.2);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: 120px;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transform: skewY(-2deg);
    transform-origin: top left;
    padding: 25px 0;
    box-shadow: var(--shadow-hard);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    transform: skewY(2deg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-icon {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    overflow: hidden;
    border-radius: 0 0 50% 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 60% 40% 30% 70%;
    background: rgba(255, 255, 255, 0.1);
    animation: wave-float 8s ease-in-out infinite;
}

.hero-shape.shape-1 {
    width: 400px;
    height: 300px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.hero-shape.shape-2 {
    width: 250px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.hero-shape.shape-3 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    left: 25%;
    animation-delay: 6s;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    transform: perspective(1000px) rotateX(5deg);
}

.hero-slogan {
    font-size: 4rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: slideInFromTop 1s ease-out;
}

.hero-cta {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
    animation: slideInFromBottom 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-trophy {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--gradient-tertiary);
    border-radius: 30% 70% 70% 30%;
    top: 15%;
    right: 8%;
    z-index: 2;
    animation: trophy-glow 4s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.hero-trophy::before {
    content: '🏆';
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    padding: 18px 35px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10% 0%, 90% 0%, 100% 20%, 100% 80%, 90% 100%, 10% 100%, 0% 80%, 0% 20%);
    background: var(--gradient-secondary);
    color: var(--text-light);
    box-shadow: var(--shadow-soft);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--text-light);
    box-shadow: var(--shadow-soft);
    transform: rotate(-1deg);
    clip-path: polygon(8% 0%, 92% 0%, 100% 15%, 100% 85%, 92% 100%, 8% 100%, 0% 85%, 0% 15%);
}

.btn-primary:hover {
    transform: rotate(-1deg) translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hard);
    clip-path: polygon(5% 0%, 95% 0%, 100% 10%, 100% 90%, 95% 100%, 5% 100%, 0% 90%, 0% 10%);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 3px solid var(--text-light);
    transform: rotate(1deg);
    clip-path: polygon(8% 0%, 92% 0%, 100% 15%, 100% 85%, 92% 100%, 8% 100%, 0% 85%, 0% 15%);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: rotate(1deg) translateY(-3px) scale(1.02);
    clip-path: polygon(5% 0%, 95% 0%, 100% 10%, 100% 90%, 95% 100%, 5% 100%, 0% 90%, 0% 10%);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.4s ease;
    clip-path: polygon(8% 0%, 92% 0%, 100% 15%, 100% 85%, 92% 100%, 8% 100%, 0% 85%, 0% 15%);
    transform: rotate(-0.5deg);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: rotate(-0.5deg) translateY(-2px);
    clip-path: polygon(5% 0%, 95% 0%, 100% 10%, 100% 90%, 95% 100%, 5% 100%, 0% 90%, 0% 10%);
}

/* About Section */
.about-section {
    padding: 150px 0 100px 0;
    background: var(--background-light);
    position: relative;
    transform: skewY(-3deg);
    margin-top: -50px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    transform: skewY(3deg);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.section-divider::before {
    left: -30px;
}

.section-divider::after {
    right: -30px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px 60px;
    align-items: start;
    grid-template-areas: "text image";
}

.about-text {
    grid-area: text;
}

.about-image {
    grid-area: image;
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: rotate(0deg) scale(1.05);
}

.about-text h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: rgba(244, 168, 52, 0.1);
    border: 3px solid var(--secondary-color);
    clip-path: polygon(0% 0%, 85% 0%, 100% 15%, 100% 100%, 0% 100%);
    transform: rotate(-1deg);
    transition: all 0.4s ease;
}

.feature:nth-child(even) {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 15%);
    transform: rotate(1deg);
}

.feature:hover {
    transform: rotate(0deg) translateX(15px) translateY(-5px);
    box-shadow: var(--shadow-soft);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.feature-icon {
    font-size: 3rem;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
    transform: rotate(45deg);
    transition: transform 0.4s ease;
}

.feature:hover .feature-icon {
    transform: rotate(0deg);
}

.feature-text h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.feature-text p {
    color: #666;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    border-radius: 50% 20% 50% 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--text-light);
    animation: rotate-slow 10s linear infinite;
    box-shadow: var(--shadow-hard);
}

/* Coaches Section */
.coaches-section {
    padding: 150px 0 100px 0;
    background: var(--gradient-secondary);
    color: var(--text-light);
    transform: skewY(2deg);
    margin-top: -50px;
}

.coaches-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    transform: skewY(-2deg);
}

.coaches-header {
    text-align: center;
    margin-bottom: 60px;
}

.coaches-header h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.coaches-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.coach-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    color: var(--text-dark);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 4px solid transparent;
    background-clip: padding-box;
    clip-path: polygon(0% 15%, 15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%);
    transform: rotate(-1deg);
}

.coach-card:nth-child(even) {
    clip-path: polygon(0% 0%, 85% 0%, 100% 15%, 100% 100%, 15% 100%, 0% 85%);
    transform: rotate(1deg);
}

.coach-card:nth-child(3n) {
    clip-path: polygon(10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 10%);
    transform: rotate(-0.5deg);
}

.coach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.coach-card:hover::before {
    opacity: 0.1;
}

.coach-card:hover {
    transform: translateY(-15px) scale(1.03) rotate(0deg);
    box-shadow: 0 30px 100px rgba(124, 58, 237, 0.3);
    border-color: var(--secondary-color);
    clip-path: polygon(5% 0%, 95% 0%, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0% 95%, 0% 5%);
}

.coach-card:nth-child(even):hover {
    clip-path: polygon(5% 0%, 95% 0%, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0% 95%, 0% 5%);
}

.coach-card:nth-child(3n):hover {
    clip-path: polygon(5% 0%, 95% 0%, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0% 95%, 0% 5%);
}

.coach-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.coach-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.coach-status {
    position: relative;
}

.status-badge {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: #4caf50;
    color: white;
}

.status-badge.busy {
    background: #ff9800;
    color: white;
}

.coach-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.coach-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.coach-experience {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

.experience-icon {
    font-size: 1.2rem;
}

.coach-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.specialty {
    background: var(--gradient-secondary);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.coach-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.coach-contact {
    display: flex;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.coaches-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.coaches-cta h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.coaches-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* News Section */
.news-section {
    padding: 150px 0 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: skewY(-1deg);
    margin-top: -50px;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    transform: skewY(1deg);
}

.news-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.news-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px 25px;
    margin-bottom: 50px;
    grid-auto-rows: auto;
}

.news-card {
    background: var(--background-light);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
    background-clip: padding-box;
    clip-path: polygon(0% 0%, 90% 0%, 100% 10%, 100% 100%, 10% 100%, 0% 90%);
    transform: rotate(-1deg);
}

.news-card:nth-child(even) {
    clip-path: polygon(10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 10%);
    transform: rotate(1deg);
}

.news-card:nth-child(3n) {
    clip-path: polygon(0% 5%, 95% 0%, 100% 95%, 5% 100%, 0% 5%);
    transform: rotate(0.5deg);
}

.news-card:hover {
    transform: translateY(-15px) scale(1.03) rotate(0deg);
    box-shadow: var(--shadow-hard);
    border-color: var(--secondary-color);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.news-card.featured {
    grid-column: span 2;
    background: var(--gradient-primary);
    color: var(--text-light);
}

.news-card.featured .news-content h3,
.news-card.featured .news-content p {
    color: var(--text-light);
}

.news-card.featured .news-category {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

.news-date .day {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 0.8rem;
    margin-top: 2px;
}

.news-content {
    padding: 30px;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.news-category {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: #888;
}

.news-image {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-soft);
    z-index: 2;
}

.news-card.featured .news-image {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.news-load-more {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials Section with Slider */
.testimonials-section {
    padding: 150px 0 100px 0;
    background: var(--text-dark);
    color: var(--text-light);
    transform: skewY(3deg);
    margin-top: -50px;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    transform: skewY(-3deg);
}

.testimonials-container h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--text-light);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 60px 40px;
    text-align: center;
    display: none;
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--text-light);
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info span {
    color: #bbb;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    transform: rotate(0deg);
}

.dot.active,
.dot:hover {
    background: var(--secondary-color);
    transform: scale(1.3) rotate(72deg);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

/* Contact Section */
.contact-section {
    padding: 150px 0 100px 0;
    background: var(--background-light);
    transform: skewY(-2deg);
    margin-top: -50px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    transform: skewY(2deg);
}

.contact-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.location-info h2,
.contact-form h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

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

.location-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(212, 57, 59, 0.1), rgba(244, 168, 52, 0.1));
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s ease;
    clip-path: polygon(0% 0%, 85% 0%, 100% 15%, 100% 100%, 15% 100%, 0% 85%);
    transform: rotate(-0.5deg);
}

.location-item:nth-child(even) {
    clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
    transform: rotate(0.5deg);
}

.location-item:hover {
    transform: translateX(15px) translateY(-5px) rotate(0deg);
    box-shadow: var(--shadow-soft);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.location-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.location-item h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.location-item p {
    color: #666;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: var(--gradient-secondary);
    padding: 45px;
    box-shadow: var(--shadow-hard);
    clip-path: polygon(0% 10%, 10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%);
    transform: rotate(1deg);
    transition: all 0.4s ease;
}

.contact-form:hover {
    transform: rotate(0deg) scale(1.02);
    clip-path: polygon(0% 5%, 5% 0%, 100% 0%, 100% 95%, 95% 100%, 0% 100%);
}

.contact-form h2 {
    color: var(--text-light);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    transition: all 0.4s ease;
    clip-path: polygon(0% 0%, 95% 0%, 100% 5%, 100% 100%, 5% 100%, 0% 95%);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    transform: scale(1.02);
    box-shadow: var(--shadow-soft);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
    transform: skewY(2deg);
    margin-top: -50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    transform: skewY(-2deg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1) rotate(360deg);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    transform: skewY(-2deg);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--background-light);
    border-radius: 15px;
    box-shadow: var(--shadow-hard);
    z-index: 10000;
    transform: translateX(500px);
    transition: transform 0.5s ease;
    border: 3px solid var(--secondary-color);
}

.cookie-modal.show {
    transform: translateX(0);
}

.cookie-content {
    padding: 25px;
}

.cookie-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cookie-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Policy Modal */
.policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.policy-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-content {
    background: var(--background-light);
    max-width: 800px;
    max-height: 80vh;
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hard);
    animation: modalSlideIn 0.3s ease;
}

.policy-header {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.policy-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.policy-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
}

.policy-body h3 {
    color: var(--primary-color);
    margin: 20px 0 10px;
    font-size: 1.3rem;
}

.policy-body p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.policy-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-body li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

@keyframes slideInFromTop {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

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

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

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes modalSlideIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-soft);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-cta {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .testimonial-slide {
        padding: 40px 20px;
    }

    .testimonial-content p {
        font-size: 1.2rem;
    }

    .slider-controls {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .slider-controls .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .author-info {
        text-align: center;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }

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

    .news-card.featured {
        grid-column: span 1;
    }

    .news-content {
        padding: 20px;
        padding-top: 70px;
    }

    .news-header h2 {
        font-size: 2.5rem;
    }

    .news-meta {
        flex-direction: column;
        gap: 5px;
    }

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

    .coaches-header h2 {
        font-size: 2.5rem;
    }

    .coach-card {
        padding: 20px;
    }

    .coach-experience {
        flex-direction: column;
        align-items: flex-start;
    }

    .coach-specialties {
        justify-content: center;
    }

    .coaches-cta {
        padding: 30px 20px;
    }

    .coaches-cta h3 {
        font-size: 1.5rem;
    }

    .feature {
        transform: none;
    }

    .contact-form {
        transform: none;
    }

    .cookie-modal {
        right: 10px;
        bottom: 10px;
        max-width: calc(100vw - 20px);
    }

    .policy-content {
        margin: 10px;
        max-height: 90vh;
    }

    .location-item:hover {
        transform: none;
    }


}

@media (max-width: 480px) {
    .hero-slogan {
        font-size: 2rem;
    }

    .hero-cta {
        font-size: 1.2rem;
    }

    .about-header h2,
    .testimonials-container h2 {
        font-size: 2rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .feature {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin-bottom: 10px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
