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

:root {
    --primary-color: #00d4ff;
    --secondary-color: #ff4757;
    --accent-color: #2ed573;
    --dark-color: #0c0c0c;
    --darker-color: #000000;
    --light-color: #ffffff;
    --text-color: #1a1a1a;
    --text-light: #6c757d;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #2ed573 100%);
    --gradient-sporty: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    --gradient-dark: linear-gradient(135deg, #232526 0%, #414345 100%);
    --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-colored: 0 15px 35px rgba(0, 212, 255, 0.2);
    --border-radius: 12px;
    --border-radius-small: 8px;
    --border-radius-large: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--gradient-dark);
    background-attachment: fixed;
    font-weight: 400;
}

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

/* Glass Morphism Effects */
.glass-header,
.glass-card,
.glass-footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

/* Header Styles */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    border-radius: 0;
}

.glass-header nav {
    position: relative;
}

.glass-header.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(30px);
    box-shadow: var(--shadow-heavy);
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 1rem;
}



.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--light-color);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

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

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

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    background: transparent;
    display: inline-block;
}

.nav-link:hover {
    background: var(--gradient-accent);
    color: var(--dark-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-colored);
    border-radius: var(--border-radius);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.hamburger.active {
    display: flex !important;
    z-index: 1001;
    position: fixed;
    right: 20px;
    top: 25px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-sporty);
    background-attachment: fixed;
}

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

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

.ball {
    position: absolute;
    background-image: url('tennisBallImage.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    width: 60px;
    height: 60px;
    transition: none;
}


.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    color: var(--light-color);
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
    padding-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out forwards;
}

.hero-line:nth-child(2) {
    animation-delay: 0.3s;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.cta-button.primary {
    background: var(--gradient-accent);
    color: var(--dark-color);
    box-shadow: var(--shadow-colored);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-color);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    padding: 1rem;
    transition: var(--transition);
}

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

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--light-color);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

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

/* Section Styles */
.hero, .about, .services, .contact {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.services, .contact {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 20px 0;
}

.about {
    position: relative;
    padding: 120px 0 80px 0;
    background: linear-gradient(to bottom, #1e3c72 0%, #2a5298 30%, #0f0f23 100%);
}

.services {
    background: linear-gradient(to bottom, #0f0f23 0%, #1a1a2e 30%, #16213e 100%);
}

.contact {
    background: linear-gradient(to bottom, #16213e 0%, #0f3460 30%, #0a0a0a 100%);
}

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

.about .section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.about .section-title {
    margin-bottom: 0rem;
}

.section-line {
    width: 120px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 0 auto;
    border-radius: 2px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 15px rgba(0, 212, 255, 0.4);
}

.about .section-line {
    margin: 0.5rem auto 0 auto;
}

/* About Section */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
    padding: 0 20px;
}

.coach-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coach-image {
    position: relative;
    width: 300px;
    height: 600px;
    overflow: hidden;
    transition: var(--transition);
}



.coach-image:hover {
    transform: scale(1.02);
}

.coach-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    -webkit-mask: linear-gradient(to top, transparent 0%, rgba(0,0,0,0.1) 10%, rgba(0,0,0,0.6) 20%, black 35%);
    mask: linear-gradient(to top, transparent 0%, rgba(0,0,0,0.1) 10%, rgba(0,0,0,0.6) 20%, black 35%);
}

.image-overlay {
    display: none;
}

.lead-text {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    text-align: center;
    color: var(--light-color);
    margin-bottom: 2rem;
    margin-top: 0rem;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

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

.qualification-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.2rem;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(50px);
    max-width: 220px;
    margin: 0 auto;
}

.qualification-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.qualification-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.qualification-card h3 {
    color: var(--light-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.qualification-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    height: 65vh;
    align-items: center;
}

.service-card {
    position: relative;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(50px);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-large);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card.featured {
    transform: scale(1.05);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-secondary);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-light);
}

.service-card:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-colored);
}

.service-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
}

.service-icon {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 212, 255, 0.3));
}

.service-card h3 {
    color: var(--light-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
    text-align: left;
}

.service-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 3rem;
    color: var(--light-color);
    font-weight: 800;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .card-glow {
    opacity: 1;
}

/* Contact Section */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    height: 70vh;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
}

.contact-info {
    padding: 3rem;
}

.contact-info h3 {
    color: var(--light-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition);
}

.contact-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.contact-item strong {
    color: var(--light-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Modern Form Styles */
.form-container {
    padding: 3rem;
    width: 100%;
    max-width: 1000px;
}

.form-container h3 {
    color: var(--light-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.modern-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.modern-form .form-group:nth-child(5),
.modern-form .form-group:nth-child(6) {
    grid-column: 1 / -1;
}

.modern-form .submit-btn {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 300px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 0 0.5rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--light-color);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    min-height: 3.5rem;
}

.form-group select {
    color: var(--dark-color);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.form-group select option {
    color: var(--dark-color);
    background: var(--light-color);
    font-weight: 500;
}

/* Custom Select Dropdown */
.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1rem 0 0.5rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    color: var(--light-color);
    font-weight: 500;
    width: 100%;
    font-size: 1rem;
    min-height: 3.5rem;
}

.select-trigger:focus,
.custom-select.open .select-trigger {
    border-bottom-color: var(--light-color);
    outline: none;
}


.arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--light-color);
    transition: var(--transition);
}

.custom-select.open .arrow {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 0.5rem;
}

.custom-select.open .select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.option {
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-color);
    font-weight: 500;
}

.option:hover {
    background: rgba(79, 172, 254, 0.1);
    color: var(--dark-color);
}

.option:first-child {
    border-radius: 8px 8px 0 0;
}

.option:last-child {
    border-radius: 0 0 8px 8px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition);
}

.form-group.focused label,
.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: var(--light-color);
    font-weight: 600;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--light-color);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-color);
    transition: var(--transition);
}

.form-group input:focus ~ .form-line,
.form-group select:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.submit-btn {
    background: var(--gradient-accent);
    color: var(--dark-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: var(--shadow-colored);
}

.submit-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Footer */
.glass-footer {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 0;
    text-align: center;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.8);
    border: none;
}

/* Mobile Menu Styles */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6.5px);
}

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

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


.nav-menu.active {
    position: fixed;
    right: 0;
    top: 80px;
    flex-direction: column;
    background: rgb(26, 26, 46);
    width: 160px;
    height: auto;
    max-height: 300px;
    text-align: right;
    transition: transform 0.3s ease-in-out;
    transform: translateX(0);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.5rem;
    display: flex;
    gap: 0.5rem;
    border-radius: 0 0 0 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: 0;
        top: 80px;
        flex-direction: column;
        background: rgb(26, 26, 46);
        width: 160px;
        height: auto;
        max-height: 300px;
        text-align: right;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        border-radius: 0 0 0 15px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
    
    .services {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 40px 0;
    }
    
    .services-grid {
        height: auto;
        gap: 2rem;
    }
    
    .service-card {
        height: auto;
        max-height: none;
        padding: 2rem 1.5rem;
        justify-content: flex-start;
    }
    
    .contact {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 40px 0;
    }
    
    .about {
        height: auto;
        min-height: 100vh;
        padding: 140px 0 40px 0;
    }
    
    .modern-form {
        grid-template-columns: 1fr;
    }
    
    .modern-form .form-group:nth-child(5),
    .modern-form .form-group:nth-child(6) {
        grid-column: 1;
    }
    
    .modern-form .submit-btn {
        grid-column: 1;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-line {
        width: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        height: auto;
    }
    
    .coach-image {
        width: 280px;
        height: 380px;
    }
    
    
    
    .qualifications {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        height: auto;
    }
    
    .qualification-card,
    .service-card,
    .contact-info,
    .form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-line {
        width: 250px;
    }
    
    .coach-image {
        width: 220px;
        height: 300px;
    }
    
    
    
    .qualification-card,
    .service-card,
    .contact-info,
    .form-container {
        padding: 1.5rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
    }
    
    .cta-container {
        padding: 0 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Additional modern effects */
@media (prefers-reduced-motion: no-preference) {
    .qualification-card:nth-child(1) { animation-delay: 0.1s; }
    .qualification-card:nth-child(2) { animation-delay: 0.2s; }
    .qualification-card:nth-child(3) { animation-delay: 0.3s; }
    .qualification-card:nth-child(4) { animation-delay: 0.4s; }
    
    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    
    .contact-item:nth-child(1) { animation-delay: 0.1s; }
    .contact-item:nth-child(2) { animation-delay: 0.2s; }
    .contact-item:nth-child(3) { animation-delay: 0.3s; }
    .contact-item:nth-child(4) { animation-delay: 0.4s; }
}

/* Loading animation for page */
body {
    animation: pageLoad 1s ease-out;
}

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