/* ========================================= 
   FISCHER PREMIUM DESIGN SYSTEM (FINAL v2.1)
   Global Font: 'Outfit' (No Bold)
   ========================================= */

:root {
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #e8f5e9;
    --primary-hover: #256a29;
    
    --signal: #d32f2f;
    --signal-gradient: linear-gradient(135deg, #ef5350 0%, #c62828 100%);
    
    --text-dark: #111827;
    --text-grey: #6b7280;
    --bg-body: #f8fafc;
    
    --footer-bg: #111827;
    
    --container: 1200px;
    --radius: 24px;
    
    /* Schatten */
    --shadow-soft: 0 20px 40px -10px rgba(0,0,0,0.05);
    --shadow-hover: 0 30px 60px -12px rgba(46, 125, 50, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 100%; }

/* --- GLOBAL TYPOGRAPHY --- */
body { 
    font-family: 'Outfit', sans-serif; 
    color: var(--text-dark); 
    background-color: var(--bg-body); 
    line-height: 1.6; 
    overflow-x: hidden; 
    padding-bottom: 0; 
    font-weight: 300; 
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 40px 40px;
}

h1, h2, h3, h4, h5, h6 { 
    font-family: 'Outfit', sans-serif; 
    color: var(--text-dark); 
    line-height: 1.2; 
    font-weight: 400; 
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 0.5rem; }
p { color: var(--text-grey); font-size: 1.05rem; margin-bottom: 1.5rem; font-weight: 300; }

strong, b { font-weight: 500; } 

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.text-green { color: var(--primary); }

/* --- ANIMATIONS --- */
.spa-page { display: block; animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.success-icon { animation: pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes pop { 0% { transform: scale(0.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* --- HEADER & NAV --- */
.top-bar { background: var(--text-dark); color: white; padding: 10px 0; font-size: 0.9rem; text-align: center; font-weight: 300; }
.top-bar a { color: #fff; text-decoration: underline; font-weight: 400; margin-left: 5px; }

header {
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    position: sticky; top: 0; z-index: 1000;
    padding: 15px 0; transition: 0.3s;
    /* UPDATE: Die hauchdünne grüne Linie */
    border-bottom: 1px solid var(--primary); 
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-dark); cursor: pointer; }

.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { color: var(--text-dark); text-decoration: none; font-weight: 400; font-size: 0.95rem; transition: color 0.2s; position: relative; cursor: pointer; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after { width: 100%; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-dark); }

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 32px; border-radius: 50px; font-family: 'Outfit', sans-serif;
    font-weight: 500; text-decoration: none; transition: all 0.3s ease;
    font-size: 1rem; cursor: pointer; border: none; white-space: nowrap;
}
.btn:active { transform: scale(0.96) translateY(0); }

.btn-primary { background: var(--primary); color: white; box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(46, 125, 50, 0.4); }

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

/* Speziell für Index Hero: Weißer Outline Button für besseren Kontrast */
.hero .btn-outline { color: white; border-color: white; }
.hero .btn-outline:hover { background: white; color: var(--primary); }

.btn-emergency {
    background: var(--signal-gradient); color: white;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4); position: relative; overflow: hidden;
    font-weight: 500;
}
.btn-emergency::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg); animation: shimmer 3s infinite;
}
@keyframes shimmer { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }

/* --- HOME HERO SLIDER --- */
.hero { position: relative; height: 80vh; min-height: 600px; overflow: hidden; display: flex; align-items: center; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.1); transition: opacity 1.5s ease, transform 8s linear; }
.slide.active { opacity: 1; transform: scale(1); }
/* Overlay etwas dunkler für bessere Lesbarkeit */
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 60%, rgba(255,255,255,0) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 650px; }
.hero-badge { 
    display: inline-flex; align-items: center; gap: 8px; 
    background: rgba(232, 245, 233, 0.95); backdrop-filter: blur(4px); 
    color: var(--primary); padding: 8px 16px; border-radius: 50px; 
    font-weight: 500; margin-bottom: 20px; font-size: 0.9rem; box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
}

/* UPDATE: Helle Schrift für Index Hero Text */
.hero p {
    color: var(--text-dark); /* Default Desktop: Dunkel auf hellem Overlay */
    font-size: 1.1rem;
    font-weight: 400; /* Etwas dicker für Lesbarkeit */
}

/* --- PAGE HERO (UNTERSEITEN) --- */
.page-hero {
    position: relative; padding: 160px 0 120px;
    background-size: cover; background-position: center;
    text-align: center; background-attachment: fixed;
    background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.85)), radial-gradient(#cbd5e1 1px, transparent 1px);
}
.page-hero h1 { text-shadow: 0 2px 20px rgba(255,255,255,0.8); margin-bottom: 20px; font-weight: 500; }
.page-hero .lead {
    max-width: 700px; margin: 0 auto;
    font-size: 1.25rem; color: var(--text-grey);
    font-weight: 300; line-height: 1.6;
}

/* Backgrounds */
#ueber-uns .page-hero { background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.7)), url('https://images.unsplash.com/photo-1545259741-2ea3ebf61fa3?q=80&w=1920&auto=format&fit=crop'); }
#leistungen .page-hero { background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.85)), url('https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?q=80&w=1920&auto=format&fit=crop'); }
#preise .page-hero { background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.85)), url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?q=80&w=1920&auto=format&fit=crop'); }
#jobs .page-hero { background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.85)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1920&auto=format&fit=crop'); }
#referenzen .page-hero { background-image: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.85)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920&auto=format&fit=crop'); }
#kontakt .page-hero { background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.85)), url('https://images.unsplash.com/photo-1596524430615-b46475ddff6e?q=80&w=1920&auto=format&fit=crop'); }
.impressum-hero-bg { background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.85)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1920&auto=format&fit=crop') !important; }
.datenschutz-hero-bg { background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.85)), url('https://images.unsplash.com/photo-1450101499121-e5b07972f42e?q=80&w=1920&auto=format&fit=crop') !important; }

/* --- CARD SYSTEMS (UNIFIED) --- */
.service-card, .price-card, .job-card, .ref-card, .benefit-item, .approach-card {
    background-color: #ffffff !important;
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-soft) !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover, .price-card:hover, .job-card:hover, .ref-card:hover, .benefit-item:hover, .approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover) !important;
    border-color: var(--primary-light);
}

.service-card { display: block; cursor: default; }
.service-card .s-icon { width: 50px; height: 50px; background: var(--primary-light); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: transform 0.3s ease; }
.service-card:hover .s-icon { background: var(--primary); color: white; transform: scale(1.1); }
.s-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.s-title { font-size: 1.25rem; font-weight: 500; line-height: 1.3; }

/* Grids */
.service-grid, .price-grid-balanced, .job-grid, .benefits-grid, .ref-grid, .approach-grid { display: grid; gap: 30px; margin-top: 50px; }
.service-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.price-grid-balanced, .benefits-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.job-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.ref-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.approach-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

@media (min-width: 900px) { .price-grid-balanced { grid-template-columns: repeat(2, 1fr); max-width: 1000px; margin-left: auto; margin-right: auto; } }

/* --- ICONS (Unified Round) --- */
.price-icon, .benefit-icon, .ref-icon-wrapper {
    width: 80px; height: 80px;
    background-color: var(--primary-light) !important; color: var(--primary) !important;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 2rem; margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.price-card, .benefit-item, .ref-card { text-align: center; align-items: center; }
.price-card:hover .price-icon, .benefit-item:hover .benefit-icon, .ref-card:hover .ref-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--primary) !important; color: white !important;
}

/* --- BADGES & LISTS --- */
.badge-included {
    background-color: #dcfce7 !important; color: #166534 !important;
    font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
    padding: 6px 12px; border-radius: 50px; margin-bottom: 20px; display: inline-block;
}
.job-type {
    font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
    color: var(--primary); background: var(--primary-light);
    padding: 5px 12px; border-radius: 50px; display: inline-block; margin-bottom: 15px; width: max-content;
}
.check-list, .feature-list { list-style: none; padding: 0; margin: 0; }
.check-list li, .feature-list li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--text-grey); font-size: 0.95rem; font-weight: 300; }
.check-list li::before, .feature-list li::before {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; left: 0; top: 3px; color: var(--primary); font-size: 0.8rem;
    background: rgba(46, 125, 50, 0.1); width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.feature-list li::before { background: transparent; }

/* --- CONTENT SECTIONS --- */
.family-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.family-image-wrapper { position: relative; max-width: 100%; }
.family-image { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-hover); transform: rotate(-2deg); transition: transform 0.4s; border: 8px solid white; }
.family-image:hover { transform: rotate(0); }
.signature { font-weight: 500; color: var(--primary); margin-top: 25px; font-size: 1.1rem; letter-spacing: 0.5px; }

.client-labels { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 30px; }
.client-label {
    background: white; color: var(--text-dark); padding: 12px 25px; border-radius: 50px;
    box-shadow: var(--shadow-soft); font-weight: 500; font-size: 0.95rem; display: flex; align-items: center; gap: 8px;
    transition: transform 0.2s; cursor: default;
}
.client-label:hover { transform: translateY(-2px); color: var(--primary); }

/* Z-Pattern */
.service-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 120px; }
.service-feature:nth-child(even) .feature-content { order: 2; }
.service-feature:nth-child(even) .feature-image-wrapper { order: 1; }
.feature-image { width: 100%; height: 450px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-soft); transition: transform 0.5s ease; }
.feature-image-wrapper:hover .feature-image { transform: scale(1.01); box-shadow: var(--shadow-hover); }
.feature-icon { width: 60px; height: 60px; background: var(--primary-light); color: var(--primary); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; }

/* --- JOB STATUS & DISCLAIMERS --- */
.job-status-box {
    background: #fff; border-left: 4px solid #f59e0b; padding: 30px; border-radius: var(--radius);
    box-shadow: var(--shadow-soft); max-width: 800px; margin: 0 auto 60px auto; text-align: center;
}
.job-status-icon { font-size: 2rem; color: #f59e0b; margin-bottom: 15px; }
.job-status-box.inactive-mode { border-left-color: var(--primary); padding: 50px 30px; background: #ffffff; }
.job-status-box.inactive-mode .job-status-icon { color: var(--primary); font-size: 3rem; margin-bottom: 20px; }

.disclaimer-box {
    background: #fff; border-left: 4px solid var(--primary); padding: 30px; border-radius: var(--radius);
    box-shadow: var(--shadow-soft); margin-top: 50px; display: flex; align-items: flex-start; gap: 20px;
}
.disclaimer-icon { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; margin-top: 3px; }

.discretion-box {
    background: #ffffff; border-left: 4px solid var(--primary); padding: 40px; border-radius: var(--radius);
    box-shadow: var(--shadow-soft); max-width: 900px; margin: 0 auto 80px auto; position: relative;
}
.discretion-icon {
    position: absolute; top: -25px; left: 30px; background: var(--primary); color: white;
    width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; box-shadow: 0 5px 15px rgba(46,125,50,0.3);
}

/* --- PREMIUM CTA BANNER --- */
.cta-banner-premium {
    background: var(--text-dark); color: white !important;
    padding: 80px 40px; border-radius: var(--radius); text-align: center;
    position: relative; overflow: hidden; box-shadow: var(--shadow-hover);
    margin-top: 80px; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.cta-bg-icon {
    position: absolute; top: 50%; right: -50px; transform: translateY(-50%) rotate(-15deg);
    font-size: 20rem; color: white; opacity: 0.03; pointer-events: none;
}
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-banner-premium h2 { color: white; margin-bottom: 15px; font-size: 2.2rem; font-weight: 500; }
.cta-banner-premium p { color: #9ca3af !important; font-size: 1.1rem; margin-bottom: 30px; font-weight: 300; }
.cta-banner-premium .btn { padding: 16px 40px; font-size: 1.1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

/* --- REVIEWS --- */
.swiper-container { padding-bottom: 50px; overflow: hidden; }
.review-card {
    background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow-soft);
    height: auto; display: flex; flex-direction: column; position: relative; transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 40px; height: 40px; background: #e0e0e0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 500; color: #757575; font-size: 1.1rem; }
.stars { color: #fbbf24; margin-bottom: 12px; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
.reviewer-name { font-weight: 500; color: var(--text-dark); display: block; line-height: 1.2; }
.google-g { color: #4285F4; font-size: 1.5rem; }
.review-text { color: var(--text-grey); font-size: 0.95rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; font-weight: 300; }
.read-more-link { display: inline-block; margin-top: 15px; color: var(--primary); font-weight: 500; text-decoration: none; font-size: 0.9rem; cursor: pointer; }
.swiper-pagination-bullet { background: var(--primary); opacity: 0.3; width: 10px; height: 10px; transition: all 0.3s; }
.swiper-pagination-bullet-active { opacity: 1; width: 24px; border-radius: 5px; }

/* --- KONTAKT & FORMULARE --- */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 60px; margin-top: 40px; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1fr 1.2fr; } }

.location-box {
    background: white; padding: 35px; border-radius: var(--radius); box-shadow: var(--shadow-soft);
    margin-bottom: 30px; transition: transform 0.3s; border: 1px solid rgba(0,0,0,0.03);
}
.location-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.location-box.hq { border-left: 4px solid var(--primary); background: linear-gradient(to right, #fafffb, #ffffff); }
.loc-title { font-size: 1.4rem; font-weight: 500; color: var(--text-dark); margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; }
.badge-hq { font-size: 0.75rem; background: var(--primary-light); color: var(--primary); padding: 4px 10px; border-radius: 4px; font-weight: 600; text-transform: uppercase; }
.loc-detail { display: flex; gap: 15px; margin-bottom: 12px; font-size: 1rem; color: var(--text-grey); font-weight: 300; }
.loc-detail i { color: var(--primary); margin-top: 4px; width: 20px; text-align: center; }
.loc-actions { margin-top: 25px; display: flex; gap: 10px; }
.btn-small { padding: 10px 20px; font-size: 0.9rem; }

.main-contact-form { background: white; padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,0.03); }
.emergency-alert-box { background: #fff5f5; border: 1px solid #feb2b2; color: #c53030; padding: 20px; border-radius: 12px; margin-bottom: 40px; display: flex; align-items: center; gap: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.emergency-alert-box i { font-size: 2rem; }
.emergency-alert-box a { color: #c53030; font-weight: 500; text-decoration: underline; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 8px; color: var(--text-dark); }
.form-input, .form-textarea, .form-select { width: 100%; padding: 14px; border: 1px solid #e5e7eb; border-radius: 12px; font-size: 1rem; background: #f9fafb; font-family: inherit; transition: 0.3s; font-weight: 300; }
.form-input:focus { border-color: var(--primary); outline: none; background: #fff; box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1); }
.switch-wrapper { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; background: #f9fafb; padding: 15px; border-radius: 12px; transition: background 0.3s; }
.switch-label { font-weight: 500; color: var(--text-dark); display: flex; align-items: center; gap: 10px; cursor: pointer; flex-grow: 1; }
.switch-input { display: none; }
.switch-slider { position: relative; width: 50px; height: 28px; background-color: #ccc; border-radius: 34px; transition: .4s; cursor: pointer; }
.switch-slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 2px; bottom: 2px; background-color: white; border-radius: 50%; transition: .4s; }
.switch-input:checked + .switch-slider { background-color: var(--primary); }
.switch-input:checked + .switch-slider:before { transform: translateX(22px); }
.hidden-field, .hidden-grid-field { display: none; opacity: 0; transform: translateY(-10px); transition: all 0.3s ease; }
.hidden-field.visible { display: block; opacity: 1; transform: translateY(0); }
.hidden-grid-field.visible { display: grid; opacity: 1; transform: translateY(0); grid-template-columns: 1fr 1fr; gap: 15px; }
.checkbox-wrapper { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-grey); margin-bottom: 20px; font-weight: 300; }

/* --- MODALS --- */
.modal { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.6); align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(5px); }
.modal.open { display: flex; }
.modal-content { background: white; padding: 40px; border-radius: 24px; max-width: 500px; width: 100%; position: relative; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); animation: slideUp 0.3s ease-out; overflow-y: auto; max-height: 90vh; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 15px; right: 20px; font-size: 2rem; background: none; border: none; cursor: pointer; color: #999; }

/* --- FOOTER --- */
footer { background: var(--footer-bg); color: #94a3b8; padding: 80px 0 40px; border-top: 4px solid var(--primary); font-size: 0.95rem; font-weight: 300; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1.5fr 0.8fr; gap: 60px; margin-bottom: 60px; }
.footer-col h4 { color: white; font-size: 1.2rem; margin-bottom: 25px; letter-spacing: 0.5px; font-weight: 500; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; }
.footer-contact-item i { color: var(--primary); margin-top: 4px; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.location-grid a { color: #94a3b8; text-decoration: none; transition: 0.3s; display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.location-grid a:hover { color: white; transform: translateX(5px); }
.footer-legal a { color: #94a3b8; text-decoration: none; display: inline-block; }
.footer-bottom { border-top: 1px solid #333; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 0.85rem; }

.mobile-spacer {
    display: none;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-contact-item {
        justify-content: center;
    }
    .mobile-hidden {
        display: none !important;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* 1. Rechtliches Links (Impressum, Datenschutz) korrigieren */
a.footer-legal { 
    color: #94a3b8 !important; /* Das schöne Hellgrau erzwingen */
    text-decoration: none; 
    transition: 0.3s; 
    display: inline-block;
}

a.footer-legal:hover { 
    color: white !important; 
    text-decoration: underline; 
    text-decoration-color: var(--primary); 
}

/* 2. Telefonnummern & E-Mail im Footer (verhindert blaue Links auf Mobile) */
.footer-contact-item a {
    color: white !important; /* Immer Weiß */
    text-decoration: none !important;
}

.footer-contact-item a:hover {
    color: var(--primary) !important; /* Grün beim Drüberfahren */
}

/* 3. Einsatzgebiete Links */
.location-grid a {
    color: #94a3b8 !important;
    text-decoration: none !important;
}

.location-grid a:hover {
    color: white !important;
    transform: translateX(5px);
}

/* --- MOBILE & EXTRAS --- */
.mobile-sticky-bar { 
    display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 1500; 
    background: linear-gradient(to top, rgba(255,255,255,1) 60%, rgba(255,255,255,0) 100%); 
    padding: 40px 20px 20px; pointer-events: none; transition: background 0.4s ease; 
}
.mobile-sticky-bar.footer-blend { background: linear-gradient(to top, var(--footer-bg) 60%, rgba(17, 24, 39, 0) 100%); }
.sticky-cta { 
    pointer-events: auto; background: var(--signal-gradient); color: white; padding: 15px; border-radius: 12px;
    text-align: center; text-decoration: none; font-weight: 500; font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4); animation: pulse 2s infinite; 
    display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; max-width: 400px; margin: 0 auto; 
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(211, 47, 47, 0); } 100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); } }

/* Mobile Overlay */
.mobile-overlay { position: fixed; inset: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); z-index: 2000; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: translateX(100%); transition: transform 0.3s; }
.mobile-overlay.active { transform: translateX(0); }
.mobile-overlay a.menu-link { font-size: 1.8rem; font-family: 'Outfit'; font-weight: 500; color: var(--text-dark); text-decoration: none; margin: 8px 0; opacity: 0; transform: translateY(15px); transition: 0.2s; cursor: pointer; }
.mobile-overlay.active a.menu-link { opacity: 1; transform: translateY(0); }
.mobile-fb-btn { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; border: 2px solid #1877F2; color: #1877F2 !important; border-radius: 50px; font-size: 1rem !important; transition: all 0.2s; width: auto; max-width: 90%; justify-content: center; margin-top: 10px; font-weight: 400; }
.mobile-fb-btn:active { background: #1877F2; color: white !important; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .mobile-sticky-bar { display: block; }
    .hero { align-items: flex-end; padding-bottom: 100px; }
    
    /* UPDATE: Hero Zentrierung & Weißer Text auf Mobile */
    .hero-content { 
        text-align: center; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
    }
    .hero-content div { justify-content: center; }
    /* Hero Text auf Mobile/Overlay immer weiß für maximalen Kontrast */
    .hero-content h1, .hero-content p { color: white; text-shadow: 0 1px 5px rgba(0,0,0,0.5); }
    .hero-content .hero-badge { background: white; color: var(--primary); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }

    .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%); }
    h1 { font-size: 2.8rem; }
    
    .service-feature { grid-template-columns: 1fr; gap: 40px; }
    .service-feature:nth-child(even) .feature-content { order: 1; }
    .service-feature:nth-child(even) .feature-image-wrapper { order: 2; }
    .feature-image-wrapper { display: none; }
    .contact-layout { grid-template-columns: 1fr; }
    .family-section { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-logo, .footer-contact-item, footer h4 { justify-content: center; }
    .footer-locations-col { display: none; }
    .location-grid { text-align: center; }
    .footer-bottom { justify-content: center; text-align: center; flex-direction: column; }
    
    /* Hide decorative background icons on mobile */
    .cta-bg-icon { display: none; }
    .cta-banner-premium { padding: 50px 20px; }
    .cta-banner-premium h2 { font-size: 1.8rem; }
}

/* --- COOKIE BANNER (DARK MODE) --- */
#cookie-overlay {
    position: fixed; inset: 0; z-index: 10000; background: rgba(10, 20, 30, 0.7); backdrop-filter: blur(12px);
    display: none; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity 0.5s;
}
#cookie-overlay.visible { display: flex; opacity: 1; }
.cookie-box {
    background: #ffffff; width: 100%; max-width: 550px; border-radius: 16px; box-shadow: 0 40px 60px -15px rgba(0, 0, 0, 0.2);
    overflow: hidden; display: flex; flex-direction: column; max-height: 90vh;
    transform: scale(0.95) translateY(20px); transition: transform 0.5s; border-top: 4px solid #2e7d32;
}
#cookie-overlay.visible .cookie-box { transform: scale(1) translateY(0); }
.cookie-header { padding: 35px 35px 10px 35px; text-align: center; }
.cookie-icon-wrapper { width: 60px; height: 60px; background: #e8f5e9; color: #2e7d32; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 20px auto; }
.cookie-title { font-size: 1.6rem; font-weight: 500; color: #111827; margin-bottom: 12px; }
.cookie-text { font-size: 0.95rem; color: #4b5563; line-height: 1.6; margin-bottom: 0; font-weight: 300; }
.cookie-body { padding: 10px 35px; overflow-y: auto; }
.cookie-settings { display: none; margin-top: 25px; padding-top: 20px; border-top: 1px solid #f3f4f6; animation: fadeInSettings 0.3s ease; }
.cookie-settings.open { display: block; }
@keyframes fadeInSettings { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.c-option { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding: 16px; background: #f9fafb; border-radius: 12px; border: 1px solid #e5e7eb; transition: all 0.2s; }
.c-option:hover { border-color: #cbd5e1; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.c-info { padding-right: 15px; }
.c-label { font-weight: 500; color: #1f2937; display: block; margin-bottom: 4px; font-size: 1rem; }
.c-desc { font-size: 0.8rem; color: #6b7280; display: block; line-height: 1.4; }
.c-switch { position: relative; width: 48px; height: 26px; flex-shrink: 0; }
.c-switch input { opacity: 0; width: 0; height: 0; }
.c-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #e5e7eb; border-radius: 34px; transition: .3s; border: 1px solid #d1d5db; }
.c-slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 2px; bottom: 2px; background-color: white; border-radius: 50%; transition: .3s; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.c-switch input:checked + .c-slider { background-color: #2e7d32; border-color: #2e7d32; }
.c-switch input:checked + .c-slider:before { transform: translateX(22px); }
.c-switch input:disabled + .c-slider { opacity: 0.6; cursor: not-allowed; background-color: #d1fae5; border-color: #d1fae5; }
.c-switch input:disabled:checked + .c-slider { background-color: #2e7d32; border-color: #2e7d32; }
.cookie-footer { padding: 30px 35px 35px 35px; background: #ffffff; display: flex; flex-direction: column; gap: 15px; }
.cookie-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-c { display: inline-flex; align-items: center; justify-content: center; padding: 14px 20px; border-radius: 12px; font-weight: 500; text-decoration: none; cursor: pointer; border: none; transition: all 0.2s; font-size: 0.95rem; }
.c-span-full { grid-column: 1 / -1; }
.btn-c-primary { background: #2e7d32; color: white; grid-column: 1 / -1; font-size: 1rem; padding: 16px; box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25); }
.btn-c-primary:hover { background: #1b5e20; transform: translateY(-2px); box-shadow: 0 8px 16px rgba(46, 125, 50, 0.35); }
.btn-c-sec { background: white; color: #4b5563; border: 1px solid #e5e7eb; }
.btn-c-sec:hover { background: #f9fafb; border-color: #d1d5db; color: #111827; }
.legal-links { margin-top: 10px; text-align: center; font-size: 0.75rem; color: #9ca3af; border-top: 1px solid #f3f4f6; padding-top: 15px; }
.legal-links a { color: #9ca3af; text-decoration: none; margin: 0 8px; transition: 0.2s; }
.legal-links a:hover { color: #2e7d32; }
@media(max-width: 600px) {
    .cookie-btns { grid-template-columns: 1fr; }
    .cookie-box { border-radius: 24px 24px 0 0; max-height: 85vh; margin-top: auto; width: 100%; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
    #cookie-overlay { align-items: flex-end; padding: 0; }
}

/* --- IMPRESSUM & DATENSCHUTZ BOXES --- */
.impressum-box, .datenschutz-box {
    background: white; padding: 60px; border-radius: var(--radius); 
    box-shadow: var(--shadow-soft); max-width: 900px; margin: 0 auto; 
    border: 1px solid rgba(0,0,0,0.03);
}
@media (max-width: 1024px) { .impressum-box, .datenschutz-box { padding: 30px 20px; } }
.impressum-section, .ds-section { margin-bottom: 40px; border-bottom: 1px solid #eee; padding-bottom: 40px; }
.impressum-section:last-child, .ds-section:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.impressum-title, .ds-title { font-size: 1.4rem; font-weight: 500; color: var(--primary); margin-bottom: 20px; margin-top: 0; }
.ds-subtitle { font-size: 1.1rem; font-weight: 500; color: var(--text-dark); margin-bottom: 10px; margin-top: 20px; }
.ds-list { list-style-type: disc; padding-left: 20px; margin-bottom: 15px; color: var(--text-grey); }
.ds-list li { margin-bottom: 8px; font-weight: 300; }