/* CSS Stylesheet für MVA Autopflege */

:root {
    --primary: #4A7694;        
    --primary-dark: #2A485E;
    --primary-light: #6c99bb;
    --accent: #2ecc71;
    --danger: #e74c3c;
    
    /* Etwas klarere, modernere Dunkel-Töne für besseren Kontrast */
    --bg-dark: #0B1120;        
    --bg-dark-card: #1E293B;
    --text-dark: #F8FAFC;
    --text-dark-muted: #94A3B8;

    --bg-light: #FFFFFF;       
    --bg-light-alt: #F1F5F9;
    --bg-light-card: #FFFFFF;
    --text-light: #0F172A;
    --text-light-muted: #475569;

    --border-dark: rgba(255, 255, 255, 0.1);
    --border-light: rgba(0, 0, 0, 0.08);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Hilfsklassen */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.block { display: block; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.w-100 { width: 100%; }

.subheading {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: var(--text-light-muted);
}

.badge {
    display: inline-block;
    background-color: rgba(74, 118, 148, 0.2);
    color: var(--primary-light);
    border: 1px solid var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Alternierende Sektionen */
.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

.section-dark .section-title {
    color: #FFFFFF;
}

.section-light {
    background-color: var(--bg-light-alt);
    color: var(--text-light);
}

.section-light .section-title {
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(74, 118, 148, 0.4);
}

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

.btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-card {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 25px;
    background-color: rgba(74, 118, 148, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-card:hover {
    background-color: var(--primary);
    color: #FFFFFF;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #05080F; /* Sehr dunkles Blau/Schwarz für guten Logo-Kontrast */
    border-bottom: 1px solid var(--border-dark);
    transition: top 0.3s ease-in-out;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    height: 65px; /* Perfekt abgestimmt auf die Höhe der Navigationsleiste */
    width: 65px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
}

.mobile-menu-icon {
    display: none;
    font-size: 2rem;
    color: #FFFFFF;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1601362840469-51e4d8d58785?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 17, 32, 0.7) 0%, rgba(11, 17, 32, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.6rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-dark-muted);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Steps */
.steps-wrapper { margin-top: 50px; }
.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}
.step-card {
    background-color: var(--bg-dark-card);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dark);
    text-align: center;
    flex: 1;
}
.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 20px auto;
}
.step-connector {
    height: 2px;
    background: var(--primary);
    width: 30px;
    align-self: center;
    margin-top: -30px;
    opacity: 0.5;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
    align-items: stretch;
}
.pricing-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 35px 20px;
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.pricing-card.bestseller {
    border: 2.5px solid var(--primary);
    box-shadow: 0 10px 30px rgba(74, 118, 148, 0.2);
    transform: scale(1.03);
    z-index: 1;
}
.bestseller-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: #FFFFFF;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    z-index: 2;
}
.package-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 24px;
}
.price {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
}
.features-list { list-style: none; flex-grow: 1; }
.features-list li {
    font-size: 0.88rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.features-list li.excluded {
    color: #94a3b8;
}
.check { color: var(--accent); font-weight: 900; }
.cross { color: var(--danger); font-weight: 900; }

/* Offer Banner (Sonderangebot) */
.offer-banner {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #FFFFFF;
    padding: 28px 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 24px;
}
.offer-icon { font-size: 2.5rem; }

/* Addons */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.addon-box {
    background-color: #FFFFFF;
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}
.addon-box h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light-alt);
}
.addon-box ul { list-style: none; }
.addon-box li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 8px;
}
.price-tag { color: var(--primary-dark); }

/* Kontakt, Reviews, Galerie */
.gallery-grid, .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.gallery-placeholder {
    background-color: var(--bg-dark-card);
    border: 2px dashed var(--border-dark);
    padding: 40px;
    text-align: center;
    border-radius: var(--radius-md);
}
.review-card {
    background-color: #FFFFFF;
    padding: 28px;
    border-radius: var(--radius-md);
}
.stars { color: #f59e0b; margin-bottom: 12px; font-size: 1.2rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}
.contact-list { list-style: none; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 16px; margin-bottom: 20px; }
.contact-list a { color: #FFFFFF; text-decoration: none; font-weight: 700; }
.social-links { display: flex; gap: 12px; margin-top: 12px; }
.social-btn {
    background-color: var(--bg-dark-card);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid var(--border-dark);
}

.contact-form-card {
    background-color: var(--bg-dark-card);
    padding: 36px;
    border-radius: var(--radius-lg);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--text-dark-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px;
    background-color: #0F172A;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    color: #FFFFFF;
}

/* Footer & Modals */
footer {
    background-color: #05080F;
    padding: 60px 0 30px 0;
    border-top: 1px solid var(--border-dark);
}
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-legal a { color: var(--text-dark-muted); text-decoration: none; }
.modal {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0;
    width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8);
    align-items: center; justify-content: center;
}
.modal-content {
    background-color: var(--bg-dark-card);
    padding: 40px; border-radius: var(--radius-md); max-width: 500px;
    position: relative;
}
.close-btn { position: absolute; top: 15px; right: 20px; font-size: 2rem; cursor: pointer; }

/* 📱 MOBILE RESPONSIVENESS */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .steps-grid { flex-direction: column; }
    .step-connector { display: none; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.4rem; }
    
    .hero-buttons { 
        flex-direction: column; 
        gap: 15px; 
    }
    .hero-buttons .btn { width: 100%; margin: 0; }
    
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #05080F;
        flex-direction: column;
        align-items: center;
        padding: 24px 0;
        gap: 20px;
        opacity: 0;
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
        pointer-events: none;
    }
    
    .nav-links.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .mobile-menu-icon { display: block; }
    
    .pricing-card.bestseller {
        transform: scale(1); 
    }
}
/* Custom Select Styling */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select select {
    appearance: none; /* Entfernt den Standard-Pfeil des Browsers */
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 14px 40px 14px 14px; /* Platz für den neuen Pfeil rechts */
    background-color: #0F172A;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    font-size: 1rem;
    cursor: pointer;
}

/* Der neue, schicke Dropdown-Pfeil */
.custom-select::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 0.8rem;
    pointer-events: none; /* Klicks gehen durch das Icon an das Select durch */
}

.custom-select select:focus {
    outline: 2px solid var(--primary);
    border-color: var(--primary);
}

/* Checkbox Styling */
.checkbox-group {
    margin-top: -10px;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-dark) !important;
}

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