/* ========================================
   Tennisclub Würmtal - Premium Styles
   ======================================== */

/* CSS Variables */
:root {
    --color-dark: #0a0a0a;
    --color-darker: #050505;
    --color-light: #fafafa;
    --color-white: #ffffff;
    --color-accent: #1a5a2e;
    --color-accent-light: #2d7a42;
    --color-gold: #c9a227;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #d4d4d4;
    --color-gray-400: #a3a3a3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #171717;
    
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 80px rgba(0,0,0,0.2);
}

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

/* ========================================
   Tennis Design Elements
   ======================================== */

/* Bouncing Ball Animation */
.ball-bounce {
    animation: ballBounce 2s ease-in-out infinite;
}

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

/* Tennis Racket Icon */
.racket-decoration {
    position: absolute;
    width: 80px;
    height: 160px;
    opacity: 0.1;
    pointer-events: none;
}

.racket-decoration svg {
    width: 100%;
    height: 100%;
}

/* Net Pattern */
.net-pattern {
    position: relative;
    overflow: hidden;
}

.net-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 60px;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 8px,
            rgba(255,255,255,0.03) 8px,
            rgba(255,255,255,0.03) 10px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 8px,
            rgba(255,255,255,0.03) 8px,
            rgba(255,255,255,0.03) 10px
        );
    transform: translateY(-50%);
    pointer-events: none;
}

/* Serve Line Animation */
.serve-line {
    position: absolute;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: serveLine 3s ease-out infinite;
}

@keyframes serveLine {
    0% { height: 0; opacity: 1; }
    50% { height: 100px; opacity: 0.5; }
    100% { height: 150px; opacity: 0; }
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-white);
}

body.nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.italic {
    font-style: italic;
}

/* ========================================
   Typography
   ======================================== */

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-label.center {
    text-align: center;
}

.section-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.section-headline.center {
    text-align: center;
}

/* ========================================
   Header
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s var(--ease-out-expo), background 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-dark);
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.7;
}

.logo-icon {
    height: 2rem;
    width: auto;
}

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

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-600);
    transition: color 0.2s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s var(--ease-out-expo);
}

.nav a:hover,
.nav a.active {
    color: var(--color-dark);
}

.nav a.active::after,
.nav a:hover::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
}

.nav-toggle.active {
    background: rgba(255, 255, 255, 0.1);
}

.nav-toggle.active span {
    background: var(--color-white);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(165deg, var(--color-dark) 0%, #0f2518 50%, var(--color-gray-900) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
    z-index: 999;
    overflow: hidden;
}

/* Decorative elements */
.mobile-nav::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: scale(0);
    transition: transform 0.8s var(--ease-out-expo);
}

.mobile-nav::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(26, 90, 46, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: scale(0);
    transition: transform 0.8s var(--ease-out-expo) 0.1s;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav.active::before,
.mobile-nav.active::after {
    transform: scale(1);
}

/* Tennis ball decoration */
.mobile-nav-decoration {
    position: absolute;
    bottom: 10%;
    right: 8%;
    font-size: 5rem;
    opacity: 0;
    transform: translateY(30px) rotate(-15deg);
    transition: all 0.6s var(--ease-out-expo) 0.4s;
    filter: grayscale(0.3);
}

.mobile-nav.active .mobile-nav-decoration {
    opacity: 0.15;
    transform: translateY(0) rotate(0deg);
}

/* Nav links container */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s var(--ease-out-expo), color 0.3s ease;
    padding: 0.5rem 1.5rem;
    position: relative;
    letter-spacing: -0.01em;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transform: translateY(-50%);
    transition: width 0.3s var(--ease-out-expo);
    border-radius: 2px;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
    color: var(--color-white);
}

.mobile-nav a:hover::before,
.mobile-nav a:focus::before {
    width: 20px;
}

.mobile-nav a.active {
    color: var(--color-gold);
}

.mobile-nav a.active::before {
    width: 20px;
    background: var(--color-gold);
}

.mobile-nav.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active a:nth-child(1) { transition-delay: 0.15s; }
.mobile-nav.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.active a:nth-child(3) { transition-delay: 0.25s; }
.mobile-nav.active a:nth-child(4) { transition-delay: 0.3s; }
.mobile-nav.active a:nth-child(5) { transition-delay: 0.35s; }
.mobile-nav.active a:nth-child(6) { transition-delay: 0.4s; }

/* Mobile nav footer */
.mobile-nav-footer {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out-expo) 0.5s;
}

.mobile-nav.active .mobile-nav-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

.mobile-nav-footer a {
    font-size: 0.85rem !important;
    color: var(--color-gold) !important;
    opacity: 1 !important;
    transform: none !important;
    padding: 0.25rem !important;
    transition: color 0.3s ease !important;
}

.mobile-nav-footer a:hover {
    color: var(--color-white) !important;
}

.mobile-nav-footer a::before {
    display: none;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(26, 90, 46, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(26, 90, 46, 0.2) 0%, transparent 40%);
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-logo {
    height: 140px;
    width: auto;
    margin-bottom: 2.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: brightness(0) invert(1);
    animation: logoBounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes logoBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.1);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
    70% {
        transform: scale(0.9);
    }
    85% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-logo {
        height: 100px;
        margin-bottom: 2rem;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: wordReveal 0.8s var(--ease-out-expo) forwards;
}

.hero-title .word.italic {
    color: var(--color-gold);
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--color-gold);
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
}

.hero-cta:hover {
    background: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gray-400), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ========================================
   Stats Section
   ======================================== */

.stats-section {
    padding: 5rem 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '🎾';
    position: absolute;
    top: 50%;
    left: 5%;
    font-size: 4rem;
    opacity: 0.08;
    transform: translateY(-50%);
    animation: spinSlow 20s linear infinite;
}

.stats-section::after {
    content: '🎾';
    position: absolute;
    top: 50%;
    right: 5%;
    font-size: 3rem;
    opacity: 0.05;
    transform: translateY(-50%);
    animation: spinSlow 25s linear infinite reverse;
}

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

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

.stat-item {
    padding: 1.5rem;
}

.stat-number,
.stat-text {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-accent);
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   About Section
   ======================================== */

.about-section {
    padding: 8rem 0;
    background: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--color-gray-700);
}

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

.text-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-accent);
    transition: gap 0.3s ease;
}

.text-link:hover {
    gap: 0.5rem;
}

.about-image {
    position: relative;
}

.image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.6s var(--ease-out-expo);
}

.about-image:hover .image-wrapper img {
    transform: scale(1.03);
}

/* ========================================
   Trainer Section
   ======================================== */

.trainer-highlight {
    padding: 6rem 0;
    background: var(--color-gray-100);
}

.trainer-card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.trainer-avatar {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-white);
    position: relative;
    transition: transform 0.4s var(--ease-out-expo);
}

.trainer-avatar::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: rotateBorder 10s linear infinite;
    transition: opacity 0.3s ease;
}

.trainer-card:hover .trainer-avatar::after {
    opacity: 1;
}

.trainer-card:hover .trainer-avatar {
    transform: scale(1.05);
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.trainer-role {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.trainer-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.trainer-bio {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.trainer-achievements {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    font-style: italic;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
    padding: 8rem 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Decorative tennis court line */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    transform: translateX(-50%);
}

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

.testimonial-card {
    background: var(--color-gray-100);
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

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

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: -1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-quote {
    transform: scale(1.1) rotate(-5deg);
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-700);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-white);
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
}

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

/* ========================================
   Membership Section
   ======================================== */

.membership-hero {
    padding: 6rem 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.membership-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(26, 90, 46, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 66, 114, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

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

.membership-price-hero {
    margin-bottom: 1rem;
}

.membership-price-hero .price-amount {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 400;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.membership-price-hero .price-period {
    font-size: 1.5rem;
    opacity: 0.8;
}

.membership-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.membership-detail {
    font-size: 1rem;
    opacity: 0.7;
    font-style: italic;
    margin-bottom: 2rem;
}

.membership-cta-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #e6c84a 100%);
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.membership-cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-gray-100) 0%, var(--color-white) 100%);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(26, 90, 46, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.benefits-section .services-grid {
    position: relative;
    z-index: 2;
}

.benefits-section .service-card {
    background: var(--color-white);
    border: 1px solid rgba(26, 90, 46, 0.1);
}

.benefits-section .service-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px rgba(26, 90, 46, 0.1);
}

.benefits-section .service-icon {
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(26, 90, 46, 0.8) 100%);
}

.service-highlight {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-top: 0.75rem;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: 8rem 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(26, 90, 46, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(201, 162, 39, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-white);
}

.price-period {
    font-size: 1.25rem;
    color: var(--color-gray-400);
}

.cta-details {
    font-size: 1rem;
    color: var(--color-gray-400);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--color-white);
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
}

.cta-button:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-gray-500);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--color-gray-900);
    color: var(--color-gray-300);
}

.footer-main {
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-gray-800);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

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

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-bottom: 1.25rem;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray-400);
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

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

.footer-contact p,
.footer-hours p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-contact a {
    color: var(--color-gray-300);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--color-accent-light);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-gray-600);
}

/* ========================================
   Highlights Section (Home)
   ======================================== */

.highlights-section {
    padding: 6rem 0;
    background: var(--color-gray-900);
    position: relative;
    overflow: hidden;
}

.highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(26, 90, 46, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.highlights-section .section-label {
    color: var(--color-gold);
}

.highlights-section .section-headline {
    color: var(--color-white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.75rem;
    border-radius: 16px;
    transition: all 0.3s var(--ease-out-expo);
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    cursor: pointer;
}

.highlight-card .card-hint {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 500;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.highlight-card:hover .card-hint {
    opacity: 1;
    transform: translateX(0);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--color-gray-400);
    line-height: 1.5;
}

.highlights-cta {
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.highlights-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-gold);
    font-size: 1rem;
    transition: gap 0.3s ease;
}

.highlights-link:hover {
    gap: 0.5rem;
}

/* ========================================
   Training Formats Section
   ======================================== */

.training-formats {
    padding: 5rem 0;
    background: var(--color-accent);
    position: relative;
    overflow: hidden;
}

.training-formats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.formats-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.training-formats .section-headline {
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.formats-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.training-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--color-white);
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
}

.training-cta:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.training-cta svg {
    transition: transform 0.3s ease;
}

.training-cta:hover svg {
    transform: translateX(4px);
}

/* Pricing Info */
.pricing-info {
    margin: 2.5rem 0;
}

.pricing-highlight {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-badge {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

.pricing-highlight p {
    color: var(--color-white);
    font-size: 1.1rem;
    margin: 0;
}

.pricing-highlight strong {
    color: var(--color-gold);
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.pricing-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.pricing-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

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

.price-item {
    display: flex;
    flex-direction: column;
}

.price-value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    line-height: 1;
}

.price-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.pricing-details {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.pricing-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-prices {
        gap: 1.5rem;
    }
    
    .price-value {
        font-size: 1.75rem;
    }
}

/* ========================================
   Modal Styles
   ======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-gray-100);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.modal-close:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-accent);
    margin-bottom: 1rem;
    padding-right: 2.5rem;
}

.modal-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray-600);
}

/* ========================================
   Fade In Animations
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }

/* ========================================
   Page Specific: Training
   ======================================== */

.page-header {
    padding: 10rem 0 4rem;
    background: var(--color-gray-100);
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-section {
    padding: 6rem 0;
    background: var(--color-white);
}

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

.service-card {
    background: var(--color-gray-100);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
}

.service-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.service-card .service-note {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-gray-200);
    font-size: 0.85rem;
    color: var(--color-gray-500);
}

.service-card .service-note strong {
    color: var(--color-accent);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-gray-100) 0%, var(--color-white) 100%);
    position: relative;
}

.faq-section::before {
    content: '?';
    position: absolute;
    top: 2rem;
    right: 5%;
    font-size: 20rem;
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--color-accent);
    opacity: 0.04;
    pointer-events: none;
    line-height: 1;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    border: 1px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--color-accent);
}

.faq-item.active {
    background: linear-gradient(135deg, var(--color-white) 0%, #fffef8 100%);
    border-color: var(--color-accent);
    box-shadow: 0 8px 32px rgba(200, 169, 78, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-dark);
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-item.active .faq-question {
    color: var(--color-accent);
}

.faq-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    position: relative;
    flex-shrink: 0;
    background: var(--color-gray-100);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon,
.faq-item.active .faq-icon {
    background: var(--color-accent);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-gray-600);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon::before,
.faq-item:hover .faq-icon::after,
.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: var(--color-dark);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1px;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.75rem;
    padding-left: 2rem;
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    border-top: 1px solid var(--color-gray-200);
    margin: 0 2rem;
    padding-top: 1.25rem;
}

/* ========================================
   Page Specific: Events
   ======================================== */

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

.event-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-out-expo);
}

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

.event-image {
    height: 200px;
    background: var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.event-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.event-card p {
    font-size: 0.9rem;
    color: var(--color-gray-600);
}

/* Success Stories */
.success-section {
    padding: 6rem 0;
    background: var(--color-gray-100);
}

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

.success-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    gap: 1.5rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.success-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.success-content p {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* ========================================
   Page Specific: Anlage
   ======================================== */

.anlage-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

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

.anlage-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.anlage-hero-content {
    color: var(--color-white);
}

.anlage-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.anlage-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
}

/* Galerie Section */
.galerie-section {
    padding: 6rem 0;
    background: var(--color-gray-100);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.galerie-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galerie-item:hover img {
    transform: scale(1.05);
}

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

.anlage-info {
    padding: 6rem 0;
    background: var(--color-white);
}

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

.info-card {
    text-align: center;
    padding: 2rem;
}

.info-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.info-card h3 {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--color-gray-600);
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: var(--color-gray-100);
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.location-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--color-white);
    border-radius: 100px;
    font-weight: 500;
    color: var(--color-dark);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.location-link:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.location-link svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Page Specific: Kontakt
   ======================================== */

.contact-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(26, 90, 46, 0.1);
}

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

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.submit-button:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    background: var(--color-gray-100);
    padding: 2.5rem;
    border-radius: 24px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.contact-item h4 {
    font-size: 0.9rem;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

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

.contact-item a:hover {
    color: var(--color-accent);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .highlights-section {
        padding: 4rem 0;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }
    
    .highlight-card .card-hint {
        opacity: 0.8;
        transform: translateX(0);
        font-size: 0.8rem;
    }
    
    /* Modal Mobile */
    .modal-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .modal-text {
        font-size: 0.95rem;
    }
    
    .modal-close {
        width: 36px;
        height: 36px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number,
    .stat-text {
        font-size: 2.5rem;
    }
    
    .trainer-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .anlage-hero {
        height: 50vh;
    }
    
    .location-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section-headline {
        font-size: 1.75rem;
    }
    
    .hero-cta,
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .faq-section::before {
        font-size: 12rem;
        top: 1rem;
        right: 2%;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
        gap: 1rem;
    }
    
    .faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
        margin: 0 1rem;
        padding-top: 1rem;
        font-size: 0.9rem;
    }
}

/* Compact Camps List */
.camps-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.camp-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-out-expo);
}

.camp-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.camp-emoji {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.camp-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 0.35rem;
}

.camp-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    background: var(--color-gray-100);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 0.25rem;
}

.camp-info p {
    font-size: 0.85rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .camps-compact {
        grid-template-columns: 1fr;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .fade-in {
        opacity: 1;
        transform: none;
    }
}
