/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--secondary-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Base Styles */
:root {
    --primary-100: #1F3A5F;
    --primary-200: #4d648d;
    --primary-300: #acc2ef;
    --accent-100: #3D5A80;
    --accent-200: #cee8ff;
    --text-100: #FFFFFF;
    --text-200: #e0e0e0;
    --bg-100: #0F1C2E;
    --bg-200: #1f2b3e;
    --bg-300: #374357;
    --secondary-color: #FF6B00;
    --light-text: #FFFFFF;
    --dark-color: #0A1525;
    --border-radius: 5px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-100);
    background-color: var(--bg-100);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--accent-200);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-300);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 30px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Button Styles */
.cta-button, .secondary-cta, .card-cta, .youtube-cta {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--light-text);
    border: none;
}

.cta-button:hover {
    background-color: #e55c00;
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.secondary-cta {
    background-color: transparent;
    color: var(--primary-100);
    border: 2px solid var(--primary-100);
    margin: 2rem auto;
    display: table;
}

.secondary-cta:hover {
    background-color: var(--primary-100);
    color: var(--light-text);
    transform: translateY(-3px);
}

.card-cta {
    background-color: var(--primary-100);
    color: var(--light-text);
    border: none;
    padding: 10px 20px;
    width: 100%;
    margin-top: 1rem;
}

.card-cta:hover {
    background-color: var(--primary-200);
    color: var(--light-text);
}

.youtube-cta {
    background-color: #ff0000;
    color: var(--light-text);
    border: none;
    margin: 2rem auto;
    display: table;
}

.youtube-cta:hover {
    background-color: #cc0000;
    color: var(--light-text);
}

.youtube-cta i {
    margin-right: 8px;
}

/* Header Styles */
header {
    background-color: var(--bg-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(15, 28, 46, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 70px;
    width: auto;
    vertical-align: middle;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-100);
    margin-left: 15px;
    letter-spacing: 0.5px;
}

header .container {
    padding: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-200);
    font-weight: 600;
    position: relative;
}

nav ul li a:hover {
    color: var(--accent-200);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-200);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-100);
    border-radius: 2px;
    transition: var(--transition);
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-100);
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
    background-color: var(--bg-100);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('awahero.png') no-repeat center center;
    background-size: cover;
    z-index: -2;
    animation: subtle-zoom 20s infinite alternate ease-in-out;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 28, 46, 0.7), rgba(61, 90, 128, 0.8));
    z-index: -1;
}

@keyframes subtle-zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}


.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    text-align: left;
    margin-bottom: 3rem;
    max-width: 700px;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-text h1 span {
    color: var(--accent-200);
    position: relative;
    display: inline-block;
    animation: highlightText 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--accent-200);
    border-radius: 2px;
    animation: expandUnderline 1s ease-out forwards;
    animation-delay: 1s;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

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

@keyframes highlightText {
    0% {
        color: var(--text-100);
    }
    100% {
        color: var(--accent-200);
    }
}

@keyframes expandUnderline {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1.5s;
}

.hero-secondary-cta {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    background-color: transparent;
    color: var(--text-100);
    border: 2px solid var(--text-100);
}

.hero-secondary-cta:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-200);
    border-color: var(--accent-200);
    transform: translateY(-3px);
}

.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
    animation-delay: 2s;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.hero-feature {
    display: flex;
    align-items: center;
    background-color: rgba(31, 58, 95, 0.7);
    padding: 20px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-feature:nth-child(1) {
    animation-delay: 0.6s;
}

.hero-feature:nth-child(2) {
    animation-delay: 0.9s;
}

.hero-feature:nth-child(3) {
    animation-delay: 1.2s;
}

.hero-feature:hover {
    transform: translateY(-5px);
    background-color: rgba(31, 58, 95, 0.9);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-200);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    animation: bounce 2s infinite;
}

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

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-100);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-100);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    margin-bottom: 8px;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-100);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.scroll-text {
    margin-top: 5px;
}

/* About Section */
.about {
    background-color: var(--bg-200);
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

.service-card {
    flex: 0 0 calc(33.333% - 30px);
    background-color: var(--bg-300);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    font-size: 2.5rem;
    color: var(--accent-200);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--accent-100);
    color: var(--text-100);
}

.testimonials h2:after {
    background-color: var(--accent-200);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 250px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card .quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-card .quote:before,
.testimonial-card .quote:after {
    content: '"';
    font-size: 2rem;
    position: relative;
    line-height: 0;
}

.athlete-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.athlete-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    background: transparent;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 15px;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    color: var(--secondary-color);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--light-text);
}

/* Training Options Section */
.training {
    background-color: var(--bg-100);
}

.training-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

.training-card {
    flex: 0 0 calc(33.333% - 30px);
    background-color: var(--bg-300);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.training-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.training-card ul {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.training-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.training-card ul li:last-child {
    border-bottom: none;
}

/* Pricing Section Styles */
.pricing-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.trainer-name {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--accent-200);
}

.pricing-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.pricing-card {
    flex: 1 0 calc(50% - 30px);
    background-color: var(--bg-300);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-200);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.pricing-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price-list {
    margin-top: 1.5rem;
    padding-left: 0;
}

.price-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
}

.price-list li:last-child {
    border-bottom: none;
}

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

.discounted {
    font-weight: 700;
    color: var(--accent-200);
}

.special-offers ul {
    padding-left: 20px;
}

.special-offers li {
    list-style-type: disc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* YouTube Section */
.youtube {
    background-color: var(--light-text);
}

/* Contact Section */
.contact {
    background-color: var(--bg-200);
    color: var(--text-100);
}

/* Reveal Animations */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Success and Error Messages */
.success-message, .error-message {
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.success-message {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.error-message {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.success-message i, .error-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message i {
    color: #28a745;
}

.error-message i {
    color: #dc3545;
}

.success-message h3, .error-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-100);
}

.success-message p, .error-message p {
    color: var(--text-200);
    margin-bottom: 1.5rem;
}

.error-message .cta-button {
    margin-top: 1rem;
    background-color: #dc3545;
}

.error-message .cta-button:hover {
    background-color: #bd2130;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 2;
    min-width: 300px;
    background-color: var(--bg-300);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

.social-links {
    margin-top: 30px;
}

.social-links h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-100);
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

.contact-form .cta-button {
    width: 100%;
    margin-top: 10px;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

.video {
    flex: 0 0 calc(50% - 15px);
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.video-placeholder {
    background-color: #f8f8f8;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--dark-color);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    background-color: #eaeaea;
}

.video-placeholder.clicked {
    background-color: #e0e0e0;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.video-placeholder i {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.video-placeholder p {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 0 20px;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo, .footer-social, .footer-contact {
    flex: 1;
    margin-bottom: 30px;
    min-width: 250px;
}

.footer-logo img {
    max-height: 70px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-social h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-social h4:after, .footer-contact h4:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    margin-top: 10px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--light-text);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-contact p {
    margin-bottom: 0.8rem;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--light-text);
    margin-left: 20px;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-card, .training-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .hero-text h1 {
        font-size: 3.2rem;
    }
    
    .hero-features {
        flex-wrap: wrap;
    }
    
    .hero-feature {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 20px;
    }
}

/* Tablet Styles */
@media (max-width: 768px) {
    /* General Section Styles */
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    /* Hero Section */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 100px;
    }
    
    .hero-text {
        text-align: center;
        margin: 0 auto 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h1 span::after {
        height: 3px;
        bottom: 3px;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .hero-feature {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
    
    /* Navigation */
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--bg-200);
        transition: var(--transition);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        color: var(--text-100);
        font-size: 1.1rem;
        display: block;
        padding: 8px 0;
    }
    
    nav ul li a:after {
        bottom: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* About Section */
    .services {
        gap: 20px;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 10px);
        padding: 25px 20px;
    }
    
    /* Testimonials Section */
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-card .quote {
        font-size: 1.1rem;
    }
    
    /* Training Section */
    .training-card {
        flex: 0 0 calc(50% - 10px);
        padding: 25px 20px;
    }
    
    /* Pricing Section */
    .pricing-section h3 {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        flex: 0 0 100%;
    }
    
    /* YouTube Section */
    .video {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
}

/* Mobile Styles */
@media (max-width: 576px) {
    /* General Section Styles */
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    section h2:after {
        width: 60px;
        height: 3px;
        margin: 10px auto 20px;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
        margin-left: 10px;
    }
    
    /* Hero Section */
    .hero {
        padding: 70px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .cta-button, .hero-secondary-cta {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    .hero-feature {
        padding: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
    
    .mouse {
        width: 22px;
        height: 34px;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
    
    /* About Section */
    .service-card {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .service-card .icon {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Testimonials Section */
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonial-card .quote {
        font-size: 1rem;
    }
    
    .athlete-info h4 {
        font-size: 1.1rem;
    }
    
    .athlete-info p {
        font-size: 0.8rem;
    }
    
    .slider-controls {
        margin-top: 1.5rem;
    }
    
    /* Training Section */
    .training-card {
        flex: 0 0 100%;
        padding: 20px 15px;
    }
    
    .training-card h3 {
        font-size: 1.3rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    /* Pricing Section */
    .pricing-section h3 {
        font-size: 1.6rem;
    }
    
    .trainer-name {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 20px 15px;
    }
    
    .pricing-card h4 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    /* YouTube Section */
    .video-placeholder i {
        font-size: 2.5rem;
    }
    
    .video-placeholder p {
        font-size: 0.9rem;
        bottom: 15px;
    }
    
    /* Button Styles */
    .cta-button, .secondary-cta, .card-cta, .youtube-cta {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    /* Footer */
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo img {
        max-height: 60px;
    }
    
    .footer-social h4, .footer-contact h4 {
        font-size: 1.1rem;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 375px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .feature-text h3 {
        font-size: 1.1rem;
    }
    
    .feature-text p {
        font-size: 0.8rem;
    }
    
    section h2 {
        font-size: 1.6rem;
    }
}

/* Payment Methods Styling */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-method {
    flex: 1;
    min-width: 100px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.payment-method:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.payment-method.active {
    background-color: rgba(255, 107, 0, 0.2);
    border-color: var(--secondary-color);
}

.payment-method i {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text-100);
}

.payment-method span {
    font-size: 0.9rem;
    font-weight: 600;
}

.payment-method-form {
    margin-top: 20px;
}

.payment-method-form.hidden {
    display: none;
}

/* Payment Method Placeholders */
.paypal-placeholder,
.venmo-placeholder,
.googlepay-placeholder {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
}

.paypal-placeholder i,
.venmo-placeholder i,
.googlepay-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.paypal-placeholder i {
    color: #0070ba;
}

.venmo-placeholder i {
    color: #3D95CE;
}

.googlepay-placeholder i {
    color: #5f6368;
}

/* Stripe Elements Styling */
.stripe-card-element {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stripe-card-element.StripeElement--focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

.stripe-error {
    color: #fa755a;
    margin-top: 8px;
    font-size: 0.9rem;
}

.payment-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-200);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: var(--border-radius);
}

.payment-note i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* Responsive Payment Methods */
@media (max-width: 576px) {
    .payment-methods {
        flex-direction: column;
    }
    
    .payment-method {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 12px 15px;
    }
    
    .payment-method i {
        margin-bottom: 0;
        margin-right: 15px;
        font-size: 1.5rem;
    }
}

/* Form Validation Styles */
.validation-error {
    border-color: #fa755a !important;
    box-shadow: 0 0 0 2px rgba(250, 117, 90, 0.2) !important;
}

.error-message {
    color: #fa755a;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    font-weight: 500;
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Booking Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background-color: var(--bg-200);
    margin: 50px auto;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 800px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--text-100);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-100);
}

.modal-content h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto 30px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-200);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary-color);
}

/* Booking Steps */
.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.booking-step h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--accent-200);
}

/* Button Group */
.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Payment Summary */
.payment-summary {
    background-color: var(--bg-300);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.payment-summary h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--accent-200);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item.total {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 10px;
    border-top: 2px solid var(--secondary-color);
    border-bottom: none;
    padding-top: 15px;
}

.summary-item.total span:last-child {
    color: var(--secondary-color);
}

/* Card Details */
.card-details {
    display: flex;
    gap: 20px;
}

.card-details .form-group {
    flex: 1;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 20px auto;
        padding: 20px;
    }
    
    .card-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .button-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .button-group button {
        width: 100%;
    }
}
