/* Modern Advantages Grid for Process Section */
.modern-advantages {
    margin-top: 20px;
    margin-bottom: 30px;
}
.modern-advantages h3 {
    font-size: 24px;
    color: var(--success-color);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.advantage-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    color: var(--text-dark);
    font-weight: 500;
    transition: box-shadow 0.2s;
}
.advantage-card i {
    font-size: 26px;
    color: var(--primary-color);
    flex-shrink: 0;
}
.advantage-card:hover {
    box-shadow: var(--shadow-hover);
}
/* ===== CSS Variables ===== */
:root {
    --primary-color: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --white: #ffffff;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius: 0.75rem;
    --border-radius-sm: 0.5rem;
    --border-radius-lg: 1rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Performance-Optimierungen für Mobile */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* GPU-Beschleunigung für Animationen */
.service-card,
.symptom-card,
.why-us-card,
.process-step,
.btn,
.nav-link {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform, opacity;
}

/* Optimierte Scroll-Performance */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

.container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ===== Top Bar ===== */
.top-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.top-bar-item i {
    color: var(--primary-color);
    font-size: 14px;
}

.top-bar-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-item a:hover {
    color: var(--primary-color);
}

.termin-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    text-transform: uppercase;
}

.termin-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== Animated Ticker Banner ===== */
.ticker-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%);
    color: var(--white);
    overflow: hidden;
    padding: 14px 0;
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 15s linear infinite;
}

.ticker-text {
    display: inline-block;
    padding: 0 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.ticker-banner:hover .ticker-content {
    animation-play-state: paused;
}

/* ===== Header / Navigation ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    transition: var(--transition);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-radius: var(--border-radius-sm);
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(30, 64, 175, 0.05);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.05));
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown .nav-link i {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Touch-optimierte Elemente */
@media (max-width: 768px) {
    /* Mindestgröße für Touch-Targets */
    .btn,
    .nav-link,
    .termin-btn,
    .mobile-menu-toggle,
    .faq-question {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Verbesserte Touch-Bereiche */
    .contact-item a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 0;
        min-height: 44px;
    }
    
    /* Verhindert Zoom beim Fokus auf Eingabefelder */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
        padding: 14px 16px !important;
        border-radius: 8px !important;
    }
    
    label {
        font-size: 14px;
        margin-bottom: 8px;
        display: block;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    /* Verbesserte Scroll-Performance */
    .nav,
    .dropdown-menu {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Entfernt Tap-Highlight */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Verbesserte Button-Interaktionen */
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Optimierte Karten-Abstände für Touch */
    .service-card,
    .symptom-card,
    .why-us-card,
    .process-step {
        margin-bottom: 15px;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    background: #1a1a1a;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/car-engine.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 25px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-call {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-call:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ===== Section Styles ===== */
section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== About Intro Section ===== */
.about-intro {
    background-color: var(--bg-light);
}

.about-intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-intro-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.stat-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-number {
    font-size: 60px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== Mercedes Section ===== */
.mercedes-section {
    background-color: var(--white);
}

.mercedes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mercedes-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mercedes-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mercedes-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.mercedes-text ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.mercedes-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

/* ===== About Detailed Section ===== */
.about-detailed {
    background-color: var(--bg-light);
}

.about-detailed h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.about-detailed-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-detailed-text p {
    font-size: 16px;
    line-height: 1.8;
}

.about-detailed-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-detailed-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ===== Services Section ===== */
.services {
    background-color: var(--white);
}

.services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== FAQ Section ===== */
.faq {
    background-color: var(--bg-light);
}

.faq h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.faq-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background-color: var(--white);
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-answer-content {
    padding: 0 25px 20px;
}

.faq-answer-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ===== Contact Section ===== */
.contact {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-item a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item a i {
    font-size: 16px;
    color: var(--primary-color);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form .form-row {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    transform: translateY(-2px);
}

/* Form Message Styles */
.form-message {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 15px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.form-message.success {
    background-color: var(--success-color);
    color: var(--white);
    opacity: 1;
    transform: translateY(0);
}

.form-message.error {
    background-color: var(--warning-color);
    color: var(--white);
    opacity: 1;
    transform: translateY(0);
}

/* ===== Auftragsformular Section ===== */
.auftragsformular {
    background-color: var(--bg-light);
}

.auftragsformular h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.auftragsformular > p {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.download-link:hover {
    color: #a01828;
}

.auftrag-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

/* ===== Symptoms Section ===== */
.symptoms-section {
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.symptom-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.symptom-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
    transition: var(--transition);
    transform: scale(0);
}

.symptom-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.symptom-card:hover::after {
    transform: scale(1);
}

.symptom-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #8b1528);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.symptom-icon i {
    font-size: 32px;
    color: var(--white);
}

.symptom-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.symptom-card ul {
    list-style: none;
    padding: 0;
}

.symptom-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

.symptom-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

/* ===== Services Overview Section ===== */
.services-overview {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    z-index: 2;
    padding: clamp(80px, 12vw, 120px) 0;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.08), transparent 70%);
    pointer-events: none;
}

.services-grid-overview {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 60px;
    align-items: stretch;
}

@media (max-width: 1400px) {
    .services-grid-overview {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1100px) {
    .services-grid-overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .services-grid-overview {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.service-overview-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-overview-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12), 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-overview-card:hover::before {
    opacity: 1;
}

.service-overview-card:hover::after {
    opacity: 1;
}

.service-overview-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #e5e7eb 0%, #cbd5e1 100%);
}

.service-overview-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.service-overview-card:hover .service-overview-image::before {
    opacity: 0.5;
}

.service-overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-overview-card:hover .service-overview-image img {
    transform: scale(1.08);
}

.service-overview-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    position: relative;
    overflow: visible;
}

.service-overview-content h3 {
    font-size: 23px;
    margin: 0;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-overview-content h3::before {
    content: '';
    width: 6px;
    height: 28px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    flex-shrink: 0;
}

.service-overview-content p {
    font-size: 15.5px;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
}

.btn-service {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.55s ease;
}

.btn-service:hover::before {
    left: 120%;
}

.btn-service.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-service.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-service.btn-secondary {
    background: #ffffff;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-service.btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-service i {
    font-size: 12px;
    transition: var(--transition);
}

.btn-service:hover i {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .service-overview-card {
        grid-template-columns: 1fr;
    }

    .service-overview-image {
        min-height: clamp(240px, 40vw, 360px);
    }

    .service-overview-content {
        padding-top: 12px;
    }

    .service-overview-content::before {
        left: 0;
        top: -12px;
    }
}

@media (max-width: 640px) {
    .services-grid-overview {
        gap: 28px;
    }

    .service-overview-card {
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .service-overview-content {
        padding: 20px 20px 20px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        flex: 1 !important;
    }
    
    .service-overview-content h3 {
        margin-bottom: 10px !important;
    }

    .service-overview-content p {
        margin: 0 0 10px 0 !important;
        flex: 0 1 auto !important;
    }

    .service-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        gap: 10px !important;
    }

    .btn-service {
        width: 100% !important;
        margin: 0 !important;
    }
}

/* ===== Why Us Section ===== */
.why-us-section {
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-us-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-light);
    position: relative;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.why-us-card:hover::before {
    transform: scaleX(1);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 30px auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.why-us-icon i {
    font-size: 36px;
    color: var(--white);
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.why-us-card h3 {
    font-size: 18px;
    margin: 20px 15px 10px;
    color: var(--text-dark);
}

.why-us-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    padding: 0 15px 20px;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(248, 250, 252, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.03) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-20px, -20px) rotate(180deg);
    }
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.cta-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== Process Section ===== */
.process-section {
    background-color: var(--bg-light);
}

.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 50px;
}

.process-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-intro {
    max-width: 500px;
}

.process-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.process-intro h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.1;
}

.process-intro .btn {
    margin-top: 10px;
    align-self: flex-start;
}

.process-timeline {
    position: relative;
    padding-left: 0;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    border-radius: 1px;
}

.process-timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.process-timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 32px;
    color: var(--white);
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Animation for timeline steps */
.process-timeline-step {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInTimeline 0.6s ease forwards;
}

.process-timeline-step:nth-child(2) { animation-delay: 0.1s; }
.process-timeline-step:nth-child(3) { animation-delay: 0.2s; }
.process-timeline-step:nth-child(4) { animation-delay: 0.3s; }
.process-timeline-step:nth-child(5) { animation-delay: 0.4s; }

@keyframes slideInTimeline {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== About Us Section ===== */
.about-us-section {
    background-color: var(--bg-light);
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-us-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-us-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-us-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ===== FAQ CTA ===== */
.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.faq-cta .btn {
    margin: 8px 5px;
}

@media (max-width: 768px) {
    .faq-cta {
        padding: 30px 20px;
    }
    
    .faq-cta .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

/* ===== Call to Action Section ===== */
.cta-section {
    background: linear-gradient(311deg, #9399ab 0%, #ffffff 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.cta-action {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-transform: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    background: var(--primary-dark);
}

.btn-large i {
    margin-right: 12px;
    font-size: 20px;
}

/* ===== WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 200px 250px 250px;
    gap: 40px;
    align-items: start;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 100px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info .contact-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-info .contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-info .contact-item span,
.contact-info .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-info .contact-item a:hover {
    color: var(--primary-color);
}

.opening-hours .hour-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.opening-hours .day {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.opening-hours .time {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.opening-hours .special .time {
    color: #ff6b6b;
}

.footer-cta {
    margin-top: 25px;
}

.footer-cta .btn {
    font-size: 14px;
    padding: 12px 24px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* ===== Subpage Styles ===== */
.express-service {
    background-color: var(--bg-light);
    padding: 40px 0;
}

.express-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.express-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.ezs-info,
.elv-info {
    background-color: var(--white);
}

.ezs-content,
.elv-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

.ezs-text h3,
.elv-text h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.symptom-list {
    list-style: none;
    margin: 20px 0;
}

.symptom-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
}

.symptom-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
}

.motto {
    background-color: var(--bg-light);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    margin-top: 30px;
    font-size: 18px;
}

.ezs-images,
.elv-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ezs-images img,
.elv-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.required-parts {
    background-color: var(--bg-light);
}

.required-parts h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.required-parts ul {
    list-style: none;
    margin: 20px 0;
}

.required-parts ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.required-parts ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.note {
    margin-top: 20px;
    font-style: italic;
    color: var(--text-light);
}

.process {
    background-color: var(--white);
}

.process h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.process-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    color: var(--text-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #8b1528);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.models {
    background-color: var(--bg-light);
}

.models h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.model-item {
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    text-align: center;
    font-weight: 500;
    transition: all 0.3s;
}

.model-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.info-section {
    background-color: var(--white);
}

.info-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.info-content h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.info-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-section {
    background-color: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-item i {
    font-size: 20px;
    color: var(--primary-color);
}

.cta-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-item a:hover {
    color: var(--primary-color);
}

.cta-item a i {
    font-size: 18px;
    color: var(--primary-color);
}

/* ===== Utility Classes ===== */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* ===== Mobile Text Overflow Protection ===== */
@media (max-width: 768px) {
    /* Prevent text overflow on all elements */
    h1, h2, h3, h4, h5, h6, p, span, div, a, button {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    /* Specific button optimizations */
    .btn, .termin-btn, button {
        white-space: normal;
        text-align: center;
        min-height: 44px;
        line-height: 1.2;
    }
    
    /* Prevent horizontal overflow */
    .hero-content, .section-header, .service-card, .symptom-card, .why-us-card, .process-step {
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Ensure proper spacing */
    .hero-buttons {
        margin: 0 -8px;
    }
    
    .hero-buttons .btn {
        margin: 8px;
        flex: 1;
        min-width: 0;
    }
}

/* Very Small Mobile Phones */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0 50px;
        min-height: 55vh;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.2;
        padding: 0 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 14px;
        padding: 0 5px;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
        word-wrap: break-word;
    }
    
    .hero-buttons .btn {
        padding: 13px 20px;
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .service-overview-content {
        padding: 20px 16px 8px !important;
    }
    
    .service-overview-content h3 {
        font-size: 17px;
        line-height: 1.4;
        gap: 10px;
    }
    
    .service-overview-content h3::before {
        width: 5px;
        height: 24px;
    }
    
    .service-overview-content p {
        font-size: 13.5px;
        line-height: 1.65;
        margin: 0 0 10px 0 !important;
        flex: 0 1 auto !important;
    }
    
    .service-buttons {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .service-overview-image {
        height: 180px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-header h2 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .service-card,
    .symptom-card,
    .why-us-card,
    .process-step {
        padding: 20px 16px;
    }
    
    .contact-form-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .contact-form-info {
        padding: 0;
        text-align: center;
    }
    
    .contact-form-info h2 {
        font-size: 24px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .contact-info-card {
        padding: 20px 18px;
    }
    
    .nav-link {
        padding: 16px 15px;
        font-size: 15px;
    }
    
    .dropdown-menu a {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Extra Small Mobile Phones */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 18px;
        line-height: 1.1;
        padding: 0 2px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 12px;
        padding: 0 2px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-header h2 {
        font-size: 18px;
        line-height: 1.1;
        padding: 0 2px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .service-card h3,
    .symptom-card h3,
    .why-us-card h3 {
        font-size: 15px;
    }
    
    .service-card p,
    .symptom-card ul li,
    .why-us-card p {
        font-size: 13px;
    }
}

/* ===== Responsive Design ===== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .top-bar-left,
    .top-bar-right {
        width: 100%;
        justify-content: space-between;
        gap: 15px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: 65vh;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-intro-content,
    .mercedes-content,
    .about-detailed-content,
    .contact-grid,
    .ezs-content,
    .elv-content,
    .cta-content,
    .about-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .symptoms-grid,
    .why-us-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-card,
    .process-step {
        padding: 24px 20px;
    }
    
    .why-us-card h3,
    .process-step h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .why-us-card p,
    .process-step p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .services-grid-overview {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-overview-card {
        flex-direction: column;
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
    }
    
    .service-overview-image {
        width: 100%;
        height: 180px;
        flex-shrink: 0;
    }
    
    .service-overview-content {
        width: 100%;
        padding: 20px 20px 12px !important;
        overflow: visible !important;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .service-overview-content h3 {
        font-size: 17px !important;
        line-height: 1.4 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        flex-wrap: wrap;
        margin-bottom: 10px !important;
    }
    
    .service-overview-content p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        flex: 0 1 auto !important;
        margin-bottom: 10px !important;
    }
    
    .service-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .btn-service {
        width: 100% !important;
        justify-content: center;
        padding: 14px 20px !important;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

/* Large Mobile Phones */
@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }
    
    /* Körper-Padding hinzufügen, um Header-Überlappung zu vermeiden */
    body {
        padding-top: 140px;
    }
    
    .container {
        padding: 0 18px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .top-bar {
        padding: 10px 0;
        font-size: 11px;
    }
    
    .top-bar-content {
        gap: 10px;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }
    
    .top-bar-right {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .top-bar-item {
        font-size: 11px;
    }
    
    .termin-btn {
        padding: 10px 18px;
        font-size: 12px;
        width: 100%;
        margin-top: 8px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 10001;
        position: relative;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        transition: left 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 10000;
        padding-top: 80px;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 18px 20px;
        border-bottom: 1px solid var(--border-light);
        font-size: 16px;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        background: var(--bg-light);
        border-radius: 0;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 600px;
        overflow-y: auto;
    }
    
    .dropdown-menu a {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 16px;
        padding: 0 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 15px;
        padding: 0 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 14px;
        padding: 0 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 26px;
        padding: 0 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-header p {
        padding: 0 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .symptoms-grid,
    .why-us-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-intro h2 {
        font-size: 32px;
        padding: 0 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .timeline-line {
        left: 30px;
        top: 40px;
        bottom: 40px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        margin-right: 20px;
    }
    
    .timeline-icon i {
        font-size: 24px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .timeline-content p {
        font-size: 14px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .process-timeline-step {
        margin-bottom: 35px;
    }
    
    .services-grid-overview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-overview-card {
        flex-direction: column;
        height: 400px;
        border-radius: 16px;
    }
    
    .service-overview-image {
        width: 100%;
        height: 180px;
        flex-shrink: 0;
    }
    
    .service-overview-content {
        width: 100%;
        padding: 25px 20px;
    }
    
    .service-overview-content h3 {
        font-size: 20px;
        padding-left: 15px;
    }
    
    .service-overview-content p {
        font-size: 14px;
        padding-left: 15px;
    }
    
    .service-buttons {
        flex-direction: column;
        gap: 10px;
        padding-left: 15px;
    }
    
    .btn-service {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .btn-service {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .service-card,
    .symptom-card,
    .why-us-card,
    .process-step {
        padding: 25px 16px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        gap: 30px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 32px;
        padding: 0 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .cta-text p {
        font-size: 16px;
        padding: 0 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .cta-action {
        justify-content: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        padding: 18px 30px;
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Standard Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
        max-width: 100%;
    }
    
    .top-bar {
        display: none;
    }
    
    .header-content {
        padding: 15px 0;
    }
    
    .logo img {
        height: 100px;
    }
    
    .ticker-banner {
        padding: 10px 0;
    }
    
    .ticker-text {
        font-size: 13px;
        padding: 0 30px;
    }
    
    .hero {
        padding: 60px 0 50px;
        min-height: 55vh;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .hero-badge {
        padding: 8px 20px;
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 90%;
        max-width: 280px;
        justify-content: center;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 22px;
        line-height: 1.2;
        padding: 0 4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .section-header h2::after {
        width: 40px;
        height: 3px;
    }
    
    .section-header p {
        font-size: 15px;
        padding: 0 4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 14px;
        gap: 8px;
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }
    
    .service-card,
    .symptom-card,
    .why-us-card,
    .process-step {
        padding: 18px 12px;
        margin: 0 auto 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .service-card h3,
    .symptom-card h3,
    .why-us-card h3,
    .process-step h3 {
        font-size: 16px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 12px;
    }
    
    .service-card p,
    .symptom-card ul li,
    .why-us-card p,
    .process-step p {
        font-size: 14px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .services-grid-overview {
        gap: 20px;
    }
    
    .service-overview-card {
        margin-bottom: 20px;
    }
    
    .service-overview-content {
        padding: 20px 16px 24px !important;
    }
    
    .service-overview-content h3 {
        font-size: 16px !important;
        line-height: 1.4 !important;
        gap: 8px !important;
    }
    
    .service-overview-content h3::before {
        width: 5px !important;
        height: 22px !important;
    }
    
    .service-overview-content p {
        font-size: 13.5px !important;
        line-height: 1.65 !important;
    }
    
    .service-overview-image {
        height: 170px !important;
    }
    
    .service-buttons .btn-service {
        padding: 13px 18px !important;
        font-size: 13px !important;
    }
    
    .service-icon,
    .symptom-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i,
    .symptom-icon i {
        font-size: 28px;
    }
    
    .service-card h3,
    .symptom-card h3,
    .why-us-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .service-card p,
    .symptom-card ul li,
    .why-us-card p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .process-intro h2 {
        font-size: 24px;
        padding: 0 4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .timeline-line {
        left: 25px;
        top: 35px;
        bottom: 35px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .timeline-icon i {
        font-size: 20px;
    }
    
    .timeline-content h3 {
        font-size: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .timeline-content p {
        font-size: 13px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .process-timeline-step {
        margin-bottom: 30px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 14px;
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .faq-answer p {
        padding: 0 20px 15px;
        font-size: 14px;
    }
    
    .cta-text h2 {
        font-size: 24px;
        padding: 0 4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .cta-text p {
        font-size: 14px;
        padding: 0 4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        padding: 16px 25px;
        font-size: 15px;
    }
    
    .btn-large i {
        font-size: 18px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section p {
        font-size: 13px;
    }
}

/* ===== Kontakt Seite Styles ===== */
.contact-info-section {
    background-color: var(--white);
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-icon i {
    font-size: 36px;
    color: var(--white);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info-card p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info-card p a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info-card p a:hover {
    color: var(--primary-dark);
}

.contact-info-card small {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-form-info p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-light);
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item i {
    color: var(--success-color);
    font-size: 18px;
}

.benefit-item span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form select {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-light);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.opening-hours-section {
    background-color: var(--white);
    padding: 80px 0;
}

.opening-hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.opening-hours-info h2,
.location-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.opening-hours-info p,
.location-info p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hours-list {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 40px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-item .time {
    color: var(--primary-color);
    font-weight: 600;
}

.emergency-contact {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.emergency-contact h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.emergency-contact p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.emergency-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.address-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.address-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.address-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.location-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.parking-info {
    background: rgba(16, 185, 129, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--success-color);
}

.parking-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.parking-info p {
    font-size: 14px;
    margin: 0;
    color: var(--text-light);
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 768px) {
    .contact-form-content,
    .opening-hours-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .hours-list {
        padding: 20px;
    }
    
    .emergency-contact {
        padding: 20px;
    }
    
    /* Footer Mobile Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .footer-column {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-column:last-child {
        border-bottom: none;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Tablet Responsive Footer */
@media (max-width: 992px) and (min-width: 769px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

/* Legal Pages Styling */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-info {
    margin-bottom: 40px;
}

.company-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.contact-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card p {
    margin-bottom: 8px;
    color: #64748b;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.legal-sections {
    margin-top: 30px;
}

.legal-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #475569;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-source {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact Info Cards for Legal Pages */
/* Legal Text Sections */
.legal-text-section {
    margin-bottom: 35px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.legal-text-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.legal-text-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #475569;
}

.legal-text-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-text-section a:hover {
    text-decoration: underline;
}

/* Contact Sidebar */
.contact-sidebar {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.contact-sidebar h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-sidebar .info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-sidebar .info-box h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-sidebar .info-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin: 5px 5px 5px 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.contact-btn i {
    font-size: 0.9rem;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
    .contact-sidebar {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .legal-text-section {
        padding: 20px;
    }
    
    .legal-content {
        padding: 25px 20px;
        border-radius: 12px;
    }
}

/* ===== Mobile Optimization for Service Pages ===== */
@media (max-width: 768px) {
    /* Grid Layout wird zu einer Spalte */
    .elv-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Vorteile & Nachteile Grid */
    .advantages-section > div > div,
    .process-section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    /* Symptome Boxen */
    .process-section div[style*="display: grid; grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Service Options - Wegfahrsperre */
    .service-options {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    /* BMW Repair Options */
    .modern-advantages > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Text Größen anpassen */
    .elv-info h2,
    .process-section h2 {
        font-size: 1.8rem !important;
        margin-bottom: 25px !important;
    }
    
    .elv-info h3,
    .process-section h3 {
        font-size: 1.3rem !important;
    }
    
    /* Padding für mobile Geräte */
    .elv-info,
    .process-section {
        padding: 40px 0 !important;
    }
    
    .elv-info .container,
    .process-section .container {
        padding: 0 20px !important;
    }
    
    /* Bilder responsive */
    .elv-images img,
    .elv-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }
    
    /* Express Service Box */
    .express-box {
        padding: 30px 20px !important;
    }
    
    .express-box h2 {
        font-size: 1.5rem !important;
    }
    
    /* Hero Buttons vertikal stapeln */
    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Warning Box */
    .warning-box {
        padding: 15px !important;
        font-size: 0.9rem !important;
    }
    
    /* Lists in advantages/disadvantages */
    div[style*="padding: 30px"] ul li {
        font-size: 15px !important;
        padding: 10px 0 10px 35px !important;
    }
    
    /* Box Padding mobile */
    div[style*="padding: 30px; border-radius: 12px"] {
        padding: 20px !important;
    }
    
    div[style*="padding: 40px; border-radius: 12px"] {
        padding: 25px 20px !important;
    }
}

/* Extra kleine Geräte (Smartphones im Portrait-Modus) */
@media (max-width: 480px) {
    .elv-info h2,
    .process-section h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    /* Text noch kleiner für sehr kleine Bildschirme */
    div[style*="padding: 30px"] ul li {
        font-size: 14px !important;
    }
    
    /* Checkmarks und X kleiner */
    span[style*="font-size: 20px"] {
        font-size: 18px !important;
    }
    
    /* Buttons kompakter */
    .btn {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
    
    /* Express Box */
    .express-box h2 {
        font-size: 1.3rem !important;
    }
    
    .express-box p {
        font-size: 0.95rem !important;
    }
}

/* Tablet Landscape Optimierung */
@media (min-width: 769px) and (max-width: 1024px) {
    .elv-content {
        gap: 40px !important;
    }
    
    /* 2-Spalten Layout beibehalten aber mit weniger Gap */
    .advantages-section > div > div[style*="grid-template-columns: 1fr 1fr"],
    .process-section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
        gap: 30px !important;
    }
}