* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background: #f5f5f5;
    color: #222;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

/* =======================================
   FIXIERTER HEADER – Blau wie Taxiloyal
   ======================================= */

.site-header {
    background: #0b3ea8; /* Blau */
    color: #fff;
    padding: 10px 0;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Abstand für Inhalt unter fixem Header */
.site-main {
    padding: 32px 0 48px;
    margin-top: 70px; /* ggf. anpassen, wenn Header höher ist */
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Wrapper für Navigation + Sprachumschalter (Desktop sichtbar, Mobile als Dropdown) */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Logo im Header: Bild + Text nebeneinander */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.logo-image {
    height: 40px;   /* Höhe des Logos, nach Geschmack anpassen */
    width: auto;
    display: block;
}

.logo-text {
    white-space: nowrap;
}

/* Desktop-Navi */
.main-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    margin: 0 8px;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* Sprachumschalter im Header */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lang-switcher a {
    padding: 4px 10px;
    font-size: 0.9rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    text-decoration: none;
}

.lang-switcher a.active {
    background-color: rgba(255,255,255,0.25);
    border-radius: 6px;
    font-weight: bold;
}

/* Sprachumschalter mit Flaggen – Größe der Icons */
.lang-switcher a img {
    width: 20px;       /* hier stellst du die Icon-Größe ein */
    height: 14px;
    object-fit: cover;
    border-radius: 2px; /* optional leicht abgerundet */
    margin-right: 4px;
}

/* =======================================
   HAMBURGER BUTTON (MOBILE, CSS-Only)
   ======================================= */

.nav-checkbox {
    display: none; /* unsichtbare Checkbox */
}

.nav-toggle {
    display: none; /* wird nur mobil gezeigt */
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #e5e7eb;
    margin: 4px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* =======================================
   HERO BEREICH / SLIDER
   ======================================= */

.hero-premium {
    width: 100%;
    height: 480px;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55); /* dunkles Overlay */
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 720px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-line {
    width: 120px;
    height: 2px;
    background: #fff;
    margin: 0 auto 16px;
    opacity: 0.9;
}

.hero-sub {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 8px;
}

.hero-price {
    font-size: 1.2rem;
    margin-bottom: 18px;
    font-weight: 600;
    color: #fbbf24;
}

.btn-hero {
    display: inline-block;
    padding: 12px 26px;
    background: #f59e0b;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    border-radius: 999px;
    font-size: 1.05rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

.btn-hero:hover {
    background: #fbbf24;
}

.hero-link {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #e5e7eb;
    text-decoration: underline;
}

.hero-link:hover {
    color: #ffffff;
}

.hero-meta {
    margin-top: 14px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-note {
    margin-top: 4px;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* SLIDER-LOGIK */

.slider-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.slider-hero .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}

.slider-hero .hero-slide.active {
    opacity: 1;
}

.slider-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1;
}

.slider-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* =======================================
   STANDARD-SEKTIONEN
   ======================================= */

.hero {
    background: #111827;
    color: #fff;
    padding: 40px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 16px;
    max-width: 720px;
}

.hero .sub {
    font-size: 0.95rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    background: #f59e0b;
    border-radius: 999px;
    text-decoration: none;
    color: #111827;
    font-weight: 600;
}

.btn-secondary {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    background: transparent;
    border-radius: 999px;
    border: 2px solid #f59e0b;
    text-decoration: none;
    color: #f59e0b;
    font-weight: 600;
}

.section {
    margin-bottom: 32px;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
}

.section h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.section p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.section ul {
    padding-left: 18px;
    margin-top: 6px;
}

.section ul li {
    margin-bottom: 4px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
}

.card h3 {
    margin-bottom: 8px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

.price-table th,
.price-table td {
    border: 1px solid #e5e7eb;
    padding: 8px;
    font-size: 0.95rem;
}

/* =======================================
   FOOTER – Blau wie Taxiloyal
   ======================================= */

.site-footer {
    background: #0b3ea8;
    color: #d1d5db;
    padding: 16px 0;
    font-size: 0.9rem;
    margin-top: 24px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-left {
    font-size: 0.9rem;
}

.footer-right a {
    color: #d1d5db;
    text-decoration: none;
    margin-left: 16px;
    font-size: 0.9rem;
}

.footer-right a:hover {
    text-decoration: underline;
}

/* =======================================
   IFRAME STYLES (falls verwendet)
   ======================================= */

.iframecontainer {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 1600px;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* FAQ-Accordion */
.faq-list {
    margin-top: 12px;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    padding: 10px 0;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.faq-question:hover {
    color: #f59e0b;
}

.faq-icon {
    font-size: 1.2rem;
    margin-left: 12px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    padding-top: 0;
    padding-bottom: 0;
}

.faq-answer p {
    margin: 0 0 10px 0;
}

/* Wenn offen */
.faq-item.open .faq-answer {
    max-height: 200px;       /* reicht für eine typische Antwort */
    padding-top: 4px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg); /* + wird optisch zu einem x */
}

/* =======================================
   RESPONSIVE / MOBILE
   ======================================= */

@media (max-width: 968px) {
    .logo-image {
        height: 55px;
    }
}

@media (max-width: 768px) {

    .header-inner {
        align-items: center;
        position: relative;
    }

    /* Hamburger auf Handy sichtbar – immer rechts! */
    .nav-toggle {
        display: block;
        margin-left: auto;         /* schiebt den Button ganz nach rechts */
        z-index: 1101;             /* über dem Dropdown-Menü */
    }

    /* Dropdown-Menü (Nav + Sprachen) als ein Block */
    .nav-wrapper {
        display: none;
        position: absolute;
        top: 100%;             /* direkt unter dem Header */
        left: 0;
        right: 0;
        background: #0b3ea8;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px 10px;
        gap: 8px;
    }

    .main-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .main-nav a {
        padding: 4px 0;
    }

    .lang-switcher {
        display: flex;
        justify-content: flex-start;
        gap: 8px;
        padding-top: 6px;
        border-top: 1px solid rgba(255,255,255,0.2);
        width: 100%;
    }

    /* Wenn Checkbox gecheckt: Dropdown anzeigen */
    .nav-checkbox:checked ~ .nav-wrapper {
        display: flex;
    }

    .hero-premium,
    .slider-hero {
        height: 380px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-right a {
        margin: 4px 8px;
        display: inline-block;
    }
}

/*  Karte Abholpunkt am Flughafen */
.airport-map {
    margin-top: 16px;
    text-align: center;
}

.airport-map img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.airport-map figcaption {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #4b5563;
}

/* =======================================
   Bewertungs-Widget (Kundenbewertungen)
   ======================================= */

/* Die komplette Section als schmale Karte darstellen */
.section#kundenbewertungen {
    max-width: 480px;                      /* schmale Box */
    margin: 0 auto 32px;                   /* mittig, Abstand nach unten */
    padding: 16px 20px;
    background: #ffffff;                   /* weiße Karte */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.12);
}

/* =======================================
   Kleine Bewertungs-Plakette (trust-badge-small)
   ======================================= */

.trust-badge-small {
    max-width: 520px;
    margin: -32px auto 32px;        /* leicht über dem Inhalt, mittig */
    padding: 18px 22px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(148, 163, 184, 0.25);
    position: relative;
    z-index: 5;
}

/* Wenn du kein "Überlappen" mit dem Hero willst, 
   einfach margin-top auf 16px ändern: margin: 16px auto 32px; */

.trust-badge-small-header {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.trust-badge-small-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-top: 2px;
}

.trust-badge-small-main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.trust-badge-small-score {
    font-size: 2.3rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.trust-badge-small-stars {
    display: flex;
    gap: 2px;
    font-size: 1.15rem;
}

.trust-badge-small-count {
    margin-top: 4px;
    font-size: 0.9rem;
    color: #6b7280;
}

.trust-badge-small-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

/* Buttons in der Box */
.trust-badge-small-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #111827;
    cursor: pointer;
    white-space: nowrap;
}

.trust-badge-small-btn:hover {
    background: #e5e7eb;
}

/* Primärer Button (Bewertung abgeben) */
.trust-badge-small-btn.primary {
    background: #f59e0b;      /* wie dein btn-hero */
    border-color: #f59e0b;
    color: #111827;
    font-weight: 600;
}

.trust-badge-small-btn.primary:hover {
    background: #fbbf24;
}

.trust-badge-small-source {
    margin-top: 6px;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .trust-badge-small {
        margin: 16px 16px 24px;
        padding: 16px 18px;
    }

    .trust-badge-small-main {
        align-items: flex-start;
    }
}

/* ==============================
   Grosses Bewertungs-Widget
   ============================== */

.section.section-kundenbewertungen {
    max-width: 520px;
    margin: 0 auto 32px;
    padding: 18px 22px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.12);
}

.kundenbewertungen-card {
    display: block;
}

.reviews-widget {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviews-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.reviews-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

/* Trust-Badge (🛡️ Verifiziertes Kundenfeedback) */
.reviews-trustbadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    margin-top: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #fef3c7;              /* helles Gold */
    border: 1px solid #fbbf24;        /* goldener Rand */
    font-size: 0.8rem;
    color: #92400e;                   /* dunkles Orange/Braun */
}

.reviews-trust-icon {
    font-size: 1rem;
}

.reviews-trust-text {
    white-space: nowrap;
}

.reviews-main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.reviews-score {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: #111827;
}

.reviews-stars {
    display: flex;
    gap: 2px;
    font-size: 1.1rem;
}

.reviews-count {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 2px;
}

.reviews-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

/* kleinere Buttons im Widget */
.btn-small {
    padding: 8px 14px;
    font-size: 0.85rem;
}

.reviews-hint {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 4px;
}

/* Sterne – global für kleines & großes Widget */
.trust-badge-star {
    font-size: 22px;
    color: #ddd; /* graue Outline */
    margin-right: 2px;
}

.trust-badge-star.filled {
    color: #f4b400; /* Google-Gelb */
    text-shadow: 0 0 2px rgba(0,0,0,0.2);
}

/* optional: Google-Button leicht hervorheben */
.btn-google-review {
    border-style: dashed;
}

