/* --- DEIN CSS CODE (Vollständig aktualisiert) --- */
:root {
    --primary-color: #f7c948; /* Taxi Gelb */
    --primary-dark: #e0b12d;
    --text-color: #333;
    --bg-light: #f9f9f9;
    --dark-bg: #1a1a1a; /* Sehr dunkles Grau/Schwarz */
    --hero-overlay: rgba(12, 18, 30, 0.92); /* Sehr dunkles Blau-Grau (92% deckend) */
    --white: #ffffff;
    --success: #28a745;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Header & Navigation --- */
header {
    background: var(--dark-bg);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--primary-color); }

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* --- Hero Section (NEU DESIGNT) --- */
.hero {
    /* Overlay sehr dunkel, Hintergrundbild kaum sichtbar */
    background: linear-gradient(var(--hero-overlay), var(--hero-overlay)), url('taxi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: var(--white);
}

.hero-content {
    max-width: 900px;
    width: 100%;
}

/* Kleiner Badge oben drüber */
.hero-badge {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.3);
}

/* Die große Überschrift */
.hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero h1 span { 
    color: var(--primary-color); 
}

/* Der Beschreibungstext darunter */
.hero p { 
    font-size: 1.2rem; 
    margin-bottom: 2.5rem; 
    color: #ccc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Container */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Button Styles (Rund und modern) */
.btn-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px; /* Pillen-Form */
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    border: none;
    text-transform: none;
    min-width: 200px; /* Einheitliche Breite */
}

.btn-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Beide Buttons Gelb */
.btn-yellow {
    background-color: var(--primary-color);
    color: #000; /* Schwarzer Text auf gelbem Grund */
}
.btn-yellow:hover {
    background-color: var(--primary-dark);
}


/* --- Stats / USPs --- */
.stats {
    background: var(--primary-color);
    padding: 40px 0;
    text-align: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.stat-item h3 { font-size: 2rem; margin-bottom: 5px; color: var(--dark-bg); }
.stat-item p { font-weight: bold; }

/* --- General Sections --- */
section { padding: 60px 0; }
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--dark-bg);
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}
.center-text { text-align: center; }

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

.card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); }
.card i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px; }

/* --- Tarife (Table) --- */
.table-container { overflow-x: auto; }
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    margin-top: 20px;
}
th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th { background-color: var(--dark-bg); color: var(--white); }
tr:hover { background-color: #f1f1f1; }
.price-highlight { color: var(--primary-dark); font-weight: bold; }

/* --- Booking Form --- */
.booking-section { 
    background: var(--dark-bg); 
    color: var(--white); 
    border-top: 5px solid var(--primary-color);
    padding-top: 40px;
}
.booking-section .section-title { color: var(--white); border-color: var(--primary-color); }

form {
    max-width: 800px;
    margin: 0 auto;
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #333;
    color: #fff;
    font-size: 1rem;
}
input::placeholder, textarea::placeholder {
    color: #aaa;
}
input:focus, textarea:focus { outline: 2px solid var(--primary-color); }
textarea { resize: vertical; min-height: 100px; }

button[type="submit"] {
    width: 100%;
    background: var(--primary-color);
    color: var(--dark-bg);
    font-size: 1.1rem;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}
button[type="submit"]:hover { background: var(--primary-dark); }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #ccc;
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    transform: scale(1.2);
    flex-shrink: 0;
}
.checkbox-label a { color: var(--primary-color); text-decoration: underline; }

#status { margin-top: 15px; font-weight: bold; text-align: center; }

/* --- Floating Buttons --- */
.floating-btns {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.float-btn:hover { transform: scale(1.1); }
.wa-btn { background-color: #25D366; }
.call-btn { background-color: #007bff; }

/* --- Footer --- */
footer {
    background: #111;
    color: #aaa;
    padding: 40px 0 20px;
    font-size: 0.9rem;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}


/* ========================================= */
/* ZUSÄTZLICHE STYLES (Zahlung, Flotte, Kontakt) */
/* ========================================= */

.payment-strip {
    background: #f1f1f1;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}
.payment-strip h3 {
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 2.5rem;
    color: #555;
}
.payment-icons i:hover { color: var(--primary-dark); }

.icon-modern {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: var(--dark-bg);
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    display: inline-block;
}

.contact-big-section {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid #eee;
}

/* FIX: Breite von min 280 auf 350 erhöht, damit Boxen breiter sind */
.contact-grid-big {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* FIX: Padding an den Seiten reduziert (5px statt Standard) für mehr Platz */
.contact-box-big {
    padding: 30px 5px; 
    border: 2px solid #f4f4f4;
    border-radius: 10px;
    transition: 0.3s;
}
.contact-box-big:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.contact-box-big i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.contact-box-big h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-box-big p {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    display: block;
    line-height: 1.4;
}

/* WICHTIG: E-Mail Fix für Einzeiligkeit */
.email-fix {
    white-space: nowrap;          /* Verhindert Umbruch */
    overflow: hidden;             /* Versteckt Überlänge */
    text-overflow: ellipsis;      /* Macht "..." wenn zu lang */
    display: inline-block;
    max-width: 100%;
    font-weight: bold;
    color: #333;
    /* FIX: Schriftgröße angepasst, min auf 0.7rem runter */
    font-size: clamp(0.7rem, 3.5vw, 1.4rem); 
    vertical-align: middle;
}

/* ========================================= */
/* MOBILE RESPONSIVE OPTIMIERUNGEN           */
/* ========================================= */

@media (max-width: 768px) {
    .hamburger { 
        display: block; 
        margin-left: auto;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--dark-bg);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.2);
    }
    
    .nav-links li { margin: 15px 0; }
    .nav-links a { font-size: 1.2rem; display: block; width: 100%; }
    .nav-links.active { display: flex; }

    /* Hero Mobile */
    .hero { min-height: 70vh; padding-top: 40px; }
    .hero h1 { font-size: 2.5rem; margin-bottom: 15px; }
    .hero p { font-size: 1rem; margin-bottom: 25px; }
    
    /* Buttons im Hero untereinander */
    .hero-btns {
        flex-direction: column; /* Stapelt die Buttons */
        width: 100%;
        gap: 15px;
    }
    .btn-new { 
        width: 100%; 
        justify-content: center;
    }

    /* --- ZAHLUNG Mobile Fix: Alles in eine Zeile "gestopft" --- */
    .payment-icons { 
        font-size: 1.6rem; /* Kleiner machen */
        gap: 12px;         /* Abstand verringern */
        flex-wrap: nowrap; /* Umbruch verbieten */
        justify-content: center;
        overflow: hidden;  /* Falls Screen extrem klein ist */
    }

    /* Kontakt Box Abstände - FIX: Seitliches Padding klein halten */
    .contact-grid-big { gap: 20px; }
    .contact-box-big { padding: 20px 5px; }
}