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

/* Font Faces */
@font-face {
    font-display: swap;
    font-family: "Essential Sans";
    font-weight: 500;
    font-style: normal;
    src: url("https://static.wixstatic.com/ufonts/ef0a41_071b563d7d164356a4b72067692ee515/woff2/file.woff2") format("woff2"),
         url("https://static.wixstatic.com/ufonts/ef0a41_071b563d7d164356a4b72067692ee515/woff/file.woff") format("woff");
}

@font-face {
    font-display: swap;
    font-family: "Essential Sans Black";
    font-weight: 900;
    font-style: italic;
    src: url("https://static.wixstatic.com/ufonts/ef0a41_8913c8f1a94c4ed6abca86d81d0792f9/woff2/file.woff2") format("woff2"),
         url("https://static.wixstatic.com/ufonts/ef0a41_8913c8f1a94c4ed6abca86d81d0792f9/woff/file.woff") format("woff");
}

:root {
    /* Tennis Academy Farbschema - Orange dominiert */
    --primary-color: rgb(236, 100, 74);     /* Haupt-Orange */
    --primary-hover: rgb(216, 80, 54);      /* Dunkleres Orange */
    --secondary-color: rgb(116, 81, 82);    /* Weinrot/Braun */
    --accent-green: #2E7D32;                /* Tennis-Court Grün */
    --accent-blue: #1976D2;                 /* Hard Court Blau */
    --tennis-yellow: #FFD600;               /* Tennis-Ball Gelb */
    --text-primary: rgb(34, 30, 32);        /* Sehr dunkles Grau */
    --text-secondary: rgb(79, 79, 79);      /* Dunkelgrau */
    --text-light: rgb(117, 117, 117);       /* Mittelgrau */
    --background-white: rgb(255, 255, 255); /* Weiß */
    --background-gray: #F5F5F5;             /* Hellgrau */
    --background-light: #FAFAFA;            /* Sehr Hellgrau */
    --border-color: #E0E0E0;

    --transition: all 0.3s ease;
    --border-radius: 12px;
}

/* Dark Mode */
[data-theme="dark"] {
    --text-primary: #E0E0E0;
    --text-secondary: #B0B0B0;
    --text-light: #888;
    --background-white: #1a1a1a;
    --background-gray: #2a2a2a;
    --background-light: #222;
    --border-color: #3a3a3a;
}

body {
    font-family: "Essential Sans", Helvetica, Arial, sans-serif;
    line-height: 1.4em;
    color: var(--text-primary);
    background-color: var(--background-white);
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    position: relative;
    padding-top: 92px; /* Platz für fixed navbar */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(236, 100, 74, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(116, 81, 82, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 214, 0, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
    font-weight: 900;
    line-height: 1.4;
    color: var(--text-primary);
    font-family: "Essential Sans Black", "Essential Sans", Helvetica, Arial, sans-serif;
    font-style: normal;
}

h1 {
    font-size: 64px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
h2 { font-size: 50px; }
h3 { font-size: 50px; }
h4 { font-size: 24px; }

p {
    margin-bottom: 1rem;
    line-height: 1.4em;
    font-weight: normal;
    font-style: normal;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.nav-menu a.active {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background-white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    display: none;
}

.dropdown:hover::before,
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    font-size: 13px;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background-color: var(--background-gray);
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--background-white);
    transition: var(--transition);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 8px;
    transition: all 0.3s ease;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

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

.lang-btn.active {
    color: var(--background-white);
    background-color: rgba(255, 255, 255, 0.15);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* Theme Toggle */
.theme-toggle-nav {
    display: flex;
    align-items: center;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.theme-toggle svg {
    color: white;
    transition: all 0.3s ease;
}

.sun-icon {
    display: none;
}

.moon-icon {
    display: block;
}

[data-theme="dark"] .sun-icon {
    display: block;
}

[data-theme="dark"] .moon-icon {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-theme-toggle {
    display: none;
}

@media (max-width: 768px) {
    .theme-toggle-nav {
        display: none;
    }

    .mobile-theme-toggle {
        display: flex;
    }
}

/* Hero Section - Orange Tennisplatz */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 350px;
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    object-fit: contain;
}

.hero-title {
    font-size: 36px;
    font-weight: 600;
    color: #FFFFFF !important;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: none;
    animation: fadeInUp 1s ease-out;
}

.hero-title a {
    color: #FFFFFF !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hero-title a:hover {
    opacity: 0.85;
}

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

/* Quick Actions Section */
.quick-actions {
    padding: 80px 0;
    background: var(--background-gray);
}

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

.action-card {
    background: var(--background-white);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .action-card {
    background: var(--background-gray);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.action-card:hover::before {
    transform: scaleX(1);
}

.action-card::after {
    content: '🎾';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    opacity: 0;
    transform: rotate(-20deg) scale(0);
    transition: all 0.4s ease;
}

.action-card:hover::after {
    opacity: 0.15;
    transform: rotate(0deg) scale(1);
}

.action-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 12px 30px rgba(236, 100, 74, 0.25);
    border-color: var(--primary-color);
}

.action-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.action-icon svg {
    width: 64px;
    height: 64px;
    color: var(--primary-color);
}

.action-card h2,
.action-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-style: normal;
}

.action-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.action-card .btn {
    font-size: 14px;
    padding: 12px 30px;
}

/* About Section mit Energie */
.about {
    padding: 100px 0;
    background: var(--background-gray);
    position: relative;
}

.about::before {
    content: '🎾';
    position: absolute;
    font-size: 300px;
    opacity: 0.02;
    top: -50px;
    left: -50px;
    transform: rotate(-25deg);
    pointer-events: none;
}

.about-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.about-content-centered h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 48px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.about-content-centered h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 10px;
}

.about-content-centered p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
}

.about-content-centered .btn {
    display: inline-block;
}

/* Coaches Preview Section mit Energie */
.coaches-preview {
    padding: 100px 0;
    background:
        linear-gradient(to bottom, var(--background-white) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.coaches-preview::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 100, 74, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    pointer-events: none;
}

.section-title {
    text-align: left;
    margin-bottom: 3rem;
    font-size: 40px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 10px;
}

.coaches-slider {
    position: relative;
    overflow: hidden;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    transition: transform 0.5s ease;
    width: 100%;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: -25px;
}

.slider-btn.next {
    right: -25px;
}

.coach-card {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 3px solid transparent;
}

[data-theme="dark"] .coach-card {
    background-color: var(--background-gray);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.coach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
}

.coach-card:hover::before {
    transform: scaleX(1);
}

.coach-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 15px 40px rgba(236, 100, 74, 0.25);
    border-color: var(--primary-color);
}

.coach-card a {
    display: block;
    color: inherit;
}

.coach-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 37%;
    transition: transform 0.8s ease, filter 0.3s ease;
    filter: grayscale(0%);
}

.coach-card:hover .coach-image img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1.05);
}

.coach-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(236, 100, 74, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coach-card:hover .coach-image::after {
    opacity: 1;
}

.coach-card h3 {
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: var(--text-primary);
    margin: 20px 20px 10px;
}

.coach-card h4 {
    font-size: 26px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-primary);
    margin: 20px 20px 10px;
    line-height: 1.3;
}

.coach-card p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    padding: 0 20px 30px;
    line-height: 1.4em;
}

/* Training Philosophy Section */
.training-philosophy {
    padding: 80px 0;
    background: var(--background-gray);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: left;
    max-width: 800px;
    margin: -1rem 0 3rem;
    line-height: 1.6;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.bollettieri-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(236, 100, 74, 0.3);
}

.badge-icon {
    font-size: 32px;
}

.badge-text strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.badge-text span {
    font-size: 13px;
    opacity: 0.9;
}

.lead-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.training-pillars h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: normal;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.pillar-item {
    background: var(--background-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}

[data-theme="dark"] .pillar-item {
    background: var(--background-gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pillar-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(236, 100, 74, 0.1);
    line-height: 1;
}

.pillar-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.pillar-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.training-methods {
    background: var(--background-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .training-methods {
    background: var(--background-gray);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.training-methods h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: normal;
}

.methods-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.methods-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--background-gray);
}

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

.methods-list strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.methods-list span {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cta-box {
    padding: 25px 0;
    text-align: left;
}

.cta-box p {
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-box .btn {
    margin: 0;
}

@media (max-width: 968px) {
    .philosophy-content {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column-reverse;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* SEO Content Section */
.seo-content {
    padding: 80px 0;
    background: var(--background-gray);
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.seo-card {
    background: var(--background-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

[data-theme="dark"] .seo-card {
    background: var(--background-gray);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.seo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    transition: height 0.3s ease;
}

.seo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(236, 100, 74, 0.2);
    border-color: var(--primary-color);
}

.seo-card:hover::before {
    height: 12px;
}

.seo-card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(236, 100, 74, 0.08) 0%, rgba(216, 80, 54, 0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.seo-card:first-child .seo-card-image {
    background: linear-gradient(135deg, rgba(236, 100, 74, 0.08) 0%, rgba(216, 80, 54, 0.12) 100%);
}

.seo-card:last-child .seo-card-image {
    background: linear-gradient(135deg, rgba(255, 214, 0, 0.12) 0%, rgba(236, 100, 74, 0.08) 100%);
}

.seo-card-image::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 100, 74, 0.12) 0%, transparent 70%);
    top: -80px;
    right: -80px;
    transition: all 0.5s ease;
}

.seo-card:hover .seo-card-image::before {
    transform: scale(1.3) rotate(90deg);
}

.seo-card-image::after {
    content: 'TENNIS';
    font-size: 64px;
    font-weight: 900;
    font-family: "Essential Sans Black", "Essential Sans", Arial, sans-serif;
    font-style: italic;
    color: var(--primary-color);
    opacity: 0.15;
    position: absolute;
    letter-spacing: -2px;
    transform: rotate(-8deg);
    transition: all 0.4s ease;
}

.seo-card:hover .seo-card-image::after {
    opacity: 0.25;
    transform: rotate(-5deg) scale(1.05);
}

.seo-card:first-child .seo-card-image::after {
    content: 'TRAINING';
    font-size: 56px;
}

.seo-card:last-child .seo-card-image::after {
    content: 'KIDS CAMP';
    font-size: 50px;
}

.seo-card-image img {
    display: none;
}

.seo-card-content {
    padding: 35px 30px;
}

.seo-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    font-style: normal;
    position: relative;
    display: inline-block;
}

.seo-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 10px;
}

.seo-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.seo-card p:last-of-type {
    margin-bottom: 1.8rem;
}

.seo-card .btn {
    margin-top: 0.5rem;
}

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

    .page-intro-with-image {
        display: flex !important;
        flex-direction: column;
        grid-template-columns: unset;
    }

    .page-intro-image {
        max-width: 300px;
        margin: 0 auto 30px auto;
        order: -1;
    }
}

/* Clubs Banner */
.clubs-banner {
    padding: 60px 0;
    background: var(--background-gray);
}

.clubs-list {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(236, 100, 74, 0.3);
}

.club-item {
    flex: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
    color: var(--background-white);
    padding: 20px 15px;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.club-item:first-child {
    color: var(--background-white);
}

.club-item:last-child {
    border-right: none;
}

/* Full Width Banner for Contact Page */
.clubs-banner-full {
    padding: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 0;
}

.clubs-banner-full .club-item {
    flex: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    padding: 25px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.clubs-banner-full .club-item:last-child {
    border-right: none;
}

@media (max-width: 768px) {
    .clubs-banner-full {
        flex-direction: column;
    }

    .clubs-banner-full .club-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding: 20px 15px;
    }

    .clubs-banner-full .club-item:last-child {
        border-bottom: none;
    }

    .about {
        padding: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .clubs-banner {
        padding: 0;
    }

    .clubs-list {
        flex-direction: column;
        border-radius: 0;
        padding: 0;
    }

    .club-item {
        border-right: none;
        border-bottom: 1px solid var(--background-white);
        font-size: 16px;
        padding: 10px;
    }

    .club-item:last-child {
        border-bottom: none;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    padding: 120px 0 100px 0;
    text-align: center;
    position: relative;
    overflow: visible;
    margin-bottom: 60px;
}

.page-header.header-bg-1 {
    background: url('images/header-1.png');
    background-size: cover;
    background-position: center;
}

.page-header.header-bg-2 {
    background: url('https://images.unsplash.com/photo-1660463529885-581a0d057c76?q=80&w=2148&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
}

.page-header-orange {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 0;
}

.page-header-orange h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-header-orange .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 400;
}

.page-intro-with-image {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.page-intro-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.page-intro-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 10px;
}

.page-intro-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.page-intro-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-header h1 {
    font-size: 64px;
    margin-bottom: 1rem;
    color: var(--background-white);
    position: relative;
    z-index: 2;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
}

.page-header p,
.page-header .subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--background-white);
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Coach Profile */
.coach-profile {
    padding: 80px 0;
    background: var(--background-gray);
    position: relative;
}

.profile-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.profile-image {
    position: relative;
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 12px;
    z-index: -1;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: block;
}

.profile-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.profile-content h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 10px;
}

.profile-content .subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.profile-statement {
    background: linear-gradient(135deg, rgba(236, 100, 74, 0.08) 0%, rgba(255, 214, 0, 0.08) 100%);
    padding: 35px;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
    position: relative;
    box-shadow: 0 4px 15px rgba(236, 100, 74, 0.1);
}

.profile-statement::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.profile-statement .quote {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6em;
    color: var(--text-primary);
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.profile-description {
    margin-bottom: 3rem;
}

.profile-description p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.profile-info {
    margin-bottom: 2.5rem;
}

.profile-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.profile-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-info li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    padding-left: 28px;
    color: var(--text-primary);
    position: relative;
}

.profile-info li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(236, 100, 74, 0.2);
}

.profile-info:last-of-type {
    margin-bottom: 0;
}

.profile-specialties {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(236, 100, 74, 0.2);
}

.profile-specialties h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.profile-specialties > p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 800px;
}

.specialty-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 968px) {
    .specialty-links {
        display: block;
    }

    .specialty-card {
        margin-bottom: 25px;
    }

    .specialty-card:last-child {
        margin-bottom: 0;
    }
}

.specialty-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 35px 25px;
    background: var(--background-white);
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

[data-theme="dark"] .specialty-card {
    background: var(--background-gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(236, 100, 74, 0.15);
    border-top-width: 6px;
}

.specialty-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.specialty-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.specialty-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.profile-contact p {
    font-size: 16px;
    margin-bottom: 0.5rem;
}

.profile-contact a {
    color: var(--primary-color);
    text-decoration: underline;
}

.profile-contact a:hover {
    color: var(--primary-hover);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--background-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--background-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(236, 100, 74, 0.25);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(116, 81, 82, 0.3);
}

.btn-subtle {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-secondary);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    padding: 12px 30px;
}

.btn-subtle:hover {
    background-color: var(--background-gray);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* CTA Section mit Energie und Animation */
.cta {
    padding: 120px 0;
    background:
        linear-gradient(135deg, rgba(236, 100, 74, 0.05) 0%, rgba(255, 214, 0, 0.05) 100%),
        linear-gradient(to bottom, var(--background-light) 0%, var(--background-white) 100%);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '🎾';
    position: absolute;
    font-size: 200px;
    opacity: 0.25;
    top: 10%;
    right: 10%;
    transform: rotate(15deg);
    animation: floatSlow 8s ease-in-out infinite;
}

.cta::after {
    content: '🎾';
    position: absolute;
    font-size: 180px;
    opacity: 0.2;
    bottom: 15%;
    left: 8%;
    transform: rotate(-25deg);
    animation: floatSlowReverse 10s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% {
        transform: rotate(15deg) translateY(0);
    }
    50% {
        transform: rotate(-15deg) translateY(-30px);
    }
}

@keyframes floatSlowReverse {
    0%, 100% {
        transform: rotate(-25deg) translateY(0) translateX(0);
    }
    50% {
        transform: rotate(25deg) translateY(20px) translateX(-20px);
    }
}

.cta h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.cta p {
    font-size: 20px;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.cta .btn {
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    z-index: 1;
}

/* Contact Page */
.contact-intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-gray) 100%);
}

.contact-intro-section h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-page {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-gray) 0%, var(--background-white) 100%);
}

.cta-content-box {
    max-width: 900px;
    margin: 0 auto;
}

.contact-intro-section .cta-content-box {
    text-align: left;
}

.cta-content-box h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.cta-content-box p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-intro-section .cta-features {
    justify-content: flex-start;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-intro p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-centered {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: left;
    margin-bottom: 3rem;
}

.form-header p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.form-header a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-header a:hover {
    color: var(--primary-hover);
}

.info-box {
    background: var(--background-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .info-box {
    background: var(--background-gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.info-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-style: normal;
}

.info-item {
    margin-bottom: 1rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    margin: 0;
    font-size: 16px;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.info-item a:hover {
    color: var(--primary-hover);
}

.locations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.locations-list li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.locations-list li:last-child {
    margin-bottom: 0;
}

.locations-list strong {
    color: var(--text-primary);
    display: inline-block;
    margin-right: 0.3rem;
}

.contact-form {
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--background-gray);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--background-white);
}

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

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

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

/* Minimal Contact Form Design */
.contact-form-minimal::before {
    display: none;
}

.contact-form-minimal .form-group input,
.contact-form-minimal .form-group select,
.contact-form-minimal .form-group textarea {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.contact-form-minimal .form-group input:focus,
.contact-form-minimal .form-group select:focus,
.contact-form-minimal .form-group textarea:focus {
    border-bottom-color: var(--primary-color);
    box-shadow: none;
}

.contact-form-minimal .form-group input::placeholder,
.contact-form-minimal .form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.contact-form-minimal .form-group select {
    color: var(--text-secondary);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 20px;
    padding-right: 25px;
}

.contact-form-minimal .form-group select option {
    background-color: var(--background-white);
    color: var(--text-primary);
    padding: 10px;
}

.contact-form-minimal .form-group select:invalid {
    color: var(--text-light);
    opacity: 0.7;
}

.contact-form-minimal .btn {
    background: var(--background-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 14px 45px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-form-minimal .btn:hover {
    background: var(--primary-color);
    color: var(--background-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(236, 100, 74, 0.25);
}

/* CAPTCHA Styling */
.captcha-group {
    background: rgba(236, 100, 74, 0.03);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid rgba(236, 100, 74, 0.1);
}

.captcha-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

#captchaCanvas {
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: var(--background-white);
}

[data-theme="dark"] #captchaCanvas {
    background: var(--background-gray);
    border-color: #444;
}

.captcha-refresh {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.captcha-refresh:hover {
    background: #d4523d;
    transform: rotate(180deg);
}

.captcha-refresh svg {
    width: 20px;
    height: 20px;
}

.captcha-group input {
    background: var(--background-white) !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-primary) !important;
}

.captcha-group input:focus {
    border-color: var(--primary-color) !important;
}

/* Success Badge */
.success-badge {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border-radius: 12px;
    border-left: 5px solid #4CAF50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.15);
    margin-bottom: 2rem;
    animation: slideIn 0.5s ease-out;
}

.success-badge svg {
    color: #4CAF50;
    flex-shrink: 0;
    margin-top: 2px;
}

.success-badge strong {
    display: block;
    color: #2E7D32;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.success-badge p {
    color: #1B5E20;
    margin: 0;
    line-height: 1.6;
}

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

@media (max-width: 968px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-intro-section h1 {
        font-size: 36px;
    }
}

/* Footer */
footer {
    background-color: rgb(34, 30, 32);
    color: #FFFFFF;
    padding: 50px 0 20px;
    transition: background-color 0.3s ease;
}

[data-theme="dark"] footer {
    background-color: #0a0a0a;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 30px;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-section h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 18px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 14px;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li strong {
    color: #FFFFFF;
    display: inline;
    margin-right: 0.3rem;
}

.footer-contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-locations ul {
    column-count: 2;
    column-gap: 20px;
}

@media (max-width: 768px) {
    .footer-locations ul {
        column-count: 1;
    }
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-color) !important;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--primary-hover) !important;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

@media (max-width: 968px) {
    .actions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        padding: 10px 0;
    }

    .nav-menu a {
        color: var(--background-white);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 5px;
        padding-left: 15px;
        background: transparent;
    }

    .dropdown-menu a {
        color: var(--background-white);
        padding: 0;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        transform: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-image-top,
    .hero-image-bottom {
        width: 50%;
    }

    .hero-title {
        font-size: 40px;
    }

    .about-content h2,
    .section-title,
    .coach-card h3,
    .profile-content h2,
    .page-header h1 {
        font-size: 32px;
    }

    .profile-content h1 {
        font-size: 32px;
    }

    h1 {
        font-size: 32px !important;
    }
    h2 { font-size: 28px !important; }
    h3 { font-size: 24px !important; }

    .coaches-grid {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        display: none;
    }

    .actions-grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}
