/* style.css - Wien Umzugsdienst (Blau & Gelb Edition) */

/* --- 1. GLOBALE DETAILS --- */
html { scroll-behavior: smooth; }
p { margin-bottom: 1.5rem; color: #4a4a4a; line-height: 1.6; }

/* Hilfsklasse: Textausrichtung */
.text-center { text-align: center; }
.text-right { text-align: right; }
.align-start { align-items: flex-start !important; }

/* Verhindert, dass Überschriften unter dem Sticky-Header verschwinden */
section[id] { scroll-margin-top: 100px; }


/* --- 2. NAVIGATION (Desktop ab 800px) --- */
@media (min-width: 800px) {
    .dropdown-trigger { position: relative; }
    
    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        min-width: 220px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-radius: 4px;
        padding: 0.5rem 0;
        z-index: 999;
        text-align: left;
        border-top: 3px solid var(--primary); /* Blau */
    }

    .dropdown-trigger:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.2s ease-in-out;
    }

    .dropdown-menu li { display: block; width: 100%; }

    .dropdown-menu a {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        color: #333;
        border-bottom: 1px solid #f9f9f9;
        white-space: nowrap;
        display: block;
    }

    .dropdown-menu a:hover {
        background-color: #f0f7ff; /* Ganz helles Blau */
        color: var(--primary);
        padding-left: 1.8rem;
        transition: all 0.2s;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}


/* --- 3. MOBILE NAVIGATION (unter 800px) --- */
@media (max-width: 799px) {
    #main-nav {
        text-align: left;
        padding: 0;
        max-height: 80vh; 
        overflow-y: auto;
        border-top: 1px solid #eee;
    }

    nav a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #f5f5f5;
        font-size: 1.1rem;
        font-weight: 600;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        color: #333;
        text-decoration: none;
    }

    /* Dropdown Trigger aktiv */
    .dropdown-trigger.active > a {
        color: var(--primary);
        background-color: #f0f7ff;
    }
    
    /* Dropdown Container */
    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
        background-color: #fff;
        width: 100%;
        box-sizing: border-box; 
    }

    .dropdown-trigger.active .dropdown-menu {
        display: block;
        animation: slideIn 0.3s ease-out;
    }

    /* Unterpunkte */
    .dropdown-menu li { margin: 0; display: block; width: 100%; }

    .dropdown-menu li a {
        padding: 0.8rem 1rem 0.8rem 2.5rem; /* Einrückung */
        font-size: 1rem;     
        color: #555;        
        border-bottom: 1px solid #eee;
        font-weight: normal; 
        background: transparent;
        border-left: 4px solid transparent; 
        transition: all 0.2s ease;
    }

    .dropdown-menu li a:hover,
    .dropdown-menu li a:active {
        background-color: #f9f9f9; 
        color: var(--primary);    
        padding-left: 2.8rem;
        border-left-color: var(--primary);
    }
    
    /* Kontakt Button Mobil */
    .btn-nav {
        margin: 1.5rem auto !important;
        display: block !important;
        width: calc(100% - 3rem) !important;
        text-align: center;
        background: var(--primary);
        color: white !important;
        border-radius: 6px;
    }

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


/* --- 4. BUTTONS (Blau/Gelb Design) --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    line-height: 1.2;
}

/* Primary = BLAU (mit weißer Schrift) */
.btn-primary {
    background-color: var(--primary) !important; 
    color: #ffffff !important; 
    border-color: var(--primary) !important;
}

/* Hover = GELB (mit blauer Schrift für Kontrast) */
.btn-primary:hover {
    background-color: var(--dark) !important; /* Gelb */
    border-color: var(--dark) !important;
    color: var(--primary) !important; /* Blaue Schrift */
    box-shadow: 0 4px 15px rgba(0, 81, 158, 0.25);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: #ddd;
    color: #333;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: #fff;
}


/* --- 5. HERO SECTION & STRUKTUR --- */
.hero-bg {
    background: linear-gradient(to right, #ffffff 0%, #f9f9f9 100%);
    position: relative;
    overflow: hidden;
}

.hero-headline {
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #000;
}

/* Highlight Span im Hero (Gelb hinterlegt, blaue Schrift) */
.hero-headline span {
    display: inline-block; /* NEU: Sorgt dafür, dass das Padding den Text darüber wegdrückt */
    margin-top: 0.2em;     /* NEU: Ein kleiner zusätzlicher Abstand nach oben */
    background-color: var(--dark); /* Gelb */
    color: var(--primary);         /* Blau */
    padding: 2px 10px;
    box-shadow: 4px 4px 0 rgba(0, 81, 158, 0.1);
}

.hero-subline {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-img-style {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
}

/* Trust Bar */
.trust-bar {
    display: flex; gap: 1.5rem; margin-top: 2.5rem; padding-top: 1.5rem;
    border-top: 1px solid #eee; font-size: 0.9rem; color: #666; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; }
.trust-item span:first-child {
    color: var(--dark) !important; /* Sterne Gelb */
}


/* --- 6. FEATURE KARTEN --- */
.section-padding { padding: 4rem 0; }

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

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

/* Icon Wrapper: Helles Blau, Icon Blau */
.icon-wrapper {
    width: 60px; height: 60px;
    background-color: #e6f0fa; /* Helles Blau */
    color: var(--primary);     /* Blaues Icon */
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-size: 1.8rem; margin-bottom: 1.5rem;
    transition: background-color 0.3s;
}

/* Hover: Wrapper wird Gelb */
.feature-card:hover .icon-wrapper {
    background-color: var(--dark);
    color: var(--primary);
}

.feature-card h3 { margin-bottom: 0.8rem; font-size: 1.25rem; font-weight: 700; color: #000; }
.feature-card p { font-size: 0.95rem; line-height: 1.6; color: #666; margin-bottom: 0; }


/* --- 7. LISTEN & CONTENT --- */
.bg-light { background-color: #f8f9fa; }

ul.check-list { list-style: none; padding-left: 0; margin-bottom: 2rem; }
ul.check-list li { padding-left: 2rem; position: relative; margin-bottom: 0.8rem; line-height: 1.5; }
ul.check-list li::before { 
    content: '✓'; 
    position: absolute; left: 0; top: 0;
    color: var(--primary); /* Haken Blau */
    font-weight: 800; font-size: 1.2rem; 
}
ul.check-list li strong { color: #000; }

/* SEO Content */
.seo-content p { margin-bottom: 1rem; line-height: 1.7; color: #555; }
.seo-content strong { color: var(--primary); font-weight: 600; }


/* --- 8. PREISE & TABELLEN --- */
.price-grid { align-items: center; }

.price-card {
    background: #fff; border: 1px solid #eee; border-radius: 12px;
    padding: 2rem; text-align: center; position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.price-card h3 { font-size: 1.3rem; color: #000; margin-bottom: 1rem; }

.price-amount {
    font-size: 3rem; font-weight: 800; color: var(--primary); /* Preis Blau */
    line-height: 1; margin-bottom: 0.5rem;
}
.price-amount .currency { font-size: 1.5rem; vertical-align: top; margin-right: 2px; }
.price-amount .period { font-size: 1rem; color: #999; font-weight: normal; vertical-align: bottom; }
.price-desc { color: #777; font-size: 0.9rem; margin-bottom: 1.5rem; }
.price-card hr { border: 0; border-top: 1px solid #f4f4f4; margin: 1.5rem 0; }
.price-features { text-align: left; margin-bottom: 2rem; font-size: 0.95rem; }

/* Bestseller (Gelber Rahmen) */
.price-card.popular {
    border: 3px solid var(--dark); /* Gelber Rahmen */
    padding: 2.5rem 2rem; z-index: 1; transform: scale(1.05);
}
.price-card.popular:hover { transform: scale(1.05) translateY(-5px); }
.badge {
    background: var(--dark); /* Gelb */
    color: var(--primary);   /* Blau */
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: bold; text-transform: uppercase;
}

.price-table {
    width: 100%; border-collapse: collapse; margin-top: 1rem;
    background: #fff; border-radius: 8px; overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.price-table td { padding: 1rem; border-bottom: 1px solid #eee; }


/* --- 9. KONTAKT --- */
.contact-info-box { padding-right: 2rem; }
.contact-list { list-style: none; padding: 0; margin: 2rem 0; }
.contact-list li { display: flex; gap: 1rem; margin-bottom: 2rem; }
.contact-list .icon {
    width: 40px; height: 40px; background: #e6f0fa; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0; color: var(--primary);
}
.contact-list a { color: var(--primary); text-decoration: none; font-weight: 600; }

.contact-form-card {
    background: #fff; padding: 2.5rem; border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary);
}
.map-container { border-radius: 8px; overflow: hidden; margin-top: 2rem; }

.alert { padding: 1rem; border-radius: 6px; margin-bottom: 2rem; text-align: center; font-weight: bold; }
.alert.success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }


/* --- 10. CTA BANNER (Blau) --- */
.cta-banner {
    background-color: var(--primary); /* Blau */
    color: #fff; padding: 4rem 0; text-align: center; margin-top: 2rem;
}
.cta-content h2 { color: #fff; font-size: 2.2rem; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.9); font-size: 1.2rem; margin: 0 auto 2rem auto; max-width: 600px;}
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }


/* --- 11. FOOTER (Gelb) --- */
footer, .bg-dark {
    background-color: var(--dark) !important; /* GELB */
    color: #001D3D !important; /* Dunkelblau/Schwarz für Kontrast */
    border-top: 5px solid var(--primary); /* Blauer Rand oben */
}
footer h3, footer h2 { color: #000 !important; }
footer p { color: #333 !important; }
footer a { color: var(--primary) !important; font-weight: 600; }
footer a:hover { color: #000 !important; text-decoration: underline; }

/* Copyright Zeile */
footer div[style*="border-top"] {
    border-top: 1px solid rgba(0,0,0,0.1) !important;
    color: #333 !important;
    opacity: 1 !important;
}


/* --- 12. UTILS & RESPONSIVE --- */
.split-section { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.split-section .image-container { order: -1; }
.image-container img { max-width: 100%; height: auto; }

@media (min-width: 800px) {
    .split-section { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .split-section .image-container { order: 0; }
}

@media (max-width: 768px) {
    .hero-headline { font-size: 2.2rem; } 
    .hero-subline { font-size: 1.1rem; }
    .hero-bg .btn { display: block; width: 100%; margin-bottom: 0.8rem; }
    .hero-img-style { transform: none; margin-bottom: 1.5rem; }
    .trust-bar { flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
    .seo-columns { column-count: 1 !important; text-align: left !important; }
    .price-card.popular { transform: none; margin: 1rem 0; }
    .contact-info-box { padding-right: 0; margin-bottom: 3rem; }
    .contact-form-card { padding: 1.5rem; }
    .cta-buttons { flex-direction: column; gap: 1rem; }
    .cta-buttons .btn { width: 100%; margin-left: 0 !important; }
}

/* Grid Cards (3 Spalten) */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem;
}
/* 1. USP Leiste (Dunkelblau) */
.usp-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.usp-item {
    display: flex;
    align-items: center;
}

/* 2. Service Grid (Kacheln mit Bild) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-tile {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

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

.tile-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
}

.tile-content {
    padding: 1.5rem;
}

.tile-content h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.btn-link {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3. FAQ Accordion */
.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: bold;
    background-color: #fcfcfc;
    list-style: none; /* Dreieck ausblenden */
    position: relative;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-weight: normal;
    font-size: 1.2rem;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 1rem 1.5rem;
    margin: 0;
    border-top: 1px solid #eee;
    background: #fff;
    color: #555;
}

/* Mobile Anpassung für USP Bar */
@media (max-width: 768px) {
    .usp-bar {
        flex-direction: column;
        padding: 0 1rem;
    }
}
/* --- LEISTUNGEN SEITE (Katalog Layout) --- */

/* Das Grid: Sidebar (300px) + Content (Rest) */
@media (min-width: 900px) {
    .service-layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 3rem;
        align-items: start;
    }

    .service-sidebar {
        display: block;
    }
    
    /* Sticky Sidebar */
    .sticky-nav {
        position: sticky;
        top: 100px; /* Abstand von oben beim Scrollen */
    }
}

@media (max-width: 899px) {
    .service-layout {
        display: block; /* Auf Handy untereinander */
    }
    .service-sidebar {
        display: none; /* Sidebar mobil ausblenden (oder nach oben schieben) */
    }
}

/* Sidebar Navigation */
.anchor-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.anchor-nav a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #555;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    background: #fff;
    border-radius: 0 4px 4px 0;
}

.anchor-nav a:hover, .anchor-nav a.active {
    background: #f0f7ff;
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
}

/* Service Detail Cards (Der "Stapel") */
.service-detail-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    /* Ein gelber Akzent oben */
    border-top: 5px solid var(--dark);
}

/* Das Header Bild in der Karte */
.card-header-img {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-color: #eee;
}

/* Das schwebende Icon */
.card-icon {
    position: absolute;
    top: 220px; /* Sitzt auf der Kante Bild/Text */
    right: 2rem;
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-body {
    padding: 2.5rem;
}

.card-body h2 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.card-body .lead {
    font-size: 1.1rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Feature Grid innerhalb der Karte */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    background: #fcfcfc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.feat strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.feat span {
    font-size: 0.9rem;
    color: #666;
}

/* Mobile Anpassung für Karte */
@media (max-width: 600px) {
    .card-header-img { height: 180px; }
    .card-icon { width: 50px; height: 50px; font-size: 1.5rem; top: 155px; right: 1.5rem; }
    .card-body { padding: 1.5rem; padding-top: 2rem; }
    .card-body h2 { font-size: 1.5rem; }
}
/* --- NEUES PREIS LAYOUT (Horizontal) --- */

.pricing-list-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Die einzelne Zeile */
.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);
}

/* Linke Seite: Text */
.pricing-info {
    flex: 1;
    padding-right: 2rem;
}

.pricing-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary); /* Blau */
}

.pricing-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Feature Liste in der Zeile */
.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;
}

/* Rechte Seite: Preis */
.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;
}

/* FEATURED ROW (Bestseller) */
.pricing-row.featured {
    border: 2px solid var(--dark); /* Gelber Rahmen */
    background: #fff;
    transform: scale(1.02); /* Leicht größer */
    z-index: 2;
}
.pricing-row.featured:hover { transform: scale(1.02) translateY(-2px); }

.badge-row {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--dark); /* Gelb */
    color: var(--primary);   /* Blau */
    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;
}
.modern-table tr:last-child td { border-bottom: none; }


/* --- SURCHARGE GRID (Kleine Boxen für Zuschläge) --- */
.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;
}

.surcharge-item .icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.surcharge-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.surcharge-item p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}


/* --- MOBILE ANPASSUNG --- */
@media (max-width: 768px) {
    .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;
    }
    
    .price-tag { margin-bottom: 0; font-size: 2rem; }
    
    .surcharge-grid { grid-template-columns: 1fr; }
}
/* --- KONTAKT SEITE (Design Update) --- */

.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;
}

/* Icons: Blaues Symbol auf hellem Hintergrund */
.contact-list .icon {
    width: 45px;
    height: 45px;
    background: #eef4fb; /* Sehr helles Blau */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    color: var(--primary); /* Blau */
}

.contact-list a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.contact-list a:hover {
    color: #000;
    text-decoration: underline;
}

/* Formular Karte */
.contact-form-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    /* border-top wird inline in der PHP gesetzt, um var(--dark) zu nutzen */
}

.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 {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 81, 158, 0.1);
}

/* Karte */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid #eee;
}

/* Mobile */
@media (max-width: 800px) {
    .contact-info-box { padding-right: 0; margin-bottom: 3rem; }
    .contact-form-card { padding: 1.5rem; }
}
/* --- ABLAUF / PROCESS SECTION --- */

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
}

.process-item h3 {
    color: var(--primary); /* Blau */
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.process-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Der gelbe Kreis mit der Nummer */
.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--dark); /* Gelb */
    color: var(--primary);         /* Blau */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.5rem auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 195, 0, 0.3); /* Leichter gelber Schein */
}

/* Verbindungslinie zwischen den Schritten (Nur Desktop) */
@media (min-width: 900px) {
    .process-item {
        position: relative;
    }
    
    /* Eine graue Linie, die die Punkte verbindet */
    .process-item::after {
        content: '';
        position: absolute;
        top: 30px; /* Mitte des Kreises */
        right: -50%; /* Reicht bis zur Hälfte des nächsten Items */
        width: 100%;
        height: 2px;
        background-color: #eee;
        z-index: 1;
    }
    
    /* Beim letzten Element die Linie verstecken */
    .process-item:last-child::after {
        display: none;
    }
}