/* ========================================
   Tennisanlage Würmtal - Stylesheet
   ======================================== */

/* CSS Variables - Apple-inspired */
:root {
    --color-primary: #1d1d1f;
    --color-primary-light: #f5f5f7;
    --color-accent: #1a472a;
    --color-accent-light: #2d5a3d;
    --color-gold: #c9a227;
    --color-white: #ffffff;
    --color-text: #1d1d1f;
    --color-text-secondary: #6e6e73;
    --color-border: rgba(0, 0, 0, 0.08);
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-medium);
}

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

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

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

.logo-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 400;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
    position: relative;
}

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

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

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

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

.hero {
    position: relative;
    padding: 10rem 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(26, 71, 42, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
}

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

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: -0.01em;
}

.hero-description {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-top: 1rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-cta {
    display: none;
}

/* Hero Button */
.hero-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 24px;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 980px;
    transition: var(--transition-fast);
}

.hero-button:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 71, 42, 0.3);
}

/* Social Proof */
.social-proof {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.proof-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.social-proof-secondary {
    margin-top: 1.5rem;
    gap: 2rem;
    border-top: none;
}

.proof-item-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text);
}

.proof-check {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.hero-decoration {
    display: none;
}

/* ========================================
   Services Section
   ======================================== */

/* ========================================
   Founder Section
   ======================================== */

.founder-section {
    padding: 5rem 1.5rem;
    background: var(--color-primary-light);
}

.founder-container {
    max-width: 700px;
    margin: 0 auto;
}

.founder-section .trainer-section {
    margin-top: 0;
    background: var(--color-white);
}

.founder-intro {
    margin-top: 2rem;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text);
    text-align: center;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* ========================================
   Services Section
   ======================================== */

.services {
    padding: 5rem 1.5rem 6rem;
    background: var(--color-white);
}

.services-container {
    max-width: 520px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    display: none;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Card - Apple Style Horizontal Tiles */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--color-primary-light);
    border-radius: var(--radius-md);
    padding: 24px;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 71, 42, 0.15);
    background: var(--color-white);
}

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

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

.service-content {
    width: 100%;
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 8px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Staggered card animations on load */
.service-card {
    opacity: 0;
    animation: cardFadeIn 0.4s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: var(--color-accent);
    border-radius: var(--radius-lg);
}

.offer-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 980px;
    margin-bottom: 16px;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.price-old {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.price-new {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.cta-subtext {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-white);
    color: var(--color-accent);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 980px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.cta-button:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 71, 42, 0.4);
}

.cta-button:hover svg {
    stroke: var(--color-white);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
}

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

.trainer-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 3rem;
    padding: 28px;
    background: var(--color-primary-light);
    border-radius: var(--radius-md);
    transition: var(--transition-medium);
}

.trainer-section:hover {
    background: var(--color-white);
    box-shadow: 0 8px 24px rgba(26, 71, 42, 0.1);
}

.trainer-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.trainer-initials {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.02em;
}

.trainer-text h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 10px 0;
    letter-spacing: -0.01em;
}

.trainer-text p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.trainer-text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Anlage Section
   ======================================== */

.anlage-section {
    padding: 5rem 1.5rem;
    background: var(--color-white);
}

.anlage-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.anlage-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin: 0.5rem 0 2rem 0;
}

.anlage-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.anlage-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(26, 71, 42, 0.2);
}

.anlage-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 600px) {
    .anlage-section {
        padding: 3rem 1rem;
    }
    
    .anlage-subtitle {
        font-size: 1rem;
    }
    
    .anlage-image-wrapper {
        border-radius: var(--radius-md);
    }
}

/* ========================================
   Standort Section
   ======================================== */

.standort-section {
    padding: 5rem 1.5rem;
    background: var(--color-primary-light);
}

.standort-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.standort-address {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.25rem 0;
}

.standort-note {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin: 0 0 2rem 0;
}

.map-container {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.02em;
}

.map-link span {
    font-family: var(--font-sans);
}

.map-link.apple {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-link.apple:hover {
    background: linear-gradient(180deg, #333333 0%, #1a1a1a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.map-link.google {
    background: linear-gradient(180deg, #4285F4 0%, #2563eb 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-link.google:hover {
    background: linear-gradient(180deg, #5a9dff 0%, #4285F4 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.4);
}

.map-link svg {
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .map-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .map-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
    }
}

.standort-future {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* ========================================
   Sticky Mobile CTA
   ======================================== */

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(26, 71, 42, 0.1);
}

.sticky-cta-button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--color-accent);
    color: #1a2e1c;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.02em;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.sticky-old-price {
    font-weight: 400;
    opacity: 0.7;
    text-decoration: line-through;
    margin-left: 4px;
}

@media (max-width: 600px) {
    .sticky-cta {
        display: block;
    }
    
    .footer {
        padding-bottom: 80px;
    }
}

/* ========================================
   Quick Contact Buttons
   ======================================== */

.quick-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-accent);
}

.contact-button svg {
    opacity: 0.9;
}

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

.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: 4rem 1.5rem 0;
}

.footer-content {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand .logo-icon {
    font-size: 1.5rem;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer-info {
    display: flex;
    gap: 3rem;
    text-align: center;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    max-width: 500px;
    margin: 0 auto;
    padding: 1.25rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    opacity: 0.5;
    letter-spacing: 0.02em;
}

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

@media (max-width: 600px) {
    .header-content {
        padding: 0.6rem 1rem;
    }
    
    .logo-icon {
        font-size: 1.2rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .nav {
        gap: 0.75rem;
    }
    
    .nav a {
        font-size: 0.65rem;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 6.5rem 1.25rem 2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.15;
        margin-bottom: 0.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
    
    .hero-button {
        margin-top: 1.25rem;
        padding: 12px 24px;
        font-size: 12px;
    }
    
    /* Social Proof Mobile */
    .social-proof {
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .proof-number {
        font-size: 1.4rem;
    }
    
    .proof-label {
        font-size: 0.6rem;
    }
    
    .social-proof-secondary {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .proof-item-text {
        font-size: 0.75rem;
        justify-content: center;
    }
    
    /* Services Mobile */
    .services {
        padding: 1.75rem 1rem 2.5rem;
    }
    
    .section-title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-card {
        padding: 20px;
        flex-direction: row;
        align-items: center;
    }
    
    .service-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        margin-bottom: 0;
        margin-right: 14px;
    }
    
    .service-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 1.5rem 1.25rem;
        margin-top: 1.75rem;
        border-radius: 14px;
    }
    
    .offer-badge {
        font-size: 0.6rem;
        padding: 5px 12px;
    }
    
    .cta-headline {
        font-size: 1.1rem;
    }
    
    .price-old {
        font-size: 1rem;
    }
    
    .price-new {
        font-size: 2rem;
    }
    
    .cta-button {
        font-size: 13px;
        padding: 14px 24px;
        width: 100%;
    }
    
    .cta-subtext {
        font-size: 0.7rem;
    }
    
    /* Trainer Section Mobile */
    .trainer-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem 1rem;
        margin-top: 1.5rem;
    }
    
    .trainer-image {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
    
    .trainer-text h3 {
        font-size: 18px;
        margin-top: 10px;
    }
    
    .trainer-text p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 1rem 0;
    }
    
    .footer-content {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-brand .logo-text {
        font-size: 1.1rem;
    }
    
    .quick-contact {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 250px;
    }
    
    .contact-button {
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .footer-column h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-column p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.65rem;
    }
    
    /* Standort Mobile */
    .standort-section {
        padding: 3rem 1.25rem;
    }
    
    .standort-address {
        font-size: 1.1rem;
    }
    
    .map-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .map-link {
        justify-content: center;
    }
    
    /* Sticky CTA Mobile */
    .sticky-cta {
        padding: 10px 12px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
    }
    
    .sticky-cta-button {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* ========================================
   Mobile Touch & Scroll Effects
   ======================================== */

/* Active/tap states for touch devices */
@media (hover: none) and (pointer: coarse) {
    .service-card {
        transition: transform 0.15s ease, background 0.15s ease;
    }
    
    .service-card:active {
        transform: scale(0.97);
        background: #f5f5f5;
    }
    
    .cta-button:active {
        transform: scale(0.96);
        background: var(--color-accent-light);
    }
    
    .nav a:active {
        color: var(--color-accent);
    }
}

/* Scroll-triggered animations */
@supports (animation-timeline: view()) {
    .service-card {
        animation: slideInFromLeft 0.5s ease both;
        animation-timeline: view();
        animation-range: entry 0% entry 100%;
    }
    
    @keyframes slideInFromLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .trainer-section {
        animation: fadeInScale 0.5s ease both;
        animation-timeline: view();
        animation-range: entry 0% entry 100%;
    }
    
    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
}

/* Staggered delays for scroll animations */
@supports (animation-timeline: view()) {
    .service-card:nth-child(1) { animation-delay: 0s; }
    .service-card:nth-child(2) { animation-delay: 0.05s; }
    .service-card:nth-child(3) { animation-delay: 0.1s; }
    .service-card:nth-child(4) { animation-delay: 0.15s; }
    .service-card:nth-child(5) { animation-delay: 0.2s; }
    .service-card:nth-child(6) { animation-delay: 0.25s; }
}

/* Reduced motion preference */
@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;
    }
}

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

.service-card[data-modal] {
    cursor: pointer;
    position: relative;
}

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

.service-card[data-modal]:hover .card-hint {
    opacity: 1;
    transform: translateX(0);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    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: var(--radius-lg);
    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: 36px;
    height: 36px;
    border: none;
    background: var(--color-primary-light);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    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: 600;
    color: var(--color-accent);
    margin-bottom: 1rem;
    padding-right: 2rem;
}

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

@media (max-width: 600px) {
    .modal-card {
        padding: 2rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .modal-text {
        font-size: 0.95rem;
    }
    
    .card-hint {
        opacity: 0.7;
        transform: translateX(0);
        font-size: 0.8rem;
    }
}
