/*
Theme Name: Taxi Beck Ochtrup – HOMEFIX 2.2.9
Theme URI: https://www.taxi-beck.de/
Description: Individuelles Taxi-Beck-Theme für IONOS WordPress. Darstellung getrennt vom sicheren Taxi-Beck-Buchungsplugin.
Version: 2.2.9
Requires at least: 7.0
Requires PHP: 8.3
Author: Taxi Beck
Text Domain: taxi-beck
License: Proprietary project theme
*/

/* =====================================================
   VARIABLES
===================================================== */

:root {

    --yellow: #ffd400;
    --yellow-light: #ffe34d;

    --black: #070707;
    --black-2: #0d0d0d;
    --black-3: #151515;
    --black-4: #1d1d1d;

    --white: #ffffff;
    --text: #ffffff;
    --muted: #8c8c8c;

    --border: rgba(255,255,255,.10);

    --radius: 22px;

    --transition: .3s ease;

}


/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


/*
 * Sichtbarer Fokus-Rahmen für Tastatur-
 * Navigation. Erscheint nur bei Tastatur-
 * Fokus (:focus-visible), nicht bei jedem
 * Maus-Klick, damit es visuell nicht stört.
 */

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {

    outline:
        3px solid
        var(--yellow);

    outline-offset: 3px;

    border-radius: 4px;

}


.skip-link {

    position: absolute;

    top: -100px;
    left: 16px;

    z-index: 2000;

    padding: 14px 22px;

    border-radius: 10px;

    background:
        var(--yellow);

    color:
        #000;

    font-size: 14px;

    font-weight: 800;

    transition:
        top .2s ease;

}


.skip-link:focus {

    top: 16px;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        sans-serif;

    background:
        var(--black);

    color:
        var(--text);

    line-height: 1.6;

    overflow-x: hidden;

    transition:
        background .3s ease,
        color .3s ease;

}


body.menu-open {

    overflow: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    font: inherit;

}


img {

    max-width: 100%;

    display: block;

}


/* =====================================================
   CONTAINER
===================================================== */

.container {

    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin:
        0 auto;

}


.section {

    padding:
        125px 0;

}


/* =====================================================
   TYPOGRAPHY
===================================================== */

.label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color:
        var(--yellow);

    font-size: 12px;

    font-weight: 1000;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.label::before {

    content: "";

    width: 28px;

    height: 2px;

    background:
        var(--yellow);

}


.section-title {

    max-width: 850px;

    font-size:
        clamp(
            45px,
            6vw,
            76px
        );

    line-height: .92;

    letter-spacing: -4px;

}


.section-title span {

    color:
        var(--yellow);

}


.section-description {

    max-width: 650px;

    margin-top: 24px;

    color:
        var(--muted);

    font-size: 17px;

    line-height: 1.75;

}


.section-heading {

    margin-bottom: 55px;

}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    background:
        rgba(7,7,7,.68);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid
        rgba(255,255,255,.06);

    transition:
        .3s ease;

}


.header.scrolled {

    box-shadow:
        0 12px 50px
        rgba(0,0,0,.25);

}


.navbar {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    font-size: 20px;

    font-weight: 1000;

}


.logo-box {

    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        var(--yellow);

    color:
        #000;

    font-size: 13px;

    font-weight: 1000;

}


.nav-links {

    display: flex;

    align-items: center;

    gap: 24px;

}


.nav-links a {

    color:
        #c4c4c4;

    font-size: 13px;

    font-weight: 800;

    transition:
        var(--transition);

}


.nav-links a:hover {

    color:
        var(--yellow);

}


.nav-call {

    padding:
        12px 18px;

    border-radius: 10px;

    background:
        var(--yellow);

    color:
        #000 !important;

}


/* =====================================================
   NAV DROPDOWN
===================================================== */

.nav-dropdown {

    position: relative;

}


.nav-dropdown-toggle {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    border: 0;

    padding: 0;

    background: transparent;

    color: #c4c4c4;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition:
        var(--transition);

}


.nav-dropdown-toggle:hover {

    color:
        var(--yellow);

}


.nav-chevron {

    font-size: 10px;

    transition:
        transform .25s ease;

}


.nav-dropdown.open .nav-chevron {

    transform:
        rotate(180deg);

}


.nav-dropdown-menu {

    position: absolute;

    top: calc(100% + 18px);

    left: -14px;

    z-index: 1100;

    display: none;

    flex-direction: column;

    gap: 2px;

    min-width: 220px;

    padding: 8px;

    border:
        1px solid
        var(--border);

    border-radius: 14px;

    background:
        var(--black-3);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.4);

}


.nav-dropdown.open .nav-dropdown-menu {

    display: flex;

}


.nav-dropdown-menu a {

    padding: 10px 12px;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 700;

    color: #c4c4c4;

}


.nav-dropdown-menu a:hover {

    background:
        var(--black-4);

    color:
        var(--yellow);

}


.header-actions {

    display: flex;

    align-items: center;

    gap: 9px;

}



/* =====================================================
   LANGUAGE SWITCH
===================================================== */

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
}

.language-option {
    min-width: 34px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    padding: 0 8px;
    border-radius: 999px;
    color: #aaa;
    font-size: 11px;
    font-weight: 1000;
    letter-spacing: .7px;
    transition: background .2s ease, color .2s ease;
}

a.language-option:hover {
    color: var(--white);
}

.language-option.is-active {
    background: var(--yellow);
    color: #000;
}

.menu-button {

    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background:
        transparent;

    color:
        var(--white);

    font-size: 27px;

    cursor: pointer;

}


/* =====================================================
   BUTTONS
===================================================== */

.button {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        0 23px;

    border-radius: 11px;

    font-weight: 1000;

    transition:
        transform .25s ease,
        background .25s ease,
        border .25s ease;

}


.button:hover {

    transform:
        translateY(-3px);

}


.button-large {

    min-height: 58px;

    padding:
        0 27px;

}


.button-yellow {

    background:
        var(--yellow);

    color:
        #000;

}


.button-yellow:hover {

    background:
        var(--yellow-light);

}


.button-black {

    background:
        #000;

    color:
        #fff;

}


.button-dark-outline {

    border:
        1px solid
        rgba(0,0,0,.3);

    color:
        #000;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height:
        100vh;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        130px 0 90px;

}


.hero-background {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:

        radial-gradient(
            circle at 75% 45%,
            rgba(255,212,0,.14),
            transparent 30%
        ),

        radial-gradient(
            circle at 10% 90%,
            rgba(255,212,0,.06),
            transparent 25%
        );

}


.hero-grid {

    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 70px;

    align-items: center;

}


.hero-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        var(--yellow);

    font-size: 13px;

    font-weight: 1000;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.hero-label-line {

    width: 35px;

    height: 2px;

    background:
        var(--yellow);

}


.hero h1 {

    margin-top: 24px;

    max-width: 850px;

    font-size:
        clamp(
            55px,
            7vw,
            94px
        );

    line-height: .88;

    letter-spacing: -6px;

}


.hero h1 .typewriter-yellow {

    color:
        var(--yellow);

}


.typewriter-line {

    display: inline-block;

}


.typewriter-line::after {

    content: "";

    display: inline-block;

    width: 4px;

    height: .8em;

    margin-left: 4px;

    background:
        currentColor;

    vertical-align: -0.1em;

    opacity: 0;

}


.typewriter-line.typing::after {

    opacity: 1;

    animation:
        typewriterBlink 1s step-end infinite;

}


@keyframes typewriterBlink {

    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

}


.hero-text {

    max-width: 600px;

    margin-top: 32px;

    color:
        var(--muted);

    font-size: 18px;

    line-height: 1.7;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 22px;

    margin-top: 35px;

}


.hero-secondary-link {

    color:
        var(--muted);

    font-size: 14px;

    font-weight: 800;

    transition:
        var(--transition);

}


.hero-secondary-link:hover {

    color:
        var(--white);

}


.hero-info {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 32px;

}


.hero-info-item {

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        var(--muted);

    font-size: 13px;

    font-weight: 700;

}


.hero-info-icon {

    width: 20px;
    height: 20px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,212,0,.12);

    color:
        var(--yellow);

    font-size: 12px;

}


.hero-scroll {

    position: absolute;

    bottom: 35px;

    left: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    transform:
        translateX(-50%);

    color:
        #999;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 2px;

}


.scroll-line {

    width: 1px;

    height: 35px;

    background:
        linear-gradient(
            to bottom,
            var(--yellow),
            transparent
        );

}


/* =====================================================
   QUICK ACTIONS
===================================================== */

.quick-actions {

    position: relative;

    z-index: 5;

    margin-top: -1px;

    padding:
        18px 0;

    background:
        var(--yellow);

}


.quick-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 10px;

}


.quick-card {

    min-height: 80px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding:
        14px 17px;

    border-radius: 14px;

    background:
        rgba(255,255,255,.18);

    color:
        #000;

    transition:
        .25s ease;

}


.quick-card:hover {

    transform:
        translateY(-4px);

    background:
        rgba(255,255,255,.45);

}


.quick-main {

    background:
        #000;

    color:
        #fff;

}


.quick-main:hover {

    background:
        #111;

}


.quick-icon {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 11px;

    background:
        rgba(255,255,255,.2);

    font-size: 19px;

}


.quick-main .quick-icon {

    background:
        var(--yellow);

}


.quick-card small {

    display: block;

    opacity: .8;

    font-size: 12px;

    font-weight: 700;

}


.quick-card strong {

    display: block;

    margin-top: 1px;

    font-size: 14px;

}


.quick-arrow {

    margin-left: auto;

    font-size: 20px;

}


/* =====================================================
   SERVICES
===================================================== */

.services {

    background:
        var(--black-2);

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 16px;

}


.service-card {

    min-height: 310px;

    padding:
        30px;

    display: flex;

    flex-direction: column;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:
        var(--black-3);

    transition:
        .3s ease;

}


.service-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255,212,0,.38);

}


.service-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.service-number {

    color:
        #444;

    font-size: 12px;

    font-weight: 1000;

}


.service-card h3 {

    margin-top: 40px;

    font-size: 23px;

}


.service-card p {

    margin-top: 10px;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.7;

}


.service-card a {

    margin-top: auto;

    padding-top: 25px;

    color:
        var(--yellow);

    font-size: 13px;

    font-weight: 900;

}


/* =====================================================
   ABOUT
===================================================== */

.about {

    background:
        var(--black);

}


.about-grid {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 100px;

    align-items: center;

}


.about-visual {

    position: relative;

}


.about-content > p {

    max-width: 600px;

    margin-top: 22px;

    color:
        var(--muted);

    font-size: 16px;

    line-height: 1.75;

}


.about-points {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 11px;

    margin-top: 35px;

}


.about-point {

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        15px;

    border:
        1px solid
        var(--border);

    border-radius: 11px;

    background:
        var(--black-2);

    font-size: 13px;

}


.about-point span {

    color:
        var(--yellow);

    font-size: 18px;

}


/* =====================================================
   FLEET
===================================================== */

.fleet {

    background:
        var(--black);

}


.fleet-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 17px;

}


.fleet-card {

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:
        var(--black-2);

}


.fleet-content {

    padding:
        25px;

}


.fleet-label {

    color:
        var(--yellow);

    font-size: 12px;

    font-weight: 1000;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.fleet-content h3 {

    margin-top: 7px;

    font-size: 21px;

}


.fleet-content p {

    margin-top: 9px;

    color:
        var(--muted);

    font-size: 14px;

}


/* =====================================================
   BOOKING
===================================================== */

.booking {

    background:
        var(--black);

}


.booking-intro {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 50px;

}


.booking-box {

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius:
        25px;

    background:
        #fff;

    box-shadow:
        0 35px 100px
        rgba(0,0,0,.3);

}


.booking-topbar {

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 20px;

    background:
        #111;

    color:
        #aaa;

    font-size: 13px;

}


.booking-status {

    display: flex;

    align-items: center;

    gap: 8px;

}


.status-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        #5bd65b;

    box-shadow:
        0 0 10px
        rgba(91,214,91,.6);

}


.booking-bottom {

    min-height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 30px;

    background:
        #f5f5f5;

    color:
        #555;

    font-size: 13px;

}


/* =====================================================
   FAQ
===================================================== */

.faq {

    background:
        var(--black-2);

}


.faq-list {

    max-width: 900px;

    margin-top: 20px;

}


.faq-item {

    border-bottom:
        1px solid
        var(--border);

}


.faq-question {

    width: 100%;

    padding:
        25px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border: 0;

    background:
        transparent;

    color:
        var(--white);

    cursor: pointer;

    text-align: left;

    font-size: 17px;

    font-weight: 900;

}


.faq-plus {

    color:
        var(--yellow);

    font-size: 26px;

    transition:
        .25s ease;

}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height .35s ease;

}


.faq-answer p {

    padding:
        0 0 25px;

    color:
        var(--muted);

    font-size: 14px;

}


.faq-item.active .faq-plus {

    transform:
        rotate(45deg);

}


/* =====================================================
   ABSCHLUSS
===================================================== */

.final-cta {

    padding:
        100px 0;

    background:
        var(--yellow);

    color:
        #000;

}


.final-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

}


.final-cta .label {

    color:
        #655300;

}


.final-cta h2 {

    max-width: 700px;

    font-size:
        clamp(
            45px,
            6vw,
            75px
        );

    line-height: .9;

    letter-spacing: -4px;

}


.final-cta h2 span {

    opacity: .55;

}


.final-cta p {

    margin-top: 18px;

    color:
        #5e4e00;

}


.final-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


/* =====================================================
   FOOTER
===================================================== */

footer {

    padding:
        70px 0 25px;

    background:
        #050505;

    color:
        #fff;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 50px;

}


.footer-brand p {

    max-width: 250px;

    margin-top: 15px;

    color:
        #666;

    font-size: 13px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer-column h4 {

    margin-bottom: 8px;

    color:
        #fff;

    font-size: 13px;

}


.footer-column a,
.footer-column span {

    color:
        #666;

    font-size: 13px;

    transition:
        .2s;

}


.footer-column a:hover {

    color:
        var(--yellow);

}


.footer-bottom {

    margin-top: 60px;

    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color:
        #a0a0a0;

    font-size: 13px;

}


.footer-bottom div {

    display: flex;

    gap: 20px;

}


.footer-bottom a:hover {

    color:
        #fff;

}


/* =====================================================
   MOBILE BOTTOM BAR
===================================================== */

.mobile-bottom-bar {

    display: none;

    position: fixed;

    left: 10px;
    right: 10px;
    bottom: 10px;

    z-index: 1500;

    height: 62px;

    overflow: hidden;

    border-radius: 15px;

    box-shadow:
        0 15px 50px
        rgba(0,0,0,.4);

}


.mobile-bottom-bar a {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 1px;

    font-weight: 1000;

}


.mobile-call {

    width: 62%;

    background:
        var(--yellow);

    color:
        #000;

}


.mobile-book {

    width: 38%;

    background:
        #111;

    color:
        #fff;

}


.mobile-bottom-bar span {

    font-size: 17px;

}


.mobile-bottom-bar small {

    font-size: 12px;

}


/* =====================================================
   FLOATING CALL BUTTON
===================================================== */

.floating-call {

    position: fixed;

    left: 25px;
    bottom: 25px;

    z-index: 900;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        14px 20px;

    border-radius: 100px;

    background:
        var(--yellow);

    color:
        #000;

    font-size: 14px;

    font-weight: 900;

    box-shadow:
        0 12px 35px
        rgba(255,212,0,.3);

    transition:
        transform .25s ease;

}


.floating-call:hover {

    transform:
        translateY(-3px);

}


/* =====================================================
   SCROLL TOP
===================================================== */

.scroll-top {

    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    background:
        var(--black-3);

    color:
        var(--white);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        .3s ease;

}


.scroll-top.visible {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


.scroll-top:hover {

    color:
        #000;

    background:
        var(--yellow);

}


/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/*
 * Gestaffeltes Einblenden für Elemente,
 * die nebeneinander in einem Grid liegen
 * (Quick-Cards, Service-Karten, Flotte,
 * FAQ).
 */

.quick-grid .reveal:nth-child(1) { transition-delay: 0s;    }
.quick-grid .reveal:nth-child(2) { transition-delay: .08s;  }
.quick-grid .reveal:nth-child(3) { transition-delay: .16s;  }
.quick-grid .reveal:nth-child(4) { transition-delay: .24s;  }

.services-grid .reveal:nth-child(1) { transition-delay: 0s;   }
.services-grid .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4) { transition-delay: .24s; }
.services-grid .reveal:nth-child(5) { transition-delay: .32s; }
.services-grid .reveal:nth-child(6) { transition-delay: .4s;  }
.services-grid .reveal:nth-child(7) { transition-delay: .48s; }

.fleet-grid .reveal:nth-child(1) { transition-delay: 0s;   }
.fleet-grid .reveal:nth-child(2) { transition-delay: .1s;  }
.fleet-grid .reveal:nth-child(3) { transition-delay: .2s;  }


.faq-list .reveal:nth-child(1) { transition-delay: 0s;    }
.faq-list .reveal:nth-child(2) { transition-delay: .08s;  }
.faq-list .reveal:nth-child(3) { transition-delay: .16s;  }
.faq-list .reveal:nth-child(4) { transition-delay: .24s;  }


@media(prefers-reduced-motion: reduce) {

    .reveal,
    .quick-grid .reveal,
    .services-grid .reveal,
    .fleet-grid .reveal,
    .faq-list .reveal {

        transition-delay: 0s !important;

    }

}


/* =====================================================
   RESPONSIVE 1050
===================================================== */

@media(max-width:1050px) {

    .nav-links {

        gap: 13px;

    }


    .nav-links a {

        font-size: 12px;

    }


    .hero-grid {

        gap: 40px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .about-grid {

        gap: 55px;

    }


    .footer-grid {

        grid-template-columns:
            1.5fr 1fr 1fr;

    }

}


/* =====================================================
   RESPONSIVE 900
===================================================== */

@media(max-width:900px) {

    .nav-links {

        position: absolute;

        top: 82px;

        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding:
            12px 20px 20px;

        background:
            var(--black-2);

        border-bottom:
            1px solid
            var(--border);

    }


    .nav-links.active {

        display: flex;

    }


    .nav-links a {

        padding:
            15px 5px;

        border-bottom:
            1px solid
            var(--border);

        font-size: 14px;

    }


    .nav-dropdown-toggle {

        width: 100%;

        justify-content: space-between;

        padding:
            15px 5px;

        border-bottom:
            1px solid
            var(--border);

        font-size: 14px;

    }


    .nav-dropdown-menu {

        position: static;

        display: none;

        min-width: 0;

        padding:
            4px 0 4px 16px;

        border: 0;

        border-radius: 0;

        background: transparent;

        box-shadow: none;

    }


    .nav-dropdown.open .nav-dropdown-menu {

        display: flex;

    }


    .nav-dropdown-menu a {

        padding:
            13px 5px;

        border-bottom:
            1px solid
            var(--border);

        font-size: 14px;

    }


    .nav-call {

        margin-top: 10px;

        text-align: center;

    }


    .menu-button {

        display: grid;

        place-items: center;

    }


    .hero-grid {

        grid-template-columns:
            1fr;

    }


    


    


    .hero-content {

        text-align: center;

    }


    .hero-label {

        justify-content: center;

    }


    .hero-text {

        margin-left: auto;
        margin-right: auto;

    }


    .hero-buttons {

        justify-content: center;

    }


    .hero-info {

        justify-content: center;

    }


    .quick-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .about-grid {

        grid-template-columns:
            1fr;

    }


    .about-visual {

        max-width: 650px;

        margin:
            0 auto;

        width: 100%;

    }


    .booking-intro {

        align-items:
            flex-start;

        flex-direction:
            column;

    }


    .final-cta-inner {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


/* =====================================================
   RESPONSIVE 650
===================================================== */

@media(max-width:650px) {

    .container {

        width:
            calc(100% - 28px);

    }


    .section {

        padding:
            85px 0;

    }


    .hero {

        min-height:
            auto;

        padding:
            120px 0 70px;

    }


    .hero h1 {

        font-size:
            55px;

        letter-spacing:
            -4px;

    }


    


    


    


    


    .hero-scroll {

        display:
            none;

    }


    .quick-grid {

        grid-template-columns:
            1fr;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .service-card {

        min-height:
            280px;

    }


    .section-title {

        font-size:
            45px;

        letter-spacing:
            -3px;

    }


    


    


    .about-points {

        grid-template-columns:
            1fr;

    }


    


    


    .fleet-grid {

        grid-template-columns:
            1fr;

    }


    


    .booking-bottom {

        flex-wrap:
            wrap;

        gap:
            10px;

        padding:
            12px;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap:
            35px;

    }


    .footer-bottom {

        flex-direction:
            column;

    }


    .scroll-top {

        display:
            none;

    }


    .floating-call {

        display:
            none;

    }


    .mobile-bottom-bar {

        display:
            flex;

    }


    body {

        padding-bottom:
            82px;

    }

}


/* =====================================================
   LEGAL PAGES (Impressum / Datenschutz)
===================================================== */

.legal-page {

    padding-top: 170px;

}


.legal-content {

    max-width: 800px;

}


.legal-content h1 {

    margin-bottom: 40px;

}


.legal-content h2 {

    margin-top: 40px;

    margin-bottom: 12px;

    font-size: 20px;

    color:
        var(--yellow);

}


.legal-content p {

    color:
        var(--muted);

    font-size: 15px;

    line-height: 1.8;

}


.legal-content a {

    color:
        var(--yellow);

    text-decoration: underline;

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media(prefers-reduced-motion: reduce) {

    html {

        scroll-behavior:
            auto;

    }


    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

    }

}

/* =====================================================
   JOBS / KARRIERE
===================================================== */

.jobs {
    position: relative;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
    margin-top: 40px;
}

.job-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    padding: 38px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
    box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.job-card:first-child {
    border-color: rgba(255,212,0,.48);
}

.job-card-main {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.job-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 10px;
    border: 1px solid rgba(255,212,0,.25);
    border-radius: 17px;
    background: rgba(255,212,0,.10);
    font-size: 25px;
}

.job-badge {
    width: fit-content;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.job-card h3 {
    margin: 0 0 42px;
    color: #ffffff;
    font-size: clamp(29px, 2.5vw, 38px);
    line-height: 1.17;
    letter-spacing: -.02em;
}

.job-card p {
    margin: 0;
    color: #f0f0f0;
    font-size: 15.5px;
    font-weight: 550;
    line-height: 1.7;
}

.job-list {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    padding-top: 6px;
    list-style: none;
}

.job-list li {
    position: relative;
    padding-left: 24px;
    color: #e7e7e7;
    font-size: 14px;
    line-height: 1.5;
}

.job-list li::before {
    content: "";
    position: absolute;
    left: 1px;
    top: .55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(255,212,0,.08);
}

.job-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 38px;
    padding-top: 0;
}

.job-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    min-height: 62px;
    padding: 10px 14px;
    border-radius: 13px;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.job-apply:hover {
    transform: translateY(-2px);
}

.job-apply-icon {
    flex: 0 0 auto;
    font-size: 18px;
}

.job-apply > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.12;
}

.job-apply small,
.job-apply strong {
    display: block;
}

.job-apply small {
    margin-bottom: 3px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.job-apply strong {
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.job-apply-email {
    border: 1px solid var(--yellow);
    background: var(--yellow);
    color: #080808;
}

.job-apply-email:hover {
    background: var(--yellow-light);
}

.job-apply-email small {
    color: rgba(8,8,8,.65);
}

.job-apply-phone {
    border: 1px solid rgba(255,255,255,.12);
    background: #050505;
    color: #ffffff;
}

.job-apply-phone:hover {
    border-color: rgba(255,212,0,.5);
    background: #0d0d0d;
}

.job-apply-phone small {
    color: #a8a8a8;
}

.jobs-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 26px;
    padding: 19px 24px;
    border: 1px solid rgba(255,212,0,.28);
    border-radius: 16px;
    background: rgba(255,212,0,.08);
    color: #f5f5f5;
    text-align: center;
}

.jobs-contact strong {
    color: var(--yellow);
}

.jobs-contact a {
    color: #ffffff;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-underline-offset: 3px;
}

@media (min-width: 761px) {
    .job-card h3 {
        min-height: 90px;
    }

    .job-card p {
        min-height: 86px;
    }

    .job-list {
        min-height: 128px;
    }
}

@media (max-width: 980px) {
    .job-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        padding: 28px 24px;
    }

    .job-card h3 {
        margin-bottom: 26px;
    }

    .job-actions {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .job-apply {
        width: 100%;
    }
}


/* =====================================================
   ZEITGESTEUERTE ONLINE-BUCHUNG
===================================================== */

[hidden] {
    display: none !important;
}


/* =====================================================
   BLACK / YELLOW PRECISION – DESIGN LAYER
   Klar, technisch, lokal. Ohne Fahrzeugfotos.
===================================================== */

:root {
    --precision-line: rgba(255,255,255,.14);
}

body {
    background: #070707;
}

.section {
    padding: 118px 0;
}

.label {
    gap: 12px;
    margin-bottom: 22px;
    font-size: 11px;
    letter-spacing: 2.5px;
}

.label::before {
    width: 38px;
}

.section-title {
    font-size: clamp(42px, 6vw, 78px);
    line-height: .94;
    letter-spacing: -4.5px;
}

.section-description {
    max-width: 720px;
}

/* ---------- Header ---------- */

.header {
    background: rgba(7,7,7,.82);
    border-bottom: 1px solid var(--precision-line);
    backdrop-filter: blur(20px);
}

.logo-box {
    border-radius: 3px;
    transform: skew(-5deg);
}

.logo-box::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(0,0,0,.25);
}

.logo-box {
    position: relative;
}

.nav-call {
    border-radius: 3px;
}

/* ---------- Hero ---------- */

.precision-hero {
    min-height: 100svh;
    isolation: isolate;
    padding-top: 145px;
    border-bottom: 1px solid var(--precision-line);
}

.precision-hero::before {
    content: "02553 / 4711";
    position: absolute;
    right: -20px;
    bottom: 40px;
    z-index: 0;
    color: rgba(255,255,255,.025);
    font-size: clamp(95px, 14vw, 220px);
    font-weight: 1000;
    letter-spacing: -10px;
    white-space: nowrap;
    pointer-events: none;
}

.precision-hero .hero-background {
    background:
        linear-gradient(90deg, transparent 0 49.92%, rgba(255,255,255,.045) 49.92% 50.08%, transparent 50.08%),
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        radial-gradient(circle at 68% 36%, rgba(255,212,0,.12), transparent 25%);
    background-size: auto, 52px 52px, 52px 52px, auto;
    opacity: .8;
}

.precision-hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .72fr);
    gap: clamp(55px, 8vw, 120px);
}

.precision-hero .hero-content {
    max-width: 760px;
}

.precision-hero h1 {
    margin-top: 26px;
    font-size: clamp(57px, 7.4vw, 108px);
    line-height: .84;
    letter-spacing: clamp(-7px, -.55vw, -4px);
}

.precision-hero .hero-text {
    max-width: 625px;
    padding-left: 22px;
    border-left: 1px solid rgba(255,212,0,.65);
}

.precision-contact {
    position: relative;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 3px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
    overflow: hidden;
    box-shadow: 0 35px 100px rgba(0,0,0,.28);
}

.precision-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 92px;
    height: 7px;
    background: var(--yellow);
}

.precision-contact-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--precision-line);
    color: #9d9d9d;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.2px;
}


/* ---------- Hero Eyecatcher: Taxi roof light ---------- */

.taxi-eyecatcher {
    position: relative;
    z-index: 4;
    display: grid;
    justify-items: center;
    gap: 12px;
    margin: 34px auto 0;
    pointer-events: auto;
}

.taxi-roof-sign {
    --sign-glow: rgba(255,212,0,.22);
    position: relative;
    min-width: min(290px, 86%);
    min-height: 88px;
    display: grid;
    place-items: center;
    padding: 20px 34px 18px;
    border: 1px solid rgba(255,212,0,.8);
    border-radius: 46% 46% 12px 12px / 32% 32% 12px 12px;
    background:
        linear-gradient(180deg, #ffe34d 0%, #ffd400 58%, #e3bc00 100%);
    color: #050505;
    box-shadow:
        0 0 0 1px rgba(255,212,0,.12),
        0 12px 35px rgba(0,0,0,.35),
        0 0 34px var(--sign-glow);
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 1000;
    letter-spacing: 2.4px;
    text-align: center;
    text-transform: uppercase;
    transform: perspective(680px) rotateX(-4deg);
    transition:
        transform .28s ease,
        box-shadow .28s ease,
        filter .28s ease;
    isolation: isolate;
}

.taxi-roof-sign::before {
    content: "";
    position: absolute;
    inset: 7px 16px auto;
    height: 1px;
    background: rgba(255,255,255,.7);
    opacity: .6;
}

.taxi-roof-sign::after {
    content: "";
    position: absolute;
    left: 13%;
    right: 13%;
    bottom: -9px;
    height: 9px;
    border-radius: 0 0 8px 8px;
    background: #171717;
    box-shadow: 0 5px 15px rgba(0,0,0,.55);
    z-index: -1;
}

.taxi-roof-sign:hover {
    transform: perspective(680px) rotateX(-4deg) translateY(-4px) scale(1.015);
    box-shadow:
        0 0 0 1px rgba(255,212,0,.18),
        0 18px 45px rgba(0,0,0,.42),
        0 0 46px rgba(255,212,0,.32);
}

.taxi-sign-light {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #111;
    box-shadow: 0 0 0 4px rgba(0,0,0,.08);
}

.taxi-sign-text {
    position: relative;
    z-index: 2;
}

.taxi-sign-caption {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #a9a9a9;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.taxi-sign-caption-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 5px rgba(255,212,0,.08);
}

.taxi-eyecatcher.is-booking-open .taxi-roof-sign {
    --sign-glow: rgba(255,212,0,.42);
    animation: taxiSignPulse 2.8s ease-in-out infinite;
}

.taxi-eyecatcher.is-booking-open .taxi-sign-light {
    background: #18d46f;
    box-shadow:
        0 0 0 4px rgba(24,212,111,.12),
        0 0 18px rgba(24,212,111,.7);
}

.taxi-eyecatcher.is-booking-open .taxi-sign-caption-dot {
    background: #18d46f;
    box-shadow: 0 0 0 5px rgba(24,212,111,.1);
}

.taxi-eyecatcher.is-booking-open .taxi-sign-caption-text::after {
    content: " · ONLINE";
    color: #fff;
}

.precision-route {
    inset: 76px 28px 115px;
    opacity: .38;
    pointer-events: none;
}

.precision-route .route-line {
    background-size: 32px 2px;
    animation: taxiRouteDrive 4.8s linear infinite;
}

.precision-route::before,
.precision-route::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.065);
}

.precision-route::before {
    inset: 14% 9% 12% 18%;
}

.precision-route::after {
    width: 175px;
    height: 175px;
    right: -58px;
    top: 44px;
    border-radius: 50%;
}

.route-point {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 3px solid var(--yellow);
    border-radius: 50%;
    background: #070707;
    box-shadow: 0 0 0 7px rgba(255,212,0,.08);
}

.route-point-start {
    top: 24%;
    left: 10%;
}

.route-point-end {
    right: 9%;
    bottom: 17%;
}

.route-line {
    position: absolute;
    display: block;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--yellow) 0 9px, transparent 9px 16px);
    transform-origin: left center;
}

.route-line-one {
    width: 56%;
    top: 27%;
    left: 13%;
    transform: rotate(24deg);
}

.route-line-two {
    width: 46%;
    right: 10%;
    bottom: 24%;
    transform: rotate(-20deg);
}

.route-turn {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 48%;
    left: 58%;
    background: var(--yellow);
    transform: rotate(45deg);
}

.precision-contact-copy {
    position: relative;
    z-index: 2;
    margin-top: auto;
    margin-bottom: 46px;
}

.precision-eyebrow,
.precision-availability {
    display: block;
    color: #a2a2a2;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.precision-phone {
    display: inline-block;
    margin: 12px 0 16px;
    color: #fff;
    font-size: clamp(72px, 7vw, 108px);
    font-weight: 1000;
    line-height: .72;
    letter-spacing: -7px;
    transition: color .2s ease, transform .2s ease;
}

.precision-phone:hover {
    color: var(--yellow);
    transform: translateX(5px);
}

.precision-status-link {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--precision-line);
    color: #d4d4d4;
    font-size: 12px;
    font-weight: 850;
}

.precision-status-link span {
    color: var(--yellow);
    font-size: 20px;
}


@keyframes taxiSignPulse {
    0%, 100% {
        filter: brightness(1);
        box-shadow:
            0 0 0 1px rgba(255,212,0,.18),
            0 12px 35px rgba(0,0,0,.35),
            0 0 34px rgba(255,212,0,.30);
    }
    50% {
        filter: brightness(1.07);
        box-shadow:
            0 0 0 1px rgba(255,212,0,.30),
            0 16px 42px rgba(0,0,0,.40),
            0 0 58px rgba(255,212,0,.48);
    }
}

@keyframes taxiRouteDrive {
    to {
        background-position: 32px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .taxi-eyecatcher.is-booking-open .taxi-roof-sign,
    .precision-route .route-line {
        animation: none !important;
    }
}

/* ---------- Quick actions ---------- */

.quick-actions {
    padding: 0;
    background: var(--yellow);
    border-bottom: 1px solid rgba(0,0,0,.25);
}

.quick-grid {
    gap: 0;
}

.quick-card,
.quick-main {
    min-height: 92px;
    border-radius: 0;
    border-left: 1px solid rgba(0,0,0,.2);
    background: transparent;
    color: #000;
}

.quick-card:last-child {
    border-right: 1px solid rgba(0,0,0,.2);
}

.quick-card:hover,
.quick-main:hover {
    background: rgba(0,0,0,.09);
    transform: none;
}

.quick-icon,
.quick-main .quick-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0,0,0,.09);
    font-size: 16px;
}

.quick-card small {
    opacity: .64;
}

/* ---------- Services as precision rows ---------- */

.precision-services {
    position: relative;
    background: #0a0a0a;
}

.precision-services::before {
    content: "SERVICES";
    position: absolute;
    top: 74px;
    right: 2vw;
    color: rgba(255,255,255,.018);
    font-size: clamp(95px, 15vw, 230px);
    font-weight: 1000;
    line-height: 1;
    letter-spacing: -10px;
    pointer-events: none;
}

.precision-service-list {
    display: block;
    border-top: 1px solid var(--precision-line);
}

.precision-service-list .service-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 70px minmax(220px, .85fr) 1.35fr auto;
    align-items: center;
    gap: 26px;
    padding: 30px 12px;
    border: 0;
    border-bottom: 1px solid var(--precision-line);
    border-radius: 0;
    background: transparent;
    overflow: hidden;
}

.precision-service-list .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,212,0,.11), transparent 55%);
    transform: translateX(-105%);
    transition: transform .35s ease;
    pointer-events: none;
}

.precision-service-list .service-card:hover {
    transform: none;
    border-color: rgba(255,212,0,.5);
}

.precision-service-list .service-card:hover::before {
    transform: translateX(0);
}

.precision-service-list .service-top,
.precision-service-list h3,
.precision-service-list p,
.precision-service-list a {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.precision-service-list .service-number {
    color: var(--yellow);
    font-size: 11px;
    letter-spacing: 1.5px;
}

.precision-service-list h3 {
    font-size: clamp(22px, 2vw, 31px);
    letter-spacing: -1px;
}

.precision-service-list p {
    max-width: 520px;
    font-size: 14px;
}

.precision-service-list a {
    min-width: 135px;
    color: #fff;
    text-align: right;
    white-space: nowrap;
}

.precision-service-list a span {
    display: inline-block;
    margin-left: 9px;
    color: var(--yellow);
    transition: transform .2s ease;
}

.precision-service-list .service-card:hover a span {
    transform: translateX(6px);
}

/* ---------- About / local identity ---------- */

.precision-about {
    background: #070707;
    border-top: 1px solid rgba(255,255,255,.035);
    border-bottom: 1px solid rgba(255,255,255,.035);
}

.precision-about .about-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(65px, 9vw, 130px);
}

.precision-wordmark {
    min-height: 550px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--precision-line);
    border-radius: 3px;
    padding: 42px;
    background:
        linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.05) 49.8% 50.2%, transparent 50.2%),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: auto, 100% 55px;
    overflow: hidden;
}

.precision-wordmark::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 26%;
    width: 155%;
    height: 13px;
    background: var(--yellow);
    transform: rotate(-8deg);
    opacity: .95;
}

.precision-wordmark strong {
    position: relative;
    z-index: 1;
    margin: 15px 0;
    font-size: clamp(56px, 7vw, 95px);
    font-weight: 1000;
    letter-spacing: -6px;
    line-height: .85;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.precision-wordmark-small {
    position: relative;
    z-index: 1;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
}

.precision-wordmark-bottom {
    margin-top: auto;
    color: #a0a0a0;
}

.precision-wordmark-line {
    position: absolute;
    right: 34px;
    bottom: 35px;
    width: 90px;
    height: 1px;
    background: var(--yellow);
}

.precision-about .about-content p {
    max-width: 640px;
}

.precision-about .about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 42px;
    border-top: 1px solid var(--precision-line);
}

.precision-about .about-point {
    gap: 14px;
    padding: 18px 12px 18px 0;
    border-bottom: 1px solid var(--precision-line);
    border-radius: 0;
    background: none;
}

.precision-about .about-point:nth-child(odd) {
    border-right: 1px solid var(--precision-line);
}

.precision-about .about-point:nth-child(even) {
    padding-left: 18px;
}

.precision-about .about-point span {
    width: auto;
    height: auto;
    background: none;
    color: var(--yellow);
    font-size: 10px;
    font-weight: 900;
}

/* ---------- Fleet without photos ---------- */

.precision-fleet {
    position: relative;
    background: #0b0b0b;
}

.precision-fleet-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--precision-line);
}

.precision-fleet-list .fleet-card {
    min-height: 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border: 0;
    border-right: 1px solid var(--precision-line);
    border-radius: 0;
    background: transparent;
    overflow: hidden;
}

.precision-fleet-list .fleet-card:last-child {
    border-right: 0;
}

.precision-fleet-list .fleet-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 5px;
    background: var(--yellow);
    transition: width .3s ease;
}

.precision-fleet-list .fleet-card:hover {
    transform: none;
    background: rgba(255,255,255,.025);
}

.precision-fleet-list .fleet-card:hover::after {
    width: 100%;
}

.fleet-index {
    color: #555;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.precision-fleet-list .fleet-content {
    margin-top: auto;
    padding: 0;
}

.precision-fleet-list .fleet-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 8px;
    border: 1px solid rgba(255,212,0,.45);
    border-radius: 2px;
    color: var(--yellow);
    font-size: 10px;
    letter-spacing: 1.4px;
}

.precision-fleet-list h3 {
    font-size: 27px;
    letter-spacing: -1px;
}

.precision-fleet-list p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
}

.fleet-mark {
    position: absolute;
    top: 28px;
    right: 30px;
    color: var(--yellow);
    font-size: 24px;
}

/* ---------- Booking status ---------- */


/* ---------- Booking / cards / jobs ---------- */

.booking-box,
.faq-item,
.job-card,
.jobs-contact {
    border-radius: 4px;
}

.job-card {
    background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}

/* ---------- Abschluss ---------- */

.final-cta {
    position: relative;
    overflow: hidden;
}

.final-cta::after {
    content: "4711";
    position: absolute;
    right: -10px;
    bottom: -45px;
    color: rgba(0,0,0,.08);
    font-size: clamp(120px, 20vw, 300px);
    font-weight: 1000;
    letter-spacing: -15px;
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 1;
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
    .precision-hero-grid {
        grid-template-columns: 1fr .72fr;
        gap: 45px;
    }

    .precision-contact {
        min-height: 500px;
    }

    .precision-service-list .service-card {
        grid-template-columns: 55px minmax(180px, .8fr) 1.2fr auto;
        gap: 18px;
    }
}

@media (max-width: 900px) {
    .precision-hero {
        min-height: auto;
        padding-bottom: 90px;
    }

    .precision-hero-grid,
    .precision-about .about-grid {
        grid-template-columns: 1fr;
    }

    .precision-contact {
        min-height: 430px;
    }

    .precision-phone {
        font-size: 82px;
    }

    .precision-service-list .service-card {
        grid-template-columns: 48px 1fr auto;
    }

    .precision-service-list .service-card p {
        grid-column: 2 / -1;
        grid-row: 2;
    }

    .precision-service-list .service-card a {
        grid-column: 3;
        grid-row: 1;
    }

    .precision-wordmark {
        min-height: 380px;
    }

    .precision-wordmark strong {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .precision-fleet-list {
        grid-template-columns: 1fr;
    }

    .precision-fleet-list .fleet-card {
        min-height: 260px;
        border-right: 0;
        border-bottom: 1px solid var(--precision-line);
    }

    .precision-fleet-list .fleet-card:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 760px) {
    .section {
        padding: 86px 0;
    }

    .section-title {
        font-size: clamp(39px, 12vw, 58px);
        letter-spacing: -3px;
    }

    .precision-hero {
        padding-top: 118px;
    }

    .precision-hero::before {
        display: none;
    }

    .precision-hero h1 {
        font-size: clamp(50px, 15vw, 76px);
        letter-spacing: -4px;
    }

    .precision-hero .hero-text {
        padding-left: 16px;
    }

    .precision-contact {
        min-height: 390px;
        padding: 22px;
    }

    .precision-contact-copy {
        margin-bottom: 30px;
    }

    .precision-phone {
        font-size: clamp(68px, 22vw, 90px);
        letter-spacing: -5px;
    }

    .precision-route {
        inset: 68px 22px 100px;
    }

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

    .quick-card:nth-child(odd) {
        border-left: 0;
    }

    .quick-card:nth-child(n/**/+3) {
        border-top: 1px solid rgba(0,0,0,.2);
    }

    .quick-card:last-child {
        border-right: 0;
    }

    .precision-service-list .service-card {
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding: 25px 2px;
    }

    .precision-service-list .service-card h3,
    .precision-service-list .service-card p,
    .precision-service-list .service-card a {
        grid-column: 2;
    }

    .precision-service-list .service-card h3 {
        grid-row: 1;
    }

    .precision-service-list .service-card p {
        grid-row: 2;
        padding-right: 14px;
    }

    .precision-service-list .service-card a {
        grid-row: 3;
        margin-top: 4px;
        text-align: left;
    }

    .precision-wordmark {
        min-height: 320px;
        padding: 30px;
    }

    .precision-wordmark strong {
        font-size: clamp(51px, 17vw, 76px);
        letter-spacing: -4px;
    }

    .precision-about .about-points {
        grid-template-columns: 1fr;
    }

    .precision-about .about-point:nth-child(odd) {
        border-right: 0;
    }

    .precision-about .about-point:nth-child(even) {
        padding-left: 0;
    }

    .precision-fleet-list .fleet-card {
        min-height: 235px;
        padding: 26px;
    }

    
}

@media (prefers-reduced-motion: reduce) {
    .precision-phone,
    .precision-service-list .service-card::before,
    .precision-service-list a span,
    .precision-fleet-list .fleet-card::after {
        transition: none;
    }
}

/* =====================================================
   MOBILE
   Verhindert abgeschnittene Inhalte auf schmalen Displays
===================================================== */

@media (max-width: 760px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: min(100% - 28px, 1180px);
        min-width: 0;
    }

    .precision-hero-grid,
    .precision-contact,
    .hero-content,
    .quick-grid,
    .quick-card,
    .precision-service-list,
    .precision-service-list .service-card {
        min-width: 0;
        max-width: 100%;
    }

    .precision-contact {
        width: 100%;
    }

    .quick-card > div:not(.quick-icon) {
        min-width: 0;
    }

    .quick-card strong,
    .quick-card small {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .precision-services::before {
        right: -20px;
        font-size: clamp(78px, 28vw, 125px);
        letter-spacing: -6px;
    }

    .precision-heading {
        max-width: 100%;
    }

    .precision-heading .section-description {
        max-width: 100%;
    }

    .precision-service-list .service-card p {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    body {
        padding-bottom: calc(96px + env(safe-area-inset-bottom));
    }

    .mobile-bottom-bar {
        left: 12px;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        height: 60px;
    }
}

@media (max-width: 520px) {
    .navbar {
        min-height: 72px;
    }

    .logo {
        gap: 10px;
        font-size: 18px;
    }

    .logo-box {
        width: 40px;
        height: 46px;
    }

    .nav-links {
        top: 72px;
    }

    .precision-hero {
        padding-top: 104px;
        padding-bottom: 58px;
    }

    .precision-hero h1 {
        font-size: clamp(44px, 13.5vw, 60px);
        line-height: .88;
        letter-spacing: -3px;
    }

    .precision-hero .hero-text {
        padding-left: 13px;
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-buttons {
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-secondary-link {
        width: 100%;
        text-align: center;
    }

    .precision-contact {
        min-height: 350px;
        padding: 20px;
    }

    .precision-route {
        inset: 64px 18px 94px;
    }

    .precision-contact-copy {
        margin-bottom: 24px;
    }

    .precision-phone {
        font-size: clamp(58px, 18vw, 76px);
        line-height: .78;
        letter-spacing: -4px;
    }

    .precision-availability {
        font-size: 10px;
        letter-spacing: 1.45px;
        line-height: 1.45;
    }

    .precision-status-link {
        gap: 12px;
        font-size: 12px;
    }

    
    

    

    

    

    

    

    

    

    

    

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

    .quick-card,
    .quick-main {
        min-height: 78px;
        padding: 14px 16px;
        border-left: 0;
        border-right: 0;
        border-top: 1px solid rgba(0,0,0,.18);
    }

    .quick-card:first-child {
        border-top: 0;
    }

    .quick-card:nth-child(n/**/+3) {
        border-top: 1px solid rgba(0,0,0,.18);
    }

    .quick-icon,
    .quick-main .quick-icon {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
    }

    .quick-card small {
        font-size: 11px;
    }

    .quick-card strong {
        font-size: 15px;
        line-height: 1.25;
    }

    .quick-arrow {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .label {
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .section-title,
    .precision-heading .section-title {
        max-width: 100%;
        font-size: clamp(36px, 10.6vw, 46px);
        line-height: .98;
        letter-spacing: -2.5px;
        overflow-wrap: normal;
        word-break: normal;
    }

    .section-description {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.65;
    }

    .precision-services::before {
        top: 62px;
        right: -12px;
        font-size: 88px;
        letter-spacing: -5px;
    }

    .precision-service-list .service-card {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
        padding: 22px 0;
    }

    .precision-service-list .service-card h3 {
        font-size: 22px;
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    .precision-service-list .service-card p {
        padding-right: 0;
        font-size: 13px;
        line-height: 1.6;
    }

    .precision-service-list .service-card a {
        font-size: 12px;
    }

    .precision-wordmark {
        min-height: 260px;
        padding: 24px 20px;
    }

    .precision-wordmark strong {
        font-size: clamp(45px, 15vw, 64px);
        letter-spacing: -3px;
    }

    .precision-fleet-list .fleet-card {
        min-height: 210px;
        padding: 22px;
    }

    .mobile-bottom-bar {
        left: 8px;
        right: 8px;
        height: 58px;
        border-radius: 14px;
    }

    .mobile-call,
    .mobile-book {
        width: 50%;
    }

    .mobile-bottom-bar span {
        font-size: 15px;
    }

    .mobile-bottom-bar small {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .container {
        width: calc(100% - 22px);
    }

    .precision-phone {
        font-size: 54px;
    }

    .section-title,
    .precision-heading .section-title {
        font-size: 34px;
    }
}


/* =====================================================
   KONTAKTDATEN
===================================================== */

.footer-column a,
.footer-column span {
    overflow-wrap: anywhere;
}


/* Language switch: compact on small screens */
@media (max-width: 560px) {
    .language-switch { padding: 3px; }
    .language-option { min-width: 31px; height: 28px; padding: 0 6px; font-size: 10px; }
}


/* ---------- Taxi roof light responsive ---------- */
@media (max-width: 760px) {
    .taxi-eyecatcher {
        margin-top: 24px;
        gap: 10px;
    }

    .taxi-roof-sign {
        min-width: min(260px, 88%);
        min-height: 76px;
        padding: 17px 24px 15px;
        font-size: clamp(16px, 5.1vw, 21px);
        letter-spacing: 1.8px;
    }
}

@media (max-width: 420px) {
    .taxi-roof-sign {
        min-width: 82%;
        min-height: 70px;
        padding-inline: 18px;
        letter-spacing: 1.45px;
    }

    .taxi-sign-caption {
        font-size: 9px;
        letter-spacing: 1.35px;
    }
}


/* =====================================================
   FOOTER RESPONSIVE
===================================================== */

@media (max-width: 900px) {
    .footer-bottom > div {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =====================================================
   ONLINE-FAHRTANFRAGE
===================================================== */

.booking-system {
    overflow: hidden;
}

.booking-system-note {
    margin: 22px 24px 0;
    padding: 16px 18px;
    border: 1px solid rgba(255, 212, 0, .24);
    border-radius: 14px;
    background: rgba(255, 212, 0, .07);
    color: rgba(255,255,255,.82);
    line-height: 1.6;
}

.booking-system-note strong {
    color: var(--yellow);
}

.tb-booking-form {
    padding: 24px;
}

.tb-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

.tb-form-section {
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}

.tb-form-section:first-of-type {
    padding-top: 4px;
}

.tb-form-section-head {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 20px;
}

.tb-form-section-head > span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--yellow);
    color: var(--black);
    font-weight: 900;
    font-size: 13px;
}

.tb-form-section-head h3 {
    margin: 0 0 4px;
    color: var(--white);
    font-size: clamp(20px, 2vw, 26px);
}

.tb-form-section-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.tb-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.tb-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    color: var(--white);
}

.tb-field > span,
.tb-options-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    color: rgba(255,255,255,.78);
}

.tb-field-wide {
    grid-column: 1 / -1;
}

.tb-field input,
.tb-field select,
.tb-field textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    background: #101010;
    color: var(--white);
    min-height: 50px;
    padding: 12px 14px;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.tb-field textarea {
    min-height: 112px;
    resize: vertical;
}

.tb-field input::placeholder,
.tb-field textarea::placeholder {
    color: #717171;
}

.tb-field input:focus,
.tb-field select:focus,
.tb-field textarea:focus {
    outline: none;
    border-color: rgba(255,212,0,.72);
    box-shadow: 0 0 0 3px rgba(255,212,0,.10);
    background: #131313;
}

.tb-inline-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.tb-subpanel {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.025);
}

.tb-subpanel[hidden],
[data-booking-standard][hidden],
[data-series-return-fields][hidden],
[data-health-consent][hidden] {
    display: none !important;
}

.tb-subpanel h4 {
    margin: 0 0 16px;
    color: var(--yellow);
    font-size: 17px;
}


.tb-series-count {
    display: block;
    margin-top: 8px;
    color: var(--yellow);
    font-weight: 800;
}



.tb-options-label {
    display: block;
    margin: 20px 0 10px;
}

.tb-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 10px;
}

.tb-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 13px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    background: rgba(255,255,255,.025);
    color: rgba(255,255,255,.80);
    line-height: 1.45;
    cursor: pointer;
}

.tb-check input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex: 0 0 auto;
    accent-color: var(--yellow);
}

.tb-check:has(input:checked) {
    border-color: rgba(255,212,0,.42);
    background: rgba(255,212,0,.06);
}

.tb-notes {
    margin-top: 16px;
}

.tb-consent-section {
    display: grid;
    gap: 10px;
}

.tb-check-important {
    background: rgba(255,255,255,.02);
}

.tb-check a {
    color: var(--yellow);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tb-booking-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
}

.tb-booking-submit > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tb-booking-submit strong {
    color: var(--white);
}

.tb-booking-submit span {
    color: var(--muted);
    font-size: 14px;
}

.tb-booking-submit .button:disabled {
    opacity: .55;
    cursor: wait;
}

.booking-feedback {
    margin: 0 24px 24px;
    padding: 18px;
    border-radius: 16px;
}

.booking-feedback[hidden] {
    display: none !important;
}

.booking-feedback.is-error {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255,91,91,.35);
    background: rgba(255,91,91,.08);
    color: #ffd6d6;
}

.booking-feedback.is-success {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    border: 1px solid rgba(112,232,152,.30);
    background: rgba(112,232,152,.07);
    color: rgba(255,255,255,.86);
}

.booking-feedback strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
    font-size: 19px;
}

.booking-feedback p {
    margin: 0;
    line-height: 1.55;
}

.booking-success-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    font-size: 24px;
    font-weight: 900;
}

.booking-success-reference {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    color: var(--muted);
}

.booking-success-reference b {
    color: var(--yellow);
    letter-spacing: .04em;
}

.booking-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}


@media (max-width: 800px) {
    .tb-form-grid,
    .tb-option-grid {
        grid-template-columns: 1fr;
    }

    .tb-field-wide {
        grid-column: auto;
    }

    .tb-booking-form {
        padding: 18px;
    }

    .booking-system-note,
    .booking-feedback {
        margin-left: 18px;
        margin-right: 18px;
    }

    .tb-booking-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .tb-booking-submit .button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .tb-form-section-head {
        grid-template-columns: 38px 1fr;
        gap: 10px;
    }

    .tb-form-section-head > span {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .tb-inline-fields {
        grid-template-columns: 1fr;
    }

    

    .booking-feedback.is-success {
        grid-template-columns: 1fr;
    }

    .booking-success-icon {
        margin-bottom: 2px;
    }
}

/* =====================================================
   ONLINE-FAHRTANFRAGE – DARK INTEGRATION
   Passt das Bestellformular optisch an den schwarzen
   Taxi-Beck-Seitenhintergrund an.
===================================================== */

.booking-box.booking-system {
    background:
        radial-gradient(circle at 90% 0%, rgba(255, 212, 0, .055), transparent 30%),
        linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .46);
}

.booking-system .booking-topbar {
    background: rgba(255, 255, 255, .025);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .60);
}

.booking-system .booking-status {
    color: rgba(255, 255, 255, .82);
    font-weight: 700;
}

.booking-system-note {
    background: linear-gradient(135deg, rgba(255, 212, 0, .075), rgba(255, 212, 0, .025));
    border-color: rgba(255, 212, 0, .25);
}

.tb-form-section {
    position: relative;
    border-bottom-color: rgba(255, 255, 255, .075);
}

.tb-form-section-head > span {
    box-shadow: 0 8px 28px rgba(255, 212, 0, .12);
}

.tb-field input,
.tb-field select,
.tb-field textarea {
    background: #0b0b0b;
    border-color: rgba(255, 255, 255, .12);
    color: #fff;
    color-scheme: dark;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .018);
}

.tb-field select option {
    background: #111;
    color: #fff;
}

.tb-field input:hover,
.tb-field select:hover,
.tb-field textarea:hover {
    border-color: rgba(255, 255, 255, .22);
}

.tb-field input:focus,
.tb-field select:focus,
.tb-field textarea:focus {
    background: #101010;
    border-color: rgba(255, 212, 0, .72);
    box-shadow: 0 0 0 3px rgba(255, 212, 0, .09);
}

.tb-subpanel {
    background: rgba(255, 255, 255, .018);
    border-color: rgba(255, 255, 255, .09);
}

.tb-check {
    background: #0b0b0b;
    border-color: rgba(255, 255, 255, .10);
}

.tb-check:hover {
    border-color: rgba(255, 255, 255, .20);
    background: #0e0e0e;
}

.tb-check:has(input:checked) {
    background: rgba(255, 212, 0, .065);
    border-color: rgba(255, 212, 0, .38);
}



.tb-booking-submit {
    margin-top: 2px;
}

.booking-system .booking-bottom {
    background: rgba(255, 255, 255, .022);
    color: rgba(255, 255, 255, .55);
    border-top: 1px solid rgba(255, 255, 255, .075);
}

.booking-system .booking-bottom a {
    color: rgba(255, 255, 255, .72);
}

.booking-system .booking-bottom a:hover {
    color: var(--yellow);
}

@media (max-width: 700px) {
    .booking-box.booking-system {
        box-shadow: 0 18px 55px rgba(0, 0, 0, .38);
    }

    .booking-system .booking-topbar {
        height: auto;
        min-height: 58px;
        gap: 12px;
        flex-wrap: wrap;
        padding: 14px 16px;
    }
}


/* =====================================================
   BOOKING SYSTEM V3 – MODE CARDS, SERIES TIMES, SUMMARY
===================================================== */
.tb-booking-modes{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;padding:22px 26px 8px}.tb-mode-card{appearance:none;border:1px solid #343434;background:linear-gradient(145deg,#171717,#101010);color:#fff;border-radius:14px;padding:17px 18px;text-align:left;cursor:pointer;display:grid;grid-template-columns:auto 1fr;column-gap:10px;row-gap:2px;transition:.2s}.tb-mode-card:hover{border-color:#595959;transform:translateY(-1px)}.tb-mode-card.is-active{border-color:#ffd400;box-shadow:0 0 0 1px #ffd40022,0 12px 35px #0004}.tb-mode-icon{grid-row:1/3;width:34px;height:34px;border-radius:9px;display:grid;place-items:center;background:#242424;color:#ffd400;font-weight:900}.tb-mode-card.is-active .tb-mode-icon{background:#ffd400;color:#000}.tb-mode-card strong{font-size:16px}.tb-mode-card small{color:#aaa;line-height:1.35}.tb-subpanel-intro{color:#aaa;margin:-4px 0 17px}.tb-series-count{display:block;margin:12px 0;color:#ffd400;font-weight:800}.tb-small-button{padding:9px 12px!important;min-height:auto!important}.tb-ex-remove{border:1px solid #573030;background:#2a1616;color:#ff9898;border-radius:8px;padding:10px;cursor:pointer}.tb-booking-summary{margin:20px 26px 26px;border:1px solid #4b4300;background:linear-gradient(145deg,#191800,#101000);border-radius:16px;padding:22px}.tb-booking-summary[hidden]{display:none}.tb-summary-head>div{display:flex;gap:12px;align-items:center}.tb-summary-head span{display:grid;place-items:center;width:38px;height:38px;border-radius:10px;background:#ffd400;color:#000;font-weight:900}.tb-summary-head h3{margin:0;font-size:22px}.tb-summary-head p{margin:2px 0 0;color:#aaa}.tb-summary-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:18px 0}.tb-summary-grid>div{border:1px solid #34320e;background:#111;border-radius:10px;padding:12px}.tb-summary-grid small{display:block;color:#999;margin-bottom:5px}.tb-summary-wide{grid-column:1/-1}.tb-summary-wide p{margin:0}.tb-summary-series ul{display:flex;flex-wrap:wrap;gap:7px;list-style:none;padding:0;margin:8px 0}.tb-summary-series li{background:#222;border:1px solid #383838;border-radius:999px;padding:6px 9px;font-size:12px}.tb-summary-actions{display:flex;justify-content:flex-end;gap:9px;flex-wrap:wrap}.tb-duplicate-warning{display:flex;flex-direction:column;gap:4px;margin:16px 0 0;border:1px solid #754a18;background:#2a1b0d;color:#ffd59a;border-radius:10px;padding:12px}.tb-duplicate-warning strong{color:#ffbd59}
@media(max-width:920px){.tb-booking-modes{grid-template-columns:1fr}}
@media(max-width:560px){.tb-booking-modes{padding:16px 14px 4px}.tb-summary-grid{grid-template-columns:1fr}.tb-summary-wide{grid-column:auto}.tb-booking-summary{margin:16px 14px 20px;padding:17px}.tb-summary-actions>*{width:100%}}


/* Mehrere einzelne Fahrttermine */
.tb-appointment-list { display: grid; gap: 14px; margin-top: 18px; }
.tb-appointment-row { display:grid; grid-template-columns: 150px minmax(140px,1fr) minmax(120px,.8fr) minmax(150px,1fr) minmax(130px,.8fr) auto; gap:12px; align-items:end; padding:16px; border:1px solid rgba(255,255,255,.12); border-radius:16px; background:rgba(255,255,255,.035); }
.tb-appointment-row label { display:grid; gap:7px; min-width:0; }
.tb-appointment-row label > span { font-size:.78rem; color:rgba(255,255,255,.68); font-weight:700; }
.tb-appointment-row input,.tb-appointment-row select { width:100%; min-height:46px; border:1px solid rgba(255,255,255,.16); border-radius:10px; background:#111; color:#fff; padding:0 12px; }
.tb-appointment-row input:focus,.tb-appointment-row select:focus { outline:2px solid rgba(255,212,0,.32); border-color:#ffd400; }
.tb-appointment-number { align-self:center; display:flex; align-items:center; gap:10px; }
.tb-appointment-number span { width:38px; height:38px; display:grid; place-items:center; border-radius:10px; background:#ffd400; color:#000; font-weight:900; }
.tb-appointment-number strong { font-size:.9rem; }
.tb-appointment-actions { margin-top:14px; display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
@media (max-width: 1100px) { .tb-appointment-row { grid-template-columns: 120px 1fr 1fr; } .tb-appointment-row .tb-ex-remove { justify-self:start; } }
@media (max-width: 700px) { .tb-appointment-row { grid-template-columns:1fr; align-items:stretch; } .tb-appointment-number { margin-bottom:2px; } .tb-appointment-row .tb-ex-remove { width:100%; } }

/* =====================================================
   MEHRERE FAHRTEN – MOBILE/PREMIUM POLISH v5
===================================================== */
.tb-series-planner {
    border: 1px solid rgba(255, 212, 0, .14);
    background:
        radial-gradient(circle at 100% 0%, rgba(255,212,0,.055), transparent 32%),
        linear-gradient(180deg, rgba(20,20,20,.98), rgba(12,12,12,.98));
    border-radius: 20px;
    padding: clamp(18px, 3vw, 28px);
    overflow: hidden;
}

.tb-series-planner > h4 {
    margin: 0 0 8px;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    color: #ffd400;
    letter-spacing: -.02em;
}

.tb-series-planner .tb-subpanel-intro {
    max-width: 720px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.64);
    line-height: 1.65;
}

.tb-appointment-list {
    display: grid;
    gap: 16px;
    margin-top: 0;
}

.tb-appointment-row {
    display: block;
    padding: 0;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(24,24,24,.96), rgba(13,13,13,.98));
    box-shadow: 0 14px 38px rgba(0,0,0,.18);
    overflow: hidden;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.tb-appointment-row:focus-within {
    border-color: rgba(255,212,0,.5);
    box-shadow: 0 16px 42px rgba(0,0,0,.28), 0 0 0 1px rgba(255,212,0,.08);
}

.tb-appointment-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 16px;
    border-bottom: 1px solid rgba(255,255,255,.075);
    background: rgba(255,255,255,.025);
}

.tb-appointment-number {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.tb-appointment-number > span {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #ffd400;
    color: #070707;
    font-weight: 950;
    font-size: .9rem;
    box-shadow: 0 8px 22px rgba(255,212,0,.12);
}

.tb-appointment-number > div {
    min-width: 0;
}

.tb-appointment-number strong,
.tb-appointment-number small {
    display: block;
}

.tb-appointment-number strong {
    color: #fff;
    font-size: .98rem;
    line-height: 1.2;
}

.tb-appointment-number small {
    margin-top: 3px;
    color: rgba(255,255,255,.46);
    font-size: .76rem;
    line-height: 1.35;
}

.tb-appointment-fields {
    display: grid;
    grid-template-columns: minmax(155px, .9fr) minmax(140px, .8fr) minmax(190px, 1.15fr) minmax(140px, .8fr);
    gap: 14px;
    padding: 16px;
    align-items: end;
}

.tb-appointment-field {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.tb-appointment-field > span {
    color: rgba(255,255,255,.66);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .015em;
}

.tb-appointment-field input,
.tb-appointment-field select {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.14) !important;
    border-radius: 11px !important;
    background: #0d0d0d !important;
    color: #fff !important;
    font: inherit;
    font-weight: 650;
    color-scheme: dark;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.tb-appointment-field input:hover,
.tb-appointment-field select:hover {
    border-color: rgba(255,255,255,.26) !important;
    background: #101010 !important;
}

.tb-appointment-field input:focus,
.tb-appointment-field select:focus {
    outline: none !important;
    border-color: #ffd400 !important;
    box-shadow: 0 0 0 3px rgba(255,212,0,.12) !important;
}

.tb-appointment-field input::-webkit-calendar-picker-indicator {
    opacity: .8;
    cursor: pointer;
}

.tb-ex-remove {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid rgba(255,107,107,.25);
    border-radius: 10px;
    background: rgba(119,32,32,.16);
    color: #ff9b9b;
    font: inherit;
    font-size: .78rem;
    font-weight: 850;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.tb-ex-remove span {
    font-size: 1.1rem;
    line-height: 1;
}

.tb-ex-remove:hover {
    background: rgba(140,35,35,.28);
    border-color: rgba(255,107,107,.48);
    color: #fff;
}

.tb-appointment-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 17px;
    padding-top: 17px;
    border-top: 1px solid rgba(255,255,255,.075);
}

.tb-appointment-actions .tb-small-button {
    min-height: 44px !important;
    padding: 10px 15px !important;
    border-color: rgba(255,212,0,.36) !important;
    background: rgba(255,212,0,.055) !important;
    color: #fff !important;
}

.tb-appointment-actions .tb-small-button:hover {
    background: #ffd400 !important;
    border-color: #ffd400 !important;
    color: #000 !important;
}

.tb-series-count {
    margin: 0;
    color: rgba(255,255,255,.52);
    font-size: .82rem;
    font-weight: 750;
    text-align: right;
}

@media (max-width: 980px) {
    .tb-appointment-fields {
        grid-template-columns: 1fr 1fr;
    }
    .tb-appointment-return,
    .tb-appointment-return-time {
        grid-column: auto;
    }
}

@media (max-width: 620px) {
    .tb-series-planner {
        margin-left: -2px;
        margin-right: -2px;
        padding: 17px 14px;
        border-radius: 17px;
    }

    .tb-series-planner .tb-subpanel-intro {
        margin-bottom: 17px;
        font-size: .92rem;
    }

    .tb-appointment-list {
        gap: 13px;
    }

    .tb-appointment-head {
        padding: 13px;
        align-items: flex-start;
    }

    .tb-appointment-number {
        gap: 10px;
    }

    .tb-appointment-number > span {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .tb-appointment-number small {
        display: none;
    }

    .tb-ex-remove {
        min-height: 36px;
        padding: 7px 9px;
    }

    .tb-ex-remove > span {
        display: inline;
    }

    .tb-appointment-fields {
        grid-template-columns: 1fr 1fr;
        gap: 11px;
        padding: 13px;
    }

    .tb-appointment-return,
    .tb-appointment-return-time {
        grid-column: 1 / -1;
    }

    .tb-appointment-field input,
    .tb-appointment-field select {
        min-height: 50px;
        padding: 0 11px;
        font-size: 16px;
    }

    .tb-appointment-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tb-appointment-actions .tb-small-button {
        width: 100%;
        min-height: 48px !important;
    }

    .tb-series-count {
        text-align: center;
    }
}

@media (max-width: 390px) {
    .tb-appointment-fields {
        grid-template-columns: 1fr;
    }
    .tb-appointment-return,
    .tb-appointment-return-time {
        grid-column: auto;
    }
}

/* PWA install strip */


.tb-service-section{position:relative}.tb-service-cards{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:18px}.tb-service-card{min-height:118px;padding:18px 16px;border:1px solid rgba(255,255,255,.12);border-radius:16px;background:linear-gradient(180deg,#111,#0b0b0b);color:#fff;text-align:left;cursor:pointer;display:flex;flex-direction:column;gap:6px;transition:.2s ease}.tb-service-card:hover{border-color:rgba(255,212,0,.42);transform:translateY(-1px)}.tb-service-card.is-active{border-color:#ffd400;background:linear-gradient(180deg,rgba(255,212,0,.13),#0b0b0b);box-shadow:0 0 0 1px rgba(255,212,0,.15),0 12px 30px rgba(0,0,0,.22)}.tb-service-icon{font-size:1.55rem;line-height:1}.tb-service-card strong{font-size:.98rem}.tb-service-card small{color:rgba(255,255,255,.56);line-height:1.35}.tb-service-card.is-active small{color:rgba(255,255,255,.72)}.tb-medical-types{margin-top:16px;padding:16px;border:1px solid rgba(255,212,0,.18);border-radius:16px;background:rgba(255,212,0,.035)}.tb-medical-select-field{max-width:520px;margin:0}.tb-medical-select-field span{font-weight:850}.tb-medical-select-field select{min-height:52px;background:#0b0b0b;border-color:rgba(255,212,0,.35);font-weight:800}.tb-medical-select-field select:focus{border-color:#ffd400;box-shadow:0 0 0 3px rgba(255,212,0,.12)}.tb-options-label{margin-bottom:11px;font-size:.86rem;font-weight:850;color:#fff}.booking-system-note.is-taxi-note{border-color:rgba(255,212,0,.24);background:rgba(255,212,0,.05)}.tb-asap-panel{display:flex!important;gap:15px;align-items:flex-start;border-color:rgba(255,212,0,.3)!important;background:linear-gradient(135deg,rgba(255,212,0,.08),rgba(255,212,0,.025))!important}.tb-asap-panel[hidden]{display:none!important}.tb-asap-mark{flex:0 0 46px;width:46px;height:46px;border-radius:14px;display:grid;place-items:center;background:#ffd400;color:#000;font-size:1.35rem;box-shadow:0 8px 22px rgba(255,212,0,.12)}.tb-asap-panel h4{margin:0 0 5px}.tb-asap-panel p{margin:0;color:rgba(255,255,255,.67);line-height:1.55}
@media(max-width:900px){.tb-service-cards{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.tb-service-cards{grid-template-columns:1fr;gap:9px}.tb-service-card{min-height:auto;padding:15px}.tb-asap-panel{padding:15px!important}.tb-asap-mark{width:40px;height:40px;flex-basis:40px}}



.tb-service-cards.tb-two-choice{grid-template-columns:repeat(2,minmax(0,1fr));max-width:900px}
.tb-service-cards.tb-two-choice .tb-service-card{min-height:150px;padding:24px}
.tb-service-cards.tb-two-choice .tb-service-card strong{font-size:1.2rem}
@media (max-width:680px){.tb-service-cards.tb-two-choice{grid-template-columns:1fr}.tb-service-cards.tb-two-choice .tb-service-card{min-height:auto}}

/* =====================================================
   BUCHUNGSASSISTENT / GESPEICHERTE STATUS-LINKS
===================================================== */
.tb-form-section[hidden],
.tb-booking-submit[hidden],
.tb-wizard-nav [hidden],
.tb-saved-bookings[hidden] {
    display: none !important;
}

.tb-wizard-progress {
    margin: 2px 0 18px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    background: rgba(255,255,255,.025);
}

.tb-wizard-progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 15px;
}

.tb-wizard-progress-top strong {
    color: var(--yellow);
    font-size: 13px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.tb-wizard-progress-top span {
    color: rgba(255,255,255,.72);
    font-weight: 800;
}

.tb-wizard-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: 8px;
}

.tb-wizard-dot {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: rgba(255,255,255,.62);
}

.tb-wizard-dot:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 30px;
    right: -4px;
    top: 14px;
    height: 2px;
    background: rgba(255,255,255,.16);
    z-index: 0;
}

.tb-wizard-dot b {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1b1b1b;
    border: 1px solid rgba(255,255,255,.20);
    color: rgba(255,255,255,.76);
    font-size: 12px;
}

.tb-wizard-dot small {
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 750;
}

.tb-wizard-dot.is-active,
.tb-wizard-dot.is-done {
    color: rgba(255,255,255,.88);
}

.tb-wizard-dot.is-active b,
.tb-wizard-dot.is-done b {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #000;
}

.tb-wizard-dot.is-done:not(:last-child)::after {
    background: rgba(255,212,0,.48);
}

.tb-form-section.is-wizard-active {
    min-height: 270px;
    padding-top: 18px;
    animation: tbWizardIn .24s ease both;
}

@keyframes tbWizardIn {
    from { opacity: 0; transform: translateY(7px); }
    to { opacity: 1; transform: translateY(0); }
}

.tb-wizard-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 0 0;
}

.tb-wizard-nav .button {
    min-width: 145px;
    justify-content: center;
}

.tb-saved-bookings {
    margin: 14px 24px 0;
    padding: 12px 14px;
    border: 1px solid rgba(255,212,0,.25);
    border-radius: 15px;
    background: linear-gradient(135deg,rgba(255,212,0,.075),rgba(255,255,255,.018));
}

.tb-saved-bookings-head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
}

.tb-saved-bookings-icon {
    display: grid;
    place-items: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 14px;
    background: var(--yellow);
    color: #000;
}

.tb-saved-bookings-head strong,
.tb-saved-bookings-head small {
    display: block;
}

.tb-saved-bookings-head strong {
    color: #fff;
    margin-bottom: 1px;
    font-size: 14px;
}

.tb-saved-bookings-head small {
    color: rgba(255,255,255,.64);
    line-height: 1.35;
    font-size: 11px;
}

.tb-saved-bookings-list {
    display: grid;
    gap: 6px;
}

.tb-saved-booking-row {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 8px;
    align-items: stretch;
}

.tb-saved-booking-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 11px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
    color: #fff;
    text-decoration: none;
    transition: .18s ease;
}

.tb-saved-booking-link:hover {
    border-color: rgba(255,212,0,.34);
    background: rgba(255,212,0,.045);
}

.tb-saved-booking-link span small,
.tb-saved-booking-link span strong {
    display: block;
}

.tb-saved-booking-link span small {
    color: rgba(255,255,255,.48);
    font-size: 11px;
    margin-bottom: 2px;
}

.tb-saved-booking-link span strong {
    color: var(--yellow);
    letter-spacing: .03em;
}

.tb-saved-booking-link > b {
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
}

.tb-saved-booking-remove {
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 11px;
    padding: 0 10px;
    background: rgba(0,0,0,.22);
    color: rgba(255,255,255,.72);
    font: inherit;
    font-size: 12px;
    cursor: pointer;
}
.tb-saved-booking-remove:hover,
.tb-saved-booking-remove:focus-visible {
    border-color: rgba(255,212,0,.38);
    color: #fff;
}

@media (max-width: 760px) {
    .tb-wizard-track {
        grid-template-columns: repeat(5, 30px);
        justify-content: space-between;
    }
    .tb-wizard-dot small { display: none; }
    .tb-wizard-dot:not(:last-child)::after { right: -22px; }
}

@media (max-width: 560px) {
    .tb-wizard-progress { padding: 15px 13px; }
    .tb-wizard-progress-top { align-items: flex-start; flex-direction: column; gap: 3px; }
    .tb-wizard-nav { align-items: stretch; flex-direction: column-reverse; }
    .tb-wizard-nav .button { width: 100%; }
    .tb-saved-bookings { margin: 12px 14px 0; padding: 11px; }
    .tb-saved-booking-row { grid-template-columns: 1fr; }
    .tb-saved-booking-link { align-items: flex-start; flex-direction: column; gap: 7px; }
}
.booking-success-saved {
    display: block;
    margin-top: 13px;
    color: rgba(255,255,255,.58);
    line-height: 1.5;
}


/* =====================================================
   ONLINE PROCESSING HOURS NOTICE
===================================================== */
.tb-processing-hours{margin:18px 0 0;display:flex;gap:14px;align-items:flex-start;padding:16px 18px;border:1px solid rgba(255,212,0,.28);border-radius:16px;background:linear-gradient(135deg,rgba(255,212,0,.09),rgba(255,212,0,.025));box-shadow:0 10px 28px rgba(0,0,0,.12)}
.tb-processing-hours-icon{flex:0 0 42px;width:42px;height:42px;display:grid;place-items:center;border-radius:12px;background:#ffd400;color:#000;font-size:1.2rem}
.tb-processing-hours strong{display:block;margin-bottom:4px;color:#fff;font-size:.95rem}
.tb-processing-hours p{margin:0;color:rgba(255,255,255,.7);line-height:1.55;font-size:.9rem}
.tb-processing-hours a{color:#ffd400;font-weight:850;text-decoration:none}
@media(max-width:560px){.tb-processing-hours{padding:14px;gap:11px}.tb-processing-hours-icon{flex-basis:38px;width:38px;height:38px}}

.tb-summary-text{display:block;color:#e7e7e7;white-space:pre-wrap;line-height:1.55}.tb-summary-privacy{background:linear-gradient(145deg,#111b12,#101010)!important;border-color:#29442d!important}.tb-summary-privacy strong{color:#b7e8c0}.tb-success-flow{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:17px 0}.tb-success-flow>div{position:relative;display:flex;align-items:center;gap:8px;border:1px solid #343434;background:#141414;border-radius:10px;padding:10px}.tb-success-flow b{display:grid;place-items:center;width:26px;height:26px;flex:0 0 26px;border-radius:999px;background:#272727;color:#aaa}.tb-success-flow span{font-size:12px;color:#aaa;font-weight:750}.tb-success-flow .is-done{border-color:#4c6726;background:#182013}.tb-success-flow .is-done b{background:#ffd400;color:#000}.tb-success-flow .is-done span{color:#f1f1f1}.tb-success-processing{display:flex;flex-direction:column;gap:3px;margin:13px 0 16px;padding:11px 13px;border:1px solid rgba(255,212,0,.22);border-radius:10px;background:rgba(255,212,0,.055)}.tb-success-processing strong{font-size:12px!important;color:#ffd400!important}.tb-success-processing span{font-size:12px;color:#aaa;line-height:1.45}.tb-booking-disabled{margin:20px 0 0;display:flex;gap:14px;align-items:flex-start;padding:19px 20px;border:1px solid #6f3434;border-radius:16px;background:linear-gradient(135deg,#2b1515,#151010);color:#fff}.tb-booking-disabled>span{display:grid;place-items:center;flex:0 0 42px;width:42px;height:42px;border-radius:12px;background:#ffd400;color:#000;font-size:20px}.tb-booking-disabled strong{display:block;font-size:17px;margin-bottom:5px}.tb-booking-disabled p{margin:0;color:#c9bdbd;line-height:1.55}.tb-booking-disabled a{color:#ffd400;font-weight:850;text-decoration:none}@media(max-width:560px){.tb-success-flow{grid-template-columns:1fr}.tb-booking-disabled{padding:15px;gap:11px}}

/* v2.2.6 – summary editing and validation guidance */
.tb-summary-editable{position:relative;cursor:pointer;transition:border-color .18s ease,background .18s ease,transform .18s ease;padding-right:66px!important}.tb-summary-editable:hover,.tb-summary-editable:focus-visible{border-color:#716400!important;background:#17160d!important;outline:none;transform:translateY(-1px)}.tb-summary-editable em{position:absolute;top:10px;right:11px;font-style:normal;font-size:11px;font-weight:800;color:#ffd400;opacity:.8}.tb-summary-customer{display:flex;flex-direction:column;gap:7px}.tb-summary-value-edit{display:grid;grid-template-columns:72px 1fr;align-items:center;gap:8px;width:100%;border:1px solid #2f2f2f;background:#171717;color:#fff;border-radius:8px;padding:8px 10px;text-align:left;cursor:pointer;font:inherit}.tb-summary-value-edit:hover,.tb-summary-value-edit:focus-visible{border-color:#716400;background:#1c1b10;outline:none}.tb-summary-value-edit span{font-size:11px;color:#999}.tb-summary-value-edit strong{font-size:13px;overflow-wrap:anywhere}.tb-error-fix{align-self:flex-start;margin-top:8px;border:1px solid rgba(255,212,0,.45);background:rgba(255,212,0,.1);color:#ffd400;border-radius:8px;padding:8px 11px;font:inherit;font-weight:800;cursor:pointer}.tb-error-fix:hover,.tb-error-fix:focus-visible{background:#ffd400;color:#000;outline:none}.tb-field-attention{outline:3px solid rgba(255,212,0,.42)!important;outline-offset:2px;box-shadow:0 0 0 6px rgba(255,212,0,.08)!important}@media(max-width:560px){.tb-summary-editable{padding-right:12px!important;padding-top:32px!important}.tb-summary-editable em{left:12px;right:auto;top:9px}.tb-summary-value-edit{grid-template-columns:60px 1fr}}
