/* ============================================
   HEIKEN - KFZ GUTACHTER BOTTROP
   Große Bilder | Strukturiert | Modern
   ============================================ */

:root {
    /* Hauptfarben - Modern & Professionell */
    --primary: #0F172A;        /* Tiefes Navy Blau - Vertrauen & Professionalität */
    --secondary: #1E293B;      /* Dunkelgrau-Blau */
    --accent: #FF6B2C;         /* Kräftiges Orange - Energie & Action */
    --accent-dark: #E85515;    /* Dunkleres Orange für Hover */
    --accent-light: #FF8D5C;   /* Helleres Orange für Highlights */
    
    /* Neutrale Farben */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;        /* Sehr helles Grau für Backgrounds */
    --gray-100: #F1F5F9;       /* Helles Grau für Sections */
    --gray-200: #E2E8F0;       /* Borders */
    --gray-300: #CBD5E1;       /* Disabled States */
    --gray-600: #475569;       /* Secondary Text */
    --gray-700: #334155;       /* Body Text */
    --gray-900: #0F172A;       /* Headlines */
    
    /* Semantic Colors */
    --success: #10B981;        /* Grün für Success States */
    --warning: #F59E0B;        /* Gelb für Warnings */
    --error: #EF4444;          /* Rot für Errors */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Other Variables */
    --font: 'Inter', -apple-system, sans-serif;
    --container: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* Image loading optimization */
img[loading="lazy"] {
    content-visibility: auto;
}

/* Prevent layout shift during image load */
.hero-bg img,
.service-image img,
.gallery-item img {
    background: var(--gray-100);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--gray-900);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--gray-900);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--gray-900);
}

p {
    color: var(--gray-600);
    margin-bottom: 15px;
}

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* Section */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
}

.nav-menu a:hover {
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.nav-toggle {
    display: none;
}

/* Hero - PACKEND & MODERN */
.hero {
    margin-top: 80px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    color: var(--white);
}

.hero-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

.hero-highlight {
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    max-width: 700px;
}

.hero p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.hero-feature i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 44, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 18px 36px;
    font-size: 1.0625rem;
    font-weight: 700;
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #0F172A;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    border-color: #20BA5A;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background: #007BFF;
    border-color: #007BFF;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background: #0056B3;
    border-color: #0056B3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.hero-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 4;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 40px rgba(255, 107, 44, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--white);
    text-align: center;
    cursor: pointer;
}

.hero-scroll i {
    font-size: 2rem;
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Stats */
.stats {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 80px 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.stats-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(255, 107, 44, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

/* Service Rows - GROSSE BILDER */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.service-row:nth-child(even) .service-content {
    order: 2;
}

.service-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.service-content.dark {
    background: var(--primary);
}

.service-content.dark h2,
.service-content.dark p {
    color: var(--white);
}

.service-content.dark p {
    color: rgba(255,255,255,0.9);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 10px rgba(255, 107, 44, 0.2));
}

.service-content h2 {
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: bottom;
}

/* Process */
.process {
    background: var(--gray-50);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.process-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin: 20px 0;
}

.process-step h3,
.process-step .process-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--gray-900);
    font-weight: 600;
    display: block;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* Vehicles */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.vehicle-card {
    background: var(--white);
    padding: 35px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.vehicle-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vehicle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 2rem;
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.vehicle-card h3,
.vehicle-card .vehicle-title {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--gray-900);
    font-weight: 600;
    display: block;
}

.vehicle-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Gallery - GROSSE BILDER */
.gallery {
    background: var(--gray-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3,
.gallery-caption .gallery-title {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 5px;
    font-weight: 600;
    display: block;
}

.gallery-caption p {
    color: rgba(255,255,255,0.95);
    font-size: 0.9rem;
    margin: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--gray-700);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-md);
}

.testimonial-info strong {
    display: block;
    color: var(--gray-900);
    font-size: 1rem;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* FAQ */
.faq {
    background: var(--gray-50);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: var(--gray-900);
}

.faq-question i {
    color: var(--accent);
    font-size: 1.25rem;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 30px 25px;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="https://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.btn-white {
    background: var(--white);
    color: var(--accent);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.cta-phone {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

/* Social Sharing */
.social-sharing {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.partner-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--gray-900);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    line-height: 1.4;
    padding: 10px;
}

.partner-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.social-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.social-btn i {
    font-size: 1.1rem;
}

.social-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.social-linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
}

.social-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.gallery-title {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand img {
    height: 35px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding: 30px 40px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* Floating */
.floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.floating-whatsapp {
    background: #25d366;
    color: var(--white);
}

.floating-whatsapp:hover {
    background: #1fb855;
}

.floating-phone {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-badge {
        top: 20px;
        right: 20px;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .hero-features {
        gap: 25px;
    }
    
    .service-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    /* Reset order für Tablet/Mobile - alle Bilder oben */
    .service-row:nth-child(even) .service-content {
        order: 2;
    }
    
    .service-row:nth-child(even) .service-image {
        order: 1;
    }
    
    .service-image {
        min-height: 400px;
    }
    
    .service-content {
        padding: 60px 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .vehicles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }
    
    .container,
    .nav-container,
    .stats-grid,
    .footer-grid {
        padding: 0 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-label {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    h2 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    /* Navigation Mobile */
    .nav {
        height: 70px;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 2px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu a {
        padding: 10px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--gray-700);
        border-radius: 2px;
        transition: var(--transition);
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Hero Mobile */
    .hero {
        margin-top: 70px;
        min-height: auto;
        padding: 60px 0 50px;
        display: flex;
        align-items: center;
    }
    
    .hero-bg {
        object-position: center;
    }
    
    .hero-bg img {
        object-position: 65% center;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.93) 0%, rgba(30, 41, 59, 0.88) 100%);
    }
    
    .hero-content {
        padding: 0 20px;
        width: 100%;
    }
    
    .hero-badge {
        display: none;
    }
    
    .hero-label {
        padding: 8px 16px;
        font-size: 11px;
        margin-bottom: 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
        max-width: 100%;
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .hero-feature {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(255, 255, 255, 0.08);
        padding: 12px 15px;
        border-radius: 8px;
        backdrop-filter: blur(10px);
    }
    
    .hero-feature i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .hero-feature span {
        font-size: 0.875rem;
        font-weight: 600;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
        font-size: 0.9375rem;
        font-weight: 700;
    }
    
    .hero-scroll {
        display: none;
    }
    
    /* Stats Mobile */
    .stats {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    /* Service Mobile */
    .service-row {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
    }
    
    /* Alle Bilder zuerst, dann Text */
    .service-row .service-image {
        order: 1;
        margin: 0;
        padding: 0;
        line-height: 0;
    }
    
    .service-row .service-content {
        order: 2;
        margin: 0;
        padding: 40px 20px;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .service-image {
        min-height: 300px;
        display: block;
        line-height: 0;
    }
    
    .service-image img {
        display: block;
        margin: 0;
        padding: 0;
        line-height: 0;
        vertical-align: bottom;
    }
    
    /* Process Mobile */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-step {
        padding: 35px 20px;
    }
    
    .process-icon {
        font-size: 2rem;
        margin: 15px 0;
    }
    
    .process-step h3,
    .process-step .process-title {
        font-size: 1.125rem;
    }
    
    .process-step p {
        font-size: 0.9375rem;
    }
    
    /* Vehicles Mobile */
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .vehicle-card {
        padding: 25px 15px;
    }
    
    .vehicle-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .vehicle-card h3,
    .vehicle-card .vehicle-title {
        font-size: 1rem;
    }
    
    .vehicle-card p {
        font-size: 0.8125rem;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        aspect-ratio: 16/10;
    }
    
    .gallery-caption {
        padding: 20px;
    }
    
    .gallery-caption h3,
    .gallery-caption .gallery-title {
        font-size: 1rem;
    }
    
    .gallery-caption p {
        font-size: 0.8125rem;
    }
    
    .social-sharing {
        margin-top: 30px;
    }
    
    .social-buttons {
        gap: 10px;
    }
    
    .social-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .social-btn span {
        display: none;
    }
    
    .social-btn i {
        font-size: 1rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-card p {
        font-size: 0.9375rem;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 10px;
    }
    
    .faq-question i {
        font-size: 1.125rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
    }
    
    .faq-answer-content p {
        font-size: 0.9375rem;
    }
    
    /* CTA Mobile */
    .cta {
        padding: 60px 0;
    }
    
    .cta h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 15px;
    }
    
    .cta p {
        font-size: 1.125rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-phone {
        font-size: 2rem;
        word-break: break-all;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-brand img {
        height: 30px;
        margin-bottom: 12px;
    }
    
    .footer-column h4 {
        font-size: 0.9375rem;
        margin-bottom: 15px;
    }
    
    .footer-column a {
        font-size: 0.9375rem;
    }
    
    .footer-bottom {
        padding: 25px 20px 0;
        font-size: 0.8125rem;
    }
    
    /* Floating Mobile */
    .floating {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    /* Partners Mobile */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partner-item {
        padding: 20px;
        min-height: 80px;
    }
    
    .partner-link {
        font-size: 1rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    /* Hero Extra Small */
    .hero {
        padding: 50px 0 40px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }
    
    .hero-features {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .hero-feature {
        padding: 10px 12px;
    }
    
    .hero-feature i {
        width: 32px;
        height: 32px;
        font-size: 0.9375rem;
    }
    
    .hero-feature span {
        font-size: 0.875rem;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 14px 20px;
        font-size: 0.9375rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-phone {
        font-size: 1.75rem;
    }
    
    /* Partners Extra Small */
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partner-item {
        padding: 15px;
        min-height: 70px;
    }
    
    .partner-link {
        font-size: 0.9375rem;
        padding: 5px;
    }
}
