/* =========================================
   ROYAL VIP CARS — MERCEDES JET CLASS XXL
   File: jetclass.css
========================================= */


/* ---------- ROOT COLORS ---------- */

:root {
    --black: #080807;
    --warm-black: #0c0b09;
    --charcoal: #151411;
    --charcoal-light: #1d1b17;

    --gold: #c8a45d;
    --gold-light: #e1c17d;
    --gold-dark: #98763a;

    --ivory: #f3eee4;
    --muted: #b8b1a4;
    --border: rgba(200, 164, 93, 0.25);

    --header-height: 76px;
}


/* ---------- GLOBAL RESET ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(
            circle at top,
            rgba(200, 164, 93, 0.06),
            transparent 35%
        ),
        var(--warm-black);

    color: var(--ivory);
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* ---------- PAGE HEADER ---------- */

.page-header {
    width: 100%;
    min-height: var(--header-height);

    padding: 18px 5%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;

    background: linear-gradient(
        to bottom,
        rgba(5, 5, 4, 0.92),
        rgba(5, 5, 4, 0.35),
        transparent
    );

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    color: var(--gold-light);

    font-family: "Cinzel", serif;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;

    letter-spacing: 0.16em;
    white-space: nowrap;
}

.page-header nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(18px, 3vw, 36px);
}

.page-header nav a {
    position: relative;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

.page-header nav a::after {
    content: "";

    width: 0;
    height: 1px;

    position: absolute;
    left: 0;
    bottom: -7px;

    background: var(--gold);

    transition: width 0.3s ease;
}

.page-header nav a:hover {
    color: var(--gold-light);
}

.page-header nav a:hover::after {
    width: 100%;
}


/* ---------- HERO SECTION ---------- */

.car-hero {
    min-height: 100svh;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    padding: calc(var(--header-height) + 70px) 6% 90px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--black);
}

.car-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.32) 0%,
            rgba(0, 0, 0, 0.18) 35%,
            rgba(0, 0, 0, 0.78) 78%,
            var(--warm-black) 100%
        ),
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.35),
            transparent 55%
        );
}

.car-hero-content {
    width: min(1100px, 100%);

    position: relative;
    z-index: 2;

    text-align: left;
}

.car-hero-content span {
    display: inline-block;

    margin-bottom: 16px;
    padding-left: 48px;

    position: relative;

    color: var(--gold-light);

    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.car-hero-content span::before {
    content: "";

    width: 34px;
    height: 1px;

    position: absolute;
    left: 0;
    top: 50%;

    background: var(--gold);
}

.car-hero-content h1 {
    max-width: 950px;

    margin-bottom: 18px;

    color: var(--ivory);

    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 8vw, 6.8rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.035em;

    text-shadow: 0 8px 35px rgba(0, 0, 0, 0.75);
}

.car-hero-content p {
    max-width: 650px;

    color: rgba(243, 238, 228, 0.8);

    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 300;
    line-height: 1.8;
}


/* Small luxury line under hero */

.car-hero::after {
    content: "PRIVATE CHAUFFEUR  •  VIP TRAVEL  •  LONDON";

    position: absolute;
    right: 5%;
    bottom: 30px;
    z-index: 3;

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.58rem;
    letter-spacing: 0.22em;
}


/* ---------- CAR DETAILS ---------- */

.car-details {
    width: min(1250px, 90%);

    margin: 0 auto;
    padding: 110px 0;

    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(45px, 7vw, 100px);
}

.car-text {
    position: relative;
}

.car-text::before {
    content: "JET CLASS XXL";

    display: block;

    margin-bottom: 15px;

    color: var(--gold);

    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.28em;
}

.car-text h2 {
    margin-bottom: 28px;

    color: var(--ivory);

    font-family: "Playfair Display", serif;
    font-size: clamp(2.1rem, 4.5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
}

.car-text > p {
    margin-bottom: 34px;

    color: var(--muted);

    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.9;
}

.car-text ul {
    margin-bottom: 40px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 20px;

    list-style: none;
}

.car-text li {
    min-height: 50px;

    padding: 13px 14px 13px 40px;

    position: relative;

    display: flex;
    align-items: center;

    color: rgba(243, 238, 228, 0.82);

    font-size: 0.83rem;

    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.065);
}

.car-text li::before {
    content: "◆";

    position: absolute;
    left: 16px;

    color: var(--gold);
    font-size: 0.55rem;
}


/* ---------- WHATSAPP BOOKING BUTTON ---------- */

.whatsapp-btn {
    min-height: 58px;

    padding: 16px 30px;

    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    position: relative;
    overflow: hidden;

    color: #0c0b09;

    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold),
        var(--gold-dark)
    );

    border: 1px solid var(--gold-light);
    border-radius: 2px;

    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;

    box-shadow:
        0 14px 35px rgba(200, 164, 93, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.whatsapp-btn::before {
    content: "";

    width: 18px;
    height: 18px;

    display: inline-block;
    flex-shrink: 0;

    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%230c0b09' d='M19.11 17.2c-.28-.14-1.65-.81-1.9-.9-.26-.1-.44-.14-.63.14-.18.28-.72.9-.88 1.08-.16.19-.33.21-.6.07-.28-.14-1.17-.43-2.23-1.38-.82-.73-1.38-1.64-1.54-1.92-.16-.28-.02-.43.12-.57.13-.12.28-.33.42-.49.14-.16.18-.28.28-.46.09-.19.05-.35-.02-.49-.07-.14-.63-1.52-.86-2.08-.23-.55-.46-.47-.63-.48h-.54c-.19 0-.49.07-.74.35-.26.28-.98.96-.98 2.34 0 1.38 1 2.71 1.14 2.9.14.19 1.97 3.01 4.77 4.22.67.29 1.19.46 1.59.59.67.21 1.28.18 1.76.11.54-.08 1.65-.67 1.88-1.33.23-.65.23-1.21.16-1.33-.07-.12-.25-.19-.53-.33M16.05 27.33h-.01a11.3 11.3 0 0 1-5.76-1.58l-.41-.25-4.28 1.12 1.14-4.17-.27-.43a11.31 11.31 0 1 1 9.59 5.31m9.62-20.92A13.49 13.49 0 0 0 4.43 22.66L2.52 29.6l7.11-1.87a13.5 13.5 0 0 0 6.41 1.63h.01A13.5 13.5 0 0 0 25.67 6.41'/%3E%3C/svg%3E")
        center / contain no-repeat;
}

.whatsapp-btn::after {
    content: "";

    width: 45px;
    height: 150%;

    position: absolute;
    top: -25%;
    left: -70px;

    background: rgba(255, 255, 255, 0.32);
    transform: rotate(20deg);

    transition: left 0.65s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 45px rgba(200, 164, 93, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);

    filter: brightness(1.07);
}

.whatsapp-btn:hover::after {
    left: 120%;
}


/* ---------- MAIN SIDE IMAGE ---------- */

.car-main-image {
    position: relative;

    padding: 14px;

    background: rgba(255, 255, 255, 0.018);
    border: 1px solid var(--border);
}

.car-main-image::before {
    content: "";

    width: 80px;
    height: 80px;

    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 2;

    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.car-main-image::after {
    content: "";

    width: 80px;
    height: 80px;

    position: absolute;
    right: -10px;
    bottom: -10px;
    z-index: 2;

    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.car-main-image img {
    width: 100%;
    height: clamp(380px, 47vw, 610px);

    object-fit: cover;
    object-position: center;

    filter:
        brightness(0.9)
        contrast(1.05)
        saturate(0.9);

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}

.car-main-image {
    overflow: hidden;
}

.car-main-image:hover img {
    transform: scale(1.025);
    filter:
        brightness(1)
        contrast(1.05)
        saturate(1);
}


/* ---------- GALLERY ---------- */

.car-gallery {
    padding: 100px 5% 120px;

    position: relative;

    background:
        linear-gradient(
            to bottom,
            var(--warm-black),
            rgba(18, 17, 14, 0.96),
            var(--warm-black)
        );

    border-top: 1px solid rgba(200, 164, 93, 0.12);
}

.car-gallery h2 {
    margin-bottom: 55px;

    position: relative;

    color: var(--ivory);

    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    font-weight: 600;
    text-align: center;
}

.car-gallery h2::before {
    content: "THE INTERIOR EXPERIENCE";

    display: block;

    margin-bottom: 12px;

    color: var(--gold);

    font-family: "Poppins", sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
}

.car-gallery h2::after {
    content: "";

    width: 70px;
    height: 1px;

    display: block;

    margin: 22px auto 0;

    background: var(--gold);
}

.gallery-grid {
    width: min(1320px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 230px;
    gap: 14px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    cursor: pointer;

    filter:
        brightness(0.8)
        saturate(0.85);

    border: 1px solid rgba(255, 255, 255, 0.06);

    transition:
        transform 0.5s ease,
        filter 0.5s ease,
        border-color 0.5s ease;
}

.gallery-grid img:nth-child(1) {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-grid img:nth-child(2) {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-grid img:nth-child(3),
.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(5) {
    grid-column: span 4;
}

.gallery-grid img:nth-child(6) {
    grid-column: span 12;
    grid-row: span 2;
}

.gallery-grid img:hover {
    transform: scale(1.012);

    filter:
        brightness(1)
        saturate(1);

    border-color: var(--gold);
}


/* ---------- FOOTER ---------- */

footer {
    padding: 34px 5%;

    text-align: center;

    background: #070706;
    border-top: 1px solid rgba(200, 164, 93, 0.16);
}

footer p {
    color: rgba(255, 255, 255, 0.43);

    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ---------- TEXT SELECTION ---------- */

::selection {
    color: var(--black);
    background: var(--gold-light);
}


/* ---------- SCROLLBAR ---------- */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #080807;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        var(--gold-dark),
        var(--gold)
    );

    border: 2px solid #080807;
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .page-header {
        padding-inline: 4%;
    }

    .page-header nav {
        gap: 17px;
    }

    .page-header nav a {
        font-size: 0.68rem;
    }

    .car-details {
        grid-template-columns: 1fr;
        gap: 60px;

        padding: 85px 0;
    }

    .car-text {
        max-width: 720px;
    }

    .car-main-image {
        width: 100%;
    }

    .car-main-image img {
        height: clamp(360px, 68vw, 620px);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 270px;
    }

    .gallery-grid img:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-grid img:first-child,
    .gallery-grid img:last-child {
        grid-column: span 2;
    }
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 680px) {

    :root {
        --header-height: 68px;
    }

    .page-header {
        min-height: var(--header-height);

        padding: 16px 20px;

        justify-content: center;

        background: linear-gradient(
            to bottom,
            rgba(5, 5, 4, 0.96),
            rgba(5, 5, 4, 0.55),
            transparent
        );
    }

    .logo {
        font-size: 0.93rem;
        letter-spacing: 0.18em;
    }

    .page-header nav {
        display: none;
    }

    .car-hero {
        min-height: 92svh;

        padding: 120px 22px 72px;

        align-items: flex-end;

        background-position: 55% center;
    }

    .car-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.28),
                rgba(0, 0, 0, 0.18) 35%,
                rgba(0, 0, 0, 0.9) 82%,
                var(--warm-black)
            );
    }

    .car-hero-content {
        text-align: center;
    }

    .car-hero-content span {
        margin-bottom: 13px;
        padding: 0;

        font-size: 0.6rem;
        letter-spacing: 0.25em;
    }

    .car-hero-content span::before {
        display: none;
    }

    .car-hero-content h1 {
        margin-bottom: 17px;

        font-size: clamp(2.5rem, 12vw, 4.2rem);
        line-height: 1.02;
    }

    .car-hero-content p {
        max-width: 500px;
        margin: 0 auto;

        font-size: 0.87rem;
        line-height: 1.75;
    }

    .car-hero::after {
        display: none;
    }

    .car-details {
        width: min(100% - 40px, 620px);

        padding: 75px 0;
        gap: 48px;
    }

    .car-text {
        text-align: left;
    }

    .car-text::before {
        font-size: 0.59rem;
        letter-spacing: 0.24em;
    }

    .car-text h2 {
        margin-bottom: 22px;

        font-size: clamp(2rem, 9vw, 3rem);
    }

    .car-text > p {
        margin-bottom: 28px;

        font-size: 0.88rem;
        line-height: 1.85;
    }

    .car-text ul {
        grid-template-columns: 1fr;
        gap: 10px;

        margin-bottom: 32px;
    }

    .car-text li {
        min-height: 48px;

        font-size: 0.78rem;
    }

    .whatsapp-btn {
        width: 100%;
        min-height: 58px;

        padding: 16px 20px;

        font-size: 0.73rem;
    }

    .car-main-image {
        padding: 8px;
    }

    .car-main-image::before,
    .car-main-image::after {
        width: 48px;
        height: 48px;
    }

    .car-main-image::before {
        top: -7px;
        left: -7px;
    }

    .car-main-image::after {
        right: -7px;
        bottom: -7px;
    }

    .car-main-image img {
        height: 460px;
    }

    .car-gallery {
        padding: 75px 14px 90px;
    }

    .car-gallery h2 {
        margin-bottom: 38px;

        font-size: clamp(2.2rem, 11vw, 3.4rem);
    }

    .car-gallery h2::before {
        font-size: 0.55rem;
        letter-spacing: 0.23em;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 10px;
    }

    .gallery-grid img:nth-child(n) {
        grid-column: auto;
        grid-row: auto;

        height: auto;
        min-height: 250px;
        max-height: 430px;

        aspect-ratio: 4 / 3;
    }

    footer {
        padding: 28px 20px;
    }

    footer p {
        font-size: 0.58rem;
        line-height: 1.7;
    }
}


/* ---------- SMALL MOBILE ---------- */

@media (max-width: 420px) {

    .car-hero {
        padding-inline: 18px;
        background-position: 58% center;
    }

    .car-details {
        width: calc(100% - 32px);
    }

    .car-main-image img {
        height: 390px;
    }

    .gallery-grid img:nth-child(n) {
        min-height: 230px;
    }
}


/* ---------- REDUCED MOTION ACCESSIBILITY ---------- */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}