/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:      #080808;
    --dark:       #0e0e0e;
    --card:       #111111;
    --gold:       #c9a068;
    --gold-light: #e2c898;
    --gold-dark:  #9a7440;
    --white:      #f5f0eb;
    --muted:      #7a756e;
    --border:     rgba(201, 160, 104, 0.14);
    --font-d:     'Cormorant Garamond', serif;
    --font-b:     'Jost', sans-serif;
}

html { scroll-behavior: smooth; font-size: 17.5px; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-b);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* ─── HEADER ────────────────────────────────────────────────────── */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.6rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.45s ease;
}

#header.scrolled {
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1rem 4rem;
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: var(--font-d);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    width: 52px;
    height: 34px;
    object-fit: contain;
    border-radius: 0;
}

/* Brand group: keeps QB LIMO logo + QBM badge locked together
   regardless of nav width, instead of relying on header's
   justify-content:space-between across 3 separate children. */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-shrink: 0;
}

/* QBM cross-link badge in nav */
.qbm-nav-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.qbm-nav-link:hover {
    transform: scale(1.08) rotate(-4deg);
    filter: drop-shadow(0 0 8px rgba(70,110,190,0.5));
}
.qbm-nav-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 50%;
}
@media (max-width: 1150px) {
    .qbm-nav-link { display: none; }
}

.qbm-mob-link {
    display: flex !important;
    align-items: center;
    gap: 0.6rem;
}
.qbm-mob-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 50%;
}

nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

nav a {
    color: rgba(245, 240, 235, 0.82);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.35s ease;
}

nav a:hover { color: var(--gold); }
nav a:hover::after { width: 100%; }

.nav-lang {
    color: var(--gold) !important;
    border: 1px solid var(--border);
    padding: 0.28rem 0.9rem;
    font-size: 0.65rem !important;
}
.nav-lang::after { display: none !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px; height: 1px;
    background: var(--white);
    transition: all 0.3s;
}

/* Mobile overlay nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 6, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    font-family: var(--font-d);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--gold); }

.close-btn {
    position: absolute;
    top: 1.6rem; right: 3.5rem;
    background: none;
    border: none;
    color: rgba(245,240,235,0.68);
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.3s;
}
.close-btn:hover { color: var(--gold); }

/* ─── HERO ──────────────────────────────────────────────────────── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #050403;
}

/* Hero slideshow images */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
    will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Dark overlay so text remains legible */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5,4,3,0.72) 0%,
        rgba(5,4,3,0.55) 50%,
        rgba(5,4,3,0.65) 100%
    );
}

/* Gold gradient accent on top of slides */
.hero-slide-accent {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 10% 60%, rgba(201,160,104,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 90% 20%, rgba(201,160,104,0.06) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,160,104,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,160,104,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 70% 70% at center, black 10%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, black 10%, transparent 75%);
}

.hero-orb {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,160,104,0.06) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: orb 8s ease-in-out infinite;
}

@keyframes orb {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
    50%       { transform: translate(-50%,-52%) scale(1.08); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    padding: 0 2rem;
}

.hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
    font-family: var(--font-d);
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.55s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-rule {
    width: 50px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeIn 1.2s ease 0.8s forwards;
}

.hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(245,240,235,0.72);
    letter-spacing: 0.07em;
    line-height: 1.95;
    max-width: 560px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
}

.hero-cta {
    display: inline-block;
    padding: 0.9rem 3.2rem;
    border: 1px solid rgba(201,160,104,0.6);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
    position: relative;
    overflow: hidden;
}

.hero-cta span {
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.4s ease;
}

.hero-cta:hover { border-color: var(--gold); }
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta:hover span { color: var(--black); }

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.7s forwards;
}

.hero-scroll-indicator span {
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-bar {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,100% { opacity:1; transform: scaleY(1); }
    50%      { opacity:0.3; transform: scaleY(0.6); }
}

/* ─── SHARED SECTION STYLES ─────────────────────────────────────── */
section { padding: 8rem 4rem; position: relative; }

.inner { max-width: 1200px; margin: 0 auto; }

.s-label {
    font-size: 0.62rem;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}

.s-title {
    font-family: var(--font-d);
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 300;
    line-height: 1.18;
    margin-bottom: 1.4rem;
}

.s-title em { font-style: italic; color: var(--gold-light); }

.gold-rule {
    width: 38px; height: 1px;
    background: var(--gold);
    margin-bottom: 3.5rem;
}

.divider {
    width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity:0; transform: translateY(32px); }
    to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity:0; }
    to   { opacity:1; }
}

.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.visible { opacity:1; transform: translateY(0); }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ─── SERVICES ──────────────────────────────────────────────────── */
#services { background: var(--dark); }

.services-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 4rem;
}

.svc {
    background: var(--dark);
    padding: 3rem 2.2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.4s, transform 0.4s;
    display: block;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.svc:hover h3 { color: var(--gold); }

.svc::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.svc:hover { background: #161616; }
.svc:hover::after { width: 55%; }

.svc-icon {
    width: 44px; height: 44px;
    margin: 0 auto 1.6rem;
    color: var(--gold);
}

.svc h3 {
    font-family: var(--font-d);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 0.7rem;
    color: var(--ink, inherit);
    transition: color 0.3s;
}

.svc p {
    font-size: 0.78rem;
    color: rgba(245,240,235,0.66);
    line-height: 1.75;
    letter-spacing: 0.04em;
}

/* ─── FLEET ─────────────────────────────────────────────────────── */
#fleet { background: var(--black); }

.fleet-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 4rem;
}

.fleet-card {
    background: var(--black);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.55s ease;
}

.fleet-card:hover { background: #0c0c0c; }
.fleet-card:hover::before { transform: scaleX(1); }

.fleet-num {
    font-family: var(--font-d);
    font-size: 5.5rem;
    font-weight: 300;
    color: rgba(201,160,104,0.1);
    line-height: 1;
    margin-bottom: 0.8rem;
    letter-spacing: -0.03em;
}

.fleet-brand {
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.fleet-card h3 {
    font-family: var(--font-d);
    font-size: 1.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 2.2rem;
}

.fleet-img {
    position: absolute;
    top: 2.6rem;
    right: 2rem;
    width: 370px;
    height: 197px;
    object-fit: contain;
    object-position: top right;
    filter: brightness(0.95);
    transition: filter 0.4s, transform 0.5s ease;
}

.fleet-card:hover .fleet-img { filter: brightness(1.05); transform: translateY(-4px); }

/* all cars now uniform; legacy class kept as no-op for safety */
.fleet-img-sm {
    width: 370px;
    height: 197px;
}

.fleet-specs {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.spec-item { display: flex; flex-direction: column; gap: 0.25rem; }

.spec-lbl {
    font-size: 0.64rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}

.spec-val {
    font-family: var(--font-d);
    font-size: 1.55rem;
    font-weight: 400;
}

.spec-note {
    font-size: 0.68rem;
    color: rgba(245,240,235,0.6);
}

/* ─── PRICING ───────────────────────────────────────────────────── */
#pricing { background: var(--dark); }

.tax-note {
    font-size: 0.78rem;
    color: rgba(245,240,235,0.62);
    letter-spacing: 0.06em;
    margin-top: -2rem;
    margin-bottom: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.p-card {
    background: var(--black);
    border: 1px solid var(--border);
    padding: 2.5rem;
    position: relative;
    transition: border-color 0.4s, transform 0.4s;
}

.p-card:hover {
    border-color: rgba(201,160,104,0.5);
    transform: translateY(-5px);
}

.p-card.wide { grid-column: 1 / -1; }

.p-card.featured {
    border-color: var(--gold-dark);
    background: #0d0b07;
}

.p-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 0.25rem 1.1rem;
    font-weight: 500;
    white-space: nowrap;
}

.p-route {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}

.p-desc {
    font-family: var(--font-d);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 1.5rem;
}

.p-amount {
    font-family: var(--font-d);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.p-amount .cur { font-size: 1.1rem; color: var(--gold); }

.p-note {
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.06em;
}

.p-details {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: rgba(245,240,235,0.64);
    line-height: 1.9;
}

.p-custom-label {
    font-family: var(--font-d);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.cancel-box {
    margin-top: 3rem;
    border: 1px solid var(--border);
    padding: 2rem 2.5rem;
    background: var(--black);
}

.cancel-box h4 {
    font-family: var(--font-d);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.cancel-box ul {
    list-style: none;
    font-size: 0.78rem;
    color: rgba(245,240,235,0.66);
    line-height: 2.1;
}

.cancel-box ul li::before { content: '— '; color: var(--gold-dark); }

/* ─── ACCESS & INFO ──────────────────────────────────────────────── */
#access { background: var(--black); }

.access-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 7rem;
    margin-top: 4rem;
    align-items: start;
}

.co-name {
    font-family: var(--font-d);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem;
}

.info-tbl { width: 100%; border-collapse: collapse; }

.info-tbl tr { border-bottom: 1px solid var(--border); }

.info-tbl td {
    padding: 0.95rem 0;
    font-size: 0.8rem;
    vertical-align: top;
}

.info-tbl td:first-child {
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    width: 38%;
    padding-top: 1.1rem;
}

.info-tbl td:last-child {
    color: rgba(245,240,235,0.65);
    line-height: 1.75;
}

.contact-block h3 {
    font-family: var(--font-d);
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 2.2rem;
    letter-spacing: 0.04em;
}

.c-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.c-icon {
    width: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.c-lbl {
    font-size: 0.64rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.c-val {
    font-size: 0.82rem;
    color: rgba(245,240,235,0.75);
}
.c-mail {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s;
}
.c-mail:hover { color: var(--gold); }

/* ─── CONTACT FORM ──────────────────────────────────────────────── */
#contact { background: var(--dark); }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: 4rem;
    align-items: start;
}

.contact-copy p {
    font-size: 1rem;
    color: rgba(245,240,235,0.66);
    line-height: 1.95;
    margin-top: 1.2rem;
    letter-spacing: 0.04em;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.fg { display: flex; flex-direction: column; gap: 0.5rem; }

label {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
}

input, textarea {
    background: var(--black);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 0.85rem 1.1rem;
    font-family: var(--font-b);
    font-size: 0.83rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
    -webkit-appearance: none;
}

input:focus, textarea:focus { border-color: rgba(201,160,104,0.6); }

input::placeholder, textarea::placeholder { color: rgba(245,240,235,0.18); }

textarea { resize: vertical; min-height: 120px; }

.btn-sub {
    background: transparent;
    border: 1px solid rgba(201,160,104,0.55);
    color: var(--gold);
    padding: 0.95rem 3rem;
    font-family: var(--font-b);
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.btn-sub span { position: relative; z-index: 1; transition: color 0.4s; }

.btn-sub::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(101%);
    transition: transform 0.4s ease;
}

.btn-sub:hover { border-color: var(--gold); }
.btn-sub:hover::before { transform: translateY(0); }
.btn-sub:hover span { color: var(--black); }

/* ─── FOOTER ────────────────────────────────────────────────────── */
footer {
    background: #050505;
    padding: 2.8rem 4rem;
    border-top: 1px solid var(--border);
}

.foot-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.foot-emblem {
    width: 46px !important;
    height: auto !important;
    max-width: 46px;
    object-fit: contain;
    display: block;
}

.foot-logo {
    font-family: var(--font-d);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--gold);
}

.foot-copy {
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.08em;
}

.foot-lang a {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

.foot-lang a:hover { color: var(--gold); }
.foot-lang span { margin: 0 0.6rem; color: var(--border); }

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    section { padding: 6.5rem 3rem; }
    #header, #header.scrolled { padding-left: 3rem; padding-right: 3rem; }
    .access-grid { gap: 4rem; }
    .contact-layout { gap: 4rem; }
}

@media (max-width: 900px) {
    .services-wrap { grid-template-columns: repeat(2,1fr); }
    .fleet-wrap    { grid-template-columns: 1fr; }
    .pricing-grid  { grid-template-columns: repeat(2,1fr); }
    .p-card.wide   { grid-column: 1 / -1; }
    .access-grid   { grid-template-columns: 1fr; gap: 3.5rem; }
    .contact-layout{ grid-template-columns: 1fr; gap: 3rem; }

    .fleet-img {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 200px;
        object-position: center;
        margin: 1rem 0;
    }
}

/* Nav collapses to hamburger earlier (tablets/small laptops) —
   there's too much nav content (5 links + lang + theme toggle + 2 logos)
   to fit inline below ~1150px without wrapping/overlapping. */
@media (max-width: 1150px) {
    nav { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 700px) {
    #header, #header.scrolled { padding: 1.2rem 1.6rem; }
    section { padding: 5rem 1.6rem; }
    footer { padding: 2.2rem 1.6rem; }
    .foot-inner { flex-direction: column; text-align: center; }
    .services-wrap { grid-template-columns: 1fr; }
    .pricing-grid  { grid-template-columns: 1fr; }
    .fleet-card    { padding: 2.5rem 2rem; }
    .close-btn     { right: 1.6rem; }
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT / DAY MODE THEME
   Toggled via html[data-theme="light"] (set by js/main.js)
   ═══════════════════════════════════════════════════════════════ */
html[data-theme="light"] {
    --black:      #f4f1ea;   /* warm ivory base */
    --dark:       #ffffff;
    --card:       #ffffff;
    --gold:       #9a6f33;   /* rich bronze-gold, readable on light */
    --gold-light: #b98a45;
    --gold-dark:  #7f5a26;
    --white:      #1d1a14;   /* dark ink text */
    --muted:      #8a8174;
    --border:     rgba(154, 111, 51, 0.20);
}

/* Scrollbar in light mode */
html[data-theme="light"] ::-webkit-scrollbar-track { background: #efeae0; }

/* Hero light mode: show slides with lighter overlay */
html[data-theme="light"] .hero-slide::after {
    background: linear-gradient(
        135deg,
        rgba(250,247,240,0.55) 0%,
        rgba(240,235,220,0.4) 50%,
        rgba(236,230,216,0.5) 100%
    );
}

/* Hardcoded dark backgrounds -> light equivalents */
html[data-theme="light"] .fleet-card:hover { background: #faf7f0; }
html[data-theme="light"] .p-card.featured { background: #faf6ec; }
html[data-theme="light"] footer { background: #efeae0; }

/* Cards / surfaces get a subtle border + soft shadow for depth */
html[data-theme="light"] .fleet-card,
html[data-theme="light"] .p-card {
    box-shadow: 0 1px 3px rgba(40,30,15,0.05), 0 8px 28px rgba(40,30,15,0.05);
}

/* Header backdrop when scrolled */
html[data-theme="light"] #header.scrolled {
    background: rgba(244, 241, 234, 0.85) !important;
}

/* Theme toggle button */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gold);
    width: 38px; height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.25s ease;
    line-height: 1;
}
.theme-toggle:hover { border-color: var(--gold); transform: rotate(15deg); }

/* Light mode: remap hardcoded light body text -> dark ink for readability */
html[data-theme="light"] nav a              { color: rgba(40,35,28,0.78); }
html[data-theme="light"] .close-btn         { color: rgba(40,35,28,0.6); }
html[data-theme="light"] .hero-sub          { color: rgba(40,35,28,0.66); }
html[data-theme="light"] .svc p             { color: rgba(40,35,28,0.6); }
html[data-theme="light"] .svc:hover         { background: #faf7f0; }
html[data-theme="light"] .c-mail            { color: rgba(40,35,28,0.78); }
html[data-theme="light"] .spec-note         { color: rgba(40,35,28,0.55); }
html[data-theme="light"] .tax-note          { color: rgba(40,35,28,0.55); }
html[data-theme="light"] .p-details         { color: rgba(40,35,28,0.62); }
html[data-theme="light"] .cancel-box ul     { color: rgba(40,35,28,0.62); }
html[data-theme="light"] .info-tbl td:last-child { color: rgba(40,35,28,0.72); }
html[data-theme="light"] .c-val             { color: rgba(40,35,28,0.78); }
html[data-theme="light"] .contact-copy p    { color: rgba(40,35,28,0.62); }
html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder { color: rgba(40,35,28,0.3); }

/* Mobile header theme toggle: hidden on desktop, shown when nav collapses */
.theme-toggle-mobile { display: none; }
@media (max-width: 1150px) {
    #header .nav-lang ~ .theme-toggle,        /* the in-nav one stays hidden with nav */
    nav .theme-toggle { display: none; }
    .theme-toggle-mobile {
        display: inline-flex;
        margin-left: 0.9rem;
        width: 36px; height: 36px;
        font-size: 0.95rem;
    }
}
