/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a56db;
    --primary-dark: #1340a8;
    --primary-light: #3b82f6;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --dark: #111827;
    --gray-900: #1f2937;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --success: #10b981;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-weight: 900;
    font-size: 0.85rem;
    line-height: 1.2;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo-img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.logo {
    flex-shrink: 0;
}

.logo-text small {
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Nav highlight */
.nav-highlight {
    background: var(--accent) !important;
    color: var(--dark) !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a56db 100%);
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.2;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--white);
    padding: 30px 0;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 3;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ===== Sections ===== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 12px auto 0;
}

/* ===== Tournament ===== */
.tournament {
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a4e 50%, #0f172a 100%);
    color: var(--white);
    overflow: hidden;
    padding: 100px 0;
}

.tournament-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    opacity: 0.06;
    pointer-events: none;
}

.tournament-bg img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.tournament .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.tournament-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.tournament-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 8px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
}

.tournament-title {
    color: var(--white) !important;
    font-size: 2.5rem;
}

.tournament-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.tournament-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.tournament-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
}

.tournament-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.t-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.tournament-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--accent);
}

.tournament-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

/* Prize Section */
.prize-section {
    margin-bottom: 40px;
}

.prize-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--accent);
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.prize-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 25px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.prize-item:hover {
    transform: translateY(-3px);
}

.prize-place {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0 auto 12px;
}

.prize-item.gold .prize-place {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
}

.prize-item.silver .prize-place {
    background: linear-gradient(135deg, #e5e7eb, #9ca3af);
    color: #374151;
}

.prize-item.bronze .prize-place {
    background: linear-gradient(135deg, #d97706, #92400e);
    color: #fef3c7;
}

.prize-item.fourth .prize-place {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.prize-amount {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
}

.prize-extra {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.prize-bonus {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 15px;
}

/* Tournament Fee */
.tournament-fee {
    margin-top: 40px;
    padding: 30px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius);
    display: inline-block;
}

.tournament-fee p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

/* Tournament responsive */
@media (max-width: 768px) {
    .tournament-info-grid {
        grid-template-columns: 1fr;
    }

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

    .tournament-title {
        font-size: 1.8rem;
    }
}

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

/* ===== About ===== */
.about {
    background: var(--gray-100);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: var(--gray-700);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

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

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

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.image-placeholder p {
    font-size: 1rem;
    margin-top: 10px;
    opacity: 0.7;
}

/* ===== Coaches ===== */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.coach-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.coach-photo {
    width: 100px;
    height: 100px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2.5rem;
    overflow: hidden;
}

.coach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-featured {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
}

.coach-featured .coach-photo {
    width: 200px;
    height: 250px;
    border-radius: var(--radius);
}

.coach-achievements {
    list-style: none;
    text-align: left;
    margin-top: 12px;
    padding: 0;
}

.coach-achievements li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.price-cell {
    font-weight: 700;
    color: var(--primary);
}

.coach-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.coach-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.coach-desc {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* ===== Schedule ===== */
.schedule {
    background: var(--gray-100);
}

.schedule-table-wrapper {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.schedule-table th {
    background: var(--primary);
    color: var(--white);
    padding: 16px 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.schedule-table td {
    padding: 16px 12px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}

.schedule-table tbody tr:hover {
    background: rgba(26, 86, 219, 0.03);
}

.group-name {
    text-align: left !important;
    font-weight: 600;
    position: relative;
    padding-left: 20px !important;
}

.group-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    border-radius: 2px;
}

.group-name.beginner::before { background: var(--success); }
.group-name.intermediate::before { background: var(--primary-light); }
.group-name.advanced::before { background: var(--accent); }
.group-name.adult::before { background: #8b5cf6; }

.group-name small {
    display: block;
    font-weight: 400;
    color: var(--gray-500);
    font-size: 0.75rem;
}

/* Schedule mobile cards */
.schedule-mobile {
    display: none;
}

.schedule-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--success);
}

.schedule-card.adult-card {
    border-left-color: #8b5cf6;
}

.schedule-card h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.schedule-freq {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 15px;
}

.schedule-days {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 15px;
}

.schedule-day {
    background: var(--gray-100);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule-day span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.schedule-day strong {
    font-size: 0.85rem;
    color: var(--dark);
}

.schedule-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

.schedule-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-500);
}

/* ===== News ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.news-image {
    height: 180px;
    background: linear-gradient(135deg, #1e3a5f, var(--primary));
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.news-date {
    background: var(--accent);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-body {
    padding: 20px;
}

.news-body h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.news-body p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-image-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.partner-logo {
    max-width: 200px;
    height: auto;
}

.news-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* ===== Membership ===== */
.membership {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: var(--white);
}

.membership .section-title {
    color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--dark);
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

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

.price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ===== Contact ===== */
.contact {
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--gray-100);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-about p {
    color: var(--gray-500);
    margin-top: 15px;
    font-size: 0.9rem;
}

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

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 0;
    display: block;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.powered-by {
    margin-top: 8px;
    font-size: 0.75rem;
    opacity: 0.7;
}

.powered-by a {
    color: var(--accent);
    text-decoration: none;
}

.powered-by a:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 15px 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: var(--transition);
        gap: 2px;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 10px 15px;
        display: block;
    }

    .logo-img {
        height: 35px;
    }

    .hero {
        min-height: auto;
        padding: 90px 0 40px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .hero-buttons .btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .hero-bg-img {
        object-fit: contain;
        object-position: center center;
        opacity: 0.15;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo-text {
        font-size: 0.75rem;
    }

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

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .schedule-desktop {
        display: none;
    }

    .schedule-mobile {
        display: block;
    }

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

    .news-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        padding: 60px 0;
    }
}

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

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