/* ========== Grundlegende Stile & Variablen ========== */
:root {
    /* --primary-color: #005A9C; Beispiel: Blauton */
    --primary-color: #bf0404;/* Beispiel: Blauton */
    --secondary-color: #005A9C; /* Beispiel: Orangeton */

    /* --secondary-color: #E87722; Beispiel: Orangeton */
    --dark-color: #333;
    --light-color: #f8f9fa;
    --grey-color: #6c757d;
    --white-color: #ffffff;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modernere Schriftart */
    --header-height: 80px;
    --border-radius: 5px;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 10px); /* Mehr Platz lassen */
}

body {
    font-family: var(--font-family);
    line-height: 1.7; /* Etwas mehr Zeilenabstand */
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden; /* Verhindert horizontales Scrollen durch Animationen */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* Speziell für inline SVGs */
.inline-icon {
    display: inline-block; /* Wichtig für vertical-align und transform */
    width: 1em; /* Größe relativ zur Schriftgröße */
    height: 1em;
    vertical-align: -0.15em; /* Feinabstimmung der vertikalen Ausrichtung */
    margin-right: 0.3em;
    transition: transform var(--transition-speed) ease; /* Basis für Animationen */
}
.button-icon {
     margin-left: 0.5em; /* Platz nach dem Text im Button */
     margin-right: 0;
}


a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none; /* Unterstreichung optional */
}

h1, h2, h3 {
    margin-bottom: 1rem;
    margin-top: 1rem;

    line-height: 1.3;
    font-weight: 600; /* Etwas fetter */
}

h1 { font-size: 2.8rem; color: var(--white-color); text-shadow: 2px 2px 4px rgba(0,0,0,0.6); }
h2 { font-size: 2.2rem; color: var(--primary-color); text-align: center; margin-bottom: 3rem; font-weight: 700;}
h3 { font-size: 1.5rem; color: var(--dark-color); margin-bottom: 0.8rem; }

section {
    padding: 70px 0; /* Etwas mehr Padding */
}

/* ========== Buttons ========== */
.button {
    display: inline-flex; /* Für vertikales Zentrieren von Icon und Text */
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600; /* Fetter */
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease,
                transform var(--transition-speed) ease,
                box-shadow var(--transition-speed) ease; /* Box-shadow auch animieren */
    margin: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Leichter Schatten */
}

.button:hover {
    transform: translateY(-3px); /* Stärkerer Hover-Effekt */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-decoration: none;
}
.button:active {
    transform: translateY(-1px); /* Klick-Effekt */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.button.primary {
    background-color: var(--secondary-color);
    color: var(--white-color);
}
.button.primary:hover {
    /* background-color: hsl(27, 87%, 60%); Etwas helleres Orange */
     background-color: hsl(219, 87%, 60%); /*Etwas helleres Blau */

}

.button.secondary {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}
/* Mikro-Animation für Button-Icons */
.button:hover .button-icon {
    transform: translateX(4px);
}

/* WhatsApp Button Styles */
        .whatsapp-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: #25D366;
            color: white!important;
            text-decoration: none;
            padding: 0.75rem 1.25rem;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
            font-size: 0.95rem;
        }

        .whatsapp-button:hover {
            background-color: #128C7E;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-button .whatsapp-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 80px;
            left: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float .whatsapp-icon {
            width: 28px;
            height: 28px;
            fill: white;
        }

/* ========== Cookie Banner ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--white-color) 0%, #f8f9fb 100%);
    border-top: 3px solid var(--primary-color);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-banner-text p {
    color: var(--dark-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    color: var(--secondary-color);
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(191, 4, 4, 0.3);
}

.cookie-btn.decline {
    background-color: transparent;
    color: var(--grey-color);
    border: 1px solid var(--grey-color);
}

.cookie-btn.decline:hover {
    background-color: var(--grey-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.cookie-btn.settings {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cookie-btn.settings:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(191, 4, 4, 0.3);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 15000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-modal h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: left;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
}

.cookie-category h4 {
    color: var(--dark-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 24px;
    background-color: var(--grey-color);
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-toggle.active {
    background-color: var(--primary-color);
}

.cookie-toggle:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle.active:before {
    transform: translateX(26px);
}

.cookie-category p {
    color: var(--grey-color);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* SEO & Performance Optimizations */
/* Image optimization */
img {
    height: auto;
    max-width: 100%;
}

/* Designer Attribution */
.footer-designer {
    text-align: center;
    margin-top: 15px;
}

.footer-designer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.4;
}

.designer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 3px;
    line-height: 1;
}

.designer-link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.05);
}

.designer-logo {
    height: 14px;
    width: auto;
    vertical-align: baseline;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.designer-link:hover .designer-logo {
    transform: scale(1.05);
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .footer-designer p {
        font-size: 0.8rem;
    }
    
    .designer-logo {
        height: 14px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-banner-text {
        text-align: center;
        min-width: auto;
    }
    
    .cookie-banner-actions {
        justify-content: center;
        gap: 8px;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: auto;
        padding: 12px 16px;
    }
    
    .cookie-modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
            }
            100% {
                box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
            }
        }

        /* WhatsApp CTA in sections */
        .whatsapp-cta {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .whatsapp-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s linear infinite;
        }

        @keyframes float {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .whatsapp-cta-content {
            position: relative;
            z-index: 1;
        }

        .whatsapp-cta h3 {
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .whatsapp-cta p {
            margin-bottom: 1rem;
            opacity: 0.9;
        }

 /* Trust indicators */
        .whatsapp-trust {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .whatsapp-trust span {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 30px;
                left: 15px;
                width: 55px;
                height: 55px;
            }

            .whatsapp-float .whatsapp-icon {
                width: 24px;
                height: 24px;
            }

            .whatsapp-trust {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

/* ========== Link mit Pfeil ========== */
.link-arrow {
    color: var(--secondary-color);
    font-weight: bold;
    display: inline-flex; /* Für Icon-Ausrichtung */
    align-items: center;
    margin-top: 15px;
}
.link-arrow:hover {
    color: var(--primary-color);
}
/* Mikro-Animation für Link-Pfeil */
.link-arrow:hover .inline-icon {
    transform: translateX(5px);
}


/* ========== Header ========== */
.main-header {
    background-color: rgba(255, 255, 255, 0.95); /* Leichte Transparenz */
    backdrop-filter: blur(5px); /* Hintergrund weichzeichnen (moderne Browser) */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 55px; /* Etwas größer */
    width: auto;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.05); /* Leichter Zoom bei Hover */
}

.main-nav .nav-list {
    list-style: none;
    display: flex;
    gap: 5px; /* Kleiner Abstand zwischen Links */
}

.main-nav .nav-link {
    display: block;
    padding: 15px;
    color: var(--dark-color);
    font-weight: 600;
    position: relative; /* Für Pseudo-Element Animation */
    transition: color var(--transition-speed) ease;
    overflow: hidden; /* Für Underline Animation */
}
.main-nav .nav-link::after { /* Underline Animation */
    content: '';
    position: absolute;
    bottom: 10px; /* Position der Linie */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--primary-color);
    text-decoration: none;
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    width: 60%; /* Breite der Linie bei Hover/Aktiv */
}


.header-phone a {
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
}
.header-phone a:hover {
    color: var(--secondary-color);
}
.header-phone a .inline-icon {
     margin-right: 0.5em;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.2rem; /* Größeres Icon */
    cursor: pointer;
    color: var(--primary-color);
    padding: 5px;
    line-height: 1;
    transition: transform 0.2s ease; /* Animation für Klick */
}
.nav-toggle:active {
    transform: scale(0.9);
}

/* ========== Hero Section ========== */
.hero-section {
    background-color: var(--grey-color);
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/Showroom.png'); Gradient Overlay statt Pseudo-Element */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/LandingPageHero.jpg'); /* Gradient Overlay statt Pseudo-Element */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: var(--white-color);
    text-align: center;
    padding: 140px 0; /* Mehr Padding */
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    max-width: 850px;
    /* Animation für den Text beim Laden */
    animation: fadeInDown 1s ease-out;
}
.hero-section h1 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}
.hero-buttons .button {
    font-size: 1.1rem;
    padding: 15px 35px; /* Größere Buttons */
}
.hero-buttons .button:first-child { animation: fadeInUp 0.8s ease-out 0.5s backwards; }
.hero-buttons .button:last-child { animation: fadeInUp 0.8s ease-out 0.7s backwards; }

/* ========== Keyframes für Animationen ========== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}


/* ========== USP Section ========== */
.usp-section {
    background-color: var(--light-color);
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px; /* Etwas mehr Abstand */
    text-align: center;
}
.usp-item {
    background-color: var(--white-color);
    padding: 35px 25px; /* Mehr Padding */
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform var(--transition-speed) ease,
                box-shadow var(--transition-speed) ease;
    /* Animation beim Laden (gestaffelt) */
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}
/* Staffelung der Animation */
.usp-item:nth-child(1) { animation-delay: 0.1s; }
.usp-item:nth-child(2) { animation-delay: 0.2s; }
.usp-item:nth-child(3) { animation-delay: 0.3s; }
.usp-item:nth-child(4) { animation-delay: 0.4s; }

.usp-item:hover {
    transform: translateY(-8px); /* Stärkerer Hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.usp-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px auto;
    color: var(--primary-color); /* Strichfarbe des SVG */
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Bouncy Animation */
}
/* Mikro-Animation für USP Icons */
.usp-item:hover .usp-icon {
    transform: scale(1.15) rotate(10deg); /* Deutlicher Effekt */
}
.usp-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* ========== About Section ========== */
.about-section {
    background-color: var(--white-color);
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px; /* Größerer Abstand */
    align-items: center;
}
.about-text {
    flex: 1.2; /* Etwas mehr Platz für Text */
    min-width: 300px;
    animation: fadeInLeft 0.8s ease-out; /* Animation */
}
.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    animation: fadeInRight 0.8s ease-out; /* Animation */
}
.about-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), hsl(207, 100%, 40%)); /* Farbverlauf */
    color: var(--white-color);
    text-align: center;
    padding: 80px 0;
}
.cta-section .container {
    animation: fadeInUp 0.8s ease-out; /* Animation */
}
.cta-section h2 {
    color: var(--white-color);
    margin-bottom: 1rem;

    font-size: 2rem;
}
.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .button.primary {
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 15px 30px;
}
.cta-section .button.primary:hover {
    background-color: var(--light-color);
    transform: translateY(-3px) scale(1.03); /* Zusätzlicher Skalierungs-Effekt */
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* ========== Location Section ========== */
.location-section.container{
    margin-top: 4rem;
}
.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: flex-start;
}
.location-address { animation: fadeInLeft 0.8s ease-out; }
.location-map { animation: fadeInRight 0.8s ease-out; }

.location-address h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.location-address h4 {
     margin-top: 2.5rem;
     margin-bottom: 1rem;
     color: var(--primary-color);
     font-weight: 600;
}
.location-address p {
    margin-bottom: 1rem;
    display: flex; /* Für Icon-Ausrichtung */
    align-items: flex-start; /* Pins oben an der Zeile ausrichten */
}
.location-address p .contact-icon {
    margin-top: 0.2em; /* Feinausrichtung Pin */
    color: var(--primary-color);
}

.location-map iframe {
    border-radius: var(--border-radius);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    width: 100%;
}

/* Routenplaner Formular */
#routePlannerForm label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}
#routePlannerForm input[type="text"],
#routePlannerForm select {
    width: 100%;
    padding: 12px; /* Mehr Padding */
    margin-bottom: 18px; /* Mehr Abstand */
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#routePlannerForm input[type="text"]:focus,
#routePlannerForm select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 90, 156, 0.2); /* Fokus-Indikator */
}

#routePlannerForm button {
    width: 100%;
    margin-top: 10px;
    padding: 14px 25px; /* Größerer Button */
}
.small-info {
    font-size: 0.85rem;
    color: var(--grey-color);
    text-align: center;
    margin-top: 8px;
}

/* ========== Contact Section ========== */
.contact-section {
    background-color: var(--light-color);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Etwas breiter */
    gap: 50px;
}
.contact-details { animation: fadeInLeft 0.8s ease-out 0.2s backwards; }
.opening-hours { animation: fadeInRight 0.8s ease-out 0.2s backwards; }

.contact-details h3, .opening-hours h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem; /* Mehr Abstand */
    font-weight: 700;
}

/* New contact item structure */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 0.8rem;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0; /* Verhindert Schrumpfen */
    margin-top: 0.2rem; /* Slight adjustment for better alignment */
    width: 20px;
    height: 20px;
}

.contact-info {
    flex: 1;
}

.contact-info strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1rem;
}

.contact-info a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
    font-size: 1.05rem;
}

.contact-info a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info span {
    color: var(--dark-color);
    font-size: 1.05rem;
}

/* Mobile numbers styling */
.mobile-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mobile-numbers a {
    display: inline-block;
    position: relative;
}

.mobile-numbers a:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -0.15rem;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(0, 90, 156, 0.2);
}

/* Legacy paragraph styling for backward compatibility */
.contact-details p, .opening-hours p {
    margin-bottom: 1rem;
    display: flex; /* Für Icon-Ausrichtung */
    align-items: center;
}
.contact-details a {
    color: var(--secondary-color);
    font-weight: 600; /* Fetter */
    word-break: break-word; /* Verhindert Überlaufen bei langen Mails/Nummern */
}
.contact-details a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.qr-code-container {
    margin-top: 25px;
    text-align: left;
}
.qr-code {
    width: 130px;
    height: 130px;
    margin-bottom: 8px;
    border: 1px solid #eee;
    padding: 5px;
    background-color: white;
}
.qr-code-container p {
    font-size: 0.9rem;
    color: var(--grey-color);
}

.opening-hours {
    border-left: 3px solid var(--primary-color);
    padding-left: 50px;
}
.opening-hours p {
    font-size: 1.05rem; /* Etwas größer */
}

.contact-button {
    margin-top: 25px;
}

/* ========== Footer ========== */
.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 40px 0;
    font-size: 0.9rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}
.footer-left a {
    color: var(--light-color);
    text-decoration: underline;
    transition: color var(--transition-speed) ease;
}
.footer-left a:hover {
    color: var(--secondary-color);
}
.footer-stats {
    text-align: right;
    line-height: 1.5;
    color: #bbb; /* Etwas gedämpfter */
}
.footer-stats p {
    margin-bottom: 5px;
    font-weight: bold;
    color: #ddd;
}
.footer-stats span {
    margin: 0 4px;
}


/* ========== Responsive Design (Media Queries) ========== */

/* Tablets und kleine Desktops */
@media (max-width: 992px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }

    .header-phone { display: none; }

    .location-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
         grid-template-columns: 1fr;
    }

     .opening-hours {
        border-left: none;
        padding-left: 0;
        margin-top: 40px;
        border-top: 1px solid #ddd;
        padding-top: 40px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
     .footer-stats {
        text-align: center;
        margin-top: 20px;
    }
}

/* ========== General Form Styles ========== */
.contact-form { /* Used for #tradeInForm and potentially other forms */
    display: flex;
    flex-direction: column;
    gap: 1.2rem; /* Space between form groups */
}
.trade-in-intro{
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Space between label and input */
}

.form-group label {
    font-weight: 600; /* Consistent with #routePlannerForm label */
    color: var(--dark-color); /* Using theme's dark color */
    font-size: 0.95rem; /* Consistent with #routePlannerForm label */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="tel"], /* Added for phone numbers if used in other forms */
.form-group textarea,
.form-group select { /* Added for select if used in other forms */
    width: 100%;
    padding: 12px; /* Consistent with #routePlannerForm input */
    border: 1px solid #ccc;
    border-radius: var(--border-radius); /* Using theme's border-radius */
    box-sizing: border-box;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Consistent with #routePlannerForm */
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="number"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color); /* Consistent with #routePlannerForm focus */
    box-shadow: 0 0 0 3px rgba(0, 90, 156, 0.2); /* Consistent with #routePlannerForm focus */
}

.form-group textarea {
    resize: vertical;
    min-height: 100px; /* Minimum height for textareas */
}

/* .small-info is already defined globally and seems suitable.
   If specific overrides are needed for forms:
.contact-form .small-info {
    font-size: 0.875rem;
    color: var(--grey-color);
    margin-top: 0.5rem; // Adjust if needed
    text-align: left; // If default center alignment is not desired
}
*/

/* .button.primary is already well-defined globally. */

/* ========== Partner Section ========== */
.partner-section {
    background-color: var(--light-color); /* Or var(--white-color) depending on surrounding sections */
    padding: 60px 0; /* Adjust padding as needed */
}

.partner-section h2 {
    text-align: center;
    margin-bottom: 3rem; /* Consistent with other h2 titles */
    color: var(--primary-color);
}

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid */
    gap: 2rem; /* Space between logos */
    align-items: center; /* Vertically align items if they have different heights */
    justify-items: center; /* Horizontally center items in their grid cell */
}

.partner-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px; /* Example width */
    height: 80px;  /* Example height */
    background-color: #e9ecef; /* Light grey background for placeholder */
    border: 1px dashed #adb5bd; /* Dashed border */
    color: #495057; /* Text color */
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    border-radius: var(--border-radius);
}

/* If actual img tags are used later, you might add: */
.partner-logo-item img {
    max-width: 150px;
    max-height: 80px;
    min-height: 80px;
    min-width: 150px;
    object-fit: contain; 
    filter: grayscale(100%);
    opacity: 0.8;  
    transition: filter var(--transition-speed) ease, opacity var(--transition-speed) ease;
}
.partner-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}


/* ========== Form Messages & Spinners ========== */
.spinner-inline {
    display: inline-block;
    width: 1em; /* Relative to button font size */
    height: 1em; /* Relative to button font size */
    border: 2px solid rgba(255,255,255,0.3); /* Light border for visibility on dark buttons */
    border-radius: 50%;
    border-top-color: var(--white-color); /* Spinner color, assuming it's on a primary button */
    animation: spin 0.8s linear infinite; /* Smoother spin */
    vertical-align: middle;
    margin-left: 8px; /* More space from text */
}

/* Keyframes for spin is already defined globally, but if specific one needed:
@keyframes spin-inline { to { transform: rotate(360deg); } }
Make sure .spinner-inline animation name matches if you define a new one.
The global 'spin' animation should work fine. */

.form-message { /* Container for feedback messages */
    margin-top: 15px;
    padding: 12px 15px; /* More padding */
    border-radius: var(--border-radius); /* Use theme border-radius */
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.success-message {
    background-color: #d1e7dd; /* Softer green */
    color: #0f5132; /* Darker green text for better contrast */
    border-color: #badbcc;
}

.error-message { /* Also used by vehicle loader */
    background-color: #f8d7da;
    color: #721c24; /* Original color is good */
    border-color: #f5c6cb; /* Original color is good */
}
/* Note: .error-message might already exist for vehicle loading, these styles should be compatible or merged.
   The JS for form submission adds <p class="error-message"> so this will apply.
   If vehicle loader's error message needs different styling, it might need a more specific class.
   For now, this assumes they can share styling.
*/


/* Mobile Geräte */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    html {
         scroll-padding-top: calc(var(--header-height) + 5px);
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; margin-bottom: 2rem; margin-top: 2rem;}
    h3 { font-size: 1.3rem; }
    section { padding: 50px 0; }

    /* Mobile Navigation */
    .main-nav {
        position: static; /* Zurücksetzen für einfacheres Handling */
    }
    .main-nav .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0; /* Von links einblenden */
        background-color: var(--white-color);
        width: 100%;
        box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
        padding-bottom: 10px;
        /* Animation für das Menü */
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .main-nav .nav-list.active {
        display: flex;
        transform: translateX(0); /* Sichtbar machen */
    }
    .main-nav .nav-link {
        padding: 15px 25px; /* Mehr Padding */
        text-align: left; /* Linksbündig */
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    .main-nav .nav-link::after { /* Linie im mobilen Menü anpassen/entfernen */
       display: none;
    }
    .main-nav .nav-link.active {
       background-color: var(--light-color); /* Aktiven Link hervorheben */
       color: var(--primary-color);
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 15px; /* Näher am Rand */
        transform: translateY(-50%);
        z-index: 1100; /* Über der Navigationsliste */
    }

    .header-content {
        padding: 0 15px;
    }
     .logo { height: 45px; }

    .hero-section {
        padding: 80px 0;
        background-attachment: scroll;
        min-height: 60vh;
    }
    .hero-content { padding: 0 15px; }
    .hero-buttons { display: flex; flex-direction: column; gap: 15px; width: 90%; margin: 0 auto; }
    .hero-buttons .button { width: 100%; margin: 0; padding: 14px 20px; }

    .usp-grid {
         grid-template-columns: 1fr;
         gap: 25px;
    }

    .about-content {
        flex-direction: column;
        gap: 35px;
    }
    .about-image { order: -1; }

    .location-content { gap: 30px; }
    .contact-grid { gap: 30px; }
    .opening-hours { padding-top: 30px; margin-top: 30px; }

    /* Mobile contact improvements */
    .contact-item {
        align-items: flex-start;
        gap: 0.6rem;
    }
    
    .contact-icon {
        margin-top: 0.1rem;
    }
    
    .mobile-numbers {
        gap: 0.4rem;
    }
    
    .mobile-numbers a {
        font-size: 1rem;
        padding: 0.2rem 0;
    }
    
    .contact-info a {
        word-break: break-all; /* Better line breaking for long emails on mobile */
    }

    .footer-stats span {
        display: inline; /* Wieder nebeneinander auf Mobile, da zentriert */
        margin: 0 3px;
    }
     .footer-stats p { font-size: 0.9rem; }
     .footer-stats { line-height: 1.6; }

}

/* Extra responsive styling for very small screens */
@media (max-width: 480px) {
    .contact-grid {
        gap: 20px;
    }
    
    .contact-item {
        gap: 0.5rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-info strong {
        font-size: 0.95rem;
    }
    
    .contact-info a {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .mobile-numbers a {
        display: block;
        padding: 0.3rem 0;
    }
    
    .qr-code {
        width: 100px;
        height: 100px;
    }
    
    .contact-button {
        margin-top: 20px;
        font-size: 0.9rem;
    }
}

.mobile-de-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: inherit; /* Uses your website's font */
  }
  
  .mobile-de-container h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #333; /* Adjust to match your site's color scheme */
  }
  
  .iframe-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #fff;
  }
  
  #mobile-de-frame {
    min-height: 800px; /* Adjust based on content */
    transition: height 0.3s ease;
    background: #fff;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .mobile-de-container {
      padding: 10px;
    }
    
    #mobile-de-frame {
      min-height: 600px;
    }
  }

  /* Featured Cars Section Styling */
.featured-cars {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.featured-cars h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: #333;
    position: relative;
}

.featured-cars h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color:var(--primary-color);
    margin: 0.5rem auto 0;
}

/* Filter Controls */
.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

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

/* Loading Indicator */
.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    width: 100%;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-indicator p {
    color: var(--grey-color);
    font-size: 1rem;
}

/* Cars Grid */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Car Card */
.car-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    opacity: 1;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Car Image Container */
.car-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.05);
}

/* Car Badge */
.car-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color:var(--primary-color);
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.new-badge {
    background-color: var(--primary-color);
}

.top-badge {
    background-color: var(--secondary-color);
}

/* Wishlist Button */
.wishlist-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease;
}

.wishlist-btn:hover {
    background-color: #f8f9fa;
}

.wishlist-btn .material-icons {
    color: var(--primary-color);
    font-size: 20px;
}

/* Car Details */
.car-details {
    padding: 1.5rem;
}

.car-details h3 {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* Car Specs */
.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.car-specs span {
    display: flex;
    align-items: center;
}

.car-specs .material-icons {
    font-size: 1rem;
    margin-right: 4px;
    color: #888;
}

/* Car Price */
.car-price {
    margin-bottom: 1.2rem;
}

.car-price .price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color:var(--primary-color);
    margin-bottom: 4px;
}

.car-price .monthly {
    font-size: 0.9rem;
    color: #777;
}

/* Car Actions */
.car-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}

/* View All Button */
.view-all {
    text-align: center;
    margin-top: 2rem;
}

.view-all .btn-primary {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cars-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .car-image {
        height: 180px;
    }
    
    .filter-controls {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cars-grid {
        grid-template-columns: 1fr;
    }
    
    .car-image {
        height: 200px;
    }
    
    .car-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
    }
}

/* Error Message Styles */
.error-message {
    margin: 1rem 0 2rem;
    width: 100%;
}

.alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

.alert p {
    margin: 0.5rem 0;
}

.alert strong {
    font-weight: 600;
}

/* Enhanced Car Card Styles */
.car-description {
    font-size: 0.9rem;
    color: var(--grey-color);
    margin: 0.5rem 0;
    line-height: 1.4;
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--dark-color);
}

.review-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding: 1rem;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.google-icon {
    width: 80px;
    height: auto;
    margin-right: 1.5rem;
}

.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.average-rating {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.star-rating {
    margin-bottom: 0.5rem;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.star.half {
    position: relative;
    display: inline-block;
}

.star.half:after {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #FFD700;
}
.star.half{
    color: #e0e0e0!important;
}

.review-count {
    font-size: 0.9rem;
    color: var(--grey-color);
}

.testimonials-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1200px;
}

.testimonial-item {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: calc(50% - 1.5rem);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
    font-size: 1rem;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
}

.testimonial-google-link {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

.testimonial-google-link a {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.testimonial-google-link a:hover {
    color: var(--secondary-color);
}

.testimonial-google-link img {
    margin-left: 0.5rem;
    width: 16px;
    height: 16px;
}

/* Responsive styles for testimonials */
@media (max-width: 768px) {
    .testimonial-item {
        width: 100%;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="number"],
    .form-group input[type="tel"],
    .form-group textarea,
    .form-group select {
        padding: 10px; /* Slightly smaller padding on mobile */
    }
}