/* style.css - Wolfis Möbelpacker (Optimized & Cleaned) */

/* --- 1. VARIABLEN & RESET --- */
:root {
    /* Farben: Wolfis Orange & Dunkelblau */
    --primary: #FB8200;      /* Hauptfarbe */
    --primary-hover: #e07400;
    --dark: #023047;         /* Sekundärfarbe */
    --dark-light: #03405e;
    
    /* Neutrale Töne */
    --bg-body: #ffffff;
    --bg-light: #F3F5F7;
    --text-main: #1a202c;
    --text-muted: #64748b;
    
    /* Modern UI */
    --radius-s: 8px;
    --radius-m: 16px;
    --radius-l: 24px;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-hover: 0 10px 40px rgba(2, 48, 71, 0.12);
    --container-width: 1200px;
    --header-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    background: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--header-height);
}

h1, h2, h3, h4 { margin: 0 0 1rem 0; font-weight: 800; letter-spacing: -0.03em; line-height: 1.2; color: var(--dark); }
p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.05rem; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.2s; }

/* Globale Listen-Einstellungen */
ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* --- 2. UTILITIES & LAYOUT --- */
.wrapper { max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.section-padding { padding: 5rem 0; }
.bg-light { background-color: var(--bg-light); }
.text-primary { color: var(--primary); }

/* Scroll Margin für Sticky Header */
section[id] { scroll-margin-top: 120px; }


/* --- 3. BUTTONS (Global & Modern) --- */
:root {
    /* Neue Variable für den Button-Radius */
    --btn-radius: 10px; 
}

.btn, .header-cta {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px;
    padding: 0.8rem 1.6rem; 
    border-radius: var(--btn-radius); /* Kleinerer Radius (Modern) */
    font-weight: 600; 
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); /* Sehr weiche Animation */
    cursor: pointer; 
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.2;
}

/* Primary = ORANGE */
.btn-primary, .header-cta.btn-primary {
    background: var(--primary); 
    color: white !important;
    /* Moderner "Glow" Schatten statt hartem Schwarz */
    box-shadow: 0 4px 14px rgba(251, 130, 0, 0.35); 
}

.btn-primary:hover, .header-cta.btn-primary:hover { 
    background: var(--primary-hover); 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(251, 130, 0, 0.45);
}

/* Dark = DUNKELBLAU */
.btn-dark, .header-cta.btn-dark { 
    background: var(--dark) !important; 
    color: white !important;
    box-shadow: 0 4px 14px rgba(2, 48, 71, 0.35);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-dark:hover, .header-cta.btn-dark:hover { 
    background: var(--dark-light) !important; 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(2, 48, 71, 0.45);
}

/* Outline (Transparenter Hintergrund) */
.btn-outline { 
    background: transparent; 
    border-color: #e2e8f0; 
    color: var(--dark); 
}

.btn-outline:hover { 
    border-color: var(--dark); 
    background: transparent; 
    color: var(--primary);
    transform: translateY(-1px);
}

/* Speziell für den Header CTA (Kontakt) - Standard Orange */
a.header-cta:not(.btn-dark) {
    background: var(--primary); 
    color: white !important;
    box-shadow: 0 4px 14px rgba(251, 130, 0, 0.3);
}
a.header-cta:not(.btn-dark):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 130, 0, 0.4);
}

/* Fix für Buttons im Header/Navi */
.nav-btn-fix {
    display: inline-flex;
    justify-content: center;
    width: auto;
    margin: 0 5px;
}

/* --- 4. HEADER (Base) --- */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex; align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.header-logo img { height: 45px; width: auto; object-fit: contain; }

/* Elemente, die standardmäßig ausgeblendet sind (werden per Media Query gesteuert) */
.nav-mobile-head, .nav-mobile-footer { display: none; }


/* --- 5. HERO SECTION --- */
.hero-section { padding: 4rem 0 6rem 0; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-tag { display: inline-block; background: #e0f2fe; color: var(--dark); padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; margin-bottom: 1.5rem; text-transform: uppercase; }
.hero-title { font-size: 3.5rem; margin-bottom: 1.5rem; }
.hero-title span { color: var(--primary); }
.hero-desc { font-size: 1.25rem; margin-bottom: 2.5rem; max-width: 500px; }

/* Hero Image & 3D Effect */
.hero-img-wrap {
    position: relative; border-radius: var(--radius-l); overflow: hidden;
    box-shadow: var(--shadow-hover); transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.5s ease;
}
.hero-img-wrap:hover { transform: perspective(1000px) rotateY(0deg); }

.floating-badge {
    position: absolute; bottom: 30px; left: -20px;
    background: white; padding: 1rem 1.5rem; border-radius: var(--radius-m);
    box-shadow: var(--shadow-hover); display: flex; align-items: center; gap: 10px;
    z-index: 2; animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }


/* --- 6. STATS BAR --- */
.stats-bar {
    display: flex; justify-content: space-between; gap: 2rem;
    background: white; padding: 2rem; border-radius: var(--radius-m);
    border: 1px solid #f1f5f9; margin-top: -3rem; position: relative; z-index: 5;
    box-shadow: var(--shadow-soft); max-width: 1000px; margin-left: auto; margin-right: auto;
}
.stat-item { display: flex; align-items: center; gap: 1rem; }
.stat-icon { width: 50px; height: 50px; background: var(--bg-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }


/* --- 7. BENTO GRID (Services) --- */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.bento-card {
    border-radius: var(--radius-m);
    overflow: hidden; 
    position: relative;
    border: 1px solid rgba(0,0,0,0.05); 
    transition: all 0.4s ease;
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end;
    padding: 2rem; 
    min-height: 320px;
    text-decoration: none;
    background-color: var(--dark);
    
    /* WICHTIGE ÄNDERUNG: */
    background-size: cover; /* Bedeckt immer alles */
    background-position: center; 
    background-repeat: no-repeat;
}

.bento-card h3 { color: #fff; font-size: 1.6rem; margin-bottom: 0.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.bento-card p { color: rgba(255, 255, 255, 0.9); font-size: 1rem; line-height: 1.5; margin-bottom: 0; text-shadow: 0 1px 5px rgba(0,0,0,0.3); }
.bento-card.large { grid-column: span 2; }
.bento-card:hover { 
    transform: translateY(-5px) scale(1.02); /* Leichtes Anheben & Vergrößern der ganzen Karte */
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); 
}

/* Bilder für die Karten */
.card-privat { background-image: linear-gradient(to bottom, rgba(2, 48, 71, 0.1) 0%, rgba(2, 48, 71, 0.9) 100%), url('assets/privatumzug.webp'); }
.card-firma { background-image: linear-gradient(to bottom, rgba(2, 48, 71, 0.1) 0%, rgba(2, 48, 71, 0.9) 100%), url('assets/firmenumzug.webp'); }
.card-ausland { background-image: linear-gradient(to bottom, rgba(2, 48, 71, 0.1) 0%, rgba(2, 48, 71, 0.9) 100%), url('assets/auslandsumzug.webp'); }
.card-klein { background-image: linear-gradient(to bottom, rgba(2, 48, 71, 0.1) 0%, rgba(2, 48, 71, 0.9) 100%), url('assets/kleintransport.webp'); }
.card-montage { background-image: linear-gradient(to bottom, rgba(2, 48, 71, 0.1) 0%, rgba(2, 48, 71, 0.9) 100%), url('assets/montage.webp'); }


/* --- 8. SEO TEXT & LAYOUT --- */
.seo-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.seo-column { font-size: 1rem; line-height: 1.7; color: #4a5568; }
.seo-headline { color: var(--dark); font-size: 1.3rem; margin-bottom: 1rem; position: relative; padding-left: 1rem; }
.seo-headline::before { content: ''; position: absolute; left: 0; top: 5px; height: 18px; width: 4px; background: var(--primary); border-radius: 2px; }

/* Split Section (Bild/Text nebeneinander) */
.split-section { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.split-section .image-container { position: relative; width: 100%; }
.split-section .image-container img { width: 100%; height: auto; display: block; }


/* --- 9. ABLAUF & FAQ --- */
.step-card { background: white; padding: 2rem; border-radius: var(--radius-m); border: 1px solid #f1f5f9; text-align: center; }
.step-num { background: var(--primary); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin: 0 auto 1.5rem auto; }

.faq-item { background: white; border-radius: var(--radius-s); margin-bottom: 1rem; overflow: hidden; border: 1px solid #f1f5f9; }
.faq-item summary { padding: 1.2rem; cursor: pointer; font-weight: 600; list-style: none; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 1.5rem; color: var(--primary); font-size: 1.5rem; font-weight: 300; }
.faq-item[open] summary::after { content: '-'; }
.faq-item p { padding: 0 1.2rem 1.2rem 1.2rem; margin: 0; font-size: 0.95rem; }


/* --- 10. PREISE & TABELLEN --- */
.pricing-list-container { display: flex; flex-direction: column; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 2rem; position: relative; box-shadow: 0 2px 5px rgba(0,0,0,0.02); transition: transform 0.2s; }
.pricing-row:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.pricing-info { flex: 1; padding-right: 2rem; }
.pricing-info h3 { margin-top: 0; margin-bottom: 0.5rem; color: var(--primary); }
.row-features { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 1.5rem; }
.row-features li { font-size: 0.9rem; color: #444; display: flex; align-items: center; gap: 5px; }
.pricing-cost { text-align: right; min-width: 180px; border-left: 1px solid #eee; padding-left: 2rem; }
.price-tag { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 1rem; }
.price-tag .per { font-size: 1rem; color: #999; font-weight: normal; }

.pricing-row.featured { border: 2px solid var(--dark); background: #fff; transform: scale(1.02); z-index: 2; }
.pricing-row.featured:hover { transform: scale(1.02) translateY(-2px); }
.badge-row { position: absolute; top: 0; left: 0; background: var(--dark); color: white; font-weight: bold; padding: 0.2rem 1rem; font-size: 0.8rem; text-transform: uppercase; border-bottom-right-radius: 8px; }

/* Moderne Tabelle */
.modern-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.modern-table th { background: #f4f4f4; padding: 1rem; text-align: left; font-weight: 600; color: #333; }
.modern-table td { padding: 1rem; border-bottom: 1px solid #eee; color: #555; }
.surcharge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; background: #f9f9f9; padding: 2rem; border-radius: 12px; }
.surcharge-item { background: #fff; padding: 1rem; border-radius: 8px; border: 1px solid #eee; }

/* Checkliste Dark (Fixpreis Sektion) */
.check-list-dark { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.check-list-dark li { display: flex; gap: 1rem; align-items: flex-start; }
.check-list-dark .check-icon { background: var(--primary); color: #fff; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: bold; flex-shrink: 0; margin-top: 3px; }


/* --- 11. KONTAKT & FORMULARE --- */
.contact-info-box { padding-right: 2rem; }
.contact-list { list-style: none; padding: 0; margin: 2rem 0; }
.contact-list li { display: flex; gap: 1.2rem; margin-bottom: 2rem; align-items: flex-start; }
.contact-list .icon { width: 45px; height: 45px; background: #eef4fb; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; color: var(--primary); }
.contact-form-card { background: #fff; padding: 2.5rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.map-container { border-radius: 8px; overflow: hidden; margin-top: 2rem; border: 1px solid #eee; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #333; font-size: 0.95rem; }
.form-group input, .form-group textarea, .form-group select { 
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; 
    font-family: inherit; font-size: 1rem; transition: border-color 0.2s; background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
    border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(251, 130, 0, 0.1); 
}

/* Tabs für Kontakt */
.form-tabs { display: flex; background: #f4f6f8; border-bottom: 1px solid #e1e4e8; }
.tab-btn { flex: 1; padding: 1.2rem; border: none; background: transparent; font-size: 1rem; font-weight: 600; color: #666; cursor: pointer; border-bottom: 3px solid transparent; transition: all 0.2s; }
.tab-btn:hover { background: rgba(0,0,0,0.02); color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); background: #fff; }
.form-row { display: flex; gap: 1rem; }
.form-row .form-group { flex: 1; }

/* Checkbox */
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1.5rem; font-size: 0.9rem; color: #555; background: #f9f9f9; padding: 10px; border-radius: 6px; }
.form-check input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--primary); margin-top: 2px; cursor: pointer; }


/* --- 12. MULTI STEP WIZARD --- */
.wizard-container { background: #fff; padding: 2.5rem; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); max-width: 800px; margin: 0 auto; border-top: 5px solid var(--primary); }
.tab { display: none; animation: fadeIn 0.4s; }
.wizard-progress { display: flex; justify-content: space-between; position: relative; margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.progress-line { position: absolute; top: 15px; left: 0; width: 100%; height: 3px; background: #eee; z-index: 1; }
.progress-line-fill { position: absolute; top: 15px; left: 0; height: 3px; background: var(--primary); z-index: 2; width: 0%; transition: width 0.4s ease; }
.step-indicator { position: relative; z-index: 3; text-align: center; width: 80px; }
.step-indicator .circle { width: 35px; height: 35px; background: #eee; color: #999; border-radius: 50%; margin: 0 auto 5px auto; display: flex; align-items: center; justify-content: center; font-weight: bold; border: 2px solid #fff; transition: all 0.3s; }
.step-indicator.active .circle { background: var(--primary); color: #fff; transform: scale(1.2); box-shadow: 0 0 0 4px rgba(251, 130, 0, 0.2); }
.step-indicator.finish .circle { background: var(--dark); color: #fff; }
input.invalid, select.invalid { background-color: #fff0f0; border-color: #e74c3c !important; }


/* --- 13. FOOTER & MODAL --- */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, #e07400 100%); color: #fff; padding: 4rem 0; text-align: center; }
.cta-banner h2 { color: #fff; }

footer { background-color: var(--dark) !important; color: #ffffff !important; border-top: 5px solid var(--primary); padding-top: 4rem; margin-top: 4rem; }
footer h3 { color: #fff !important; }
footer p, footer li { color: rgba(255,255,255,0.7) !important; }
footer a { color: var(--primary) !important; font-weight: 600; }
footer a:hover { color: #fff !important; text-decoration: underline; }
footer div[style*="border-top"] { border-top: 1px solid rgba(255,255,255,0.1) !important; color: rgba(255,255,255,0.5) !important; }

/* Popup Modal */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; padding: 1rem; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box { background: #fff; padding: 2.5rem 2rem; border-radius: 16px; width: 100%; max-width: 400px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.2); transform: translateY(20px); transition: transform 0.3s ease; border-top: 5px solid var(--primary); }
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-icon { width: 70px; height: 70px; background: #fff8eb; color: var(--primary); font-size: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem auto; }
.modal-buttons { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; }
.modal-buttons .btn { width: 100%; }


/* --- 14. BADGE ANIMATION (Frei/Erreichbar) --- */
.badge-reachable { display: inline-flex; align-items: center; gap: 4px; background-color: #2ecc71; color: white; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; margin-left: 10px; letter-spacing: 0.5px; line-height: 1; white-space: nowrap; animation: pulse-green 2s infinite; }
.badge-reachable::before { content: ''; display: block; width: 8px; height: 8px; background-color: white; border-radius: 50%; }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); transform: scale(1); } 50% { transform: scale(1.05); } 70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); } 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); transform: scale(1); } }


/* ============================================================
   --- 15. MEDIA QUERIES & RESPONSIVE DESIGN (FINAL) --- 
   ============================================================ */

/* --- DESKTOP (ab 900px) --- */
@media (min-width: 900px) {
    .menu-toggle { display: none; }
    
    /* Navigation Layout */
    .main-nav { display: flex; align-items: center; gap: 2.5rem; }
    .nav-links { display: flex; gap: 2rem; align-items: center; font-weight: 500; font-size: 0.95rem; }
    .nav-links > li { position: relative; padding: 10px 0; }
    
    /* Hover Effekte */
    .nav-links > li > a { color: var(--dark); }
    .nav-links > li > a:hover { color: var(--primary); }

    /* Elemente verstecken, die nur für Mobile sind */
    .mobile-only, .nav-mobile-head, .nav-mobile-footer { display: none !important; }
    .desktop-only { display: inline-flex !important; }

    /* Dropdown Menü (Desktop Hover) */
    .dropdown {
        position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
        background: #fff; min-width: 200px; border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-top: 3px solid var(--primary);
        opacity: 0; visibility: hidden; transition: all 0.2s ease; padding: 0.5rem 0;
    }
    .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .dropdown a { display: block; padding: 0.7rem 1.2rem; color: #555; font-size: 0.9rem; white-space: nowrap; }
    .dropdown a:hover { background: #f9f9f9; color: var(--primary); padding-left: 1.5rem; }
    
    /* CTA Desktop */
    .header-cta { font-size: 0.95rem; padding: 0.6rem 1.5rem; }

    /* Layouts */
    .split-section { grid-template-columns: 1fr 1fr; gap: 5rem; }
    .split-section.reverse .image-container { order: -1; }
    .seo-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .service-layout { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: start; }
    .service-sidebar { display: block; }
}

/* --- MOBILE (unter 900px) --- */
@media (max-width: 899px) {
    
    /* Header & Toggle Button */
    .header-logo img { height: 35px; }
    .menu-toggle {
        background: none; border: none; cursor: pointer; padding: 0;
        width: 30px; height: 20px; position: relative; z-index: 1002;
        display: flex; flex-direction: column; justify-content: space-between;
    }
    .menu-toggle span { width: 100%; height: 2px; background: var(--dark); transition: 0.3s; border-radius: 2px; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    /* Off-Canvas Navigation */
    .main-nav {
        position: fixed; top: 0; right: -100%; width: 85%; max-width: 400px; height: 100vh;
        background: #fff; padding: 0;
        box-shadow: -5px 0 20px rgba(0,0,0,0.05); transition: 0.3s ease-in-out;
        display: flex; flex-direction: column; justify-content: space-between;
    }
    .main-nav.active { right: 0; }

    /* Sichtbarkeits-Logik */
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }

    /* 1. Header im Menü (Logo) */
    .nav-mobile-head { display: flex; align-items: center; padding: 1.5rem 2rem; border-bottom: 1px solid #f0f0f0; background: #fafafa; }
    
    /* 2. Links Liste */
    .nav-links { 
        padding: 1rem 2rem; width: 100%; gap: 0; overflow-y: auto; 
        flex-direction: column; align-items: flex-start; 
    }
    .nav-links > li { width: 100%; border-bottom: 1px solid #f5f5f5; }
    .nav-links > li > a { display: block; padding: 1rem 0; font-size: 1.1rem; color: var(--dark); font-weight: 500; }
    
    /* Buttons in der Liste (Volle Breite) */
    .nav-links .nav-btn-fix { width: 100%; margin: 10px 0 0 0; box-sizing: border-box; padding-left: 10px;justify-content: center !important; }
    .nav-links > li:has(.nav-btn-fix) { border-bottom: none; padding-bottom: 5px; }

    /* Dropdown Mobile */
    .dropdown { display: none; padding-left: 1rem; margin-top: 0.5rem; border-left: 2px solid #eee; background: #f9f9f9; margin-left: -2rem; margin-right: -2rem; padding-right: 2rem; }
    .has-dropdown.active .dropdown { display: block; animation: fadeIn 0.3s; }
    .has-dropdown > a::after { content: '›'; float: right; font-size: 1.5rem; line-height: 1rem; color: #ccc; transform: rotate(90deg); }
    .dropdown a { display: block; padding: 0.5rem 0; color: #666; font-size: 1rem; }

    /* 3. Footer im Menü (Kontakt) */
    .nav-mobile-footer { display: block; padding: 2rem; background: var(--dark); color: white; margin-top: auto; }
    .mobile-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; font-size: 1rem; }
    .mobile-contact-item a { color: white; text-decoration: none; }
    .mobile-trust { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 5px; }
    .trust-stars { color: #fbbf24;     font-size: 1.3rem; letter-spacing: 3px; line-height: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
    .trust-text { color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 400; }
    .trust-text strong { color: #fff;  font-weight: 700; }

    /* Content Layout Mobile */
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-img-wrap { margin-top: 2rem; transform: none; }
    .floating-badge { left: 50%; transform: translateX(-50%); bottom: -15px; width: max-content; }
    .stats-bar { flex-direction: column; margin-top: 2rem; gap: 1.5rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card.large { grid-column: span 1; }
    .bento-card { min-height: 250px; }
    
    .pricing-row { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
    .pricing-info { padding-right: 0; margin-bottom: 1.5rem; width: 100%; }
    .pricing-cost { width: 100%; border-left: none; border-top: 1px solid #eee; padding-left: 0; padding-top: 1.5rem; text-align: left; display: flex; justify-content: space-between; align-items: center; }
    
    .contact-info-box { padding-right: 0; margin-bottom: 3rem; }
    .contact-form-card { padding: 1.5rem; }
    .form-row { flex-direction: column; gap: 0; }
    .tab-btn { font-size: 0.9rem; padding: 1rem 0.5rem; }
    
    .split-section { grid-template-columns: 1fr; }
    .surcharge-grid { grid-template-columns: 1fr; }
    .modal-buttons { flex-direction: column-reverse; }
    .wizard-container { padding: 1.5rem; }
    .wizard-progress { margin-bottom: 2rem; }
    .step-indicator span { display: none; }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
/* --- STYLES FÜR UEBER-UNS.PHP --- */

/* Schwebende Stats Bar auf dem Bild */
.about-stats-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-top-left-radius: 24px;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: -10px -10px 30px rgba(0,0,0,0.1);
}

.a-stat {
    display: flex;
    flex-direction: column;
}

.a-stat .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.a-stat .label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.divider {
    width: 1px;
    height: 40px;
    background: #ddd;
}

/* Values Grid (Modern Bento Style) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.v-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

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

.v-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: #fff3e0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .about-stats-overlay {
        position: relative;
        width: 100%;
        border-radius: 0;
        flex-direction: row; /* Nebeneinander lassen oder column für untereinander */
        justify-content: space-around;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .divider { display: none; }
    
    .a-stat .num { font-size: 1.5rem; }
    .a-stat .label { font-size: 0.7rem; }
}
/* --- STYLING FÜR KLEINTRANSPORT SEKTION --- */

/* Die weißen Service-Karten */
.service-box {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--primary); /* Oranger Rand beim Hover */
}

/* Icons in den Karten */
.sb-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: #fff8f0; /* Sehr helles Orange */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-box h3 {
    margin-top: 0;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.service-box p {
    font-size: 0.95rem;
    color: #666;
    flex-grow: 1; /* Schiebt die Liste nach unten */
}

/* Kleine Checkliste in der Karte */
.mini-check {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f5f5f5;
}

.mini-check li {
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mini-check li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* --- PREIS HIGHLIGHT BOX (Orange Leiste) --- */
.price-highlight-box {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: 16px;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    box-shadow: 0 10px 30px rgba(251, 130, 0, 0.25);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.ph-text {
    flex: 1;
    min-width: 250px;
}

.ph-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
}

.ph-price .label {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.ph-price .amount {
    font-size: 2rem;
    font-weight: 800;
}

/* Mobile Anpassung für die Preisbox */
@media (max-width: 700px) {
    .price-highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .ph-action {
        width: 100%;
    }
    .ph-action .btn {
        width: 100%;
    }
}
/* --- NEUES KONTAKT DESIGN (Floating) --- */

.contact-header-section {
    background-color: var(--dark);
    padding-top: 8rem;
    padding-bottom: 12rem; /* Viel Platz unten für den Überlapp */
    position: relative;
    /* Optional: Ein Hintergrundmuster */
    background-image: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.03) 0%, transparent 20%);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.c-info-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.3s ease;
    color: #fff;
}

.c-info-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.c-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.c-info-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.c-info-card p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.c-link {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

/* --- DAS SCHWEBENDE FORMULAR --- */
.contact-form-floating {
    margin-top: -8rem; /* Zieht das Formular nach oben in den dunklen Bereich */
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
}

.floating-form-box {
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Toggle Switch Styling */
.inspection-toggle-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .floating-form-box {
        padding: 1.5rem;
    }
    .contact-header-section {
        padding-bottom: 10rem;
    }
}