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

:root {
    /* Primary Colors */
    --primary-color: #ff6b35;
    --primary-light: #ff8a65;
    --primary-dark: #e55722;
    
    /* Secondary Colors */
    --secondary-color: #2563eb;
    --secondary-light: #60a5fa;
    --secondary-dark: #1d4ed8;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Text Colors */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-light: var(--gray-500);
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: var(--gray-50);
    --bg-dark: var(--gray-900);
    
    /* Success/Error Colors */
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Borders */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1rem;
    
    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    text-align: center;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Mobile Typography Improvements */
@media (max-width: 768px) {
    h1 {
        font-size: clamp(2.8rem, 8vw, 3.5rem);
    }
    
    h2 {
        font-size: clamp(2.2rem, 7vw, 2.8rem);
    }
    
    h3 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    h4 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }
    
    p {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        line-height: 1.7;
    }
    
    .hero-subtitle {
        font-size: clamp(1.3rem, 5vw, 1.5rem) !important;
    }
    
    .section-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.3rem) !important;
    }
    
    .coach-bio {
        font-size: clamp(1rem, 4vw, 1.2rem) !important;
    }
    
    .package-features li {
        font-size: clamp(1rem, 4vw, 1.2rem) !important;
    }
    
    .step-description {
        font-size: clamp(1rem, 4vw, 1.2rem) !important;
    }
}

/* Flexible grid system */
@media (min-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ultra-wide screen optimization */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content {
        max-width: 1400px;
    }
    
    .team-grid .coach-card,
    .packages-grid .package-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .coach-card {
        padding: 2.5rem;
    }
    
    .package-card {
        padding: 2.5rem;
    }
    
    .coach-photo {
        width: 200px;
        height: 200px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .team-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Reset text alignment for specific content that shouldn't be centered */
.nav-container,
.coach-info,
.footer-content {
    text-align: left;
}

.hero-text {
    text-align: left;
}

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

.section-header {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    min-height: 48px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        transform: translateY(-100vh);
        transition: transform 0.3s ease;
        padding: 2rem 1rem;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid var(--gray-200);
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    overflow: hidden;
    width: 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem var(--container-padding) 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
    transform: translateX(-30px);
}

.hero-text {
    max-width: 800px;
    text-align: center;
    margin-bottom: 2rem;
}

/* Wide screen optimization */
@media (min-width: 1400px) {
    .hero-text {
        max-width: 1000px;
    }
    
    .hero-subtitle {
        max-width: 900px;
        font-size: 1.4rem;
    }
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.1;
    display: block;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .hero-title {
        color: var(--primary-color);
        background: none;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile Hero Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 2rem;
    }
    
    .hero-content {
        padding: 6rem 1rem 2rem;
        gap: 2rem;
        transform: none;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        text-align: center;
        font-size: clamp(2.8rem, 8vw, 3.5rem);
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: clamp(1.3rem, 5vw, 1.5rem);
    }
    
    .hero-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .hero-image {
        width: 100%;
    }
    
    .btn {
        min-width: 140px;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Slider Container - Mobile Fixes */
.slider_container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 25px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .slider_container {
        width: 90%;
        height: 250px;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .slider_container {
        width: 95%;
        height: 200px;
        max-width: 300px;
        border-radius: 15px;
    }
}

/* Slideshow Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

@media (max-width: 480px) {
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

@media (max-width: 480px) {
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 25px;
    transition: transform 0.5s ease-in-out;
}

@media (max-width: 480px) {
    .slider {
        border-radius: 15px;
    }
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: 25px;
    overflow: hidden;
}

@media (max-width: 480px) {
    .slide {
        border-radius: 15px;
    }
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

@media (max-width: 480px) {
    .slide img {
        border-radius: 15px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 25% 25%, var(--primary-color) 2px, transparent 2px),
                      radial-gradient(circle at 75% 75%, var(--secondary-color) 2px, transparent 2px);
    background-size: 50px 50px;
}

/* Team Section */
.team {
    padding: var(--section-padding);
    background-color: var(--bg-secondary);
}

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

.section-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.team-grid .coach-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    width: 100%;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin: 3rem auto 0;
    }
    
    .team-grid .coach-card:nth-child(3) {
        grid-column: 1;
        max-width: 100%;
    }
}

.coach-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.coach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.coach-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

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

.coach-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

.coach-bio {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coach-prs h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.pr-item {
    background: var(--gray-50);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.pr-distance {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.pr-time {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Packages Section */
.packages {
    padding: var(--section-padding);
    background-color: var(--bg-primary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.packages-grid .package-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    width: 100%;
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .packages-grid .package-card:nth-child(3) {
        grid-column: 1;
        max-width: 100%;
    }
}

.package-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    max-width: 400px;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.package-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-header {
    margin-bottom: 1.5rem;
}

.package-name {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.package-distances {
    margin-bottom: 1.5rem;
}

.distance-label {
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.distance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.distance-tag {
    background: var(--gray-100);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.package-features {
    margin-bottom: 2rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.package-features li i {
    color: var(--success-color);
    width: 16px;
    height: 16px;
}

.package-action {
    margin-top: auto;
}

.package-action .btn {
    width: 100%;
    justify-content: center;
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding);
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.how-it-works-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin: 3rem auto 0;
    }
}

.step-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--bg-primary);
}

.contact-info-header {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .contact-info-header {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.submit-btn {
    width: 100%;
    position: relative;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .footer-left {
        align-items: center;
    }
}

.footer-right {
    text-align: right;
}

@media (max-width: 768px) {
    .footer-right {
        text-align: center;
    }
}

.footer-contact p {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .footer-logo {
        justify-content: center;
    }
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.footer-description {
    color: var(--gray-300);
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    margin-bottom: 0;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h3 {
    margin-bottom: 0;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: var(--gray-100);
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    width: 40px;
    height: 40px;
}

.modal-body p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

/* Animations */
.coach-card,
.package-card,
.step-card,
.hero-stats,
.section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

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

/* Focus states for better accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --gray-200: #000000;
        --gray-600: #000000;
        --text-secondary: #000000;
    }
}

/* Additional mobile overflow fixes */
@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
    
    .container {
        padding: 0 0.75rem;
        overflow-x: hidden;
    }
    
    .hero-content,
    .team-grid,
    .packages-grid,
    .process-steps,
    .contact-content {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}
