
/* ========================================
   fonts.css
   ======================================== */

/* Poppins Font Family */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/assets/fonts/poppins/poppins-v24-latin-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/poppins/poppins-v24-latin-regular.woff2') format('woff2');play
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/poppins/poppins-v24-latin-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/poppins/poppins-v24-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/poppins/poppins-v24-latin-700.woff2') format('woff2');
}

/* Playfair Display Font Family */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/playfair-display/playfair-display-v40-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/playfair-display/playfair-display-v40-latin-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/playfair-display/playfair-display-v40-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/playfair-display/playfair-display-v40-latin-700.woff2') format('woff2');
}


/* ========================================
   index.css
   ======================================== */

/* ========================================
   DJ Website - Hauptstylesheet
   Mobile First Approach
   ======================================== */

/* ========================================
   CSS Variables - Quiet Luxury 2025-26
   ======================================== */
:root {
    /* Primärfarben - Warm & Edel (Pantone 2025: Mocha Mousse) */
    --primary-color: #A67C52;      /* Mocha Mousse - Warm Brown */
    --primary-dark: #8B6239;        /* Darker Mocha */
    --primary-light: #C4A57B;       /* Light Caramel */
    --secondary-color: #F5F0E8;     /* Warm Off-White */
    --secondary-dark: #E8DFD3;      /* Warm Beige */
    --secondary-light: #FDFBF7;     /* Soft Cream */
    --accent-color: #D4A574;        /* Soft Gold */
    --accent-dark: #B8935F;         /* Deep Gold */
    --accent-light: #E8C9A0;        /* Light Gold */
    
    /* Text - Warm Neutrals */
    --text-primary: #2C1810;        /* Rich Dark Brown */
    --text-secondary: #5C4A3D;      /* Medium Brown */
    --text-light: #8B7355;          /* Light Brown */
    --text-white: #FFFFFF;
    --text-dark: #1A0F08;           /* Very Dark Brown */
    
    /* Backgrounds - Warm & Light */
    --bg-primary: #FAF8F5;          /* Warm White Background */
    --bg-secondary: #F5F0E8;        /* Light Beige */
    --bg-dark: #2C1810;             /* Dark Brown for contrast */
    --bg-card: #FFFFFF;             /* Pure White Cards */
    --bg-luxury: linear-gradient(135deg, #FAF8F5 0%, #F5F0E8 100%);
    --bg-glass: rgba(255, 255, 255, 0.3);  /* Mehr Transparenz für Glassmorphism */
    --bg-glass-hover: rgba(255, 255, 255, 0.5);  /* Hover-State für Glass */
    
    /* Borders & Effects */
    --border-color: rgba(166, 124, 82, 0.15);  /* Subtle Mocha */
    --border-accent: var(--primary-color);
    --border-radius: 16px;          /* Soft, modern radius */
    --border-radius-lg: 24px;
    
    /* Shadows - Soft & Warm */
    --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.04);
    --shadow-md: 0 8px 24px rgba(44, 24, 16, 0.06);
    --shadow-lg: 0 16px 48px rgba(44, 24, 16, 0.08);
    --shadow-xl: 0 24px 64px rgba(44, 24, 16, 0.10);
    --shadow-glow: 0 0 40px rgba(166, 124, 82, 0.15);
    --shadow-glass: 0 8px 32px rgba(44, 24, 16, 0.12);
    
    /* Typography Scale */
    --font-primary: 'Poppins', 'SF Pro Display', -apple-system, sans-serif;
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.4rem;
    --font-size-2xl: 1.75rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3.5rem;
    --font-size-5xl: 4.5rem;
    --font-size-hero: clamp(3rem, 10vw, 6rem);
    
    /* Abstände */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Animationen */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* Dark Mode Variables */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f9fafb;
        --text-secondary: #d1d5db;
        --text-light: #9ca3af;
        --bg-primary: #1f2937;
        --bg-secondary: #111827;
        --bg-card: #374151;
        --border-color: #4b5563;
    }
}

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

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
    /* Subtle texture overlay */
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(166, 124, 82, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.02) 0%, transparent 50%);
    min-height: 100vh;
}

/* ========================================
   Typography - Modern Luxury 2025-26
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--font-size-hero);
    font-weight: 300;
    line-height: 0.95;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
}

a:hover {
    color: var(--primary-dark);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Utility Classes - Modern Glassmorphism Buttons
   ======================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-align: center;
    border-radius: 50px;
    transition: all var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    user-select: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(166, 124, 82, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(166, 124, 82, 0.35);
}

.btn-glass {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid rgba(166, 124, 82, 0.2);
    box-shadow: var(--shadow-glass);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}



/* ========================================
   GEMEINSAME ANIMATIONEN (Neu hinzugefügt)
   ======================================== */

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Slide In Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Spin Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scale Up */
@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide Up */
@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   Cookie Banner - Vollständige Styles
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-xl);
    z-index: var(--z-modal);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-content {
    text-align: center;
}

.cookie-content h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 500;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

/* Details/Summary für Cookie-Info */
.cookie-details {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm);
    background: rgba(166, 124, 82, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-details summary {
    cursor: pointer;
    font-weight: 500;
    color: var(--primary-color);
    padding: var(--spacing-xs);
    user-select: none;
    transition: color var(--transition-fast);
    font-size: var(--font-size-sm);
}

.cookie-details summary:hover {
    color: var(--primary-dark);
}

.cookie-details summary::marker {
    color: var(--primary-color);
}

.cookie-details[open] summary {
    margin-bottom: var(--spacing-sm);
}

.cookie-info {
    padding: var(--spacing-sm);
    font-size: var(--font-size-xs);
    line-height: 1.8;
    color: var(--text-secondary);
}

.cookie-info strong {
    color: var(--text-primary);
    font-weight: 600;
    display: inline-block;
    margin-right: var(--spacing-xs);
}

/* Cookie Options */
.cookie-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
    text-align: left;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    padding: var(--spacing-xs);
    border-radius: var(--border-radius);
    transition: background var(--transition-fast);
    cursor: pointer;
}

.cookie-option:hover {
    background: rgba(166, 124, 82, 0.03);
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-option span {
    flex: 1;
    user-select: none;
}

/* Cookie Buttons */
.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: stretch;
    margin-bottom: var(--spacing-md);
}

.btn-cookie-reject {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-weight: 500;
    font-size: var(--font-size-sm);
    background: #6b7280;
    color: white;
    transition: all var(--transition-normal);
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-cookie-reject:hover {
    background: rgba(166, 124, 82, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.btn-cookie-accept {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    font-size: var(--font-size-sm);
    background: transparent;
    color: var(--primary-color);
    transition: all var(--transition-normal);
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-cookie-accept:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-cookie-all {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: var(--font-size-sm);
    background: var(--primary-color);
    color: var(--text-white);
    transition: all var(--transition-normal);
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-cookie-all:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 124, 82, 0.3);
}

/* Cookie Footer */
.cookie-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.cookie-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: var(--font-size-xs);
    transition: color var(--transition-fast);
}

.cookie-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-version {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    opacity: 0.7;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: calc(var(--z-modal) + 1);
    padding: var(--spacing-lg);
    animation: fadeIn 0.3s ease-out;
}

.cookie-settings-modal .modal-content {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-settings-modal h2 {
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    font-size: var(--font-size-2xl);
    font-weight: 500;
}

.cookie-settings-list {
    margin: var(--spacing-lg) 0;
}

.cookie-setting {
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-setting:last-child {
    border-bottom: none;
}

.cookie-setting h3 {
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-base);
    color: var(--text-primary);
    font-weight: 500;
}

.cookie-setting p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.cookie-setting input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.modal-buttons {
    margin-top: var(--spacing-xl);
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
    flex-wrap: wrap;
}

.modal-buttons button {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
}

.modal-buttons button:first-child {
    background: var(--primary-color);
    color: var(--text-white);
}

.modal-buttons button:first-child:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.modal-buttons button:nth-child(2) {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.modal-buttons button:nth-child(2):hover {
    background: var(--bg-primary);
}

.modal-buttons button:last-child {
    background: transparent;
    color: #ef4444;
    border: 1px solid #ef4444;
}

.modal-buttons button:last-child:hover {
    background: #ef4444;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        padding: var(--spacing-lg);
    }
    
    .cookie-buttons {
        flex-direction: column-reverse;
        gap: var(--spacing-xs);
    }
    
    .cookie-buttons button {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    /* Alle akzeptieren prominent */
    .btn-cookie-all {
        order: -1;
    }
    
    .cookie-footer {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
    }
    
    .cookie-settings-modal .modal-content {
        margin: var(--spacing-md);
        padding: var(--spacing-lg);
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-buttons button {
        width: 100%;
    }
}

/* Tablet Breakpoint */
@media (min-width: 641px) and (max-width: 1024px) {
    .cookie-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cookie-buttons button {
        flex: 1;
        min-width: 150px;
    }
}

/* Widerrufen Button */
.btn-cookie-revoke {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid #ef4444;
    border-radius: 50px;
    font-weight: 500;
    font-size: var(--font-size-sm);
    background: transparent;
    color: #ef4444;
    transition: all var(--transition-normal);
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-cookie-revoke:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-1px);
}

/* Anpassung für Cookie-Buttons bei Settings */
.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

/* Mobile Anpassungen */
@media (max-width: 640px) {
    .cookie-buttons {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .cookie-banner {
        background: rgba(36, 39, 48, 0.98);
        border-color: rgba(212, 165, 116, 0.2);
    }
    
    .cookie-content h3 {
        color: var(--primary-light);
    }
    
    .cookie-details {
        background: rgba(212, 165, 116, 0.05);
        border-color: rgba(212, 165, 116, 0.15);
    }
    
    .cookie-option:hover {
        background: rgba(212, 165, 116, 0.08);
    }
    
    .btn-cookie-reject {
        border-color: rgba(212, 165, 116, 0.3);
        color: var(--text-secondary);
    }
    
    .btn-cookie-reject:hover {
        background: rgba(212, 165, 116, 0.1);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
    
    .cookie-settings-modal .modal-content {
        background: var(--bg-dark);
        color: var(--text-primary);
    }
    
    .cookie-setting {
        border-bottom-color: rgba(212, 165, 116, 0.1);
    }
}

/* Focus States für Barrierefreiheit */
.cookie-buttons button:focus-visible,
.cookie-option input:focus-visible,
.modal-buttons button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Animation für Banner schließen */
@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* Smooth Scrollbar für Modal */
.cookie-settings-modal .modal-content::-webkit-scrollbar {
    width: 8px;
}

.cookie-settings-modal .modal-content::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.cookie-settings-modal .modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.cookie-settings-modal .modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========================================
   Navigation - Modern Glass 2025-26
   ======================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(166, 124, 82, 0.05);
    z-index: var(--z-sticky);
    transition: all var(--transition-normal);
}

.main-nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: var(--font-size-xl);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.nav-logo a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: var(--z-modal);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all var(--transition-normal);
    border-radius: 2px;
}

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    transition: left var(--transition-normal);
    z-index: var(--z-fixed);
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: var(--spacing-lg) 0;
}

.nav-link {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

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

.nav-cta {
    background: var(--primary-color);
    color: var(--text-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(166, 124, 82, 0.2);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 124, 82, 0.3);
}

/* ========================================
   Hero Section - Quiet Luxury 2025-26
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-primary);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        var(--bg-primary) 0%,
        rgba(245, 240, 232, 0.5) 50%,
        var(--bg-secondary) 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top right, rgba(212, 165, 116, 0.15), transparent 40%),
        radial-gradient(ellipse at bottom left, rgba(166, 124, 82, 0.1), transparent 40%);
    z-index: -1;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

.hero-contentx {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-xl);
    max-width: 100%;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: var(--spacing-2xl);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-name {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--font-size-hero);
    font-weight: 300;
    line-height: 0.9;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.03em;
}

.hero-name span {
    display: inline-block;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-3xl);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Mobile First für Buttons */
@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-lg);
        margin-bottom: var(--spacing-2xl);
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: var(--font-size-base);
    }
}

.hero-statsx {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(166, 124, 82, 0.15);
    box-shadow: 0 8px 24px rgba(44, 24, 16, 0.08);
    animation: fadeInUp 1s ease-out 0.6s backwards;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--font-size-3xl);
    font-weight: 300;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.stat-label {
    font-size: var(--font-size-xs);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Mobile First - Alles untereinander auf kleinen Geräten */
@media (max-width: 640px) {
    .hero-statsx {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg);
        max-width: 90%;
        margin: 0 auto;
    }
    
    .stat {
        padding: var(--spacing-sm);
        border-bottom: 1px solid rgba(166, 124, 82, 0.1);
    }
    
    .stat:last-child {
        border-bottom: none;
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .hero-contentx {
        padding: var(--spacing-md);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 var(--spacing-md);
    }
    
    .btn {
        width: 100%;
    }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-dark);
    font-size: var(--font-size-xs);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-dark);
    border-radius: 25px;
    position: relative;
    margin-top: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.5);
}

.scroll-icon::after {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--primary-dark);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 1.5s infinite;
}

/* Zusätzliche Mobile-Anpassungen */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-title {
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-name {
        font-size: clamp(2.5rem, 12vw, 4rem);
        letter-spacing: -0.02em;
    }
    
    .hero-description {
        font-size: var(--font-size-base);
        padding: 0 var(--spacing-md);
        margin-bottom: var(--spacing-xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-xs);
        letter-spacing: 2px;
    }
    
    .hero-statsx {
        background: rgba(255, 255, 255, 0.25);
    }
    
    .hero-scroll {
        bottom: var(--spacing-xs);
    }
    
    .scroll-text {
        display: none;
    }
}

/* Tablet Breakpoint */
@media (min-width: 641px) and (max-width: 1024px) {
    .hero-statsx {
        grid-template-columns: repeat(3, 1fr);
        max-width: 90%;
    }
}

@keyframes scrollAnimation {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   Main Content
   ======================================== */
#mainContent {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

/* ========================================
   Footer - Modern Minimal 2025-26
   ======================================== */
.main-footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-lg);
    color: var(--primary-light);
    font-weight: 500;
    font-size: var(--font-size-base);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(166, 124, 82, 0.3);
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    color: var(--primary-light);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    color: var(--text-white);
}

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

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
    font-weight: 400;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(166, 124, 82, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: var(--font-size-sm);
}

/* ========================================
   Media Queries - Tablet
   ======================================== */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
    
    .cookie-options {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }
    
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background: transparent;
        gap: var(--spacing-xl);
        margin: 0;
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-link {
        font-size: var(--font-size-base);
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-statsx {
        grid-template-columns: repeat(3, 1fr);
        background: rgba(255, 255, 255, 0.35);
    }
    
    .stat {
        border-bottom: none !important;
    }
}

/* ========================================
   Media Queries - Desktop
   ======================================== */
@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-statsx {
        gap: var(--spacing-3xl);
    }
}

/* ========================================
   Animationen für Scroll-Effekte
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

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

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   Loader
   ======================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ========================================
   Accessibility
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .main-nav,
    .cookie-banner,
    .hero-scroll,
    .footer-social,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

/* =============================
   DARK MODE for DJ Website
   ============================= */
@media (prefers-color-scheme: dark) {
  :root {
    --primary-color: #D4A574;
    --primary-dark: #B8935F;
    --primary-light: #F0E4C4;
    --secondary-color: #181920;
    --secondary-dark: #23272e;
    --secondary-light: #262a31;
    --accent-color: #A67C52;
    --accent-dark: #8B6239;
    --accent-light: #C4A57B;

    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-light: #9ca3af;
    --text-white: #FFFFFF;
    --text-dark: #f3f4f6;

    --bg-primary: #181920;
    --bg-secondary: #23272e;
    --bg-dark: #111317;
    --bg-card: #23272e;
    --bg-luxury: linear-gradient(135deg, #23272e 0%, #181920 100%);
    --bg-glass: rgba(36, 39, 48, 0.35);
    --bg-glass-hover: rgba(36, 39, 48, 0.5);

    --border-color: #373c47;
    --border-accent: #D4A574;
    --border-radius: 16px;
    --border-radius-lg: 24px;

    --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.10);
    --shadow-md: 0 8px 24px rgba(44, 24, 16, 0.18);
    --shadow-lg: 0 16px 48px rgba(44, 24, 16, 0.24);
    --shadow-xl: 0 24px 64px rgba(44, 24, 16, 0.30);
    --shadow-glow: 0 0 40px rgba(212, 165, 116, 0.18);
    --shadow-glass: 0 8px 32px rgba(212, 165, 116, 0.14);

    --font-primary: 'Poppins', 'SF Pro Display', -apple-system, sans-serif;
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.75rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3.5rem;
    --font-size-5xl: 4.5rem;
    --font-size-hero: clamp(3rem, 10vw, 6rem);
  }

  body {
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: 
      radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.06) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(166, 124, 82, 0.10) 0%, transparent 50%);
  }

  h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
  }

  p {
    color: var(--text-secondary);
  }

  a {
    color: var(--primary-color);
  }
  a:hover {
    color: var(--accent-dark);
  }

  .container {
    background: transparent;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.25);
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--text-white);
  }
  .btn-glass {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--accent-color);
    box-shadow: var(--shadow-glass);
  }
  .btn-glass:hover {
    background: var(--bg-glass-hover);
    color: var(--accent-color);
  }
  .btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
  }
  .btn-outline:hover {
    background: var(--accent-color);
    color: var(--text-dark);
  }

  .cookie-banner {
    background: rgba(36, 39, 48, 0.98);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
  }
  .cookie-content h3 {
    color: var(--primary-color);
  }
  .cookie-content p {
    color: var(--text-secondary);
  }
  .cookie-option {
    color: var(--text-secondary);
  }
  .cookie-option input[type="checkbox"] {
    accent-color: var(--primary-color);
    background: var(--bg-card);
    border-color: var(--primary-color);
  }
  .btn-cookie-accept {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
  }
  .btn-cookie-all {
    background: var(--primary-color);
    color: var(--text-dark);
  }
  .cookie-link {
    color: var(--accent-color);
  }
  .cookie-link:hover {
    color: var(--primary-color);
  }

  .main-nav {
    background: rgba(36, 39, 48, 0.90);
    box-shadow: 0 1px 0 rgba(212, 165, 116, 0.05);
  }
  .main-nav.scrolled {
    background: rgba(36, 39, 48, 0.97);
    box-shadow: var(--shadow-md);
  }
  .nav-logo a {
    color: var(--primary-color);
  }
  .nav-toggle span {
    background: var(--primary-color);
  }
  .nav-menu {
    background: var(--bg-primary);
  }
  .nav-link {
    color: var(--text-primary);
  }
  .nav-link::after {
    background: var(--primary-color);
  }
  .nav-cta {
    background: var(--primary-color);
    color: var(--bg-primary) !important;
  }
  .nav-cta:hover {
    background: var(--accent-color);
    color: var(--text-dark) !important;
  }

  .hero-section {
    background: var(--bg-primary);
  }
  .hero-background {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(36,39,48,0.7) 60%, var(--bg-secondary) 100%);
  }
  .hero-overlay {
    background: radial-gradient(ellipse at top right, rgba(212, 165, 116, 0.18), transparent 40%), radial-gradient(ellipse at bottom left, rgba(166, 124, 82, 0.14), transparent 40%);
  }
  .hero-title {
    color: var(--text-primary);
  }
  .hero-subtitle {
    color: var(--primary-color);
  }
  .hero-name {
    color: var(--text-primary);
  }
  .hero-description {
    color: var(--text-secondary);
  }
  .hero-statsx {
    background: rgba(36,39,48,0.45);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
  }
  .stat-number {
    color: var(--primary-color);
  }
  .stat-label {
    color: var(--text-secondary);
  }
  .scroll-indicator, .scroll-icon {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(36,39,48,0.55);
  }
  .scroll-icon::after {
    background: var(--primary-color);
  }

  #mainContent {
    background: var(--bg-primary);
  }

  .main-footer {
    background: var(--bg-dark);
    color: var(--text-white);
  }
  .main-footer::before {
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  }
  .footer-section h3,
  .footer-section h4 {
    color: var(--primary-color);
  }
  .footer-section p {
    color: rgba(212, 165, 116, 0.7);
  }
  .social-icon {
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
  .social-icon:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
  }
  .footer-links a {
    color: rgba(212, 165, 116, 0.7);
  }
  .footer-links a:hover {
    color: var(--primary-color);
  }
  .footer-bottom {
    color: rgba(212, 165, 116, 0.5);
    border-top: 1px solid var(--primary-color);
  }

  .loader {
    background: var(--bg-primary);
  }
  .loader-spinner {
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
  }

  :focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
}


/* ========================================
   modules.css
   ======================================== */

/* ========================================
   Module Styles
   ======================================== */

/* ========================================
   Services Module - Bento Box 2025-26
   ======================================== */
.services-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

/* Bento Box Card Design */
.service-card {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 28px;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.1);
}

.service-title {
    font-family: var(--font-serif);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    text-align: center;
    font-weight: 500;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-weight: 400;
}

.service-features {
    list-style: none;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border-color);
}

.service-features li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-xl);
    position: relative;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: var(--font-size-sm);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ========================================
   Gallery Module - Luxury Edition
   ======================================== */
.gallery-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: var(--font-size-xs);
    font-weight: 200;
}

.filter-btn.active,
.filter-btn:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1px;
    background: rgba(212, 175, 55, 0.1);
    padding: 1px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all var(--transition-normal);
    background: var(--bg-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: brightness(0.8);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.95) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-lg);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: var(--text-white);
}

.gallery-title {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-xs);
    font-weight: 200;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-date {
    font-size: var(--font-size-xs);
    opacity: 0.6;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* ========================================
   Contact Module - Luxury Edition
   ======================================== */
.contact-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
}

.contact-form {
    background: rgba(26, 26, 26, 0.5);
    padding: var(--spacing-2xl);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 200;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: var(--font-size-xs);
}

.form-control {
    width: 100%;
    padding: var(--spacing-md);
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: var(--text-white);
    font-size: var(--font-size-base);
    transition: all var(--transition-normal);
    font-weight: 200;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.02);
}

.form-control::placeholder {
    color: var(--text-light);
    font-weight: 200;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: var(--spacing-md);
}

.contact-info {
    display: grid;
    gap: var(--spacing-lg);
}

.contact-card {
    background: rgba(26, 26, 26, 0.5);
    padding: var(--spacing-xl);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    font-size: 20px;
}

.contact-details h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: var(--font-size-sm);
}

.contact-details p {
    margin: 0;
    color: var(--text-secondary);
    font-weight: 200;
}

/* ========================================
   Booking Module
   ======================================== */
.booking-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.booking-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.booking-form .form-control {
    background: rgba(255, 255, 255, 0.9);
}

.date-picker {
    position: relative;
}

.calendar-icon {
    position: absolute;
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-secondary);
}

/* ========================================
   Testimonials Module
   ======================================== */
.testimonials-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-text {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    font-style: italic;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    color: var(--primary-color);
    font-size: var(--font-size-3xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.author-event {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.testimonial-rating {
    margin-top: var(--spacing-md);
    color: var(--accent-color);
}

/* ========================================
   About Module
   ======================================== */
.about-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
}

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* ========================================
   Events Module
   ======================================== */
.events-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.events-timeline {
    position: relative;
    padding: var(--spacing-xl) 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.event-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

.event-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.event-content {
    width: 45%;
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
}

.event-date {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    white-space: nowrap;
    font-weight: 600;
}

.event-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.event-location {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
}

.event-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Newsletter Module
   ======================================== */
.newsletter-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-dark);
    color: var(--text-white);
}

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

.newsletter-form {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.newsletter-input {
    flex: 1;
    padding: var(--spacing-md);
    border: none;
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
}

.newsletter-button {
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Media Queries - Tablet
   ======================================== */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 2fr 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   Media Queries - Desktop
   ======================================== */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* ========================================
   Loading States
   ======================================== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ========================================
   Responsive Images
   ======================================== */
.image-container {
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity var(--transition-normal);
}

.image-container img[data-src] {
    opacity: 0;
}

.image-container img.loaded {
    opacity: 1;
}

/* ========================================
   Accordion
   ======================================== */
.accordion {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

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

.accordion-header {
    padding: var(--spacing-lg);
    background: var(--bg-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-normal);
}

.accordion-header:hover {
    background: var(--bg-primary);
}

.accordion-header.active {
    background: var(--primary-color);
    color: var(--text-white);
}

.accordion-icon {
    transition: transform var(--transition-normal);
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    padding: 0 var(--spacing-lg);
}

.accordion-content.active {
    max-height: 500px;
    padding: var(--spacing-lg);
}

/* ========================================
   Tabs
   ======================================== */
.tabs {
    margin-bottom: var(--spacing-2xl);
}

.tab-list {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    gap: var(--spacing-md);
    overflow-x: auto;
}

.tab-button {
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color var(--transition-normal);
}

.tab-button:hover {
    color: var(--text-primary);
}

.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.tab-content {
    padding: var(--spacing-xl) 0;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}



/* ========================================
   about.css
   ======================================== */

/**
 * About Module Styles - Quiet Luxury Design 2025-26
 */

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(166, 124, 82, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Content Grid */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 3px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--border-radius-lg) - 3px);
    transition: transform var(--transition-slow);
}

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

/* Image Overlay */
.image-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.experience-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.badge-number {
    font-family: var(--font-serif);
    font-size: var(--font-size-2xl);
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1;
}

.badge-text {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Text Content */
.about-text {
    padding: var(--spacing-lg);
}

.about-title {
    margin-bottom: var(--spacing-xl);
}

.about-title .subtitle {
    display: block;
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-sm);
}

.about-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.1;
}

.about-intro {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
}

/* Highlights */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.highlight-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.highlight-icon {
    filter: grayscale(1);
    opacity: 0.7;
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.highlight-content p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Mini Stats */
.about-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.05) 0%, rgba(212, 165, 116, 0.03) 100%);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-2xl);
}

.stat-mini {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--font-size-2xl);
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Buttons */
.about-cta {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

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

/* Tablet */
@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
    }
    
    .about-text {
        padding: 0;
    }
    
    .highlight-item:hover {
        transform: translateX(15px);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 5fr 7fr;
    }
    
    .about-image-wrapper {
        position: sticky;
        top: 100px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    /* HIGHLIGHTS AUF MOBILE AUSBLENDEN */
    .about-highlights {
        display: none;
    }
    
    .about-stats-mini {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .stat-mini {
        padding: var(--spacing-sm);
        border-bottom: 1px solid var(--border-color);
    }
    
    .stat-mini:last-child {
        border-bottom: none;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .about-cta .btn {
        width: 100%;
    }
    
    .experience-badge {
        padding: 10px 15px;
    }
    
    .badge-number {
        font-size: var(--font-size-xl);
    }
}

/* ========================================
   Animations
   ======================================== */
.about-section.visible .about-image {
    animation: slideInLeft 0.6s ease-out;
}

.about-section.visible .about-text {
    animation: slideInRight 0.6s ease-out 0.2s backwards;
}

.about-section.visible .highlight-item {
    animation: fadeInUp 0.5s ease-out;
}

.about-section.visible .highlight-item:nth-child(1) {
    animation-delay: 0.3s;
}

.about-section.visible .highlight-item:nth-child(2) {
    animation-delay: 0.4s;
}

.about-section.visible .highlight-item:nth-child(3) {
    animation-delay: 0.5s;
}

/* ========================================
   DARK MODE for About Module
   ======================================== */
@media (prefers-color-scheme: dark) {
  .about-section {
    background: #23272e;
  }
  .about-section::before {
    background: radial-gradient(circle, rgba(166,124,82,0.07) 0%, transparent 60%);
  }
  .about-content {
    /* no change needed */
  }
  .about-image {
    background: linear-gradient(135deg, #d4a574, #a67c52);
  }
  .about-image img {
    /* no change needed */
  }
  .experience-badge {
    background: rgba(36,39,48,0.96);
    color: #f5f6fa;
    box-shadow: 0 10px 30px rgba(44,24,16,0.12);
  }
  .badge-number {
    color: #d4a574;
  }
  .badge-text {
    color: #b0b2b8;
  }
  .about-title .subtitle {
    color: #d4a574;
  }
  .about-title {
    color: #f5f6fa;
  }
  .about-intro {
    color: #b0b2b8;
  }
  .about-highlights {
    /* no change needed */
  }
  .highlight-item {
    background: rgba(36,39,48,0.97);
    border: 1px solid #373c47;
    box-shadow: 0 4px 16px rgba(212,165,116,0.11);
  }
  .highlight-item:hover {
    border-color: #d4a574;
    box-shadow: 0 8px 32px rgba(212,165,116,0.17);
  }
  .highlight-icon {
    color: #d4a574;
    filter: none;
    opacity: 1;
  }
  .highlight-content h4 {
    color: #d4a574;
  }
  .highlight-content p {
    color: #b0b2b8;
  }
  .about-stats-mini {
    background: linear-gradient(135deg, rgba(212,165,116,0.11) 0%, rgba(166,124,82,0.07) 100%);
  }
  .stat-value {
    color: #d4a574;
  }
  .stat-label {
    color: #b0b2b8;
  }
  .about-cta .btn {
    background: linear-gradient(135deg, #d4a574, #a67c52);
    color: #23272e;
    border: none;
  }
  .about-cta .btn:hover {
    background: #23272e;
    color: #d4a574;
    box-shadow: 0 4px 20px rgba(212,165,116,0.16);
  }
}

/* ========================================
   NEUE FEATURES - Am Ende von about.css hinzugefügt
   ======================================== */

/* ========================================
   Lightbox Styles
   ======================================== */
.about-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-lightbox.active {
    opacity: 1;
}

.lightbox-image-container {
    max-width: 90vw;
    max-height: 80vh;
    position: relative;
    animation: lightboxZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-close:focus-visible {
    outline: 2px solid white;
    outline-offset: 4px;
}

.lightbox-caption {
    margin-top: var(--spacing-lg);
    color: white;
    text-align: center;
    font-size: var(--font-size-base);
    max-width: 600px;
    padding: 0 var(--spacing-lg);
}

@keyframes lightboxZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   Counter Animation Enhancement
   ======================================== */
.stat-value {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--font-size-2xl);
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    transition: all 0.3s ease-out;
    font-variant-numeric: tabular-nums;
}

/* Text-only stats (keine Counter-Animation) */
.stat-value[data-text="true"] {
    font-size: var(--font-size-xl);
    font-style: italic;
    opacity: 0;
    animation: fadeInText 0.8s ease-out 0.4s forwards;
}

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

.stat-mini:hover .stat-value {
    transform: scale(1.1);
    color: var(--primary-dark);
}

/* Text-Stats sollen nicht skalieren beim Hover */
.stat-mini:hover .stat-value[data-text="true"] {
    transform: scale(1.05);
}

/* ========================================
   Image Hover Enhancement
   ======================================== */
.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 3px;
    transition: all var(--transition-normal);
}

.about-image:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.about-image:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 5px;
}

.about-image::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.about-image:hover::after,
.about-image:focus-visible::after {
    opacity: 0.8;
}

/* ========================================
   Touch Device Optimizations
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    .about-image::after {
        display: none;
    }
    
    .lightbox-close {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
}

/* ========================================
   Accessibility Enhancements
   ======================================== */
/* Focus States */
.highlight-item:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

.btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* ========================================
   Reduced Motion Support
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .about-lightbox,
    .lightbox-image-container,
    .stat-value,
    .about-image,
    .highlight-item {
        animation: none !important;
        transition: none !important;
    }
    
    .about-image img {
        transform: none !important;
    }
    
    .lightbox-close:hover {
        transform: none !important;
    }
    
    /* Text-Stats sofort anzeigen */
    .stat-value[data-text="true"] {
        opacity: 1 !important;
        animation: none !important;
    }
}

/* ========================================
   Stats Grid Responsive Enhancement
   ======================================== */
.about-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.05) 0%, rgba(212, 165, 116, 0.03) 100%);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

/* Animated background on stats */
.about-stats-mini::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(166, 124, 82, 0.03) 0%, transparent 70%);
    animation: statsGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes statsGlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

/* Mobile optimization for stats */
@media (max-width: 640px) {
    .about-stats-mini {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: var(--spacing-lg);
    }
    
    .stat-mini {
        padding: var(--spacing-md);
        border-bottom: 1px solid rgba(166, 124, 82, 0.1);
        transition: all var(--transition-normal);
    }
    
    .stat-mini:last-child {
        border-bottom: none;
    }
    
    .stat-mini:hover {
        background: rgba(166, 124, 82, 0.05);
        border-radius: var(--border-radius);
    }
}

/* ========================================
   Lightbox Mobile Optimization
   ======================================== */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-image-container {
        max-width: 95vw;
        max-height: 75vh;
    }
    
    .lightbox-caption {
        font-size: var(--font-size-sm);
        padding: 0 var(--spacing-md);
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .about-lightbox,
    .lightbox-close,
    .about-image::after {
        display: none !important;
    }
    
    .about-stats-mini::before {
        display: none;
    }
}

/* ========================================
   High Contrast Mode
   ======================================== */
@media (prefers-contrast: high) {
    .about-image {
        border: 3px solid currentColor;
    }
    
    .lightbox-close {
        border: 3px solid white;
        background: black;
    }
    
    .stat-mini {
        border: 2px solid currentColor;
    }
}

/* ========================================
   Dark Mode Enhancements
   ======================================== */
@media (prefers-color-scheme: dark) {
    .about-lightbox {
        background: rgba(0, 0, 0, 0.97);
    }
    
    .lightbox-close {
        background: rgba(212, 165, 116, 0.1);
        border-color: rgba(212, 165, 116, 0.3);
        color: #d4a574;
    }
    
    .lightbox-close:hover {
        background: rgba(212, 165, 116, 0.2);
    }
    
    .lightbox-caption {
        color: #b0b2b8;
    }
    
    .about-stats-mini::before {
        background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
    }
    
    .stat-mini:hover {
        background: rgba(212, 165, 116, 0.08);
    }
    
    .stat-value[data-text="true"] {
        color: #d4a574;
    }
}

/* ========================================
   Loading State for Image
   ======================================== */
.about-image img {
    background: linear-gradient(90deg, 
        rgba(166, 124, 82, 0.1) 0%, 
        rgba(166, 124, 82, 0.2) 50%, 
        rgba(166, 124, 82, 0.1) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.about-image img[src] {
    animation: none;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}


/* ========================================
   services.css
   ======================================== */

/**
 * Services Module Styles mit integriertem Modal-Kalkulator
 */

/* Container Zentrierung */
.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(180deg, var(--text-white), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-header p {
    color: var(--text-secondary);
    font-weight: 200;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 0 auto 60px auto;
    max-width: 1200px;
    justify-items: center;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 380px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Service Image Container */
.service-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-image-overlay {
    display: none;
}

.service-icon-badge {
    display: none;
}

/* Service Content */
.service-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.service-features li {
    padding: var(--spacing-xs) 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-price {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin: var(--spacing-lg) 0;
    text-align: center;
    font-weight: 200;
    letter-spacing: 1px;
}

.service-price strong {
    color: var(--primary-color);
    font-size: var(--font-size-xl);
    font-weight: 300;
    letter-spacing: 2px;
}



/* Modal Styles */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.service-modal-container {
    background: white;
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-modal.active .service-modal-container {
    transform: scale(1);
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.service-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.service-modal-content {
    padding: 40px;
}

/* Modal Steps */
.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-icon {
    display: none;
}

.modal-header-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 600;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Service Details Grid */
.service-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.details-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.features-list,
.details-list {
    list-style: none;
    padding: 0;
}

.features-list li,
.details-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    color: var(--text-secondary);
}

.check-icon {
    flex-shrink: 0;
    margin-right: 12px;
    color: var(--primary-color);
    margin-top: 2px;
}

/* Modal Calculator - VERBESSERT */
.modal-calculator {
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 10px;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(166, 124, 82, 0.15);
}

.calculator-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #A67C52 0%, #D4A574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.modal-calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

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

.calc-group .form-control {
    width: 100%;
    max-width: 100%; /* Verhindert Überlauf */
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: #1f2937;
    box-sizing: border-box;
}

/* In services.css ergänzen */
.modal-price-display .total-price strong {
    font-size: 2.8rem; /* Etwas kleiner für Spanne */
    display: inline-block;
}

.modal-price-display .total-price {
    line-height: 1.2;
}

/* Fix für Input-Textfarben */
#modalEventDate,
#modalEventDistance {
    color: #1f2937;
    background: white;
}

#modalEventDate[readonly] {
    background: #fafafa;
    color: #1f2937;
    cursor: pointer;
}

/* FIX: Datums- und Uhrzeit-Picker Icons im Dark Mode */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(0.5);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Dark Mode: Icons dunkler machen */
@media (prefers-color-scheme: dark) {
    input[type="date"]::-webkit-calendar-picker-indicator,
    input[type="time"]::-webkit-calendar-picker-indicator {
        filter: invert(0.8) brightness(1.2);
        opacity: 0.9;
    }
    
    input[type="date"]::-webkit-calendar-picker-indicator:hover,
    input[type="time"]::-webkit-calendar-picker-indicator:hover {
        opacity: 1;
        filter: invert(1) brightness(1.3);
    }
    
    /* Hintergrund der Inputs im Dark Mode */
    input[type="date"],
    input[type="time"] {
        background: #2a2e35 !important;
        color: #f5f6fa !important;
        border-color: #373c47 !important;
    }
}

/* Modal Sliders */
.modal-sliders {
    margin-bottom: 30px;
}

.slider-group {
    margin-bottom: 25px;
}

.slider-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 500;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-input {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #A67C52 0%, #D4A574 100%);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-value {
    min-width: 100px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}

/* Modal Extras - VOLLSTÄNDIG KLICKBARE BUTTONS */
.modal-extras {
    margin-bottom: 35px;
    padding: 5px;
    background: rgba(166, 124, 82, 0.03);
    border-radius: 15px;
}

.modal-extras h4 {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.2rem;
    text-align: center;
}

.modal-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.modal-extra-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    overflow: hidden;
}

.modal-extra-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 124, 82, 0) 0%, rgba(212, 165, 116, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-extra-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(166, 124, 82, 0.2);
}

.modal-extra-item:hover::before {
    opacity: 1;
}

.modal-extra-item.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.15) 0%, rgba(212, 165, 116, 0.1) 100%);
}

.modal-extra-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.modal-extra-checkbox:checked ~ .modal-extra-label {
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.15) 0%, rgba(212, 165, 116, 0.1) 100%);
}

.modal-extra-checkbox:checked ~ .modal-extra-label::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: checkBounce 0.3s ease;
}

@keyframes checkBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.modal-extra-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.extra-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.extra-price {
    color: black;
    /* background: linear-gradient(135deg, #B8956A 0%, #D4A574 100%); */
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* AUFFÄLLIGERE Preisanzeige */
.modal-price-display {
    background: linear-gradient(135deg, #A67C52 0%, #D4A574 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(166, 124, 82, 0.3);
}

.modal-price-display::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.price-breakdown-mini {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.breakdown-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.breakdown-line.discount {
    color: #10ffa0;
    font-weight: 600;
}

.total-price {
    text-align: center;
    animation: pulsatePrice 2s ease-in-out infinite;
}

@keyframes pulsatePrice {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.total-price span {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.total-price strong {
    font-size: 3.5rem;
    font-weight: 300;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
    letter-spacing: -2px;
}

/* Calculation Summary im Formular */
.calculation-summary {
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
}

.calculation-summary h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.summary-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.summary-content {
    font-size: 0.95rem;
    line-height: 1.6;
}

.summary-section {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.summary-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-section p {
    margin: 5px 0;
    color: #4b5563;
}

.summary-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.summary-extras {
    margin: 10px 0 0 20px;
    list-style-type: none;
    padding: 0;
}

.summary-extras li {
    margin: 5px 0;
    color: #6b7280;
}

.summary-extras li::before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 5px;
}

.summary-price {
    background: rgba(166, 124, 82, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: none;
}

.total-price-display {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.total-price-display span {
    color: var(--primary-color);
    font-weight: 600;
}

.discount-info {
    color: #10b981;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Form Styles */
.service-request-form {
    margin-top: 20px;
}

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

.form-group {
    margin-bottom: 0;
}

.form-group-full {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 5px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #1f2937;
}

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

.form-group input[readonly] {
    background: #f0f0f0;
    cursor: not-allowed;
    opacity: 0.7;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
    background: #fef2f2;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #A67C52 0%, #D4A574 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(166, 124, 82, 0.3);
}

.btn-secondary {
    background: #f3f4f6;
    color: #4b5563;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

/* Spezieller "Mit diesem Preis anfragen" Button */
.modal-continue-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    position: relative;
    overflow: hidden;
}

.modal-continue-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modal-continue-btn:hover::before {
    width: 300px;
    height: 300px;
}

.modal-continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

.btn.loading .btn-text {
    display: none;
}

.btn .btn-loader {
    display: none;
}

.btn.loading .btn-loader {
    display: inline-block;
}

/* Success State */
.modal-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    margin-bottom: 30px;
}

.modal-success h2 {
    color: #10b981;
    margin-bottom: 15px;
}

.modal-success p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Notifications */
.modal-notification {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    animation: slideInDown 0.3s ease;
}

.modal-notification.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

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

/* Custom Date Picker */
.custom-date-picker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: none;
}

.custom-date-picker.active {
    display: block;
}

.date-picker-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.date-picker-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 0;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.date-picker-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-picker-header h3 {
    margin: 0;
    color: var(--text-primary);
}

.date-picker-close {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
}

.date-picker-wheels {
    display: flex;
    padding: 20px;
    gap: 10px;
}

.picker-column {
    flex: 1;
    text-align: center;
}

.picker-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.picker-roller {
    height: 200px;
    overflow-y: scroll;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    position: relative;
    scroll-snap-type: y mandatory;
}

.picker-item {
    padding: 10px;
    cursor: pointer;
    scroll-snap-align: center;
    transition: all 0.2s;
    color: #6b7280;
}

.picker-item:hover {
    background: #f3f4f6;
}

.picker-item.selected {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.date-picker-footer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.date-picker-footer button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
}

.btn-cancel {
    background: #f3f4f6;
    color: #6b7280;
}

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

/* Responsive */
@media (max-width: 768px) {
    .service-modal-container {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 20px 20px 0 0;
    }
    
    .service-modal-content {
        padding: 30px 20px;
    }
    
    .service-details-grid,
    .modal-calc-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-extras-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .total-price strong {
        font-size: 2.8rem;
    }

    .service-image-container {
        height: 220px;
    }

    .modal-header-image {
        height: 200px;
        border-radius: 12px;
    }

    /* NEU: Gutschein-System auf Mobil */
    .coupon-input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .coupon-input {
        width: 100%;
    }
    
    .btn-apply-coupon {
        width: 100%;
        padding: 14px 25px;
    }
    
    .modal-coupon-section {
        margin: 15px 0;
        padding: 15px;
    }
}

/* =========================
   Dark Mode Anpassungen
   ========================= */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-card: #23272e;
    --text-primary: #f5f6fa;
    --text-secondary: #b0b2b8;
    --primary-color: #a67c52;
    --secondary-color: #d4a574;
    --border-radius-lg: 20px;
    --font-size-xl: 2rem;
    --spacing-xl: 32px;
    --spacing-lg: 24px;
    --spacing-md: 16px;
    --spacing-sm: 8px;
    --spacing-xs: 4px;
  }

  .service-modal-container,
  .date-picker-modal,
  .modal-calculator,
  .modal-extra-item,
  .summary-box,
  .form-group input,
  .form-group textarea {
    background: #23272e !important;
    color: #f5f6fa !important;
    border-color: #373c47 !important;
  }

  .service-modal-content,
  .modal-price-display,
  .calculation-summary,
  .modal-extras,
  .modal-success {
    background: #262a31 !important;
    color: #f5f6fa !important;
  }

  .service-modal-overlay,
  .date-picker-backdrop {
    background: rgba(15, 18, 24, 0.3) !important;
  }

  .breakdown-line.discount,
  .discount-info {
    color: #10ffa0;
  }

  .breakdown-line,
  .summary-section p {
    color: #b0b2b8 !important;
  }

  .service-card {
    background: #23272e !important;
    color: #f5f6fa !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }

  .modal-title,
  .service-title,
  .details-section h3,
  .calc-group label,
  .slider-group label,
  .extra-name {
    color: #f5f6fa !important;
  }

  .modal-continue-btn {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
    color: #fff;
  }

  .service-image-overlay {
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(166, 124, 82, 0.5) 100%
    );
  }

  .modal-header-image {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
}

/* Checkbox sichtbar und farbig – Hell & Dunkelmodus */
input[type="checkbox"] {
  accent-color: var(--primary-color, #A67C52);
  width: 22px;
  height: 22px;
  margin-right: 10px;
  vertical-align: middle;
  cursor: pointer;
}

/* Checkbox-Label Abstand */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* DARK MODE */
@media (prefers-color-scheme: dark) {
  input[type="checkbox"] {
    accent-color: var(--secondary-color, #D4A574);
    background: #23272e;
    border-color: #D4A574;
  }
}

/* GUTSCHEIN-SYSTEM STYLES */
.modal-coupon-section {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F0E8 100%);
    border-radius: 12px;
    border: 2px dashed var(--primary-color);
}

.coupon-container h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: white;
    transition: all 0.3s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.1);
}

.btn-apply-coupon {
    padding: 12px 25px;
    background: linear-gradient(135deg, #A67C52 0%, #D4A574 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply-coupon:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.3);
}

.btn-apply-coupon:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.coupon-feedback {
    margin-top: 10px;
    padding: 0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #A67C52 0%, #D4A574 100%);
}

.coupon-feedback-error {
    color: #dc2626;
    background: #fef2f2;
    padding: 10px 15px;
    border: 1px solid #fecaca;
}

.coupon-feedback-success {
    color: #059669;
    background: #ecfdf5;
    padding: 10px 15px;
    border: 1px solid #a7f3d0;
}

.coupon-feedback-info {
    color: #2C1810;
    background: #f0f9ff;
    padding: 10px 15px;
    border: 1px solid #FDFBF7;
}

.applied-coupon-info {
    margin-top: 15px;
}

.coupon-success-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #E8DFD3 0%, #E8C9A0 100%);
    border: 2px solid #D4A574;
    border-radius: 8px;
    position: relative;
}

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

.coupon-details {
    flex: 1;
}

.coupon-details strong {
    display: block;
    color: #A67C52;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.coupon-details span {
    color: #8B6239;
    font-weight: 600;
}

.btn-remove-coupon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    border: none;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.2s ease;
}

.btn-remove-coupon:hover {
    background: #b91c1c;
    transform: scale(1.1);
}

/* Dark Mode Anpassungen */
@media (prefers-color-scheme: dark) {
    .modal-coupon-section {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-color: #64748b;
    }
    
    .coupon-input {
        background: #334155;
        color: #f1f5f9;
        border-color: #475569;
    }
    
    .coupon-success-box {
        background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
        border-color: #059669;
    }
}


/* ========================================
   seo.css
   ======================================== */

/**
 * SEO Module Styles V5: Interaktive Karte mit Location-Content
 * Mobile-First & Touch-Optimiert
 */

.seo-section {
    background: var(--bg-primary);
    padding: var(--spacing-lg) 0 var(--spacing-2xl) 0;
    margin-top: var(--spacing-lg);
    width: 100%;
    overflow-x: hidden;
}

.seo-dropdown {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg) auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 var(--spacing-sm);
    box-sizing: border-box;
}

.seo-toggle {
    font-size: var(--font-size-base);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    cursor: pointer;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    background: white;
    color: var(--primary-color);
    padding: 0.7em 2em;
    transition: all var(--transition-normal);
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.seo-toggle:hover,
.seo-toggle:focus {
    background: var(--primary-color);
    color: var(--text-white);
    outline: none;
}

.seo-toggle:active {
    transform: scale(0.98);
}

/* Verhindert Abschneiden von Inhalten */
.seo-box-collapsible {
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-lg);
    width: 100%;
    box-sizing: border-box;
}

/* Wenn die Box offen ist, mehr Platz erlauben */
.seo-box-collapsible[aria-expanded="true"] {
    max-height: none !important;
}

.seo-content {
    background: rgba(166, 124, 82, 0.07);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: var(--spacing-md);
    line-height: 1.6;
    box-sizing: border-box;
}

.seo-map-wrapper {
    padding: var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

.seo-map-caption {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
    margin-top: 6px;
    padding: 0 var(--spacing-sm);
    line-height: 1.4;
}

.seo-map-svg {
    width: 100%;
    height: auto;
    display: block;
    max-width: 650px;
    margin: 0 auto;
    touch-action: manipulation;
}

.seo-map-bg1 {
    fill: var(--accent-light, #c4a57b);
    opacity: .2;
}

.seo-map-bg2 {
    fill: var(--primary-color, #a67c52);
    opacity: .08;
}

/* Marker Styles - Touch-Optimiert */
.seo-marker {
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.seo-marker circle {
    transition: all 0.3s ease;
}

.seo-marker:hover circle,
.seo-marker:focus circle,
.seo-marker:active circle {
    r: 6;
    filter: drop-shadow(0 0 4px rgba(166, 124, 82, 0.6));
}

.seo-marker:hover .seo-marker-label-small,
.seo-marker:focus .seo-marker-label-small,
.seo-marker:active .seo-marker-label-small {
    font-weight: 600;
    font-size: 14px;
    fill: var(--primary-color);
}

.seo-marker-label-small {
    font-size: 11px;
    font-family: var(--font-primary, 'Poppins', Arial, sans-serif);
    fill: var(--text-primary, #2c1810);
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.seo-marker-label-small:hover {
    text-decoration: underline;
}

.seo-marker-main {
    fill: var(--primary-color, #a67c52);
}

.seo-marker-secondary {
    fill: var(--accent-color, #d4a574);
}

.seo-marker-tertiary {
    fill: var(--border-accent, #b8935f);
}

/* Location Info Box - Wrapper für smooth Transition */
.seo-location-info-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    margin: 0 var(--spacing-md);
    width: calc(100% - (var(--spacing-md) * 2));
    box-sizing: border-box;
}

.seo-location-info-wrapper.active {
    max-height: 3000px;
}

/* Location Info Box */
.seo-location-info {
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.1), rgba(212, 165, 116, 0.1));
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    position: relative;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.seo-location-info-wrapper.active .seo-location-info {
    opacity: 1;
    transform: translateY(0);
}

.seo-location-close {
    position: absolute;
    top: var(--spacing-xs);
    right: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primary-color);
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    z-index: 10;
}

.seo-location-close:hover,
.seo-location-close:focus {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
    outline: none;
}

.seo-location-close:active {
    transform: rotate(90deg) scale(0.95);
}

.seo-location-title {
    color: var(--primary-color);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    padding-right: 50px;
    line-height: 1.3;
    word-wrap: break-word;
}

.seo-location-text {
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
    line-height: 1.7;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Region Tags */
.seo-region-tags {
    margin-top: var(--spacing-md);
    text-align: left;
    padding: 0 var(--spacing-md) var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

.seo-region-tags-label {
    font-size: var(--font-size-sm);
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.seo-region-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.seo-region-pill {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    color: var(--text-primary);
    padding: 0.6em 1.2em;
    border-radius: 22px;
    font-size: var(--font-size-xs);
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
}

.seo-region-pill:hover,
.seo-region-pill:focus {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    outline: none;
}

.seo-region-pill:active {
    transform: translateY(0) scale(0.98);
}

/* Tablet Optimierung */
@media (min-width: 481px) and (max-width: 768px) {
    .seo-toggle {
        font-size: var(--font-size-base);
        padding: 0.8em 2.5em;
    }
    
    .seo-content {
        padding: var(--spacing-lg);
        font-size: var(--font-size-sm);
    }
    
    .seo-location-title {
        font-size: var(--font-size-lg);
    }
    
    .seo-location-text {
        font-size: var(--font-size-sm);
    }
    
    .seo-region-pill {
        font-size: var(--font-size-sm);
        padding: 0.65em 1.4em;
    }
    
    .seo-marker-label-small {
        font-size: 11px;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .seo-dropdown {
        padding: 0;
    }
    
    .seo-map-wrapper {
        padding: var(--spacing-lg);
    }
    
    .seo-content {
        padding: var(--spacing-lg);
    }
    
    .seo-location-info-wrapper {
        margin: 0 var(--spacing-lg);
        width: calc(100% - (var(--spacing-lg) * 2));
    }
    
    .seo-location-info {
        padding: var(--spacing-lg);
    }
    
    .seo-location-title {
        font-size: var(--font-size-lg);
    }
    
    .seo-location-text {
        font-size: var(--font-size-sm);
    }
    
    .seo-location-close {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }
    
    .seo-region-tags {
        padding: 0 var(--spacing-lg) var(--spacing-lg);
    }
    
    .seo-region-tags-label {
        font-size: var(--font-size-base);
    }
    
    .seo-region-tag-list {
        gap: var(--spacing-md);
    }
    
    .seo-region-pill {
        font-size: var(--font-size-sm);
        padding: 0.5em 1.3em;
        min-height: 40px;
    }
    
    .seo-marker-label-small {
        font-size: 12px;
    }
}

/* Sehr kleine Mobile Geräte */
@media (max-width: 375px) {
    .seo-section {
        padding: var(--spacing-md) 0 var(--spacing-lg) 0;
    }
    
    .seo-toggle {
        font-size: var(--font-size-sm);
        padding: 0.7em 1.5em;
        white-space: normal;
        max-width: 90%;
    }
    
    .seo-content {
        padding: var(--spacing-sm);
        margin: var(--spacing-sm);
        font-size: var(--font-size-xs);
    }
    
    .seo-map-wrapper {
        padding: var(--spacing-sm);
    }
    
    .seo-location-info-wrapper {
        margin: 0 var(--spacing-sm);
        width: calc(100% - (var(--spacing-sm) * 2));
    }
    
    .seo-location-info {
        padding: var(--spacing-sm);
        padding-top: calc(var(--spacing-sm) + 8px);
    }
    
    .seo-location-close {
        width: 40px;
        height: 40px;
        font-size: 22px;
        top: 4px;
        right: 4px;
    }
    
    .seo-location-title {
        font-size: var(--font-size-sm);
        padding-right: 45px;
        margin-bottom: var(--spacing-xs);
    }
    
    .seo-location-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .seo-region-tags {
        padding: 0 var(--spacing-sm) var(--spacing-sm);
        margin-top: var(--spacing-sm);
    }
    
    .seo-region-tags-label {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
    }
    
    .seo-region-tag-list {
        gap: 6px;
    }
    
    .seo-region-pill {
        font-size: 12px;
        padding: 0.5em 0.9em;
        min-height: 36px;
        letter-spacing: 0.3px;
    }
    
    .seo-marker-label-small {
        font-size: 9px;
    }
    
    .seo-map-caption {
        font-size: 11px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .seo-location-info {
        max-height: 60vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Verhindert horizontales Scrollen */
* {
    max-width: 100%;
}

.seo-section *,
.seo-section *::before,
.seo-section *::after {
    box-sizing: border-box;
}

/* Touch-Feedback für bessere UX */
@media (hover: none) and (pointer: coarse) {
    .seo-marker:active circle {
        r: 7;
    }
    
    .seo-region-pill:active {
        background: var(--primary-color);
        color: var(--text-white);
    }
    
    .seo-toggle:active {
        background: var(--primary-color);
        color: var(--text-white);
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .seo-marker circle {
        shape-rendering: geometricPrecision;
    }
    
    .seo-map-svg {
        shape-rendering: geometricPrecision;
    }
}


/* ========================================
   info.css
   ======================================== */

/**
 * Info Module Styles - Quiet Luxury Design für Textinhalte
 * Mit Accordion für Mobile und Tabs für Desktop
 */

/* ========================================
   Info Section Base
   ======================================== */
.info-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

/* ========================================
   Tab Navigation - Desktop Only
   ======================================== */
.info-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

/* Tab Navigation auf Mobile ausblenden */
.tab-nav {
    display: none;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-normal);
    position: relative;
}

.tab-button:hover {
    color: var(--primary-color);
    background: rgba(166, 124, 82, 0.05);
}

.tab-button.active {
    color: var(--primary-color);
    background: rgba(166, 124, 82, 0.1);
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.tab-button.active::after {
    transform: scaleX(1);
}

.tab-icon {
    filter: grayscale(1);
    opacity: 0.7;
    font-size: 1.2rem;
}

.tab-label {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Tab Content - Shared
   ======================================== */
.tab-content {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.tab-panel.active {
    display: block;
}

/* Tab Panels auf Mobile komplett ausblenden */
@media (max-width: 767px) {
    .tab-panel {
        display: none !important;
    }
}

/* ========================================
   MOBILE: Accordion Style
   ======================================== */
@media (max-width: 767px) {
    .info-tabs {
        padding: 0 10px; /* GEÄNDERT: von 15px auf 10px */
    }
    
    .tab-content {
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
    
    /* Accordion Header */
    .accordion-item {
        background: white;
        border-radius: var(--border-radius-lg);
        margin-bottom: var(--spacing-sm); /* GEÄNDERT: von md auf sm */
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all var(--transition-normal);
    }
    
    .accordion-item.active {
        box-shadow: var(--shadow-md);
    }
    
    .accordion-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: var(--spacing-md); /* GEÄNDERT: von lg auf md */
        cursor: pointer;
        user-select: none;
        background: white;
        border: none;
        width: 100%;
        text-align: left;
        transition: all var(--transition-normal);
        min-height: 60px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .accordion-header:active {
        background: rgba(166, 124, 82, 0.05);
    }
    
    .accordion-title {
        display: flex;
        align-items: center;
        gap: var(--spacing-md);
        flex: 1;
    }
    
    .accordion-icon {
        font-size: 1.5rem;
        color: var(--primary-color);
        flex-shrink: 0;
    }
    
    .accordion-label {
        font-size: var(--font-size-base);
        font-weight: 600;
        color: var(--text-primary);
        letter-spacing: 0.5px;
    }
    
    .accordion-item.active .accordion-label {
        color: var(--primary-color);
    }
    
    .accordion-toggle {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(166, 124, 82, 0.1);
        border-radius: 50%;
        transition: all var(--transition-normal);
        flex-shrink: 0;
    }
    
    .accordion-toggle svg {
        width: 20px;
        height: 20px;
        fill: var(--primary-color);
        transition: transform var(--transition-normal);
    }
    
    .accordion-item.active .accordion-toggle {
        background: var(--primary-color);
    }
    
    .accordion-item.active .accordion-toggle svg {
        fill: white;
        transform: rotate(180deg);
    }
    
    /* Accordion Content */
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .accordion-item.active .accordion-content {
        max-height: 5000px; /* Große Zahl für Animation */
    }
    
    .accordion-body {
        padding: 0 var(--spacing-md) var(--spacing-md); /* GEÄNDERT: von lg auf md */
    }
    
    /* Reading Time Badge auf Mobile */
    .accordion-meta {
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
        margin-top: var(--spacing-xs);
        font-size: var(--font-size-xs);
        color: var(--text-secondary);
    }
    
    .reading-time-mobile {
        padding: 2px 8px;
        background: rgba(166, 124, 82, 0.1);
        border-radius: 12px;
        font-weight: 500;
        color: var(--primary-color);
    }
}

/* ========================================
   Article Styles
   ======================================== */
.info-article {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--border-color);
}

.article-header h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.article-lead {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

.article-content {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--text-secondary);
}

.content-block {
    margin-bottom: var(--spacing-xl);
}

.content-block h4 {
    font-family: var(--font-serif);
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.content-block p {
    margin-bottom: var(--spacing-md);
    text-align: justify;
}

/* ========================================
   Quote Block
   ======================================== */
.info-quote {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.05) 0%, rgba(212, 165, 116, 0.03) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    position: relative;
}

.info-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: var(--font-serif);
}

.info-quote p {
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.info-quote cite {
    display: block;
    text-align: right;
    color: var(--primary-color);
    font-weight: 500;
}

/* ========================================
   Styled List
   ======================================== */
.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    padding: var(--spacing-md) 0;
    padding-left: var(--spacing-xl);
    position: relative;
    border-bottom: 1px solid rgba(166, 124, 82, 0.1);
}

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

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================================
   Highlight Box - AUSGEBLENDET AUF MOBILE
   ======================================== */
.info-highlight {
    display: none;
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text h5 {
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

/* ========================================
   Process Timeline
   ======================================== */
.process-timeline {
    position: relative;
    padding: var(--spacing-xl) 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.timeline-item {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-color);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding: var(--spacing-md) 0;
}

.timeline-content h4 {
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Equipment Grid
   ======================================== */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.equipment-category {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.equipment-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.equipment-category h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.equipment-list {
    list-style: none;
    padding: 0;
}

.equipment-list li {
    padding: var(--spacing-sm) 0;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    position: relative;
    padding-left: var(--spacing-lg);
}

.equipment-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ========================================
   Genres Showcase
   ======================================== */
.genres-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
}

.genre-card {
    padding: var(--spacing-xl);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.genre-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.genre-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

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

.genre-card h4 {
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    font-weight: 500;
}

.genre-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.genre-tags span {
    padding: 4px 12px;
    background: rgba(166, 124, 82, 0.1);
    border-radius: 20px;
    font-size: var(--font-size-xs);
    color: var(--primary-color);
    font-weight: 500;
}

/* ========================================
   Info Note & CTA
   ======================================== */
.info-note {
    padding: var(--spacing-lg);
    background: rgba(166, 124, 82, 0.05);
    border-radius: var(--border-radius);
    margin-top: var(--spacing-xl);
}

.info-note p {
    margin: 0;
    color: var(--text-secondary);
}

.info-cta-box {
    text-align: center;
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    margin-top: var(--spacing-2xl);
}

.info-cta-box h4 {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.info-cta-box p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

/* ========================================
   Responsive Design - TABLET+
   ======================================== */
@media (min-width: 768px) {
    /* Accordion ausblenden, Tabs anzeigen */
    .accordion-item {
        display: none !important;
    }
    
    .tab-nav {
        display: flex;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-2xl);
        overflow-x: auto;
        padding-bottom: var(--spacing-sm);
        border-bottom: 2px solid var(--border-color);
        justify-content: center;
    }
    
    .tab-content {
        background: var(--bg-card);
        padding: var(--spacing-2xl);
        box-shadow: var(--shadow-md);
    }
    
    .tab-button {
        padding: var(--spacing-md) var(--spacing-2xl);
    }
    
    /* Info Highlight ab Tablet anzeigen */
    .info-highlight {
        display: flex;
        gap: var(--spacing-lg);
        padding: var(--spacing-xl);
        background: rgba(166, 124, 82, 0.05);
        border-radius: var(--border-radius-lg);
        margin: var(--spacing-2xl) 0;
        align-items: flex-start;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-sm);
    }
    
    .equipment-grid,
    .genres-showcase {
        grid-template-columns: 1fr;
    }
    
    .content-block p {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .tab-nav {
        justify-content: center;
    }
    
    .tab-button {
        padding: var(--spacing-md) var(--spacing-2xl);
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-section.visible .timeline-item {
    animation: slideInLeft 0.5s ease-out;
}

.info-section.visible .timeline-item:nth-child(odd) {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   DARK MODE for Info Module
   ======================================== */
@media (prefers-color-scheme: dark) {
  .info-section {
    background: linear-gradient(180deg, #23272e 0%, #181920 100%);
  }

  .tab-nav {
    border-bottom: 2px solid #373c47;
  }
  .tab-button {
    color: #b0b2b8;
    background: transparent;
  }
  .tab-button:hover {
    color: #d4a574;
    background: rgba(212,165,116,0.08);
  }
  .tab-button.active {
    color: #d4a574;
    background: rgba(212,165,116,0.13);
  }
  .tab-button::after {
    background: #d4a574;
  }
  .tab-icon {
    filter: none;
    opacity: 1;
    color: #d4a574;
  }
  .tab-label {
    color: #d4a574;
  }

  .tab-content {
    background: #23272e;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.18);
  }
  
  /* Accordion Dark Mode */
  .accordion-item {
    background: #23272e;
    box-shadow: 0 2px 10px rgba(44, 24, 16, 0.12);
  }
  .accordion-item.active {
    box-shadow: 0 4px 15px rgba(44, 24, 16, 0.18);
  }
  .accordion-header {
    background: #23272e;
  }
  .accordion-header:active {
    background: rgba(212, 165, 116, 0.08);
  }
  .accordion-label {
    color: #f5f6fa;
  }
  .accordion-item.active .accordion-label {
    color: #d4a574;
  }
  .accordion-icon {
    color: #d4a574;
  }
  .accordion-toggle {
    background: rgba(212, 165, 116, 0.15);
  }
  .accordion-item.active .accordion-toggle {
    background: #d4a574;
  }
  .accordion-meta {
    color: #b0b2b8;
  }
  .reading-time-mobile {
    background: rgba(212, 165, 116, 0.15);
    color: #d4a574;
  }
  
  .article-header {
    border-bottom: 1px solid #373c47;
  }
  .article-header h3,
  .content-block h4,
  .highlight-text h5,
  .timeline-content h4,
  .equipment-category h4,
  .genre-card h4,
  .info-cta-box h4 {
    color: #f5f6fa;
  }
  .article-lead,
  .article-content,
  .content-block p,
  .timeline-content p,
  .equipment-list li,
  .genre-card p,
  .info-note p,
  .info-cta-box p {
    color: #b0b2b8;
  }

  .info-quote {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.09) 0%, rgba(166, 124, 82, 0.07) 100%);
    border-left: 4px solid #d4a574;
  }
  .info-quote::before {
    color: #d4a574;
  }
  .info-quote p {
    color: #d4a574;
  }
  .info-quote cite {
    color: #d4a574;
  }

  .styled-list li {
    border-bottom: 1px solid rgba(212,165,116,0.11);
    color: #f5f6fa;
  }
  .styled-list li::before {
    color: #d4a574;
  }

  .info-highlight {
    background: rgba(212, 165, 116, 0.08);
  }
  .highlight-icon {
    color: #d4a574;
  }

  .process-timeline::before {
    background: linear-gradient(180deg, #d4a574 0%, #a67c52 100%);
  }
  .timeline-marker {
    background: #23272e;
    border: 3px solid #d4a574;
    color: #d4a574;
  }
  .timeline-content h4 {
    color: #d4a574;
  }
  .timeline-content p {
    color: #b0b2b8;
  }

  .equipment-category {
    background: rgba(36, 39, 48, 0.96);
    border: 1px solid #373c47;
  }
  .equipment-category:hover {
    border-color: #d4a574;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.09);
  }
  .equipment-list li::before {
    color: #d4a574;
  }

  .genres-showcase .genre-card {
    background: #23272e;
    border: 1px solid #373c47;
  }
  .genre-card:hover {
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.18);
    border-color: #d4a574;
  }
  .genre-icon {
    color: #d4a574;
  }
  .genre-tags span {
    background: rgba(212, 165, 116, 0.17);
    color: #d4a574;
  }

  .info-note {
    background: rgba(212, 165, 116, 0.09);
  }
  .info-note p {
    color: #b0b2b8;
  }
  .info-cta-box {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.14) 0%, rgba(166, 124, 82, 0.07) 100%);
  }
  .info-cta-box h4 {
    color: #d4a574;
  }
  .info-cta-box p {
    color: #b0b2b8;
  }
}

/* ========================================
   Accessibility & Features
   ======================================== */
.tab-button:focus-visible,
.accordion-header:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    z-index: 1;
}

.tab-panel:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .tab-panel,
    .tab-button,
    .accordion-item,
    .accordion-content,
    .accordion-toggle svg,
    .timeline-item,
    .equipment-category,
    .genre-card {
        animation: none !important;
        transition: none !important;
    }
    
    .tab-panel.active {
        animation: none;
    }
    
    .accordion-content {
        transition: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .tab-button {
        border: 2px solid currentColor;
    }
    
    .tab-button.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }
    
    .accordion-item {
        border: 2px solid currentColor;
    }
}

/* Print Styles */
@media print {
    .tab-nav,
    .accordion-header {
        display: none;
    }
    
    .tab-panel,
    .accordion-content {
        display: block !important;
        max-height: none !important;
        page-break-before: always;
    }
    
    .tab-panel:first-child,
    .accordion-item:first-child .accordion-content {
        page-break-before: avoid;
    }
}


/* ========================================
   faq.css
   ======================================== */

/**
 * FAQ Module Styles
 * Mobile-First Design mit Mocha Mousse Farbpalette
 */

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FAF8F5 0%, #F5F0E8 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(166, 124, 82, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Container */
.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.faq-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #2C1810;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.faq-header .section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: #A67C52;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Container */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

/* Category */
.faq-category {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-category:hover {
    box-shadow: 0 8px 30px rgba(44, 24, 16, 0.12);
    transform: translateY(-2px);
}

/* Category Title */
.faq-category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(166, 124, 82, 0.15);
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    color: #2C1810;
    font-weight: 600;
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #A67C52, #D4A574);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.category-icon svg {
    width: 28px;
    height: 28px;
}

.category-name {
    flex: 1;
}

.category-count {
    font-size: 0.875rem;
    color: #A67C52;
    font-weight: 400;
    background: rgba(166, 124, 82, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* FAQ Items */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item */
.faq-item {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(245, 240, 232, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(245, 240, 232, 0.5);
}

.faq-item.active {
    background: rgba(166, 124, 82, 0.08);
}

/* Question Button */
.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 1.0625rem;
    color: #2C1810;
    font-weight: 500;
}

.faq-question:hover {
    color: #A67C52;
}

.faq-question:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(166, 124, 82, 0.3);
    border-radius: 12px;
}

.question-text {
    flex: 1;
    line-height: 1.5;
}

/* Toggle Icon */
.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle svg {
    transition: all 0.3s ease;
    color: #A67C52;
}

.icon-minus {
    display: none;
}

.faq-question[aria-expanded="true"] .icon-plus {
    display: none;
}

.faq-question[aria-expanded="true"] .icon-minus {
    display: block;
}

.faq-question[aria-expanded="true"] .faq-toggle {
    background: linear-gradient(135deg, #A67C52, #D4A574);
    transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] .faq-toggle svg {
    color: white;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-answer[aria-hidden="false"] {
    max-height: 1000px;
    opacity: 1;
}

.answer-content {
    padding: 0 20px 20px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #4A3426;
}

.answer-list {
    margin: 15px 0;
    padding-left: 20px;
    list-style: none;
}

.answer-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.answer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #A67C52;
    font-weight: bold;
}

/* Search Container */
.faq-search-container {
    margin-top: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-search-box {
    position: relative;
    margin-bottom: 20px;
}

.faq-search-input {
    width: 100%;
    padding: 18px 50px 18px 24px;
    background: white;
    border: 2px solid rgba(166, 124, 82, 0.2);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #2C1810;
    transition: all 0.3s ease;
}

.faq-search-input:focus {
    outline: none;
    border-color: #A67C52;
    box-shadow: 0 0 0 4px rgba(166, 124, 82, 0.1);
}

.faq-search-input::placeholder {
    color: #A67C52;
    opacity: 0.6;
}

.faq-search-clear {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #A67C52;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.faq-search-input:not(:placeholder-shown) ~ .faq-search-clear {
    opacity: 1;
    visibility: visible;
}

.faq-search-clear:hover {
    color: #2C1810;
}

/* Search Results */
.faq-search-results {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
    display: none;
}

.faq-search-results.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.search-result-item {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.search-result-item:hover {
    background: rgba(245, 240, 232, 0.5);
    border-left-color: #A67C52;
    padding-left: 20px;
}

.search-result-category {
    font-size: 0.875rem;
    color: #A67C52;
    margin-bottom: 4px;
}

.search-result-question {
    font-weight: 500;
    color: #2C1810;
}

.search-no-results {
    text-align: center;
    color: #A67C52;
    padding: 20px;
}

/* Contact CTA */
.faq-contact-cta {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #A67C52, #D4A574);
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(166, 124, 82, 0.25);
}

.faq-contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-primary {
    background: white;
    color: #A67C52;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
    background: #FAF8F5;
}

/* Highlight Animation für Suchergebnisse */
@keyframes highlight {
    0% {
        background-color: rgba(166, 124, 82, 0.3);
    }
    100% {
        background-color: transparent;
    }
}

.faq-item.highlight {
    animation: highlight 2s ease;
}

/* Loading State */
.faq-loading {
    text-align: center;
    padding: 40px;
    color: #A67C52;
}

.faq-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(166, 124, 82, 0.3);
    border-top-color: #A67C52;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

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

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */

/* Tablet (768px - 1024px) */
@media (min-width: 768px) {
    .faq-section {
        padding: 100px 0;
    }
    
    .faq-category {
        padding: 40px 35px;
    }
    
    .faq-container {
        gap: 50px;
    }
    
    .faq-category-title {
        font-size: 1.625rem;
    }
    
    .faq-question {
        padding: 25px;
        font-size: 1.125rem;
    }
    
    .answer-content {
        padding: 0 25px 25px 25px;
    }
    
    .faq-contact-cta {
        padding: 50px;
    }
}

/* Desktop (1025px+) */
@media (min-width: 1025px) {
    .faq-section {
        padding: 120px 0;
    }
    
    .faq-header {
        margin-bottom: 80px;
    }
    
    .faq-container {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .faq-category {
        padding: 45px 50px;
    }
    
    /* Two Column Layout for FAQ Items on Large Screens */
    .faq-category[data-category="technik"] .faq-items,
    .faq-category[data-category="preise-und-kosten"] .faq-items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content h3 {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .faq-search-container,
    .faq-contact-cta,
    .faq-toggle {
        display: none;
    }
    
    .faq-answer {
        max-height: none !important;
        opacity: 1 !important;
    }
    
    .faq-item {
        page-break-inside: avoid;
    }
}

/* Accessibility - Focus Styles */
*:focus-visible {
    outline: 2px solid #A67C52;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================
   DARK MODE FOR FAQ MODULE
   ========================= */
@media (prefers-color-scheme: dark) {
  .faq-section {
    background: linear-gradient(135deg, #23272e 0%, #181920 100%);
  }
  .faq-section::before {
    background: radial-gradient(circle, rgba(166,124,82,0.15) 0%, transparent 70%);
  }
  .faq-section .container {
    /* optional: slightly darker */
  }
  .faq-header .section-title {
    color: #f5f6fa;
  }
  .faq-header .section-subtitle {
    color: #d4a574;
  }

  .faq-category {
    background: rgba(36, 39, 48, 0.97);
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.24);
    border-radius: 20px;
  }
  .faq-category-title {
    border-bottom: 2px solid rgba(212, 165, 116, 0.18);
    color: #f5f6fa;
  }
  .category-icon {
    background: linear-gradient(135deg, #d4a574, #a67c52);
    color: #23272e;
  }
  .category-count {
    color: #d4a574;
    background: rgba(212, 165, 116, 0.14);
  }

  .faq-items .faq-item {
    background: rgba(36, 39, 48, 0.6);
  }
  .faq-item:hover {
    background: rgba(44, 24, 16, 0.18);
  }
  .faq-item.active {
    background: rgba(212, 165, 116, 0.08);
  }

  .faq-question {
    color: #f5f6fa;
    background: transparent;
  }
  .faq-question:hover {
    color: #d4a574;
  }
  .faq-question:focus {
    box-shadow: inset 0 0 0 2px rgba(212, 165, 116, 0.3);
  }
  .faq-toggle {
    background: #262a31;
  }
  .faq-toggle svg {
    color: #d4a574;
  }
  .faq-question[aria-expanded="true"] .faq-toggle {
    background: linear-gradient(135deg, #a67c52, #d4a574);
  }
  .faq-question[aria-expanded="true"] .faq-toggle svg {
    color: #23272e;
  }

  .answer-content {
    color: #e6e6e6;
    background: transparent;
  }
  .answer-list li {
    color: #d4a574;
  }
  .answer-list li::before {
    color: #d4a574;
  }

  .faq-search-container {
    background: transparent;
  }
  .faq-search-box {
    background: transparent;
  }
  .faq-search-input {
    background: #23272e;
    border: 2px solid rgba(212, 165, 116, 0.2);
    color: #f5f6fa;
  }
  .faq-search-input:focus {
    border-color: #d4a574;
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.12);
  }
  .faq-search-input::placeholder {
    color: #d4a574;
    opacity: 0.6;
  }
  .faq-search-clear {
    color: #d4a574;
  }
  .faq-search-clear:hover {
    color: #f5f6fa;
  }

  .faq-search-results {
    background: #23272e;
    color: #f5f6fa;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.14);
  }
  .search-result-item {
    background: rgba(36, 39, 48, 0.8);
    color: #f5f6fa;
    border-left: 3px solid transparent;
  }
  .search-result-item:hover {
    background: rgba(212, 165, 116, 0.13);
    border-left-color: #d4a574;
  }
  .search-result-category {
    color: #d4a574;
  }
  .search-result-question {
    color: #f5f6fa;
  }
  .search-no-results {
    color: #d4a574;
  }

  .faq-contact-cta {
    background: linear-gradient(135deg, #181920, #23272e);
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.14);
    color: #f5f6fa;
  }
  .faq-contact-cta::before {
    background: radial-gradient(circle, rgba(212, 165, 116, 0.14) 0%, transparent 70%);
  }
  .cta-content h3 {
    color: #d4a574;
  }
  .cta-content p {
    color: #f5f6fa;
  }
  .cta-content .btn-primary {
    background: #d4a574;
    color: #23272e;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.14);
  }
  .cta-content .btn-primary:hover {
    background: #23272e;
    color: #d4a574;
  }

  .faq-loading {
    color: #d4a574;
  }
  .faq-loading::after {
    border: 3px solid rgba(212, 165, 116, 0.25);
    border-top-color: #d4a574;
  }

  /* Accessibility - Focus Styles */
  *:focus-visible {
    outline: 2px solid #d4a574;
    outline-offset: 2px;
  }
}

/* Füge diese Styles zu deiner faq.css hinzu */

/* Answer Typography Improvements */
.answer-content {
    padding: 0 20px 20px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #4A3426;
}

.answer-content p {
    margin: 0 0 1em 0;
}

.answer-content p:last-child {
    margin-bottom: 0;
}

/* Headings in Answers */
.answer-content h3,
.answer-content h4,
.answer-heading {
    font-family: 'Playfair Display', serif;
    color: #2C1810;
    margin: 1.5em 0 0.5em 0;
    font-weight: 600;
}

.answer-content h3:first-child,
.answer-content h4:first-child {
    margin-top: 0;
}

.answer-content h3 {
    font-size: 1.25rem;
}

.answer-content h4 {
    font-size: 1.125rem;
}

/* Strong and Emphasis */
.answer-content strong,
.answer-content b {
    font-weight: 600;
    color: #2C1810;
}

.answer-content em,
.answer-content i {
    font-style: italic;
    color: #4A3426;
}

.answer-content u {
    text-decoration: underline;
    text-decoration-color: #A67C52;
    text-underline-offset: 2px;
}

/* Highlighted Text */
.answer-content mark {
    background: rgba(212, 165, 116, 0.25);
    color: #2C1810;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Code Formatting */
.answer-content code {
    font-family: 'Courier New', monospace;
    background: rgba(44, 24, 16, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #A67C52;
}

.answer-content pre {
    background: rgba(44, 24, 16, 0.05);
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1em 0;
}

.answer-content pre code {
    background: transparent;
    padding: 0;
    color: #2C1810;
}

/* Improved Lists */
.answer-content ul,
.answer-content ol,
.answer-list {
    margin: 1em 0;
    padding-left: 0;
    list-style: none;
}

.answer-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.3em;
    line-height: 1.6;
}

/* Bullet Points */
.answer-content ul li::before,
.answer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background: #A67C52;
    border-radius: 50%;
}

/* Numbered Lists */
.answer-content ol {
    counter-reset: item;
}

.answer-content ol li::before,
.answer-list-numbered li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #A67C52, #D4A574);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Links */
.answer-content a {
    color: #A67C52;
    text-decoration: none;
    border-bottom: 1px solid rgba(166, 124, 82, 0.3);
    transition: all 0.3s ease;
}

.answer-content a:hover {
    color: #8B6239;
    border-bottom-color: #8B6239;
}

/* Blockquotes */
.answer-content blockquote {
    margin: 1.5em 0;
    padding: 1em 1.5em;
    background: rgba(245, 240, 232, 0.5);
    border-left: 4px solid #A67C52;
    font-style: italic;
    position: relative;
}

.answer-content blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3rem;
    color: rgba(166, 124, 82, 0.2);
    font-family: 'Playfair Display', serif;
}

/* Info Boxes */
.answer-info-box {
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 1em 0;
}

.answer-info-box::before {
    content: 'ℹ️';
    margin-right: 8px;
}

/* Warning Boxes */
.answer-warning-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 1em 0;
}

.answer-warning-box::before {
    content: '⚠️';
    margin-right: 8px;
}

/* Dark Mode Anpassungen */
@media (prefers-color-scheme: dark) {
    .answer-content {
        color: #e6e6e6;
    }
    
    .answer-content strong,
    .answer-content b,
    .answer-content h3,
    .answer-content h4 {
        color: #f5f6fa;
    }
    
    .answer-content mark {
        background: rgba(212, 165, 116, 0.35);
        color: #f5f6fa;
    }
    
    .answer-content code {
        background: rgba(212, 165, 116, 0.15);
        color: #d4a574;
    }
    
    .answer-content pre {
        background: rgba(36, 39, 48, 0.6);
    }
    
    .answer-content blockquote {
        background: rgba(36, 39, 48, 0.5);
        border-left-color: #d4a574;
    }
}

/* ========================================
   FAQ MODULE 2025 - NEUE FEATURES
   Am Ende von faq.css hinzufügen
   ======================================== */

/* ========================================
   Screen Reader Only
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   Bulk Actions (Alle öffnen/schließen)
   ======================================== */
.faq-bulk-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.btn-bulk-action {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(166, 124, 82, 0.08);
    border: 1px solid rgba(166, 124, 82, 0.2);
    border-radius: 20px;
    color: #A67C52;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-bulk-action:hover {
    background: rgba(166, 124, 82, 0.15);
    border-color: #A67C52;
    transform: translateY(-1px);
}

.btn-bulk-action:focus-visible {
    outline: 2px solid #A67C52;
    outline-offset: 2px;
}

.btn-bulk-action svg {
    flex-shrink: 0;
}

/* Mobile: Stack bulk actions */
@media (max-width: 640px) {
    .faq-category-title {
        flex-wrap: wrap;
    }
    
    .faq-bulk-actions {
        width: 100%;
        justify-content: flex-start;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .btn-bulk-action {
        flex: 1;
        justify-content: center;
    }
}

/* ========================================
   Category Filters
   ======================================== */
.faq-filters {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(166, 124, 82, 0.15);
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: #2C1810;
    font-size: 0.9375rem;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.filter-btn {
    padding: 8px 16px;
    background: white;
    border: 2px solid rgba(166, 124, 82, 0.2);
    border-radius: 20px;
    color: #A67C52;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(166, 124, 82, 0.05);
    border-color: #A67C52;
}

.filter-btn.active {
    background: linear-gradient(135deg, #A67C52, #D4A574);
    color: white;
    border-color: transparent;
}

.filter-btn:focus-visible {
    outline: 2px solid #A67C52;
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .faq-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ========================================
   Share Button
   ======================================== */
.btn-share-faq {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    margin-top: 20px;
    background: rgba(166, 124, 82, 0.08);
    border: 1px solid rgba(166, 124, 82, 0.2);
    border-radius: 50px;
    color: #A67C52;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-share-faq:hover {
    background: rgba(166, 124, 82, 0.15);
    border-color: #A67C52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 124, 82, 0.2);
}

.btn-share-faq:focus-visible {
    outline: 2px solid #A67C52;
    outline-offset: 2px;
}

.btn-share-faq.success {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.btn-share-faq.error {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.btn-share-faq svg {
    flex-shrink: 0;
}

/* ========================================
   Voting System
   ======================================== */
.faq-voting {
    margin-top: 30px;
    padding: 20px;
    background: rgba(245, 240, 232, 0.5);
    border-radius: 12px;
    border-top: 2px solid rgba(166, 124, 82, 0.2);
}

.voting-question {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #2C1810;
    margin-bottom: 12px;
    text-align: center;
}

.voting-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-vote {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid rgba(166, 124, 82, 0.2);
    border-radius: 50px;
    color: #A67C52;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-vote:hover {
    background: rgba(166, 124, 82, 0.05);
    border-color: #A67C52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 124, 82, 0.15);
}

.btn-vote:focus-visible {
    outline: 2px solid #A67C52;
    outline-offset: 2px;
}

.btn-vote svg {
    flex-shrink: 0;
}

.vote-text {
    font-weight: 600;
}

/* ========================================
   Vote Count Styles - ERWEITERT
   ======================================== */
.vote-count {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    background: rgba(166, 124, 82, 0.15);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Zeige Count wenn Daten vorhanden */
.vote-count:not(:empty) {
    display: inline-flex;
}

/* Vote Count Animation beim Erscheinen */
@keyframes countAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.vote-count[style*="display: inline-flex"] {
    animation: countAppear 0.3s ease-out;
}

/* Highlight-Effekt nach dem Voten */
.btn-vote.voted {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.1) !important;
}

.btn-vote.voted .vote-count {
    background: #10b981;
    color: white;
    animation: pulse 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Loading-State für Vote-Counts */
.vote-count.loading::after {
    content: '...';
    animation: ellipsis 1.5s infinite;
}

@keyframes ellipsis {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Hover-Effekte für Vote-Buttons */
.btn-vote[data-vote="yes"]:hover {
    border-color: #10b981;
    color: #10b981;
}

.btn-vote[data-vote="yes"]:hover .vote-count {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.btn-vote[data-vote="no"]:hover {
    border-color: #ef4444;
    color: #ef4444;
}

.btn-vote[data-vote="no"]:hover .vote-count {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Voting Thanks mit Statistik */
.voting-thanks {
    text-align: center;
    padding: 15px;
    color: #10b981;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.voting-thanks::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    font-weight: bold;
}

.voting-thanks small {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.4;
    color: #2C1810;
}

@media (max-width: 640px) {
    .voting-buttons {
        flex-direction: column;
    }
    
    .btn-vote {
        width: 100%;
        justify-content: center;
    }
    
    .vote-count {
        min-width: 20px;
        height: 20px;
        padding: 0 5px;
        font-size: 0.6875rem;
    }
}

/* ========================================
   Enhanced Search Results
   ======================================== */
.search-result-snippet {
    font-size: 0.8125rem;
    color: #5C4A3D;
    margin-top: 6px;
    line-height: 1.5;
}

.search-result-snippet mark {
    background: rgba(212, 165, 116, 0.3);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #A67C52;
}

.search-no-results svg {
    display: block;
    margin: 0 auto 15px;
}

.search-no-results p {
    margin: 10px 0;
    line-height: 1.6;
}

.search-no-results a {
    color: #A67C52;
    text-decoration: underline;
}

.search-no-results a:hover {
    color: #8B6239;
}

/* ========================================
   Animations for Category Show/Hide
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-category.fade-in {
    animation: fadeIn 0.4s ease-out;
}

/* ========================================
   Print Optimization
   ======================================== */
@media print {
    .faq-bulk-actions,
    .faq-filters,
    .btn-share-faq,
    .faq-voting,
    .faq-search-container,
    .faq-contact-cta {
        display: none !important;
    }
    
    .faq-answer {
        max-height: none !important;
        opacity: 1 !important;
    }
    
    .faq-item {
        page-break-inside: avoid;
    }
    
    .faq-category {
        page-break-after: always;
    }
    
    .faq-category:last-child {
        page-break-after: auto;
    }
    
    .faq-toggle {
        display: none;
    }
    
    .faq-question {
        background: #f5f5f5 !important;
        padding: 15px !important;
        border: none !important;
    }
    
    .answer-content {
        padding: 15px !important;
        border: 1px solid #ddd !important;
    }
}

/* ========================================
   Reduced Motion Support
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .faq-answer {
        transition: none !important;
    }
    
    .faq-category.fade-in {
        animation: none !important;
    }
    
    .vote-count {
        animation: none !important;
    }
}

/* ========================================
   High Contrast Mode
   ======================================== */
@media (prefers-contrast: high) {
    .faq-category,
    .faq-item,
    .filter-btn,
    .btn-bulk-action,
    .btn-share-faq,
    .btn-vote {
        border: 2px solid currentColor !important;
    }
    
    .filter-btn.active {
        background: currentColor !important;
        color: white !important;
    }
    
    .vote-count {
        border: 1px solid currentColor;
    }
}

/* ========================================
   Focus-visible Enhancements
   ======================================== */
.faq-question:focus-visible {
    outline: 3px solid #A67C52;
    outline-offset: 3px;
    z-index: 1;
}

.search-result-item:focus-visible {
    outline: 3px solid #A67C52;
    outline-offset: -3px;
}

/* ========================================
   Dark Mode Support for New Features
   ======================================== */
@media (prefers-color-scheme: dark) {
    .faq-filters {
        background: rgba(36, 39, 48, 0.97);
        border-color: rgba(212, 165, 116, 0.2);
    }
    
    .filter-label {
        color: #f5f6fa;
    }
    
    .filter-btn {
        background: #23272e;
        border-color: rgba(212, 165, 116, 0.3);
        color: #d4a574;
    }
    
    .filter-btn:hover {
        background: rgba(212, 165, 116, 0.1);
        border-color: #d4a574;
    }
    
    .filter-btn.active {
        background: linear-gradient(135deg, #a67c52, #d4a574);
        color: #23272e;
    }
    
    .btn-bulk-action {
        background: rgba(212, 165, 116, 0.1);
        border-color: rgba(212, 165, 116, 0.25);
        color: #d4a574;
    }
    
    .btn-bulk-action:hover {
        background: rgba(212, 165, 116, 0.18);
        border-color: #d4a574;
    }
    
    .btn-share-faq {
        background: rgba(212, 165, 116, 0.1);
        border-color: rgba(212, 165, 116, 0.25);
        color: #d4a574;
    }
    
    .btn-share-faq:hover {
        background: rgba(212, 165, 116, 0.18);
        border-color: #d4a574;
    }
    
    .faq-voting {
        background: rgba(36, 39, 48, 0.6);
        border-top-color: rgba(212, 165, 116, 0.25);
    }
    
    .voting-question {
        color: #f5f6fa;
    }
    
    .btn-vote {
        background: #23272e;
        border-color: rgba(212, 165, 116, 0.3);
        color: #d4a574;
    }
    
    .btn-vote:hover {
        background: rgba(212, 165, 116, 0.1);
        border-color: #d4a574;
    }
    
    .vote-count {
        background: rgba(212, 165, 116, 0.2);
        color: #d4a574;
    }
    
    .btn-vote[data-vote="yes"]:hover .vote-count {
        background: rgba(16, 185, 129, 0.3);
        color: #10b981;
    }
    
    .btn-vote[data-vote="no"]:hover .vote-count {
        background: rgba(239, 68, 68, 0.3);
        color: #ef4444;
    }
    
    .voting-thanks small {
        color: #f5f6fa;
    }
    
    .search-result-snippet {
        color: #b0b2b8;
    }
    
    .search-result-snippet mark {
        background: rgba(212, 165, 116, 0.35);
        color: #f5f6fa;
    }
    
    .search-no-results {
        color: #d4a574;
    }
    
    .search-no-results a {
        color: #d4a574;
    }
}

/* ========================================
   Responsive Optimizations
   ======================================== */
@media (max-width: 480px) {
    .faq-category-title {
        font-size: 1.125rem;
        gap: 10px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .voting-thanks {
        font-size: 0.875rem;
    }
    
    .voting-thanks small {
        font-size: 0.8125rem;
    }
}

/* ========================================
   Loading States
   ======================================== */
.faq-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #A67C52;
}

.faq-loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid rgba(166, 124, 82, 0.3);
    border-top-color: #A67C52;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   Accessibility Improvements
   ======================================== */
[aria-hidden="true"] {
    display: none;
}

[role="button"]:not(button) {
    cursor: pointer;
    user-select: none;
}

[role="button"]:not(button):hover {
    opacity: 0.9;
}

/* Keyboard focus visible */
*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 3px solid #A67C52;
    outline-offset: 2px;
}

/* ========================================
   Performance Optimization
   ======================================== */
.faq-item {
    contain: layout style paint;
}

.faq-answer {
    will-change: max-height;
}

/* Smooth scrolling only for mouse users */
@media (pointer: fine) {
    html {
        scroll-behavior: smooth;
    }
}

/* ========================================
   Zusätzliche Vote-Animationen
   ======================================== */

/* Fade-in für Vote-Statistiken */
@keyframes fadeInStats {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.voting-thanks small {
    animation: fadeInStats 0.5s ease-out 0.3s both;
}

/* Responsive Vote-Count-Position */
@media (max-width: 380px) {
    .btn-vote {
        padding: 10px 16px;
        font-size: 0.8125rem;
    }
    
    .vote-count {
        min-width: 18px;
        height: 18px;
        padding: 0 4px;
        font-size: 0.625rem;
    }
}

/* =================================================================
   FAQ CTA BUTTON
   ================================================================= */

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

.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--accent-color, #8B6239) 0%, #A67C52 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(44, 24, 16, 0.04);
    position: relative;
    overflow: hidden;
}

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

.btn-faq-contact:hover::before {
    left: 100%;
}

.btn-faq-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 124, 82, 0.15);
    background: linear-gradient(135deg, #8B7355 0%, #5C4A3D 100%);
}

.btn-faq-contact:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(166, 124, 82, 0.15);
}

.btn-faq-contact:focus-visible {
    outline: 2px solid var(--accent-color, #2C1810);
    outline-offset: 2px;
}

.btn-faq-contact svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-faq-contact:hover svg {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-faq-contact {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .faq-cta {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .faq-cta {
        border-top-color: rgba(255, 255, 255, 0.08);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .btn-faq-contact,
    .btn-faq-contact::before,
    .btn-faq-contact svg {
        transition: none;
    }
    
    .btn-faq-contact:hover {
        transform: none;
    }
}


/* ========================================
   testimonials.css
   ======================================== */

/**
 * Testimonials Module - Mobile-First Design
 * Version: 3.0 - Optimiert für Mobile-First
 * OPTIMIERT: Verwendet jetzt globale CSS-Variablen aus index.css
 */

/* =================================
   BASE STYLES - MOBILE FIRST
   ================================= */

/* Section Styling */
.testimonials-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(166,124,82,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
    animation: fadeInUp 0.6s ease;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 15px;
    line-height: 1.5;
}

/* Echtheit Notice - Mobile optimiert */
.testimonials-notice {
    background: linear-gradient(135deg, #FFF 0%, #FEFEFE 100%);
    border-left: 3px solid var(--accent-color);
    padding: 15px 20px;
    margin: 0 20px 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    animation: fadeIn 0.8s ease 0.2s both;
}

.testimonials-notice p {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.testimonials-notice strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Statistics - Mobile Layout */
.testimonials-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 20px 40px 20px;
    animation: fadeIn 0.8s ease 0.3s both;
}

.stats-overview {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 15px 0;
}

.stat-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-stars {
    margin: 8px 0;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Rating Distribution */
.rating-distribution {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.rating-bar {
    display: grid;
    grid-template-columns: 35px 1fr 35px;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.rating-bar:last-child {
    margin-bottom: 0;
}

.rating-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.rating-progress {
    height: 6px;
    background: #F0F0F0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 10px;
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

.rating-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.rating-count {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: right;
}

/* Filter Buttons - Mobile optimiert - AUSGEBLENDET AUF MOBILE */
.testimonials-filter {
    display: none; /* GEÄNDERT: Auf Mobile ausgeblendet */
}

/* Rating Distribution - AUSGEBLENDET AUF MOBILE */
.rating-distribution {
    display: none;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.filter-btn:active {
    transform: scale(0.95);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
}

/* Carousel - Mobile First - GEÄNDERT */
.testimonials-carousel-container {
    position: relative;
    padding: 20px 0;
    animation: fadeIn 0.8s ease 0.5s both;
}

.testimonials-carousel {
    overflow: hidden;
    padding: 10px 0 30px;
    margin: 0 20px; /* GEÄNDERT: von 50px auf 20px für breitere Cards */
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: pan-y pinch-zoom;
}

/* Testimonial Card - Mobile - GEÄNDERT */
.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    height: auto; /* GEÄNDERT: Dynamische Höhe */
    min-height: unset; /* GEÄNDERT: Kein minimum */
}

/* Card Header */
.testimonial-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.testimonial-meta {
    flex: 1;
    min-width: 0;
}

.testimonial-meta h3 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin: 0 0 5px 0;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Source Badge - Mobile */
.testimonial-source {
    animation: fadeIn 0.5s ease;
}

.source-link,
.source-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #F8F8F8, #F0F0F0);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    font-size: 0.8rem;
}

.source-link:active {
    transform: scale(0.95);
}

.source-icon {
    font-size: 0.9rem;
}

.source-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

/* Source Logo */
.source-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* Tablet - min-width: 481px */
@media (min-width: 481px) {
    .source-logo {
        width: 20px;
        height: 20px;
    }
}

/* Desktop - min-width: 1025px */
@media (min-width: 1025px) {
    .source-logo {
        width: 22px;
        height: 22px;
    }
}

/* Rating */
.testimonial-rating {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.star-rating {
    display: inline-flex;
    gap: 2px;
}

.star {
    font-size: 1.1rem;
}

.star.full {
    color: #FFB800;
    text-shadow: 0 2px 4px rgba(255,184,0,0.3);
}

.star.half {
    position: relative;
    color: #E0E0E0;
}

.star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #FFB800;
}

.star.empty {
    color: #E0E0E0;
}

.testimonial-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Content */
.testimonial-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 15px 0;
    font-style: italic;
    position: relative;
    padding-left: 15px;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

/* Footer */
.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.testimonial-event-type {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    align-self: flex-start;
}

/* Carousel Controls - Mobile - GEÄNDERT */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95); /* GEÄNDERT: Halbtransparent */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15); /* GEÄNDERT: Stärkerer Schatten */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20; /* GEÄNDERT: Höherer z-index um über Card zu schweben */
    color: var(--primary-color);
    backdrop-filter: blur(10px); /* GEÄNDERT: Blur-Effekt */
    -webkit-backdrop-filter: blur(10px);
}

.carousel-control:active {
    transform: translateY(-50%) scale(0.9);
    background: rgba(255, 255, 255, 1);
}

.carousel-prev {
    left: 10px; /* GEÄNDERT: von 5px auf 10px */
}

.carousel-next {
    right: 10px; /* GEÄNDERT: von 5px auf 10px */
}

.carousel-control svg {
    width: 20px;
    height: 20px;
}

/* Dots Navigation */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    padding: 0 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #D0D0D0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:active {
    transform: scale(1.1);
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

/* View All Button */
.view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 40px 20px 0 20px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(166,124,82,0.3);
    position: relative;
    overflow: hidden;
}

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

.view-all-btn:active {
    transform: scale(0.97);
}

.view-icon {
    transition: transform 0.3s ease;
}

.view-all-btn.active .view-icon {
    transform: rotate(180deg);
}

/* Grid View - Mobile */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 20px 0 20px;
    animation: fadeIn 0.5s ease;
}

.testimonial-grid-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-grid-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-grid-card:active {
    transform: translateY(-4px);
}

.testimonial-grid-card:active::after {
    transform: scaleX(1);
}

.grid-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 10px;
}

.grid-card-header > div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.grid-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    flex-shrink: 0;
}

.grid-card-header h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0 0 5px 0;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.grid-card-title {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin: 12px 0;
    font-weight: 600;
}

.grid-card-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 12px 0;
}

.grid-card-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* =================================
   TABLET - min-width: 481px
   ================================= */
@media (min-width: 481px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .testimonials-notice {
        margin: 0 40px 35px 40px;
        padding: 18px 25px;
    }
    
    .testimonials-stats {
        margin: 0 40px 50px 40px;
        gap: 25px;
    }
    
    .stats-overview {
        padding: 30px;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .testimonials-carousel {
        margin: 0 60px;
    }
    
    .testimonial-card {
        padding: 30px;
        border-radius: 18px;
    }
    
    .testimonial-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .testimonial-avatar {
        width: 55px;
        height: 55px;
    }
    
    .testimonial-meta h3 {
        font-size: 1.1rem;
    }
    
    .testimonial-content {
        font-size: 1rem;
        padding-left: 18px;
    }
    
    .testimonial-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .carousel-control {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control svg {
        width: 22px;
        height: 22px;
    }
    
    .testimonials-grid {
        gap: 22px;
        margin: 35px 40px 0 40px;
    }
    
    .view-all-btn {
        margin: 45px auto 0;
        padding: 15px 35px;
        font-size: 1rem;
    }
}

/* =================================
   TABLET LANDSCAPE - min-width: 769px
   ================================= */
@media (min-width: 769px) {
    .testimonials-section {
        padding: 70px 0;
    }
    
    .testimonials-section::before {
        top: -40%;
        right: -15%;
        width: 400px;
        height: 400px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        letter-spacing: -0.75px;
    }
    
    .section-header h2::after {
        width: 55px;
        height: 2.5px;
    }
    
    .testimonials-notice {
        max-width: 900px;
        margin: 0 auto 40px auto;
        padding: 20px 28px;
    }
    
    .testimonials-notice p {
        font-size: 0.9rem;
    }
    
    .testimonials-stats {
        max-width: 1000px;
        gap: 30px;
    }
    
    .stats-overview {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 35px;
    }
    
    .stat-item {
        padding: 0;
    }
    
    .stat-item:not(:last-child) {
        border-bottom: none;
        border-right: 1px solid var(--border-color);
        padding-right: 20px;
    }
    
    .stat-item:not(:first-child) {
        padding-left: 20px;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 0.75px;
    }
    
    .rating-distribution {
        padding: 35px;
        display: block;
    }
    
    .rating-bar {
        grid-template-columns: 38px 1fr 38px;
        gap: 12px;
        margin-bottom: 14px;
    }
    
    .rating-label {
        font-size: 0.9rem;
    }
    
    .rating-progress {
        height: 7px;
    }
    
    .rating-count {
        font-size: 0.85rem;
    }
    
    /* FILTER AB TABLET ANZEIGEN */
    .testimonials-filter {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin: 0 40px 45px 40px;
        flex-wrap: wrap;
        animation: fadeIn 0.8s ease 0.4s both;
    }
    
    .filter-btn {
        padding: 11px 24px;
        font-size: 0.9rem;
    }
    
    .filter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(166,124,82,0.2);
    }
    
    .source-link:hover {
        background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(166,124,82,0.3);
    }
    
    .source-link:hover .source-name {
        color: white;
    }
    
    .testimonial-card:hover .star {
        animation: starPulse 0.5s ease;
    }
    
    @keyframes starPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
    
    .carousel-control:hover {
        background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
        color: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(166,124,82,0.4);
    }
    
    .dot:hover {
        background: var(--accent-color);
        transform: scale(1.2);
    }
    
    .view-all-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(166,124,82,0.4);
    }
    
    .view-all-btn:hover::before {
        left: 100%;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonial-grid-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    }
    
    .testimonial-grid-card:hover::after {
        transform: scaleX(1);
    }
    
    .grid-card-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* =================================
   DESKTOP - min-width: 1025px
   ================================= */
@media (min-width: 1025px) {
    .testimonials-section {
        padding: 100px 0;
    }
    
    .testimonials-section::before {
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    
    .section-header h2::after {
        bottom: -10px;
        width: 60px;
        height: 3px;
    }
    
    .section-header p {
        font-size: 1.2rem;
        margin-top: 25px;
    }
    
    .testimonials-notice {
        max-width: 1200px;
        border-left-width: 4px;
        padding: 20px 30px;
    }
    
    .testimonials-notice p {
        font-size: 0.95rem;
    }
    
    .testimonials-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto 60px auto;
    }
    
    .stats-overview {
        padding: 40px;
        gap: 30px;
    }
    
    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        height: 40px;
        width: 1px;
        background: var(--border-color);
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .stat-stars {
        margin: 10px 0;
    }
    
    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .rating-distribution {
        padding: 40px;
    }
    
    .rating-bar {
        grid-template-columns: 40px 1fr 40px;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .rating-label {
        font-size: 0.95rem;
    }
    
    .rating-progress {
        height: 8px;
    }
    
    .rating-count {
        font-size: 0.9rem;
    }
    
    .testimonials-filter {
        margin-bottom: 50px;
    }
    
    .filter-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .filter-btn.active {
        transform: scale(1.05);
    }
    
    .testimonial-card {
        padding: 40px;
        border-radius: 20px;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
        border-width: 3px;
    }
    
    .testimonial-meta h3 {
        font-size: 1.2rem;
    }
    
    .testimonial-location {
        font-size: 0.9rem;
    }
    
    .source-link,
    .source-badge {
        padding: 6px 14px;
    }
    
    .source-icon {
        font-size: 1rem;
    }
    
    .source-name {
        font-size: 0.85rem;
    }
    
    .star {
        font-size: 1.3rem;
    }
    
    .testimonial-title {
        font-size: 1.1rem;
    }
    
    .testimonial-content {
        font-size: 1.05rem;
        line-height: 1.8;
        margin: 20px 0;
        padding-left: 20px;
    }
    
    .testimonial-content::before {
        width: 3px;
        top: 5px;
        bottom: 5px;
    }
    
    .testimonial-footer {
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .testimonial-date {
        font-size: 0.9rem;
    }
    
    .testimonial-event-type {
        font-size: 0.85rem;
    }
    
    .carousel-control {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control svg {
        width: 24px;
        height: 24px;
    }
    
    .carousel-prev {
        left: 20px;
    }
    
    .carousel-next {
        right: 20px;
    }
    
    .testimonials-dots {
        margin-top: 30px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
        border-radius: 5px;
    }
    
    .view-all-btn {
        gap: 10px;
        margin-top: 50px;
        padding: 16px 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 40px;
    }
    
    .testimonial-grid-card {
        padding: 30px;
        border-radius: 16px;
    }
    
    .testimonial-grid-card:hover {
        transform: translateY(-8px);
    }
    
    .grid-avatar {
        width: 45px;
        height: 45px;
    }
    
    .grid-card-header h4 {
        font-size: 1.05rem;
    }
    
    .grid-card-title {
        font-size: 1rem;
        margin: 15px 0;
    }
    
    .grid-card-content {
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 15px 0;
    }
    
    .grid-card-footer {
        margin-top: 20px;
        padding-top: 15px;
        font-size: 0.85rem;
    }
}

/* =================================
   LARGE DESKTOP - min-width: 1400px
   ================================= */
@media (min-width: 1400px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

/* =================================
   ACCESSIBILITY
   ================================= */
.testimonial-card:focus-visible,
.filter-btn:focus-visible,
.carousel-control:focus-visible,
.dot:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =================================
   DARK MODE
   ================================= */
@media (prefers-color-scheme: dark) {
    .testimonials-section {
        background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
    }
    
    .testimonial-card,
    .testimonial-grid-card,
    .stats-overview,
    .rating-distribution,
    .testimonials-notice {
        background: #2A2A2A;
    }
    
    .filter-btn {
        background: #2A2A2A;
        border-color: #3A3A3A;
    }
    
    .carousel-control {
        background: rgba(42, 42, 42, 0.95);
        color: var(--accent-color);
    }
    
    .carousel-control:active {
        background: rgba(42, 42, 42, 1);
    }

    .source-name {
    color: black;
    }
}

/* =================================
   LOADING STATE
   ================================= */
.testimonial-card.loading {
    position: relative;
    overflow: hidden;
}

.testimonial-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* =================================
   PRINT STYLES
   ================================= */
@media print {
    .testimonials-filter,
    .carousel-control,
    .testimonials-dots,
    .view-all-btn {
        display: none;
    }
    
    .testimonials-track {
        display: block;
    }
    
    .testimonial-card {
        page-break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .testimonials-section {
        padding: 20px 0;
    }
}


/* ========================================
   contact.css
   ======================================== */

/**
 * Contact Module Styles - Mobile First Approach
 */

/* Reset Box-Sizing für alle Elemente */
.contact-section * {
    box-sizing: border-box;
}

/* Section Grundlayout - Mobile First */
.contact-section {
    padding: 40px 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    overflow-x: hidden; /* Verhindert horizontales Scrolling */
    width: 100%;
}

.contact-section .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 10px;
}

.contact-section .section-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-section .section-header p {
    font-size: 1rem;
    color: #666;
}

/* Container Layout - Mobile First */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Info Wrapper - Mobile First */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

/* Cards - Mobile First */
.contact-info-card,
.quick-info-card,
.contact-form-card1 {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0;
    overflow: hidden; /* Verhindert Overflow */
}

.contact-info-card h3,
.quick-info-card h3,
.contact-form-card1 h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* Info Items - Mobile First */
.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.info-content {
    flex: 1;
    min-width: 0; /* Wichtig für Text-Overflow */
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 2px;
}

.info-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    word-break: break-word; /* Verhindert Overflow bei langen E-Mails */
}

.info-link:hover {
    color: var(--text-secondary);      /* Medium Brown */
;
    text-decoration: underline;
}

/* Standort und Antwortzeit auf Mobile ausblenden */
.info-item:nth-child(3),
.info-item:nth-child(4) {
    display: none;
}

.info-text {
    color: #333;
    font-weight: 500;
    word-break: break-word;
}

/* Social Links - Mobile First */
.social-links {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.social-links h4 {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: #666;
    transition: fill 0.3s ease;
}

/* Quick Info Items - Mobile First */
.quick-info-card {
    display: none;
}

.quick-info-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.quick-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.quick-icon {
    filter: grayscale(1);
    opacity: 0.7; 
    font-size: 1.3rem;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.quick-info-item strong {
    display: block;
    color: #333;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.quick-info-item p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
}

/* Office Hours - Mobile First */
.office-hours {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

.office-hours h4 {
    color: #333;
    margin-bottom: 12px;
    font-size: 1rem;
}

.office-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.office-hours li:last-child {
    border-bottom: none;
}

/* Form - Mobile First */
.form-section {
    margin-bottom: 25px;
}

.form-section h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

/* Form Rows - Stack on mobile */
.form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px; /* Verhindert Zoom auf iOS */
    transition: all 0.3s ease;
    background: white;
    -webkit-appearance: none; /* Entfernt iOS Styling */
    -moz-appearance: none;
    appearance: none;
}

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

/* Form Actions */
.form-actions1 {
    margin-top: 20px;
}

.btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-submit {
    position: relative;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-text {
    visibility: hidden;
}

.btn-submit.loading .btn-loader {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Error States */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #ef4444;
}

.form-group .error-message {
    display: none;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 4px;
}

.form-group.has-error .error-message {
    display: block;
}

/* Character Counter */
.character-count {
    text-align: right;
    font-size: 0.8rem;
    color: #ffffff;
    margin-top: 4px;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
}

.checkbox-label a {
    color: black; /* z.B. ein kräftiges Blau */
    text-decoration: underline; /* Optional */
}

.checkbox-label a:hover {
    color: var(--accent-color); /* z.B. Orange beim Hover */
    text-decoration: underline; /* Optional */
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    min-width: 18px;
    height: 18px;
    margin-right: 8px;
    margin-top: 1px;
}

.checkbox-label span {
    flex: 1;
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Modals - Mobile First */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    padding: 15px;
}

.contact-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.modal-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    animation: modalSlideIn 0.3s ease;
}

/* Success Animation */
.success-animation,
.error-icon {
    margin-bottom: 15px;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

/* Notifications */
.form-notification {
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    animation: slideInUp 0.3s ease;
    font-size: 0.9rem;
}

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

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

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

@media (max-width: 768px) {
  .contact-form-card1 {
    padding: 12px; /* Weniger Außenabstand, wie gehabt */
  }
  .form-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .form-group {
    width: 100%;
    margin: 0 0 12px 0;
    padding: 0;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box;
    margin: 0;
  }

}

/* Tablet Styles (ab 768px) */
@media (min-width: 768px) {
    /* Quick Info Card ab Tablet anzeigen */
    .quick-info-card {
        display: block;
    }
    
    /* Standort und Antwortzeit ab Tablet anzeigen */
    .info-item:nth-child(3),
    .info-item:nth-child(4) {
        display: flex;
    }

    .contact-section {
        padding: 60px 30px;
    }
    
    .contact-section .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .contact-section .section-header p {
        font-size: 1.1rem;
    }
    
    .contact-container {
        gap: 30px;
    }
    
    .contact-info-card,
    .quick-info-card,
    .contact-form-card1 {
        padding: 30px;
    }
    
    .contact-info-card h3,
    .quick-info-card h3,
    .contact-form-card1 h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: row;
        gap: 20px;
    }
    
    .form-row .form-group {
        flex: 1;
    }
    
    .info-icon {
        width: 48px;
        height: 48px;
    }
    
    .info-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Desktop Styles (ab 1024px) */
@media (min-width: 1024px) {
    .contact-section {
        padding: 80px 40px;
    }
    
    .contact-section .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .contact-section .section-header {
        margin-bottom: 60px;
    }
    
    .contact-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-section .section-header p {
        font-size: 1.2rem;
    }
    
    .contact-container {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 40px;
    }
    
    .contact-info-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info-card,
    .quick-info-card,
    .contact-form-card1 {
        padding: 30px;
    }
    
    .contact-form-card1 {
        padding: 40px;
    }
    
    .contact-info-card h3,
    .quick-info-card h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .contact-form-card1 h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .btn {
        width: auto;
        padding: 12px 30px;
    }
}

/* Große Desktop Bildschirme (ab 1440px) */
@media (min-width: 1440px) {
    .contact-section .container {
        max-width: 1280px;
    }
}

/* Spezielle iOS Fixes */
@supports (-webkit-touch-callout: none) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Verhindert Zoom beim Focus */
    }
}

/* Honeypot Field - Immer versteckt */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

/* Sichtbare Checkbox, auch im Dark Mode! */
.checkbox-label input[type="checkbox"] {
  accent-color: var(--primary-color, #A67C52); /* Haken immer sichtbar */
  background: #fff;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: 0;
  vertical-align: middle;
  cursor: pointer;
  /* Optional: border for older browsers */
  border: 2px solid var(--primary-color, #A67C52);
}

/* Textfarbe für Hellmodus */
.checkbox-label span {
  color: #333;
}

/* =============================
   DARK MODE for Contact Module
   ============================= */
@media (prefers-color-scheme: dark) {
  .contact-section {
    background: linear-gradient(135deg, #23272e 0%, #181920 100%);
  }

  .contact-info-card,
  .quick-info-card,
  .contact-form-card1 {
    background: #23272e;
    color: #f5f6fa;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.15);
  }

  .contact-info-card h3,
  .quick-info-card h3,
  .contact-form-card1 h3,
  .form-group label {
    color: #f5f6fa;
  }

  .info-icon {
    background: linear-gradient(135deg, #d4a574, #a67c52);
    color: #23272e;
  }
  .info-label {
    color: #b0b2b8;
  }
  .info-link {
    color: #d4a574;
  }
  .info-link:hover {
    color: #f5f6fa;
  }
  .info-text {
    color: #f5f6fa;
  }

  .social-links h4 {
    color: #b0b2b8;
  }
  .social-icon {
    background: #262a31;
  }
  .social-icon svg {
    fill: #d4a574;
  }

  .quick-info-item strong {
    color: #f5f6fa;
  }
  .quick-info-item p {
    color: #b0b2b8;
  }

  .office-hours {
    background: #181920;
    color: #f5f6fa;
  }
  .office-hours h4 {
    color: #f5f6fa;
  }
  .office-hours li {
    border-bottom: 1px solid #373c47;
    color: #b0b2b8;
  }

  .form-section h4 {
    color: #d4a574;
    border-bottom: 2px solid #373c47;
  }

  .form-group input:not([type="checkbox"]),
  .form-group select,
  .form-group textarea {
    background: #23272e;
    color: #f5f6fa;
    border: 2px solid #373c47;
  }
  .form-group input:not([type="checkbox"]):focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: #d4a574;
    background: #262a31;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.10);
  }
  .form-group.has-error input,
  .form-group.has-error select,
  .form-group.has-error textarea {
    border-color: #dc2626;
    background: #2c1810;
    color: #ffeded;
  }
  .form-group .error-message {
    color: #dc2626;
  }

  .character-count {
    color: #b0b2b8;
  }

  /* Checkbox Darkmode (ergänzt, falls oben nicht) */
  .checkbox-label input[type="checkbox"] {
    accent-color: #d4a574;
    background: #23272e;
    border-color: #d4a574;
  }
  .checkbox-label span {
    color: #f5f6fa;
  }
  .checkbox-label a {
    color: #d4a574;
  }
  .checkbox-label a:hover {
    color: #f5f6fa;
  }

  /* Modal Darkmode */
  .contact-modal .modal-content {
    background: #23272e;
    color: #f5f6fa;
  }
  .modal-overlay {
    background: rgba(15, 18, 24, 0.87);
  }

  /* Success/Error Animation */
  .success-animation,
  .error-icon {
    color: #d4a574;
  }
  .checkmark {
    background: #262a31;
  }

  /* Notifications */
  .form-notification {
    background: #262a31;
    color: #d4a574;
  }

  /* Button Darkmode */
  .btn-primary {
    background: linear-gradient(135deg, #d4a574, #a67c52);
    color: #23272e;
  }
  .btn-primary:hover {
    background: #23272e;
    color: #d4a574;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
  }

  .btn {
    background: #23272e;
    color: #d4a574;
    border: 1px solid #d4a574;
  }
  .btn:hover {
    background: #d4a574;
    color: #23272e;
  }

  /* Accessibility - Focus Styles */
  *:focus-visible {
    outline: 2px solid #d4a574;
    outline-offset: 2px;
  }
}

/* Formular-Container */
#contactForm {
    width: 100%;
    max-width: 100%;
    padding: 15px;
}

/* ========================================
   Professional Error & Loading States 2025
   ======================================== */

/* Notification System */
.form-notification {
    padding: 12px 16px;
    border-radius: 8px;
    margin: 15px 0;
    animation: slideInUp 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-notification.info {
    background: #e0f2fe;
    color: #0369a1;
    border-left: 4px solid #0284c7;
}

.form-notification.success {
    background: #dcfce7;
    color: #166534;
    border-left: 4px solid #22c55e;
}

.form-notification.warning {
    background: #fed7aa;
    color: #9a3412;
    border-left: 4px solid #fb923c;
}

.form-notification.error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0;
    margin-left: 10px;
}

.notification-close:hover {
    opacity: 1;
}

/* Loading States */
.btn-submit.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-submit.loading .btn-text {
    opacity: 0.5;
}

.btn-submit .btn-loader svg {
    animation: spin 1s linear infinite;
}

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

/* Field Error States */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #ef4444;
    background: #fef2f2;
    animation: shake 0.3s;
}

.form-group.has-error .error-message {
    display: block;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 4px;
    animation: fadeIn 0.2s;
}

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

/* Character Counter States */
.character-count.warning {
    color: #f59e0b;
}

.character-count.error {
    color: #ef4444;
    font-weight: 600;
}

/* Modal Improvements */
.modal-content {
    animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-animation .checkmark {
    animation: drawCheck 0.8s ease-in-out;
}

@keyframes drawCheck {
    0% {
        stroke-dasharray: 0 100;
    }
    100% {
        stroke-dasharray: 100 0;
    }
}

.error-contact-info {
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

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

.error-contact-info a:hover {
    text-decoration: underline;
}

.request-info {
    background: #f0f9ff;
    padding: 10px;
    border-radius: 6px;
    margin: 10px 0;
    font-size: 0.9rem;
    color: #0369a1;
}

/* Offline Indicator */
.offline-indicator {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #78350f;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    z-index: 9999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Accessibility Improvements */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

[aria-invalid="true"] {
    border-color: #ef4444 !important;
}

/* Progress Indicator */
.form-progress {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}

.form-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0;
    transition: width 0.3s ease;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .form-notification {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 10px;
    }
}

/* Dark Mode Support bleibt wie gehabt */

