/* DLUX homepage-only corrections. Loaded last to avoid reservation CSS leaks. */
.hero-section {
    position: relative;
    overflow: hidden;
}

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

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

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

.hero-vito-car::before {
    content: "";
    position: absolute;
    top: 66%;
    left: 2%;
    z-index: 0;
    width: 25%;
    height: 20%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 24% 54%, rgba(255, 255, 255, .86) 0 15%, rgba(220, 226, 230, .54) 16% 36%, transparent 70%),
        radial-gradient(circle at 58% 44%, rgba(245, 247, 249, .74) 0 13%, rgba(205, 213, 218, .42) 14% 34%, transparent 68%),
        radial-gradient(circle at 84% 58%, rgba(235, 239, 242, .62) 0 11%, rgba(190, 199, 205, .32) 12% 30%, transparent 65%);
    filter: blur(3px);
    transform: translateX(-55%) scale(.7);
    opacity: 0;
    animation: dluxExhaustSmoke 1.05s ease-out 7 .3s;
}

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

.hero-vito-wheel {
    position: absolute;
    z-index: 2;
    width: 6.85%;
    aspect-ratio: 1 / 1;
    border: 2px solid #050505;
    border-radius: 50%;
    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);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7), 0 0 2px rgba(0, 0, 0, .8);
    animation: dluxWheelSpin .42s linear 17;
    pointer-events: none;
}

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

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

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

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

@keyframes dluxExhaustSmoke {
    0% {
        transform: translateX(-30%) scale(.42);
        opacity: 0;
    }
    24% {
        opacity: .82;
    }
    100% {
        transform: translateX(-125%) translateY(-12%) scale(1.25);
        opacity: 0;
    }
}

.hero-section .hero-copy h1.hero-main-title {
    max-width: 620px;
    font-size: 1.55rem !important;
    line-height: 1.22;
}

.hero-section .hero-copy h2.hero-service-copy {
    max-width: 620px;
    font-size: 1.12rem !important;
    line-height: 1.45;
}

.home-res-tab-switcher {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.home-res-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    min-height: 46px;
    margin: 0;
    line-height: 1.15;
    text-align: center;
}

body .hero-section + .bg-light .section-title h2,
body .dts-flight-tracker + .bg-light .section-title h2,
body .about-lux-section .section-title h2 {
    color: #1a1a1a !important;
    text-shadow: none !important;
}

body .about-lux-section .about-lux-copy,
body .about-lux-section .about-content,
body .about-lux-section .collapsible-text {
    color: #333 !important;
}

body .about-lux-section .about-content strong {
    color: #333 !important;
}

@media (max-width: 768px) {
    .hero-vito-animation {
        top: 8px;
        height: 68px;
    }

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

    .hero-section .hero-copy h1.hero-main-title {
        font-size: 1.35rem !important;
    }

    .hero-section .hero-copy h2.hero-service-copy {
        font-size: 1rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-vito-car,
    .hero-vito-wheel {
        animation: none;
    }

    .hero-vito-car {
        display: none;
    }
}
