/* --- 1. BRAND COLORS & VARIABLES --- */
:root {
    --bg-main: #070709;
    --bg-sec: #0c0d11;
    --bg-darker: #050507;
    --text-main: #ffffff;
    --text-muted: #8a8d91;
    
    /* ECHTE LOGO FARBEN */
    --brand-red: #E31837; 
    --brand-green: #008C45; 
    
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. RESET & DEFAULTS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- 3. UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.color-red {
    color: var(--brand-red) !important;
}

.color-green {
    color: var(--brand-green) !important;
}

.outline-text {
    color: transparent !important;
    -webkit-text-stroke: 1.5px var(--brand-green);
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-center {
    text-align: center;
}

/* --- 4. GLOW ANIMATIONS --- */
@keyframes dynamicGlow {
    0% {
        border-color: var(--brand-red);
        box-shadow: 0 0 20px rgba(227, 24, 55, 0.6), 0 0 40px rgba(227, 24, 55, 0.4);
    }
    50% {
        border-color: var(--brand-green);
        box-shadow: 0 0 20px rgba(0, 140, 69, 0.6), 0 0 40px rgba(0, 140, 69, 0.4);
    }
    100% {
        border-color: var(--brand-red);
        box-shadow: 0 0 20px rgba(227, 24, 55, 0.6), 0 0 40px rgba(227, 24, 55, 0.4);
    }
}

@keyframes pulseGlowGreen {
    0% {
        box-shadow: 0 0 5px rgba(0, 140, 69, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 140, 69, 0.8), 0 0 50px rgba(0, 140, 69, 0.5);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 140, 69, 0.3);
    }
}

@keyframes pulseGlowRed {
    0% {
        box-shadow: 0 0 5px rgba(227, 24, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(227, 24, 55, 0.8), 0 0 50px rgba(227, 24, 55, 0.5);
    }
    100% {
        box-shadow: 0 0 5px rgba(227, 24, 55, 0.3);
    }
}

.alternating-glow {
    animation: dynamicGlow 5s infinite ease-in-out;
}

/* --- 5. NAVIGATION & LOGO --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(7, 7, 9, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 45px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition);
}

nav a:hover {
    color: var(--brand-green);
}

.lang-switcher {
    display: flex;
    gap: 10px;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.3s;
}

.lang-btn.active {
    color: var(--brand-red);
    transform: scale(1.1);
}

/* --- 6. HERO SECTION --- */
.hero-custom {
    height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    padding: 0 5%;
    align-items: center;
    gap: 2rem;
}

.accent-line {
    width: 60px;
    height: 5px;
    background: var(--brand-red);
    margin-bottom: 2rem;
}

.hero-custom h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 550px;
    margin-bottom: 3.5rem;
    text-align: justify;
}

.action-area {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.btn-primary {
    background: var(--brand-red);
    color: #fff;
    padding: 1.2rem 3rem;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(227, 24, 55, 0.4);
}

.status-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--brand-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

.hero-visuals {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.decorative-circle {
    width: clamp(300px, 40vw, 480px);
    height: clamp(300px, 40vw, 480px);
    border-radius: 50%;
    border: 3px solid var(--brand-red);
    overflow: hidden;
}

.hero-car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

/* --- 7. CLICKABLE CARDS --- */
.clickable-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.clickable-card:hover {
    transform: translateY(-8px);
}

.clickable-card.green-glow:hover {
    border-color: var(--brand-green);
    animation: pulseGlowGreen 2s infinite ease-in-out;
}

.clickable-card.red-glow:hover {
    border-color: var(--brand-red);
    animation: pulseGlowRed 2s infinite ease-in-out;
}

.clickable-card.green-glow.is-open {
    border-color: var(--brand-green) !important;
    background: rgba(0, 140, 69, 0.05);
    animation: pulseGlowGreen 2s infinite ease-in-out;
}

.clickable-card.red-glow.is-open {
    border-color: var(--brand-red) !important;
    background: rgba(227, 24, 55, 0.05);
    animation: pulseGlowRed 2s infinite ease-in-out;
}

.preview-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: left;
    display: block;
    white-space: normal;
    overflow: visible;
}

.full-content {
    display: none;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
    text-align: justify;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.clickable-card.is-open .full-content {
    display: block;
}

.clickable-card.is-open .preview-text {
    display: none;
}

/* --- 8. SECTIONS LAYOUT --- */
.info-section,
.fleet-section,
.services-section {
    padding: 10rem 0;
}

.info-section {
    background: var(--bg-sec);
}

.section-title {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.icon-wrap,
.srv-icon-wrap {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.detail-card h3,
.service-item-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* --- 9. FLEET SECTION --- */
.fleet-block {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 10rem;
}

.fleet-block.reverse {
    flex-direction: row-reverse;
}

.slideshow-container,
.fleet-image-wrap {
    flex: 1.2;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--brand-red);
}

/* HIER IST DAS KORRIGIERTE QUERFORMAT FÜR ALLE BILDER */
.mySlides, 
.hondaSlides {
    display: none;
    width: 100%;
}

.mySlides img, 
.hondaSlides img, 
.fleet-image-wrap img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

.slideshow-container:hover img, 
.fleet-image-wrap:hover img {
    transform: scale(1.05);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

.fleet-content {
    flex: 1;
}

.fleet-badge {
    background: var(--brand-green);
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.fleet-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.fleet-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-align: justify;
}

/* --- 10. CONTACT AREA --- */
.contact-area {
    padding: 12rem 0;
    background-color: var(--bg-darker);
    text-align: center;
}

.cta-wrapper h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 4rem;
}

.btn-wa-large,
.btn-call-large {
    padding: 1.5rem 3.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    transition: var(--transition);
}

.btn-wa-large {
    background: #25D366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-call-large {
    background: var(--brand-red);
    box-shadow: 0 10px 30px rgba(227, 24, 55, 0.3);
}

.btn-wa-large:hover,
.btn-call-large:hover {
    transform: translateY(-10px);
}

/* --- 11. MAIN FOOTER --- */
.main-footer {
    background: var(--bg-sec);
    padding: 5rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    padding-bottom: 5rem;
}

.brand-logo-footer {
    height: 55px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-contact-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-contact-info p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-info strong {
    color: var(--text-main);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-size: 1.3rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--brand-red);
    transform: translateY(-5px);
}

.btn-maps-nav {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid var(--brand-green);
    color: var(--brand-green);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-maps-nav:hover {
    background: var(--brand-green);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 140, 69, 0.4);
}

.sub-footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
    background: var(--bg-main);
}

/* --- 12. MODAL DESIGN --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #121318;
    padding: 4rem 3rem;
    text-align: center;
    width: 90%;
    max-width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 12px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.modal-buttons a {
    padding: 1.2rem;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-whatsapp {
    background: #25D366;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-3px);
}

.btn-call {
    background: var(--brand-red);
}

.btn-call:hover {
    background: #cc1531;
    transform: translateY(-3px);
}

/* --- 13. RESPONSIVE MOBILE --- */
@media (max-width: 1024px) {
    .hero-custom {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10rem;
        height: auto;
        padding-bottom: 5rem;
    }
    
    .hero-visuals {
        justify-content: center;
        margin-top: 5rem;
    }
    
    .action-area {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .detailed-grid,
    .services-grid-detailed,
    .fleet-block,
    .footer-buttons {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .footer-buttons a {
        width: 100%;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    .footer-contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    nav ul {
        display: none;
    }
}