/* ============================================
   MareiChromatics - Premium UI Design 2025
   Modern, Elegant & Distinctive
   ============================================ */

/* CSS Custom Properties - Enhanced Design System */
:root {
    /* Force Light Mode - prevent dark mode on mobile */
    color-scheme: light only;
    /* Core Brand Colors - Refined Palette */
    --color-navy: #2E3B52;
    --color-navy-light: #4A5B73;
    --color-blue: #A8C5D9;
    --color-blue-soft: #C5D9E8;
    --color-rosa: #F0D4DB;
    --color-rosa-deep: #E5B8C4;
    --color-malve: #C4A8BD;
    --color-malve-deep: #A88FA0;
    --color-cream: #FBF9F7;
    --color-ivory: #F5F2EE;
    --color-charcoal: #1E2328;
    --color-text: #2A2F36;
    --color-text-muted: #5A616B;
    
    /* Accent Colors - Vibrant & Distinctive */
    --color-accent-coral: #E8727C;
    --color-accent-teal: #5CBDB6;
    --color-accent-gold: #D4A853;
    --color-accent-peach: #F5B895;
    --color-accent-lavender: #9B8EC2;

    /* Sub-page Hero Colors (brighter variants for page headers) */
    --color-navy-hero: #3B4C6B;
    --color-teal-hero: #4ECDC4;
    --gradient-page-hero: linear-gradient(135deg, var(--color-navy-hero) 0%, var(--color-teal-hero) 50%, var(--color-navy) 100%);

    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    --gradient-primary-glow: linear-gradient(135deg, var(--color-navy) 0%, var(--color-accent-teal) 100%);
    
    --gradient-hero: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(200, 165, 190, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 60% 70% at 80% 60%, rgba(168, 197, 217, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(240, 212, 219, 0.5) 0%, transparent 70%),
        linear-gradient(175deg, var(--color-cream) 0%, var(--color-rosa) 60%, var(--color-malve) 100%);
    
    --gradient-soft: linear-gradient(135deg, var(--color-rosa) 0%, var(--color-blue-soft) 50%, var(--color-cream) 100%);
    --gradient-warm: linear-gradient(135deg, var(--color-rosa-deep) 0%, var(--color-malve) 100%);
    --gradient-cool: linear-gradient(135deg, var(--color-blue) 0%, var(--color-rosa) 100%);
    --gradient-dark: linear-gradient(145deg, var(--color-charcoal) 0%, var(--color-navy) 100%);
    
    /* Glass Effects */
    --glass-light: rgba(255, 255, 255, 0.75);
    --glass-medium: rgba(255, 255, 255, 0.5);
    --glass-dark: rgba(30, 35, 40, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-border-dark: rgba(255, 255, 255, 0.1);
    
    /* Modern Shadows - Layered */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.16), 0 8px 16px rgba(0, 0, 0, 0.08);
    --shadow-2xl: 0 32px 64px rgba(0, 0, 0, 0.2), 0 16px 32px rgba(0, 0, 0, 0.1);
    
    /* Colored Shadows */
    --shadow-glow-navy: 0 8px 32px rgba(46, 59, 82, 0.35);
    --shadow-glow-coral: 0 8px 32px rgba(232, 114, 124, 0.3);
    --shadow-glow-teal: 0 8px 32px rgba(92, 189, 182, 0.3);
    --shadow-glow-gold: 0 8px 32px rgba(212, 168, 83, 0.3);
    
    /* Inner Shadows */
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-inner-lg: inset 0 4px 12px rgba(0, 0, 0, 0.1);
    
    /* Blur Effects */
    --blur-xs: blur(4px);
    --blur-sm: blur(8px);
    --blur-md: blur(16px);
    --blur-lg: blur(24px);
    --blur-xl: blur(40px);
    
    /* Smooth Transitions - Cinematic Feel */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-quint: cubic-bezier(0.83, 0, 0.17, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --transition-fast: 0.15s var(--ease-out-quart);
    --transition-base: 0.3s var(--ease-out-expo);
    --transition-slow: 0.5s var(--ease-out-expo);
    --transition-slower: 0.8s var(--ease-out-expo);
    
    /* Border Radius - Soft & Modern */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 48px;
    --radius-full: 9999px;
    
    /* Spacing - Refined 8pt Grid */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Legacy compatibility */
    --border-radius-xs: var(--radius-xs);
    --border-radius-sm: var(--radius-sm);
    --border-radius-md: var(--radius-md);
    --border-radius-lg: var(--radius-lg);
    --border-radius-xl: var(--radius-xl);
    --border-radius-full: var(--radius-full);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-size: 16px;
}

body {
    font-family: var(--font-body, 'Quicksand', sans-serif);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 500;
}

/* Selection Style */
::selection {
    background: var(--color-rosa);
    color: var(--color-navy);
}

/* Elegant Typography System */
h1, h2, h3 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.5em;
}

h4, h5, h6 {
    font-family: var(--font-body, 'Quicksand', sans-serif);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h4 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.3;
}

h5 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.4;
}

h6 {
    font-size: clamp(0.875rem, 1.8vw, 1.125rem);
    line-height: 1.4;
}

p {
    font-size: clamp(0.95rem, 1.6vw, 1.0625rem);
    line-height: 1.8;
    letter-spacing: 0.01em;
    margin-bottom: 1em;
    color: var(--color-text-muted);
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 700;
    color: var(--color-text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.container-lg {
    max-width: 1400px;
}

.container-sm {
    max-width: 900px;
}

/* ============================================
   Premium Button System
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.5rem);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body, 'Quicksand', sans-serif);
    font-weight: 700;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 52px;
    min-width: 140px;
    isolation: isolate;
}

/* Shimmer Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s var(--ease-out-expo);
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

/* Primary Button - Bold & Confident */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow-navy);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        var(--shadow-glow-navy),
        0 16px 32px rgba(46, 59, 82, 0.25);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(-1px);
    filter: brightness(0.95);
}

/* Secondary Button - Elegant Outline */
.btn-secondary {
    background: var(--glass-light);
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
}

.btn-secondary:hover {
    background: var(--color-navy);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-navy);
}

/* Accent Button - For special CTAs */
.btn-accent {
    background: linear-gradient(135deg, var(--color-accent-coral) 0%, var(--color-accent-peach) 100%);
    color: white;
    box-shadow: var(--shadow-glow-coral);
}

.btn-accent:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 
        var(--shadow-glow-coral),
        0 16px 32px rgba(232, 114, 124, 0.3);
}

/* Ghost Button - Subtle */
.btn-ghost {
    background: transparent;
    color: var(--color-navy);
    border: none;
    padding: 0.75rem 1.25rem;
    min-height: auto;
    min-width: auto;
}

.btn-ghost:hover {
    background: rgba(46, 59, 82, 0.08);
}

.btn-ghost::before {
    display: none;
}

/* Full Width */
.btn.full-width {
    width: 100%;
    display: flex;
}

/* Button Sizes */
.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    min-height: 40px;
    min-width: 100px;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    min-height: 60px;
}

/* ============================================
   Premium Navigation - Floating Glass
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-slow);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-light);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border-bottom: 1px solid var(--glass-border);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.navbar.scrolled::before {
    opacity: 1;
}

.navbar.scrolled {
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nav-logo h1 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 600;
    color: var(--color-navy);
    margin: 0;
    letter-spacing: -0.02em;
    transition: all var(--transition-base);
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo:hover h1 {
    color: var(--color-accent-coral);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-coral), var(--color-accent-teal));
    border-radius: 2px;
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-navy);
}

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

/* CTA Button in Nav */
.nav-link.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
}

.nav-link.cta-button::after {
    display: none;
}

.nav-link.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-navy);
    filter: brightness(1.1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--color-navy);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

/* Language Switcher - Pill Style */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 1rem;
    background: rgba(46, 59, 82, 0.08);
    border-radius: var(--radius-full);
    padding: 4px;
}

.language-switcher button {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 700;
    transition: all var(--transition-fast);
    font-family: var(--font-body, 'Quicksand', sans-serif);
    min-height: 36px;
}

.language-switcher button:hover {
    color: var(--color-navy);
}

.language-switcher button.active {
    background: white;
    color: var(--color-navy);
    box-shadow: var(--shadow-sm);
}

/* Logo Image */
.nav-logo img,
.nav-logo .logo-img {
    max-height: 100px;
    width: auto;
    height: auto;
    max-width: 360px;
    object-fit: contain;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-logo a:hover .logo-img {
    transform: scale(1.03);
    opacity: 0.9;
}

/* ============================================
   Hero Section - Immersive & Dramatic
   ============================================ */
.hero {
    padding: clamp(140px, 20vh, 200px) 0 clamp(80px, 12vh, 120px);
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Floating Orbs Background */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent-coral) 0%, transparent 70%);
    opacity: 0.15;
    top: -200px;
    right: -200px;
    border-radius: 50%;
    filter: blur(60px);
    animation: floatOrb1 20s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-accent-teal) 0%, transparent 70%);
    opacity: 0.12;
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
    filter: blur(50px);
    animation: floatOrb2 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 40px) scale(1.1); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.15); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 70vh;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

/* Staggered Animation for Hero Elements */
.hero-content > * {
    opacity: 0;
    animation: heroReveal 1s var(--ease-out-expo) forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }

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

.hero-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(2.75rem, 8vw, 5rem);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    color: var(--color-navy);
    font-weight: 600;
    letter-spacing: -0.03em;
}

.hero-subtitle-line {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.5rem, 4.5vw, 2.75rem);
    font-style: italic;
    font-weight: 400;
    display: block;
    margin-top: 0.75rem;
    background: linear-gradient(
        135deg,
        var(--color-accent-coral) 0%,
        var(--color-malve-deep) 50%,
        var(--color-accent-teal) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
    animation: gradientShiftText 8s ease infinite;
}

@keyframes gradientShiftText {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Color Guide Highlight - Elegant Underline */
.color-guide-highlight {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-style: italic;
    font-weight: 600;
    color: var(--color-accent-coral);
    display: inline-block;
    position: relative;
    padding: 0 0.15em;
    letter-spacing: 0.03em;
    -webkit-text-fill-color: initial;
    background: none;
}

.color-guide-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-coral), var(--color-accent-teal));
    border-radius: 3px;
    transform: scaleX(0.9);
    transition: transform var(--transition-base);
}

.color-guide-highlight:hover::after {
    transform: scaleX(1);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: var(--color-text-muted);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.8;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    flex-wrap: wrap;
    justify-content: center;
}

/* ============================================
   Color Wheel - Dramatic Visual Element
   ============================================ */
.color-wheel {
    position: absolute;
    width: min(1200px, 100vw);
    height: min(1200px, 100vw);
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--color-navy) 0deg,
        var(--color-navy-light) 30deg,
        var(--color-blue) 60deg,
        var(--color-accent-teal) 90deg,
        var(--color-blue-soft) 120deg,
        var(--color-rosa) 150deg,
        var(--color-accent-coral) 180deg,
        var(--color-rosa-deep) 210deg,
        var(--color-malve) 240deg,
        var(--color-accent-gold) 270deg,
        var(--color-malve-deep) 300deg,
        var(--color-charcoal) 330deg,
        var(--color-navy) 360deg
    );
    filter: blur(80px) saturate(130%);
    opacity: 0;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    transition: 
        transform 1.5s var(--ease-out-expo),
        opacity 1s var(--ease-out-quart),
        filter 1s var(--ease-out-quart);
    pointer-events: none;
    animation: wheelPulse 15s ease-in-out infinite;
}

@keyframes wheelPulse {
    0%, 100% { 
        filter: blur(80px) saturate(130%);
        opacity: 0.2;
    }
    50% { 
        filter: blur(90px) saturate(140%);
        opacity: 0.25;
    }
}

.color-wheel.opened {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.25;
    filter: blur(90px) saturate(140%);
    animation: 
        colorWheelRotate 40s linear infinite,
        wheelPulse 15s ease-in-out infinite;
}

@keyframes colorWheelRotate {
    from { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    to { transform: translate(-50%, -50%) scale(1) rotate(360deg); }
}

/* ============================================
   Section Headers - Elegant & Clear
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 7vw, 5rem);
    position: relative;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
    color: var(--color-navy);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Optional decorative line */
.section-header.with-line::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-coral), var(--color-accent-teal));
    border-radius: 3px;
    margin: 1.5rem auto 0;
}

/* ============================================
   Features Section - Bento-Style Cards
   ============================================ */
.features {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--gradient-warm);
    position: relative;
}

/* Subtle background pattern */
.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(240, 212, 219, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(168, 197, 217, 0.2) 0%, transparent 35%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: left;
    padding: clamp(2rem, 4vw, 2.5rem);
    border-radius: var(--radius-xl);
    background: var(--glass-light);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all var(--transition-slow);
    opacity: 0;
    transform: translateY(40px);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

/* Gradient border effect on hover */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--color-accent-coral), var(--color-accent-teal));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1).animate { transition-delay: 0s; }
.feature-card:nth-child(2).animate { transition-delay: 0.1s; }
.feature-card:nth-child(3).animate { transition-delay: 0.2s; }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(92, 189, 182, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-rosa) 0%, var(--color-blue-soft) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-navy);
    font-size: 1.75rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.feature-card.animate .feature-icon {
    animation: iconBounce 0.6s var(--ease-spring) 0.3s backwards;
}

@keyframes iconBounce {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    font-family: var(--font-body, 'Quicksand', sans-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 0.75rem;
    color: var(--color-navy);
    font-weight: 700;
}

.feature-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    margin-bottom: 0;
}

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

/* ============================================
   About Section - Personal & Warm
   ============================================ */
.about {
    padding: 0;
    padding-left: clamp(2rem, 5vw, 4rem);
    background: white;
    position: relative;
    overflow: hidden;
}

/* Decorative blob */
.about::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.about-text {
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--color-navy);
}

.about-text p {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    margin-bottom: 1.25rem;
    color: var(--color-text);
    line-height: 1.85;
}

.about-image {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    position: relative;
    min-height: 100%;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Certifications in About Section */
.certifications {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: flex-start;
}

.certification-image-link {
    display: block;
    max-width: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(46, 59, 82, 0.1);
    flex-shrink: 0;
}

.certification-image-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.certification-image-link.certification-ils {
    max-width: 160px;
}

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

.certification-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.certification-link:hover {
    transform: translateX(4px);
}

.certification-primary {
    background: linear-gradient(135deg, rgba(46, 59, 82, 0.08) 0%, rgba(168, 197, 217, 0.15) 100%);
    border-color: rgba(46, 59, 82, 0.12);
}

.certification-primary:hover {
    background: linear-gradient(135deg, rgba(46, 59, 82, 0.12) 0%, rgba(168, 197, 217, 0.22) 100%);
    border-color: rgba(46, 59, 82, 0.2);
    box-shadow: var(--shadow-sm);
}

.certification-secondary {
    background: rgba(245, 242, 238, 0.6);
    border-color: rgba(46, 59, 82, 0.08);
}

.certification-secondary:hover {
    background: rgba(245, 242, 238, 0.9);
    border-color: rgba(46, 59, 82, 0.15);
}

.certification-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.certification-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
    min-width: 0;
}

.certification-title {
    font-weight: 600;
    color: var(--color-navy);
    font-size: 0.95rem;
    line-height: 1.3;
}

.certification-subtitle {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.certification-arrow {
    font-size: 1.1rem;
    color: var(--color-navy-light);
    opacity: 0.5;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.certification-link:hover .certification-arrow {
    opacity: 1;
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .certifications {
        flex-direction: row;
        justify-content: center;
    }
    
    .certification-image-link {
        max-width: 200px;
    }
    
    .certification-image-link.certification-ils {
        max-width: 140px;
    }
    
    .certification-link {
        width: 100%;
        max-width: 360px;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .certifications {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .certification-image-link {
        max-width: 150px;
    }
    
    .certification-image-link.certification-ils {
        max-width: 110px;
    }
    
    .certification-link {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    
    .certification-icon {
        font-size: 1.25rem;
    }
    
    .certification-title {
        font-size: 0.875rem;
    }
    
    .certification-subtitle {
        font-size: 0.75rem;
    }
}

/* ============================================
   Process Section - Timeline Style
   ============================================ */
.process {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--gradient-cool);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
    position: relative;
    z-index: 1;
}

/* Connecting line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    z-index: 0;
}

.step {
    text-align: center;
    padding: clamp(1.75rem, 3.5vw, 2.25rem) clamp(1.25rem, 2.5vw, 1.75rem);
    background: white;
    border-radius: var(--radius-xl);
    position: relative;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(1).animate-in { transition-delay: 0s; }
.step:nth-child(2).animate-in { transition-delay: 0.1s; }
.step:nth-child(3).animate-in { transition-delay: 0.2s; }
.step:nth-child(4).animate-in { transition-delay: 0.3s; }

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-glow-navy);
    position: relative;
    transition: all var(--transition-base);
    border: 3px solid white;
}

.step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 
        var(--shadow-glow-navy),
        0 0 0 8px rgba(46, 59, 82, 0.1);
}

.step h3 {
    font-family: var(--font-body, 'Quicksand', sans-serif);
    font-size: clamp(1.1rem, 2.2vw, 1.25rem);
    margin-bottom: 0.75rem;
    color: var(--color-navy);
    font-weight: 700;
}

.step p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Photo Gallery - Cinematic Showcase
   ============================================ */
.photo-gallery-section {
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.photo-gallery-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--color-accent-coral) 0%, transparent 70%);
    opacity: 0.07;
    top: -250px;
    left: -200px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.photo-gallery-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-accent-teal) 0%, transparent 70%);
    opacity: 0.05;
    bottom: -200px;
    right: -100px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.photo-gallery-section .section-header h2 {
    color: white;
}

.photo-gallery-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* Gallery Carousel */
.gallery-carousel {
    max-width: 460px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Main Stage */
.gallery-stage {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 9 / 16;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 24px 64px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Slides */
.gallery-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.9s;
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.gallery-slide.active .gallery-img-wrap img {
    animation: galleryZoomIn 8s cubic-bezier(0.2, 0, 0.3, 1) forwards;
}

@keyframes galleryZoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

.gallery-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Elegant placeholder gradient visible when image is missing or loading */
    background: linear-gradient(135deg,
        rgba(240, 212, 219, 0.12) 0%,
        rgba(196, 168, 189, 0.08) 40%,
        rgba(92, 189, 182, 0.06) 100%);
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
}

/* Caption Overlay — hidden */
.gallery-caption {
    display: none;
}

/* Navigation Arrows - always subtly visible, full on hover */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.45;
}

.gallery-stage:hover .gallery-nav {
    opacity: 1;
}

.gallery-prev { left: clamp(0.75rem, 2vw, 1.5rem); }
.gallery-next { right: clamp(0.75rem, 2vw, 1.5rem); }

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-50%) scale(1.08);
}

.gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* Slide Counter */
.gallery-counter {
    position: absolute;
    top: clamp(0.75rem, 2vw, 1.25rem);
    right: clamp(0.75rem, 2vw, 1.5rem);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body, 'Quicksand', sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full, 100px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-counter-current {
    color: rgba(255, 255, 255, 0.85);
}

.gallery-counter-sep {
    width: 16px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* Thumbnail Strip */
.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    margin-top: clamp(1.25rem, 3vw, 1.75rem);
    padding: 0 1rem;
}

.gallery-thumb {
    width: clamp(36px, 5.5vw, 48px);
    height: clamp(52px, 8vw, 72px);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    opacity: 0.4;
    position: relative;
}

.gallery-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.4s ease;
    pointer-events: none;
}

.gallery-thumb:hover {
    opacity: 0.75;
    border-color: rgba(255, 255, 255, 0.15);
}

.gallery-thumb:hover::after {
    background: transparent;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--color-accent-coral);
    box-shadow: 0 0 0 1px rgba(232, 114, 124, 0.3), 0 4px 12px rgba(232, 114, 124, 0.15);
}

.gallery-thumb.active::after {
    background: transparent;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-stage {
        border-radius: 14px;
        aspect-ratio: 9 / 16;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        opacity: 0.7;
    }

    .gallery-thumb {
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .gallery-stage {
        border-radius: 10px;
        aspect-ratio: 9 / 16;
    }

    .gallery-nav {
        width: 36px;
        height: 36px;
        opacity: 0.8;
    }

    .gallery-thumbs {
        gap: 0.35rem;
    }

    .gallery-thumb {
        width: 44px;
        height: 30px;
        border-radius: 5px;
    }
}


/* ============================================
   Services Section - Premium Pricing Cards
   ============================================ */
.services {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--color-cream);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 50% at 0% 50%, rgba(168, 197, 217, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 100% 50%, rgba(240, 212, 219, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.service-card {
    background: linear-gradient(160deg, white 0%, rgba(240, 212, 219, 0.06) 100%);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 3.5vw, 2.5rem);
    padding-top: calc(clamp(2rem, 3.5vw, 2.5rem) + 1.5rem); /* Extra Platz für Banner */
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Top accent bar - jetzt durch .service-badge Banner ersetzt */

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(92, 189, 182, 0.1);
    border-color: rgba(92, 189, 182, 0.15);
}

/* Featured Card - Bestseller */
.service-card.featured {
    background: linear-gradient(180deg, white 0%, rgba(240, 212, 219, 0.15) 100%);
    border: 2px solid var(--color-accent-gold);
    z-index: 2;
    margin-top: -1rem;
    margin-bottom: -1rem;
    box-shadow:
        0 8px 40px rgba(212, 168, 83, 0.18),
        var(--shadow-lg);
}

.service-card.featured:hover {
    transform: translateY(-12px);
    box-shadow:
        0 16px 48px rgba(212, 168, 83, 0.25),
        var(--shadow-xl);
}

.service-card.featured .btn-primary {
    background: linear-gradient(135deg, var(--color-accent-coral) 0%, var(--color-accent-gold) 100%);
    box-shadow: 0 6px 24px rgba(232, 114, 124, 0.3);
    animation: subtlePulse 3s ease-in-out infinite;
}

.service-card.featured .btn-primary:hover {
    animation: none;
    box-shadow:
        0 8px 32px rgba(232, 114, 124, 0.4),
        0 16px 32px rgba(212, 168, 83, 0.2);
}

@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(232, 114, 124, 0.3); }
    50% { box-shadow: 0 8px 32px rgba(232, 114, 124, 0.45); }
}

/* Service Badges - Als oberer Banner-Balken */
.service-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    font-family: var(--font-body, 'Quicksand', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    z-index: 1;
    background: var(--color-navy);
    color: white;
}

.service-badge.bestseller {
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, #E8B82E 100%);
    color: var(--color-charcoal);
}

.service-badge.premium {
    background: linear-gradient(135deg, var(--color-malve) 0%, var(--color-malve-deep) 100%);
    color: white;
}

.service-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-content h3 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.375rem, 2.5vw, 1.625rem);
    margin-bottom: 0.5rem;
    margin-top: 0.25rem;
    color: var(--color-navy);
    font-weight: 600;
}

.price {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(2.5rem, 4.5vw, 3.25rem);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.tax-note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-text);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.service-features li:hover {
    transform: translateX(4px);
    color: var(--color-navy);
}

.service-features i {
    color: var(--color-accent-teal);
    font-size: 0.875rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-card .btn {
    margin-top: auto;
    width: 100%;
}

@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-card.featured {
        order: -1;
        margin-top: 0;
        margin-bottom: 0;
    }

    .service-card.featured:hover {
        transform: translateY(-12px);
    }
}

/* Desktop: accordion toggle niemals sichtbar */
.service-accordion-toggle {
    display: none;
}

/* Desktop: collapse immer sichtbar */
.service-collapse {
    display: contents;
}

@media (max-width: 768px) {
    /* Grid: einspaltig, kein horizontales Scrollen */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        overflow-x: visible;
        gap: 1rem;
    }

    .service-card {
        min-width: 0;
        font-size: inherit;
    }

    .service-card.featured {
        order: unset;
    }

    /* Accordion Toggle Button */
    .service-accordion-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        margin: 0.75rem 0 0;
        padding: 0.65rem 0 0;
        cursor: pointer;
        color: var(--color-accent-teal);
        font-family: var(--font-body);
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        gap: 0.5rem;
    }

    .service-accordion-toggle:hover {
        color: var(--color-navy);
    }

    .accordion-chevron {
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .service-card.expanded .accordion-chevron {
        transform: rotate(180deg);
    }

    /* Collapsible body */
    .service-collapse {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
    }

    .service-card.expanded .service-collapse {
        max-height: 1200px;
        visibility: visible;
    }

    /* Etwas Abstand zwischen Collapse und Button */
    .service-collapse + .btn {
        margin-top: 1rem;
    }
}

/* ============================================
   Booking Section - Dark & Premium
   ============================================ */
.booking {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.booking::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent-coral) 0%, transparent 70%);
    opacity: 0.08;
    top: -200px;
    right: -200px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.booking::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-accent-teal) 0%, transparent 70%);
    opacity: 0.06;
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
    position: relative;
    z-index: 1;
}

.booking-info h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.25rem;
    color: white;
}

.booking-info > p {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    margin-bottom: 2rem;
    opacity: 0.85;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-item i {
    color: var(--color-accent-teal);
    font-size: 1.25rem;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Form Container - Glass Card */
.form-container {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    padding: clamp(2rem, 4vw, 2.5rem);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-xl);
}

.form-container h3 {
    font-family: var(--font-display, 'Playfair Display', serif);
    color: white;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.selected-service-info {
    text-align: center;
    margin-bottom: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    position: relative;
}

.selected-service-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 4px;
}

.selected-service-name {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.change-service-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: lowercase;
}

.change-service-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.selected-service-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-accent-teal);
}

/* Service Dropdown */
.service-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-dropdown.open {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

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

.service-dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.service-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.service-dropdown-item.selected {
    background: rgba(175, 196, 216, 0.15);
}

.service-dropdown-item.selected .dropdown-service-name {
    color: var(--color-accent-teal);
}

.dropdown-service-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
}

.dropdown-service-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent-teal);
}

.price-display {
    text-align: center;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 1rem;
    transition: all var(--transition-base);
    font-family: var(--font-body, 'Quicksand', sans-serif);
    min-height: 52px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-teal);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(92, 189, 182, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--color-accent-teal);
    flex-shrink: 0;
    border-radius: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.checkbox-group label a {
    color: var(--color-accent-teal);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
}

.checkbox-group label a:hover {
    color: white;
}

/* Language Selection in Booking Form */
.language-selection {
    margin-bottom: 1.5rem;
}

.language-selection > label {
    display: block;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
}

.language-options {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    padding: 0;
    gap: 0.75rem;
    height: 48px;
}

.language-option {
    flex: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
}

.language-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.language-option .language-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    padding: 0 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.language-option:hover .language-btn {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.language-option input[type="radio"]:checked + .language-btn {
    background: var(--color-accent-teal);
    color: white;
    border-color: var(--color-accent-teal);
    box-shadow: 0 2px 12px rgba(92, 189, 182, 0.5);
}

.language-option input[type="radio"]:focus + .language-btn {
    outline: 2px solid var(--color-accent-teal);
    outline-offset: 2px;
}

.language-hint {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Validation state for language selection */
.language-selection.error .language-options {
    animation: shake 0.4s ease-in-out;
}

.language-selection.error .language-btn {
    border-color: var(--color-accent-coral);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.payment-info {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-info i {
    color: var(--color-accent-teal);
    font-size: 1.5rem;
}

/* ============================================
   FAQ Preview Section
   ============================================ */
.faq-preview {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-ivory) 100%);
    padding: clamp(5rem, 10vw, 8rem) 0;
    position: relative;
}

.faq-preview-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.faq-preview-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-preview-content > p {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: var(--color-text-muted);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.7;
}

.common-questions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

/* FAQ Accordion Styles */
.faq-accordion-item {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-accordion-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-rosa);
}

.faq-accordion-item.open {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent-coral);
}

.faq-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body, 'Quicksand', sans-serif);
    font-size: clamp(0.95rem, 1.6vw, 1.0625rem);
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.5;
    min-height: 48px;
    transition: color var(--transition-fast);
}

.faq-accordion-trigger:hover {
    color: var(--color-accent-coral);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--color-accent-coral);
    transition: transform 0.4s var(--ease-out-expo);
}

.faq-accordion-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
    padding: 0 clamp(1.25rem, 2.5vw, 1.5rem);
}

.faq-accordion-item.open .faq-accordion-content {
    max-height: 600px;
    padding: 0 clamp(1.25rem, 2.5vw, 1.5rem) clamp(1.25rem, 2.5vw, 1.5rem);
}

.faq-accordion-content p {
    font-size: clamp(0.9rem, 1.4vw, 0.9375rem);
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
    white-space: pre-line;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: clamp(1rem, 2vw, 1.25rem);
}

.question-item {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.question-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-rosa);
}

.question-item i {
    color: var(--color-accent-coral);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.question-item span {
    color: var(--color-text);
    font-weight: 600;
    line-height: 1.5;
    font-size: 0.9375rem;
}

.faq-note {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.faq-btn i {
    font-size: 1.125rem;
}

@media (max-width: 700px) {
    .common-questions {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Social Proof Bar
   ============================================ */
.social-proof-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.5rem, 3vw, 2rem);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.proof-number {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.1;
}

.proof-label {
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .social-proof-bar {
        gap: clamp(1rem, 3vw, 1.5rem);
        padding: 1rem;
    }

    .proof-divider {
        height: 30px;
    }

    .proof-label {
        font-size: 0.7rem;
    }
}

/* ============================================
   Section Reveal Animations
   ============================================ */
.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.section-reveal-stagger > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.section-reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.section-reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.section-reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.section-reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }

/* ============================================
   Mobile Navigation - Proper CSS
   ============================================ */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(251, 249, 247, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1.5rem 1.25rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        gap: 0.25rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s var(--ease-out-expo),
                    opacity 0.3s var(--ease-out-quart),
                    padding 0.4s var(--ease-out-expo);
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-menu.active {
        display: flex;
        max-height: 400px;
        opacity: 1;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .nav-menu .nav-link {
        padding: 0.875rem 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        border-radius: var(--radius-sm);
        font-size: 1rem;
    }

    .nav-menu .nav-link:hover {
        background: rgba(46, 59, 82, 0.06);
    }

    .nav-menu .nav-link.cta-button {
        margin-top: 0.5rem;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .language-switcher {
        margin-left: 0;
        margin-right: 0.5rem;
    }
}

/* Checkbox Touch Targets */
.checkbox-group {
    min-height: 48px;
    padding: 0.25rem 0;
}

/* ============================================
   Footer - Modern & Elegant
   ============================================ */
.footer {
    background: var(--color-charcoal);
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(1.5rem, 3vw, 2rem);
    color: white;
    position: relative;
}

/* Top gradient line */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-accent-coral),
        var(--color-accent-teal),
        var(--color-accent-gold),
        var(--color-accent-coral)
    );
    background-size: 300% 100%;
    animation: gradientMove 8s linear infinite;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(3rem, 5vw, 4rem);
}

.footer-section h3 {
    font-family: var(--font-display, 'Playfair Display', serif);
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-section h4 {
    font-family: var(--font-body, 'Quicksand', sans-serif);
    color: var(--color-accent-teal);
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-section p {
    margin-bottom: 1.5rem;
    opacity: 0.7;
    line-height: 1.8;
    font-size: 0.9375rem;
    max-width: 280px;
}

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

.footer-section ul li {
    margin-bottom: 0.625rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.footer-section ul li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--color-accent-teal);
    transition: width var(--transition-base);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li a:hover::before {
    width: 12px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--color-accent-teal);
    color: var(--color-charcoal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-teal);
    border-color: transparent;
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

.social-links a i {
    width: 20px;
    height: 20px;
    font-size: 20px;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.5;
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-section:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section:first-child {
        grid-column: span 1;
    }
}

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

/* ============================================
   Responsive Design - Mobile First
   ============================================ */
@media (max-width: 1024px) {
    .about {
        padding-left: 0;
    }
    
    .about-content,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-image {
        order: -1;
        max-height: 400px;
        overflow: hidden;
    }
    
    .about-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
}

@media (max-width: 768px) {
    /* Mobile Logo */
    .nav-logo img,
    .nav-logo .logo-img {
        max-height: 80px;
        max-width: 300px;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(251, 249, 247, 0.98);
        backdrop-filter: var(--blur-lg);
        -webkit-backdrop-filter: var(--blur-lg);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.5s var(--ease-out-expo);
        z-index: 999;
        gap: 1.25rem;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: flex;
        min-width: 48px;
        min-height: 48px;
        justify-content: center;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.25rem;
        padding: 0.875rem 1.25rem;
        width: 100%;
        text-align: center;
        border-radius: var(--radius-md);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: rgba(46, 59, 82, 0.08);
    }
    
    .nav-link.cta-button {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        min-height: 56px;
        font-size: 1rem;
    }
    
    .language-switcher {
        margin-left: auto;
        margin-right: 0.5rem;
        margin-top: 0;
    }
    
    /* Hero Mobile */
    .hero {
        padding: clamp(120px, 18vh, 160px) 0 clamp(60px, 12vh, 100px);
        min-height: auto;
    }
    
    .hero-container {
        min-height: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    /* Touch Targets */
    .btn,
    .nav-link,
    .question-item {
        -webkit-tap-highlight-color: rgba(232, 114, 124, 0.2);
        touch-action: manipulation;
    }
    
    /* Disable hover animations on touch */
    @media (hover: none) {
        .feature-card:hover,
        .step:hover,
        .service-card:hover,
        .question-item:hover {
            transform: none;
        }
        
        .btn:hover {
            transform: none;
            filter: none;
        }
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }
    
    .hero-subtitle-line {
        font-size: clamp(1.25rem, 5.5vw, 1.75rem);
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }
    
    .about-image {
        max-height: 300px;
    }
    
    .form-container {
        padding: 1.5rem 1.25rem;
    }
    
    .price-display {
        font-size: 2.5rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-navy) 100%);
}

/* Performance Optimierungen */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Reduce motion für Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus States für Accessibility */
*:focus-visible {
    outline: 3px solid var(--color-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

.btn:focus-visible,
.nav-link:focus-visible {
    outline: 3px solid var(--color-blue);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .hamburger {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero,
    .features,
    .about,
    .process,
    .services,
    .booking {
        page-break-inside: avoid;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
    pointer-events: none;
}

/* Error Messages */
.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Success State */
.success-message {
    animation: fadeInUp 0.6s ease;
}
