.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
}

.hero-copy {
    padding-top: 64px;
}

.hero-vito-animation {
    position: absolute;
    left: 0;
    top: 18px;
    width: 100%;
    height: 92px;
    pointer-events: none;
    z-index: 4;
    overflow: visible;
}

.hero-vito-car {
    position: absolute;
    left: 0;
    top: 50%;
    width: clamp(150px, 16vw, 230px);
    min-width: 0;
    opacity: 0;
    animation: dluxVitoDrive 6.5s ease-in-out 1 forwards;
}

.hero-vito-car::before {
    content: "";
    position: absolute;
    left: 1.5%;
    top: 66%;
    width: 24%;
    height: 18%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 25% 54%, rgba(255,255,255,.84) 0 15%, rgba(255,255,255,.52) 16% 35%, rgba(255,255,255,0) 70%),
        radial-gradient(circle at 58% 44%, rgba(255,255,255,.70) 0 13%, rgba(255,255,255,.40) 14% 34%, rgba(255,255,255,0) 68%),
        radial-gradient(circle at 82% 58%, rgba(255,255,255,.58) 0 11%, rgba(255,255,255,.31) 12% 30%, rgba(255,255,255,0) 65%);
    filter: blur(3px);
    transform: translateX(-82%) scale(.9);
    opacity: 0;
    z-index: 3;
    animation: dluxExhaustSmoke 1.25s ease-out 7 .35s;
}

.hero-vito-car img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    filter: none;
    z-index: 1;
}

.hero-vito-wheel {
    position: absolute;
    width: 6.85%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    pointer-events: none;
    background:
        radial-gradient(circle at center, #fff 0 17%, #171717 18% 31%, #f7f7f7 32% 42%, #111 43% 68%, transparent 69% 100%),
        conic-gradient(from 0deg, #fff 0 12deg, transparent 12deg 45deg, #fff 45deg 57deg, transparent 57deg 90deg, #fff 90deg 102deg, transparent 102deg 135deg, #fff 135deg 147deg, transparent 147deg 180deg, #fff 180deg 192deg, transparent 192deg 225deg, #fff 225deg 237deg, transparent 237deg 270deg, #fff 270deg 282deg, transparent 282deg 315deg, #fff 315deg 327deg, transparent 327deg 360deg);
    border: 2px solid #050505;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.7), 0 0 2px rgba(0,0,0,.8);
    animation: dluxWheelSpin .42s linear 16;
    z-index: 2;
}

.hero-vito-wheel--rear {
    left: 31.85%;
    top: 69.65%;
}

.hero-vito-wheel--front {
    left: 81.38%;
    top: 69.45%;
}

@keyframes dluxWheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes dluxExhaustSmoke {
    0% { transform: translateX(-28%) scale(.45); opacity: 0; }
    30% { opacity: .78; }
    100% { transform: translateX(-118%) translateY(-10%) scale(1.18); opacity: 0; }
}

@keyframes dluxVitoDrive {
    0% { transform: translate(-140%, -50%); opacity: 0; }
    12%, 82% { opacity: .88; }
    100% { transform: translate(calc(100vw + 140%), -50%); opacity: 0; }
}

.search-box-title {
    display: none !important;
}

.search-box.airport-theme-shell {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
    overflow: hidden;
    transition: background .2s ease, box-shadow .2s ease;
}

.airport-tabs-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.airport-tab {
    position: relative;
    min-height: 96px;
    border: 0;
    border-radius: 12px;
    padding: 16px;
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    text-align: left;
    opacity: 1;
    overflow: visible;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .30);
    transition: transform .18s ease, box-shadow .18s ease;
}

.airport-tab:hover,
.airport-tab.active {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(0, 0, 0, .36);
}

.airport-tab.active {
    outline: 3px solid #fff;
    outline-offset: -3px;
}

.airport-tab::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 18px solid currentColor;
    filter: drop-shadow(0 6px 7px rgba(0, 0, 0, .24));
    opacity: .9;
}

.airport-tab-dlm { color: #00a19c; background: #00a19c; }
.airport-tab-ayt { color: #e88900; background: #e88900; }
.airport-tab-bjv { color: #8b2bb7; background: #8b2bb7; }

.airport-tab-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.airport-tab-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .25));
}

.airport-tab-title {
    color: #fff;
    line-height: 1.3;
}

.airport-tab-code {
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

.quote-title-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 78px;
    margin: 0 0 24px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, .96);
    border-left: 7px solid #00a19c;
    border-radius: 6px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
    color: #111;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.2;
}

.quote-title-bar i {
    color: #111;
    font-size: 1.16rem;
    transform: rotate(-8deg);
}

.airport-theme-dlm { background: linear-gradient(135deg, rgba(0, 161, 156, .94), rgba(0, 89, 104, .88)) !important; }
.airport-theme-ayt { background: linear-gradient(135deg, rgba(232, 137, 0, .94), rgba(168, 86, 0, .88)) !important; }
.airport-theme-bjv { background: linear-gradient(135deg, rgba(139, 43, 183, .94), rgba(82, 40, 150, .88)) !important; }

.airport-theme-dlm .quote-title-bar { border-left-color: #00a19c; }
.airport-theme-ayt .quote-title-bar { border-left-color: #e88900; }
.airport-theme-bjv .quote-title-bar { border-left-color: #8b2bb7; }

.airport-theme-shell .form-label {
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .28);
}

.airport-theme-shell .form-select-lg,
.airport-theme-shell .form-control-lg {
    height: 58px;
    border-width: 2px;
    font-size: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
}

.airport-theme-dlm .form-select,
.airport-theme-dlm .form-control { background-color: #d9f5f3; border-color: #00a19c; }
.airport-theme-ayt .form-select,
.airport-theme-ayt .form-control { background-color: #fff1d9; border-color: #e88900; }
.airport-theme-bjv .form-select,
.airport-theme-bjv .form-control { background-color: #f1e3fb; border-color: #8b2bb7; }

.airport-theme-shell .form-select:focus,
.airport-theme-shell .form-control:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .28);
}

.quote-form-panel {
    position: relative;
    z-index: 1;
    padding-top: 22px;
}

.airport-theme-shell .col-md-4 {
    display: flex;
    flex-direction: column;
}

.airport-theme-shell .col-md-4 .form-label {
    min-height: 28px;
    display: flex;
    align-items: flex-end;
    line-height: 1.15;
}

.airport-theme-shell .col-md-4 .form-select-lg {
    margin-top: auto;
}

.airport-theme-shell .btn-hoppa {
    min-height: 58px;
    border-radius: 4px;
    font-size: 1.08rem;
    font-weight: 700;
}

@media (min-width: 992px) {
    .hero-section .search-box {
        max-width: 760px;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .hero-copy {
        padding-top: 72px;
    }

    .hero-vito-animation {
        top: 8px;
        height: 68px;
    }

    .hero-vito-car {
        width: clamp(128px, 38vw, 174px);
    }

    .search-box.airport-theme-shell {
        padding: 20px 15px;
    }

    .quote-title-bar {
        min-height: 62px;
        margin-bottom: 14px;
        padding: 14px 16px;
        gap: 10px;
        font-size: 1.05rem;
        border-left-width: 5px;
    }

    .airport-tabs-wrap {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px !important;
    }

    .airport-tab {
        min-height: 72px;
    }

    .airport-tab::after {
        bottom: -14px;
        border-left-width: 10px;
        border-right-width: 10px;
        border-top-width: 14px;
    }
}
