/* CSS Reset and Variables */
:root {
    --primary-color: #0055FF;
    --secondary-color: #000000;
    --background-color: #FFFFFF;
    --text-color: #000000;
    --border-color: #E5E5E5;
    --success-color: #00A36C;
    --error-color: #FF3B30;
    --badge-color: FFD700#;
    --max-width: 1200px;
    --form-width: 600px;
    --hero-width: 500px;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --gradient-1: #0055FF;
    --gradient-2: #00C6FF;
    --gradient-3: #0033CC;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

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

body {
    font-family: var(--font-family);
    line-height: 1.5;
    background-color: var(--background-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
}

/* Base paragraph styles */
p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}

/* Typography Base Styles */
h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: black;
}

h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: black;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    color: black;
}

/* Special paragraph styles that should remain larger */
.section-intro {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Reset specific paragraph styles to use base size */
.video-description p,
.founder-letter p,
.privacy-content p,
.program-card p,
.rule-item p,
.resource-content p,
.method-quote p {
    font-size: 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 0;
    padding: 2rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(0, 85, 255, 0.05) 100%
    );
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            circle at center,
            rgba(255, 215, 0, 0.08) 0%,
            transparent 50%
        );
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    max-width: var(--hero-width);
    margin: 0 auto 1rem;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 350px;
    object-fit: contain;
}

.hero h1 {
    padding: 0 1rem;
    color: var(--text-color);
    position: relative;
    margin-bottom: 1.25rem;
}

.hero h1 strong {
    font-weight: 800;
    color: black;
    position: relative;
    white-space: nowrap;
}

.hero h1 strong::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 4px;
    background-color: var(--primary-color);
    opacity: 1;
}

.hero-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 2.5rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-button:hover {
    background: #0044cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 0 4rem;
    }
    
    .hero-image {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-image img {
        max-height: none;
    }

    p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .section-intro {
        font-size: 1.125rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem 0 3rem;
    }
    
    .hero-image {
        margin-bottom: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
}

/* Video Section */
.video-section {
    padding: 4rem 0;
    background: var(--background-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.video-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.video-section h2 {
    margin: 3rem 0 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.video-description {
    max-width: var(--form-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.video-description p:last-child {
    margin-bottom: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--form-width);
    margin: 0 auto;
}

.video-wrapper::before {
    content: "";
    display: block;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .video-section {
        padding: 3rem 0;
    }
    
    .video-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 2rem 0;
    }
    
    .video-container {
        padding: 0 1rem;
    }
    
    .video-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

/* Signup Section */
.signup-section {
    background: white;
    color: var(--secondary-color);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.signup-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.signup-form-wrapper {
    max-width: var(--form-width);
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.signup-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.form-description {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 2rem;
}

.signup-form {
    margin-top: 2rem;
}

/* Form Structure */
.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

/* Form field styles */
.signup-form input,
.signup-form select {
    padding: 0.875rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: var(--font-family);
    background: white;
    color: var(--secondary-color);
}

.signup-form input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

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

.signup-form input:hover,
.signup-form select:hover {
    border-color: var(--primary-color);
}

.signup-form label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.9375rem;
    line-height: 1.4;
}

.signup-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000000' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

.signup-form select option {
    background: white;
    color: var(--secondary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #0044cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: rgba(0, 85, 255, 0.3);
    color: white;
    cursor: not-allowed;
    transform: none;
    position: relative;
}

.submit-btn:disabled::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border: 2px solid white;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spin 0.8s linear infinite;
}

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

/* Success Message */
.success-message {
    background: rgba(0, 163, 108, 0.1);
    color: var(--success-color);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1.5rem;
    opacity: 1;
    transition: all 0.3s ease;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
    transform-origin: top;
    border: 1px solid rgba(0, 163, 108, 0.2);
}

.success-message.hidden {
    display: none;
    opacity: 0;
    transform: scaleY(0);
    margin-top: 0;
}

/* Validation Styles */
input:invalid:not(:placeholder-shown),
select:invalid:not(:placeholder-shown) {
    border-color: rgba(0, 85, 255, 0.2);  /* Same as default border color */
}

input:invalid:not(:placeholder-shown):focus,
select:invalid:not(:placeholder-shown):focus {
    border-color: #0055FF;  /* Same as default focus color */
    box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);  /* Same as default focus shadow */
}

/* Error message styles */
.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-weight: 500;
}

.error-message:not(:empty) {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .signup-container {
        padding: 0 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .tagline {
        font-size: 1.125rem;
    }

    .signup-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .signup-section {
        padding: 3rem 0;
    }

    .tagline {
        font-size: 1rem;
    }

    .signup-form-wrapper {
        padding: 1.5rem;
    }
}

.coming-soon-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #FFE44D;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #000;
    animation: bounce 2s infinite;
    pointer-events: none;
    z-index: 100;
}

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

@media (max-width: 768px) {
    .coming-soon-badge {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
    }
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 56px;
    width: auto;
    transition: transform 0.2s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.mobile-logo {
    display: none;
}

.mobile-logo .logo-image {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #0055ff;
}

.nav-button {
    background: #0055ff;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.nav-button:hover {
    background: #0044cc;
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
    position: relative;
}

.menu-button span + span {
    margin-top: 6px;
}

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

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

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

@media (max-width: 768px) {
    .menu-button {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: all 0.3s ease;
        opacity: 0;
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
        opacity: 1;
    }

    .mobile-logo {
        display: flex;
        justify-content: center;
        padding: 1rem 0;
        margin-bottom: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        font-size: 1.25rem;
        text-align: center;
    }

    .nav-button {
        margin: 0;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }
}

/* Adjust container to account for fixed navbar */
.container {
    padding-top: 80px;
}

/* Location Section */
.location-section.hero-section {
    padding: 8rem 0 6rem;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.location-section.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: black;
    text-align: center;
}

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

.location-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1rem;
    align-items: start;
}

.location-content {
    padding: 1rem;
    overflow-y: auto;
    max-height: calc(100vh - 4rem);
}

.location-content .court-item {
    background: var(--color-white);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.location-content .court-content {
    flex: 1;
    margin-bottom: 0;
}

.location-content .court-content h3 {
    margin: 0 0 0.25rem;
    font-size: 1.125rem;
}

.location-content .court-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9375rem;
}

.location-content .court-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-width: max-content;
}

.program-tag {
    display: inline-block;
    background: rgba(0, 85, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.program-tag:hover {
    background: rgba(0, 85, 255, 0.15);
}

.map-container {
    position: sticky;
    top: 2rem;
    height: calc(100vh - 4rem);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    order: 2;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .location-section.hero-section {
        padding: 6rem 0 4rem;
    }

    .location-section.hero-section h1 {
        font-size: 2.5rem;
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        position: relative;
        top: 0;
        height: 400px;
        margin-top: 2rem;
        order: 1;
    }

    .location-content {
        max-height: none;
        overflow-y: visible;
        order: 0;
    }
}

@media (max-width: 480px) {
    .location-section.hero-section {
        padding: 5rem 0 3rem;
    }

    .location-section.hero-section h1 {
        font-size: 2rem;
    }

    .map-container {
        height: 300px;
    }

    .location-content .court-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .location-content .court-details {
        min-width: 100%;
    }
}

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

.social-links {
    margin-bottom: 15px;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .menu-button {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: all 0.3s ease;
        opacity: 0;
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
        opacity: 1;
    }

    .mobile-logo {
        display: flex;
        font-size: 2rem;
        font-weight: 900;
        text-decoration: none;
        color: #000;
        margin-bottom: 2rem;
        text-align: center;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

    .mobile-logo .logo-image {
        width: 40px;
        height: 40px;
    }

    .nav-link {
        font-size: 1.25rem;
        text-align: center;
    }

    .nav-button {
        margin: 0;
        width: 100%;
        text-align: center;
    }
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-heading {
    font-size: 2rem;
    font-weight: 700;
    color: black;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background: #0044cc;
    transform: translateY(-1px);
}

.cta-button.secondary:hover {
    background: rgba(0, 85, 255, 0.04);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }

    .cta-heading {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 0;
    }

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

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* About Hero Section */
.about-hero {
    padding: 4rem 0;
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto;
    background: white;
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: black;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #FFD700;
}

.mission-content {
    padding-top: 0.5rem;
}

.mission-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: black;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
    max-width: var(--max-width);
    margin: 0 auto;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.founder-story {
    padding: 0 2rem;
}

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

.founder-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: black;
    text-align: center;
}

.founder-letter {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

.founder-letter p {
    margin-bottom: 2rem;
}

.founder-signature {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.founder-signature-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.2);
}

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

.founder-signature-text {
    flex: 1;
}

.founder-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: black;
    margin-bottom: 0.25rem;
}

.founder-title {
    color: #666;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .founder-section {
        padding: 4rem 0;
    }

    .founder-content h2 {
        font-size: 2rem;
    }

    .founder-letter {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .founder-section {
        padding: 3rem 0;
    }

    .founder-content h2 {
        font-size: 1.75rem;
    }

    .founder-signature {
        gap: 1rem;
    }
}

/* Impact Section */
.impact-section {
    padding: 4rem 0;
    background: white;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.impact-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: black;
}

.impact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.impact-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: left;
}

.impact-year h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: black;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.impact-year h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.impact-year ul {
    list-style: none;
    padding: 0;
}

.impact-year li {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.impact-year li::before {
    content: "☐";
    color: black;
    position: absolute;
    left: 0;
    font-weight: normal;
}

.impact-year li.checked::before {
    content: "☑";
    color: var(--success-color);
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .mission-card {
        padding: 2rem;
    }

    .impact-section {
        padding: 4rem 0;
    }

    .impact-card {
        padding: 2rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .impact-year:not(:last-child) {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .mission-card {
        padding: 1.5rem;
    }

    .impact-section {
        padding: 3rem 0;
    }

    .impact-card {
        padding: 1.5rem;
    }
}

/* Founder Section */
.founder-image {
    margin: 2rem 0;
    text-align: center;
}

.founder-image img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(0, 85, 255, 0.1);
    border: 4px solid rgba(255, 228, 77, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.founder-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .founder-image img {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .founder-image img {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }
}

.founder-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.founder-header h3 {
    margin: 0 !important;
    font-size: 1.5rem !important;
}

.founder-image {
    margin: 0;
}

.founder-image img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 228, 77, 0.2);
    transition: border-color 0.3s ease;
}

.founder-image img:hover {
    border-color: rgba(255, 228, 77, 0.4);
}

@media (max-width: 768px) {    
    .founder-image img {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {    
    .founder-image img {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Privacy Policy Page */
.privacy-section {
    padding: 6rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.last-updated {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

.privacy-content section {
    margin-bottom: 3rem;
}

.privacy-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.privacy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.privacy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.privacy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 4rem 1.5rem;
    }

    .privacy-section h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }

    .privacy-content h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 3rem 1rem;
    }

    .privacy-section h1 {
        font-size: 1.75rem;
    }
}

/* Legal Pages (Privacy & Terms) Styles */
.privacy-section,
.terms-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: white;
}

.privacy-section h1,
.terms-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.privacy-content,
.terms-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.privacy-content section,
.terms-content section {
    margin-bottom: 2.5rem;
}

.privacy-content h2,
.terms-content h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 85, 255, 0.1);
}

.privacy-content h3,
.terms-content h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 0.75rem;
}

.privacy-content p,
.terms-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

.privacy-content ul,
.terms-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-content li,
.terms-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #333;
}

@media (max-width: 768px) {
    .privacy-section,
    .terms-section {
        padding: 3rem 1.5rem;
    }

    .privacy-section h1,
    .terms-section h1 {
        font-size: 2rem;
    }

    .privacy-content,
    .terms-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-section,
    .terms-section {
        padding: 2rem 1rem;
    }

    .privacy-section h1,
    .terms-section h1 {
        font-size: 1.75rem;
    }

    .privacy-content,
    .terms-content {
        padding: 1rem;
        box-shadow: none;
    }
}

/* Classes Overview Section */
.classes-overview {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.classes-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.classes-overview h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: black;
}

.classes-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.program-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: black;
}

.program-card p {
    margin-bottom: 1.5rem;
}

.program-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.program-label {
    font-size: 0.875rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    min-width: max-content;
}

.program-label strong {
    color: black;
    font-weight: 600;
}

.program-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 1.5rem;
}

.program-features {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
    color: #666;
    line-height: 1.5;
}

.program-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.program-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: black;
    font-weight: bold;
}

/* Class Details Section */
.class-details {
    padding: 4rem 0;
    background: white;
}

.details-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.class-details h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: black;
}

.class-details h2 strong {
    font-weight: 800;
    color: black;
    position: relative;
    white-space: nowrap;
}

.class-details h2 strong::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 4px;
    background-color: var(--primary-color);
    opacity: 1;
}

.details-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.details-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.details-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: black;
}

.details-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-card li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.details-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Responsive Styles for Classes Sections */
@media (max-width: 1024px) {
    .program-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .classes-overview,
    .class-details {
        padding: 4rem 0;
    }

    .classes-overview h2,
    .class-details h2 {
        font-size: 2rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .classes-intro,
    .details-intro {
        font-size: 1.125rem;
        padding: 0 1rem;
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .program-grid {
        grid-template-columns: 1fr;
    }

    .classes-overview,
    .class-details {
        padding: 3rem 0;
    }

    .classes-container,
    .details-container {
        padding: 0 1rem;
    }

    .program-card,
    .details-card {
        padding: 1.5rem;
    }
}

.private-lessons-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.private-lessons-intro {
    margin-bottom: 1.5rem;
}

.private-lessons-details {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.private-lessons-details .court-details {
    justify-content: center;
    margin-top: 0;
}

.map-section {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-section {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .map-section {
        height: 250px;
    }
}

/* Rules Section */
.rules-section {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.rules-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: black;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.rule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rule-icon {
    font-size: 1.75rem;
    width: 64px;
    height: 64px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.rule-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: black;
}

.rule-item p {
    font-size: 1rem;
    line-height: 1.4;
    color: #666;
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .rules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .rules-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .rules-section {
        padding: 3rem 0;
    }

    .rules-section h2 {
        font-size: 1.75rem;
    }
}

.about-hero.rules-section {
    padding: 8rem 0 6rem;
    text-align: center;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-top: none;
}

.about-hero.rules-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: black;
}

.mission-section {
    padding: 4rem 0;
    text-align: center;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mission-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: black;
}

.courts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-content .court-item {
    background: var(--color-white);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.program-card .court-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0;
}

.location-content .court-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-width: max-content;
}

.private-lessons-details .program-tag {
    margin: 0.25rem;
}

@media (max-width: 480px) {
    .private-lessons-details .program-tag {
        margin: 0.5rem;
    }
}

/* Quote Section */
.quote-section {
    padding: 4rem 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(0, 85, 255, 0.05) 100%
    );
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            circle at center,
            rgba(255, 215, 0, 0.08) 0%,
            transparent 50%
        );
    z-index: 0;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.quote-stars {
    color: #FFD700;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.quote-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-text::before,
.quote-text::after {
    display: none;
}

.quote-author {
    font-size: 0.9375rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .quote-section {
        padding: 3rem 0;
    }
    
    .quote-container {
        padding: 0 2rem;
    }
    
    .quote-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .quote-section {
        padding: 2.5rem 0;
    }
    
    .quote-text {
        font-size: 0.9375rem;
    }
    
    .quote-stars {
        font-size: 1.5rem;
    }
}

/* Learning Resources Section */
.learning-resources {
    padding: 6rem 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.resources-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.learning-resources h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.learning-resources h2 strong {
    font-weight: 800;
    color: black;
    position: relative;
    white-space: nowrap;
}

.learning-resources h2 strong::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 4px;
    background-color: var(--primary-color);
    opacity: 1;
}

.resources-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
}

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.resource-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.resource-card:nth-child(even) {
    flex-direction: row-reverse;
}

.resource-content {
    flex: 1;
}

.resource-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.resource-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.resource-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.resource-features li {
    font-size: 0.9375rem;
    color: var(--primary-color);
    background: rgba(0, 85, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 500;
}

.resource-image {
    flex: 1;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .resource-card {
        gap: 3rem;
        padding: 1.5rem;
    }

    .resource-image {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .learning-resources {
        padding: 4rem 0;
    }

    .learning-resources h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .resources-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .resource-card,
    .resource-card:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .resource-image {
        max-width: 100%;
    }

    .resource-content h3 {
        font-size: 1.25rem;
    }

    .resource-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .learning-resources {
        padding: 3rem 0;
    }

    .resources-container {
        padding: 0 1rem;
    }

    .resource-card {
        padding: 1rem;
    }

    .resource-features {
        gap: 0.5rem;
    }

    .resource-features li {
        font-size: 0.875rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Method Section */
.method-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 215, 0, 0.1) 100%);
    margin: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.method-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.method-content {
    padding-right: 2rem;
}

.method-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.method-content h2 strong {
    position: relative;
}

.method-content h2 strong::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 4px;
    background-color: #FFD700;
}

.method-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    border-left: none;
    padding: 0;
    margin: 0;
}

.method-quote p {
    margin-bottom: 1.5rem;
}

.method-author {
    font-size: 1rem;
    color: #666;
    font-style: normal;
    display: block;
    margin-top: 2rem;
}

.method-images {
    position: relative;
    width: 100%;
    height: 600px;
}

.image-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.image-circle:hover {
    transform: translateY(-8px);
    z-index: 2;
}

.image-circle:hover img {
    transform: scale(1.05);
}

.image-circle.coach {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    z-index: 1;
    background: var(--primary-color);
}

.image-circle.player-one {
    bottom: 0;
    left: 0;
}

.image-circle.player-two {
    bottom: 0;
    right: 0;
}

@media (max-width: 1024px) {
    .method-container {
        gap: 3rem;
    }
    
    .method-content {
        padding-right: 1rem;
    }

    .image-circle {
        width: 240px;
        height: 240px;
    }

    .image-circle.coach {
        width: 280px;
        height: 280px;
    }

    .method-images {
        height: 520px;
    }
}

@media (max-width: 768px) {
    .method-section {
        padding: 3rem 1.5rem;
    }
    
    .method-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .method-content {
        padding-right: 0;
        text-align: center;
    }
    
    .method-content h2 strong::after {
        left: 0;
        right: 0;
    }

    .method-images {
        height: 480px;
        margin: 0 auto;
        max-width: 500px;
    }

    .image-circle {
        width: 200px;
        height: 200px;
    }

    .image-circle.coach {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .method-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .method-content h2 {
        font-size: 2rem;
    }
    
    .method-quote {
        font-size: 1rem;
    }

    .method-images {
        height: 400px;
    }

    .image-circle {
        width: 160px;
        height: 160px;
    }

    .image-circle.coach {
        width: 200px;
        height: 200px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff 0%, rgba(0, 85, 255, 0.05) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.testimonial-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-button:hover {
    color: var(--primary-color);
}

.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active::after {
    transform: scaleX(1);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 2rem;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    line-height: 1;
}

.testimonial-text::before {
    left: -1rem;
    top: -1rem;
}

.testimonial-text::after {
    right: -1rem;
    bottom: -2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #666;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.testimonial-author span {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .testimonial-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .testimonial-text {
        font-size: 1.125rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 2rem 0;
    }

    .testimonials-container {
        padding: 0 1rem;
    }

    .testimonial-text {
        font-size: 1rem;
        padding: 0;
    }

    .testimonial-text::before,
    .testimonial-text::after {
        display: none;
    }
}

/* Players Section */
.players-section {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.players-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.players-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.players-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0.5rem;
    margin: 0 -0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.players-scroll::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

.player-card {
    flex: 0 0 auto;
    width: 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.player-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.player-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.player-card:hover .player-image img {
    transform: scale(1.05);
}

.player-info {
    padding: 1.25rem;
    text-align: left;
}

.player-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.player-style {
    display: inline-block;
    font-size: 0.875rem;
    color: #666;
    background: rgba(0, 85, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.players-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.outline-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.primary-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.outline-button:hover {
    background: rgba(0, 85, 255, 0.04);
}

.primary-button:hover {
    background: #0044cc;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .players-section {
        padding: 3rem 0;
    }

    .players-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .player-card {
        width: 240px;
    }

    .player-image {
        height: 160px;
    }

    .players-buttons {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .players-section {
        padding: 2rem 0;
    }

    .players-container h2 {
        font-size: 1.75rem;
    }

    .player-card {
        width: 220px;
    }

    .player-image {
        height: 140px;
    }
} 