﻿:root {
    --bg: #000;
    --panel: #050505;
    --panel-soft: #0b0b0b;
    --text: #f5f5f5;
    --muted: rgba(255, 255, 255, .58);
    --dim: rgba(255, 255, 255, .38);
    --line: rgba(255, 255, 255, .08);
    --line-strong: rgba(255, 255, 255, .14);
    --green: #25d366;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img,
video {
    display: block;
    max-width: 100%;
}

.luxury-site {
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: 24px 0;
    transition: background .25s ease, border-color .25s ease, padding .25s ease;
}

.site-header.scrolled {
    padding: 16px 0;
    background: rgba(0, 0, 0, .86);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
}

.header-inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 160px 1fr 180px;
    align-items: center;
    gap: 32px;
}

.header-logo-img {
    width: 55px;
    height: auto;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: clamp(28px, 5vw, 74px);
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.nav-links a {
    transition: color .2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.header-btn {
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 0;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
    padding: 12px 18px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: background .2s ease, border-color .2s ease;
}

.header-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
}

.header-social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .24);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.header-social-link:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.header-language-tabs {
    display: flex;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .04);
}

.header-language-link {
    min-width: 34px;
    height: 38px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    transition: background .2s ease, color .2s ease;
}

.header-language-link + .header-language-link {
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.header-language-link:hover,
.header-language-link.active {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
}

.hero-bg,
.hero-video,
.hero-poster,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg {
    z-index: -2;
    background: #050505;
}

.hero-video,
.hero-poster {
    object-fit: cover;
}

.hero-poster {
    z-index: -3;
}

.hero-video {
    z-index: -2;
    opacity: .9;
}

.hero-overlay {
    z-index: -1;
    background:
        radial-gradient(circle at center, rgba(0, 0, 0, .12), rgba(0, 0, 0, .68) 74%),
        linear-gradient(180deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .44) 52%, #000 100%);
}

.hero-content {
    width: min(760px, calc(100% - 44px));
    text-align: center;
    padding-top: 62px;
}

.hero-logo-img {
    width: min(180px, 68vw);
    margin: 0 auto;
}

.hero-tagline {
    margin: 34px 0 0;
    color: #fff;
    font-size: clamp(13px, 1.35vw, 18px);
    font-weight: 300;
    letter-spacing: .46em;
    text-transform: uppercase;
}

.hero-location {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(12px, 1.1vw, 15px);
    letter-spacing: .62em;
    text-transform: uppercase;
}

.hero-buttons {
    margin-top: 44px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.btn-primary,
.btn-secondary {
    min-width: 205px;
    border-radius: 0;
    padding: 17px 24px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-align: center;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.btn-primary {
    border: 1px solid #fff;
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .35);
    background: transparent;
    color: #fff;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.btn-large {
    min-width: 245px;
}

.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .58);
    animation: floatHint 1.9s ease-in-out infinite;
}

@keyframes floatHint {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 9px);
    }
}

section {
    border-bottom: 1px solid var(--line);
}

.section-inner,
.footer-inner {
    width: min(1100px, calc(100% - 44px));
    margin: 0 auto;
}

.trust-section {
    background: #000;
}

.trust-prestige {
    min-height: 92px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .52);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .35em;
    text-align: center;
    text-transform: uppercase;
}

.trusted-by-section,
.services-section,
.fleet-section,
.why-section,
.how-section,
.concierge-section,
.experience-section,
.instagram-section,
.cta-section,
.site-footer {
    padding: 112px 0;
    background: #000;
}

.how-section,
.concierge-section,
.cta-section {
    background: var(--panel);
}

.section-title,
.cta-title {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 300;
    letter-spacing: .18em;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
}

.trusted-by-text,
.why-intro,
.cta-text,
.experience-text {
    max-width: 700px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
    text-align: center;
}

.concierge-text{
    max-width: 750px;
    margin: 5px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
    text-align: center;
}

.trusted-gallery-window {
    margin-top: 64px;
    overflow: hidden;
}

.trusted-gallery {
    display: flex;
    gap: 18px;
    transition: transform .65s ease;
    will-change: transform;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.trusted-gallery.is-dragging {
    cursor: grabbing;
    transition: none;
}

.gallery-nav {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.gallery-nav-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 0;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .78);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.gallery-nav-btn:hover {
    border-color: rgba(255, 255, 255, .46);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.gallery-item {
    flex: 0 0 calc((100% - 36px) / 3);
    aspect-ratio: 1 / 1.08;
    overflow: hidden;
    background: #080808;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9) contrast(1.05);
    transition: transform .35s ease;
    pointer-events: none;
    -webkit-user-drag: none;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-caption {
    margin: 28px 0 0;
    color: var(--dim);
    font-size: 12px;
    text-align: center;
}

.services-list {
    width: 100%;
    max-width: 900px;
    margin: 70px auto 0;
}

.service-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 34px;
    padding: 31px 0;
    border-top: 1px solid var(--line);
}

.service-row:last-child {
    border-bottom: 1px solid var(--line);
}

.services-list .service-row.fade-in.visible {
    transition: opacity .75s ease, transform .75s ease, border-color .25s ease;
}

.services-list .service-row > * {
    transition: transform .25s ease;
}

.services-list .service-row.fade-in.visible:hover {
    border-top-color: var(--line-strong);
}

.services-list .service-row.fade-in.visible:hover > * {
    transform: translateX(12px);
}

.service-number {
    color: rgba(255, 255, 255, .26);
    font-size: 12px;
    letter-spacing: .16em;
}

.service-content h3,
.step-content h3 {
    margin: 0 0 9px;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.service-content p,
.step-content p {
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: 13px;
    line-height: 1.85;
}

.fleet-showcase {
    text-align: center;
}

.fleet-title {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 300;
    letter-spacing: .18em;
    line-height: 1.35;
    text-transform: uppercase;
}

.fleet-model {
    margin: 42px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.fleet-description {
    max-width: 600px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.fleet-body {
    width: min(760px, 100%);
    margin-top: 52px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 3fr);
    align-items: center;
    gap: 46px;
    text-align: left;
}

.fleet-hero {
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    background: #050505;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.fleet-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at center, transparent 38%, rgba(0, 0, 0, .38) 70%, rgba(0, 0, 0, .72) 100%),
        linear-gradient(135deg, rgba(0, 0, 0, .34), transparent 32%, transparent 68%, rgba(0, 0, 0, .34));
}

.fleet-image-track {
    display: flex;
    transition: transform .65s ease;
    will-change: transform;
}

.fleet-image-track.is-dragging {
    transition: none;
}

.fleet-hero.is-dragging {
    cursor: grabbing;
}

.fleet-image-track img {
    flex: 0 0 100%;
    width: 100%;
    /*aspect-ratio: 1.47 / 1;*/
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
}

.fleet-features {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .03em;
    text-align: left;
}

.fleet-features li {
    padding-left: 8px;
}

.fleet-features li::marker {
    font-size: .72em;
}

.why-grid {
    width: min(760px, 100%);
    margin: 58px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 70px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
}

.why-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    flex: 0 0 auto;
}

.how-steps {
    margin-top: 66px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
}

.how-step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 26px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.step-content p {
    max-width: 235px;
    margin: 0 auto;
}

.concierge-section,
.cta-section,
.experience-section,
.instagram-section {
    text-align: center;
}

.concierge-subtitle,
.concierge-note,
.instagram-handle {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .46);
    font-size: 12px;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.concierge-section .btn-primary,
.cta-section .btn-primary {
    margin-top: 38px;
}

.experience-section {
    padding: 72px 0;
}

.experience-text {
    margin-top: 0;
    font-size: 18px;
    color: rgba(255, 255, 255, .68);
}

.instagram-feed {
    min-height: 280px;
    margin-top: 52px;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(255,255,255,.06), transparent),
        #050505;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .36);
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.site-footer {
    padding-bottom: 54px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-img {
    width: 180px;
}

.footer-tagline {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .46);
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.footer-contact {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 42px;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-social-links {
    display: none;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .24);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.footer-social-link:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.footer-seo {
    max-width: 760px;
    margin: 42px auto 0;
    color: rgba(255, 255, 255, .34);
    font-size: 12px;
    line-height: 1.9;
    text-align: center;
}

.footer-bottom {
    margin-top: 42px;
    color: rgba(255, 255, 255, .34);
    font-size: 11px;
    text-align: center;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .58);
    transition: color .2s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 120;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 12px 34px rgba(37, 211, 102, .38);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-pulse {
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(37, 211, 102, .45);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        opacity: .85;
        transform: scale(.88);
    }
    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .75s ease, transform .75s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: 96px 1fr auto;
        gap: 18px;
    }

    .header-right {
        display: flex;
        gap: 8px;
    }

    .nav-links {
        justify-content: center;
        gap: 24px;
    }

    .header-social-link {
        display: none;
    }

    .header-language-link {
        min-width: 30px;
        height: 34px;
    }

    .fleet-title {
        letter-spacing: .16em;
    }

    .fleet-body {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .fleet-features {
        width: min(620px, 100%);
        margin: 0 auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 42px;
    }
}

@media (max-width: 720px) {
    .site-header {
        padding: 18px 0;
    }

    .header-inner {
        width: min(100% - 28px, 620px);
        grid-template-columns: 56px 1fr auto;
        gap: 14px;
    }

    .header-logo-img {
        width: 55px;
    }

    .nav-links {
        gap: 14px;
        font-size: 9px;
        letter-spacing: .14em;
        flex-wrap: wrap;
    }

    .header-right {
        gap: 6px;
    }

    .header-language-link {
        min-width: 27px;
        height: 30px;
        font-size: 9px;
        letter-spacing: .08em;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-tagline,
    .hero-location {
        letter-spacing: .24em;
    }

    .trusted-by-section,
    .services-section,
    .fleet-section,
    .why-section,
    .how-section,
    .concierge-section,
    .instagram-section,
    .cta-section,
    .site-footer {
        padding: 78px 0;
    }

    .section-title,
    .cta-title {
        font-size: 28px;
        letter-spacing: .12em;
    }

    .trust-prestige {
        min-height: 84px;
        font-size: 9px;
        letter-spacing: .18em;
    }

    .how-steps,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        flex-basis: 100%;
    }

    .service-row {
        grid-template-columns: 42px 1fr;
        gap: 20px;
    }

    .fleet-title {
        font-size: 28px;
        letter-spacing: .12em;
    }

    .fleet-model {
        margin-top: 32px;
        font-size: 13px;
        letter-spacing: .1em;
    }

    .fleet-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .fleet-hero {
        margin-top: 0;
    }

    .fleet-features {
        grid-template-columns: 1fr;
        width: min(420px, 100%);
        margin-top: 0;
        gap: 16px;
        font-size: 14px;
    }

    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .footer-social-links {
        margin-top: 28px;
        display: flex;
        justify-content: center;
        gap: 12px;
    }
}
