/* ==========================================================================
   VIP & Enterprise — standalone one-pager
   Limousine + Concierge. Black, sleek, modern, fancy.
   Own chrome: luxury header + full-viewport hero slider + sleek footer.
   Display: Cormorant Garamond (luxe serif) · Body: Outfit (clean modern sans)
   ========================================================================== */

:root {
    --vip-black: #0a0a0b;
    --vip-panel: #111113;
    --vip-line: rgba(198,168,109,0.30);
    --vip-gold: #c6a86d;
    --vip-gold-soft: #e2cb98;
    --vip-text: #ece9e3;
    --vip-muted: #8d8b86;
}

* { box-sizing: border-box; }

.vip-body {
    margin: 0;
    background: var(--vip-black);
    color: var(--vip-text);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.vip-serif { font-family: 'Cormorant Garamond', Georgia, serif; }
a { color: inherit; }

.vip-kicker {
    display: inline-block;
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.42em; text-transform: uppercase;
    color: var(--vip-gold);
}
.vip-kicker--center { display: block; text-align: center; }

.vip-section { padding: clamp(74px, 11vw, 150px) 0; position: relative; }
.vip-container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.vip-hairline { height: 1px; background: linear-gradient(90deg, transparent, var(--vip-line), transparent); border: 0; margin: 0; }

/* ----------------------------- HEADER ----------------------------- */
.vip-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px clamp(24px, 5vw, 64px);
    transition: background .4s ease, padding .4s ease, border-color .4s ease;
    border-bottom: 1px solid transparent;
}
.vip-header.is-scrolled {
    background: rgba(10,10,11,0.82);
    backdrop-filter: blur(14px);
    padding: 15px clamp(24px, 5vw, 64px);
    border-bottom-color: var(--vip-line);
}
.vip-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.vip-brand img { height: 34px; width: auto; filter: brightness(0) invert(1) opacity(0.92); }
.vip-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem; font-weight: 500; letter-spacing: 0.04em; color: #fff;
}
.vip-brand-name small {
    display: block; font-family: 'Outfit', sans-serif;
    font-size: 0.56rem; font-weight: 500; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--vip-gold); margin-top: -2px;
}
.vip-nav { display: flex; align-items: center; gap: 38px; }
.vip-nav a {
    font-size: 0.78rem; font-weight: 400; letter-spacing: 0.12em;
    text-transform: uppercase; text-decoration: none; color: var(--vip-text);
    opacity: 0.82; transition: opacity .25s, color .25s; position: relative;
}
.vip-nav a:hover { opacity: 1; color: var(--vip-gold-soft); }
.vip-nav .vip-nav-cta {
    padding: 11px 24px; border: 1px solid var(--vip-gold);
    color: var(--vip-gold-soft); opacity: 1; letter-spacing: 0.14em;
    transition: background .3s, color .3s;
}
.vip-nav .vip-nav-cta:hover { background: var(--vip-gold); color: #14110a; }
.vip-burger { display: none; background: none; border: 0; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Language switcher */
.vip-lang { display: flex; align-items: center; gap: 11px; margin-left: 6px; }
.vip-lang a {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em;
    color: var(--vip-text); opacity: 0.5; text-decoration: none;
    transition: opacity .2s ease, color .2s ease;
}
.vip-lang a:hover { opacity: 1; color: var(--vip-gold-soft); }
.vip-lang a.active { color: var(--vip-gold); opacity: 1; }

/* RTL: keep centered sections centered; let the rest flip naturally */
[dir="rtl"] .vip-scroll-hint { right: auto; left: clamp(24px, 5vw, 64px); }
[dir="rtl"] .vip-feature-list li { text-align: right; }

/* ----------------------------- HERO SLIDER ----------------------------- */
.vip-hero { position: relative; height: 100vh; min-height: 620px; display: flex; align-items: center; overflow: hidden; }
.vip-hero-slider { position: absolute; inset: 0; z-index: 0; }
.vip-hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.08);
    transition: opacity 1.8s ease-in-out, transform 7s ease-out;
    filter: grayscale(0.25) contrast(1.05) brightness(0.6);
}
.vip-hero-slide.active { opacity: 1; transform: scale(1.0); }
/* Chauffeur beside black SUV — luxury transfer */
.vip-hero-slide-1 { background-image: url('https://images.pexels.com/photos/36377051/pexels-photo-36377051.jpeg?auto=compress&cs=tinysrgb&w=1900'); }
/* Black Mercedes on a city street */
.vip-hero-slide-2 { background-image: url('https://images.pexels.com/photos/15535501/pexels-photo-15535501.jpeg?auto=compress&cs=tinysrgb&w=1900'); }
/* Black Mercedes V-Class van — premium people-mover (exterior) */
.vip-hero-slide-3 { background-image: url('https://images.pexels.com/photos/17455633/pexels-photo-17455633.jpeg?auto=compress&cs=tinysrgb&w=1900'); }
/* Mercedes V-Class luxury interior */
.vip-hero-slide-4 { background-image: url('https://images.pexels.com/photos/17455632/pexels-photo-17455632.jpeg?auto=compress&cs=tinysrgb&w=1900'); }
.vip-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg, var(--vip-black) 4%, rgba(10,10,11,0.42) 52%, rgba(10,10,11,0.7) 100%),
        linear-gradient(0deg, var(--vip-black) 1%, transparent 38%);
}
.vip-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.vip-hero-title {
    font-size: clamp(3.1rem, 8.6vw, 6.8rem); font-weight: 400;
    line-height: 0.95; letter-spacing: -0.015em; margin: 22px 0 0; color: #fff;
}
.vip-hero-title em { font-style: italic; color: var(--vip-gold-soft); }
.vip-hero-rule { width: 64px; height: 1px; background: var(--vip-gold); margin: 34px 0 26px; }
.vip-hero-lead { max-width: 500px; font-size: 1.08rem; line-height: 1.75; color: #cdcac4; margin: 0 0 42px; }
.vip-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* slider dots */
.vip-hero-dots { position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 12px; }
.vip-hero-dots button {
    width: 34px; height: 2px; padding: 0; border: 0; cursor: pointer;
    background: rgba(255,255,255,0.3); transition: background .3s;
}
.vip-hero-dots button.active { background: var(--vip-gold); }
.vip-scroll-hint {
    position: absolute; bottom: 30px; right: clamp(24px, 5vw, 64px); z-index: 3;
    font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--vip-muted); writing-mode: vertical-rl; display: flex; align-items: center; gap: 12px;
}
.vip-scroll-hint::after { content: ""; width: 1px; height: 44px; background: linear-gradient(var(--vip-gold), transparent); }

/* Buttons */
.vip-btn {
    display: inline-flex; align-items: center; gap: 11px; padding: 15px 34px;
    font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
    border-radius: 0; cursor: pointer;
    transition: all .35s cubic-bezier(.2,.7,.2,1);
}
.vip-btn--solid { background: var(--vip-gold); color: #14110a; border: 1px solid var(--vip-gold); }
.vip-btn--solid:hover { background: var(--vip-gold-soft); border-color: var(--vip-gold-soft); transform: translateY(-2px); }
.vip-btn--line { background: transparent; color: var(--vip-text); border: 1px solid rgba(236,233,227,0.32); }
.vip-btn--line:hover { border-color: var(--vip-gold); color: var(--vip-gold-soft); transform: translateY(-2px); }

/* ----------------------------- INTRO ----------------------------- */
.vip-intro { text-align: center; }
.vip-intro-statement {
    font-size: clamp(1.75rem, 3.6vw, 3rem); font-weight: 300; line-height: 1.32;
    max-width: 920px; margin: 26px auto 0; color: var(--vip-text);
}
.vip-intro-statement b { font-weight: 500; color: #fff; }

/* ----------------------------- SPLIT ----------------------------- */
.vip-split-row { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.vip-split-media { min-height: 500px; background-size: cover; background-position: center; filter: grayscale(0.18) brightness(0.86); }
/* Chauffeur loading luggage into a luxury car */
.vip-split-media--limo { background-image: url('https://images.pexels.com/photos/36377043/pexels-photo-36377043.jpeg?auto=compress&cs=tinysrgb&w=1400'); }
/* Chauffeur opening the car door — meet & greet */
.vip-split-media--concierge { background-image: url('https://images.pexels.com/photos/15774577/pexels-photo-15774577.jpeg?auto=compress&cs=tinysrgb&w=1400'); }
.vip-split-text { padding: clamp(44px, 6vw, 92px); display: flex; flex-direction: column; justify-content: center; background: var(--vip-panel); }
.vip-split-title { font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 400; line-height: 1.05; margin: 18px 0 22px; color: #fff; }
.vip-split-body { font-size: 1rem; line-height: 1.8; color: var(--vip-muted); margin: 0 0 28px; }
.vip-feature-list { list-style: none; margin: 0; padding: 0; }
.vip-feature-list li {
    display: flex; align-items: flex-start; gap: 13px; padding: 13px 0;
    border-top: 1px solid rgba(236,233,227,0.08); font-size: 0.95rem; color: var(--vip-text);
}
.vip-feature-list li:first-child { border-top: 0; }
.vip-feature-list li i { color: var(--vip-gold); font-size: 0.78rem; margin-top: 6px; }

/* ----------------------------- AUDIENCE ----------------------------- */
.vip-aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.vip-aud-card {
    padding: clamp(36px, 4vw, 56px); border: 1px solid var(--vip-line);
    background: linear-gradient(180deg, rgba(198,168,109,0.05), transparent 60%);
    transition: border-color .35s ease, transform .35s ease;
}
.vip-aud-card:hover { border-color: var(--vip-gold); transform: translateY(-4px); }
.vip-aud-icon { font-size: 1.7rem; color: var(--vip-gold); margin-bottom: 22px; }
.vip-aud-name { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 400; color: #fff; margin-bottom: 14px; }
.vip-aud-desc { font-size: 0.96rem; line-height: 1.75; color: var(--vip-muted); margin: 0 0 24px; }
.vip-aud-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.vip-aud-tag {
    font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 7px 14px; border: 1px solid rgba(236,233,227,0.16); color: var(--vip-muted); border-radius: 999px;
}

/* ----------------------------- SERVICES GRID ----------------------------- */
.vip-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 56px; background: var(--vip-line); border: 1px solid var(--vip-line); }
.vip-svc {
    background: var(--vip-black); padding: clamp(34px, 3.4vw, 48px);
    transition: background .35s ease;
}
.vip-svc:hover { background: var(--vip-panel); }
.vip-svc-icon { font-size: 1.5rem; color: var(--vip-gold); margin-bottom: 20px; display: block; }
.vip-svc-title { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 500; color: #fff; margin: 0 0 10px; }
.vip-svc-desc { font-size: 0.92rem; line-height: 1.7; color: var(--vip-muted); margin: 0; }

/* ----------------------------- FLEET ----------------------------- */
.vip-fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.vip-fleet-card {
    position: relative; height: 360px; overflow: hidden;
    border: 1px solid var(--vip-line);
    display: flex; align-items: flex-end;
}
.vip-fleet-img {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    filter: grayscale(0.2) brightness(0.78); transform: scale(1);
    transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.vip-fleet-card:hover .vip-fleet-img { transform: scale(1.06); filter: grayscale(0) brightness(0.86); }
.vip-fleet-card::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(10,10,11,0.92) 6%, rgba(10,10,11,0.15) 60%, transparent 100%);
}
.vip-fleet-body { position: relative; z-index: 2; padding: 28px 26px; width: 100%; }
.vip-fleet-cat { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--vip-gold); }
.vip-fleet-name { font-family: 'Cormorant Garamond', serif; font-size: 1.85rem; font-weight: 500; color: #fff; margin: 6px 0 8px; line-height: 1.05; }
.vip-fleet-meta { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: var(--vip-muted); }
.vip-fleet-meta i { color: var(--vip-gold); font-size: 0.85rem; }

/* ----------------------------- STATEMENT BAND ----------------------------- */
.vip-band {
    position: relative; padding: clamp(90px, 13vw, 170px) 0; text-align: center; overflow: hidden;
    background: linear-gradient(rgba(10,10,11,0.74), rgba(10,10,11,0.82)),
        url('https://images.pexels.com/photos/8425052/pexels-photo-8425052.jpeg?auto=compress&cs=tinysrgb&w=1900') center/cover fixed;
}
.vip-band-quote {
    max-width: 880px; margin: 0 auto; font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 4.2vw, 3.2rem); font-weight: 300; font-style: italic;
    line-height: 1.3; color: #fff;
}
.vip-band-quote span { color: var(--vip-gold-soft); }
.vip-band-mark { font-size: 1.4rem; color: var(--vip-gold); letter-spacing: 0.4em; margin-bottom: 26px; display: block; }

/* ----------------------------- CTA ----------------------------- */
.vip-cta { text-align: center; background: var(--vip-panel); }
.vip-cta-title { font-size: clamp(2.3rem, 5vw, 3.8rem); font-weight: 400; color: #fff; margin: 22px 0 16px; line-height: 1.04; }
.vip-cta-lead { max-width: 540px; margin: 0 auto 38px; font-size: 1.05rem; line-height: 1.7; color: var(--vip-muted); }
.vip-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ----------------------------- CONTACT FORM ----------------------------- */
.vip-form { max-width: 720px; margin: 40px auto 0; text-align: left; }
.vip-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vip-field {
    width: 100%; padding: 15px 18px;
    background: rgba(255,255,255,0.03); color: var(--vip-text);
    border: 1px solid rgba(236,233,227,0.16); border-radius: 0;
    font-family: 'Outfit', sans-serif; font-size: 0.94rem; font-weight: 300;
    transition: border-color .25s ease, background .25s ease;
}
.vip-field::placeholder { color: var(--vip-muted); }
.vip-field:focus { outline: none; border-color: var(--vip-gold); background: rgba(198,168,109,0.05); }
.vip-field option { background: var(--vip-panel); color: var(--vip-text); }
textarea.vip-field { margin-top: 14px; resize: vertical; min-height: 110px; }
select.vip-field { appearance: none; -webkit-appearance: none; cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--vip-gold) 50%), linear-gradient(135deg, var(--vip-gold) 50%, transparent 50%);
    background-position: calc(100% - 20px) center, calc(100% - 14px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
[dir="rtl"] select.vip-field { background-position: 20px center, 26px center; padding-right: 18px; padding-left: 40px; }
.vip-form-foot { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.vip-form-error { text-align: center; color: #e08a8a; font-size: 0.86rem; margin: 14px 0 0; }
.vip-form-success { max-width: 560px; margin: 30px auto 0; text-align: center; }
.vip-form-success i { font-size: 2.6rem; color: var(--vip-gold); }
.vip-form-success h3 { font-size: 2rem; font-weight: 500; color: #fff; margin: 12px 0 8px; }
.vip-form-success p { color: var(--vip-muted); font-size: 1rem; line-height: 1.7; margin: 0; }
.vip-btn[disabled] { opacity: 0.6; pointer-events: none; }

/* ----------------------------- FOOTER ----------------------------- */
.vip-footer { background: var(--vip-black); border-top: 1px solid var(--vip-line); padding: 72px 0 36px; }
.vip-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.vip-footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 500; color: #fff; letter-spacing: 0.03em; }
.vip-footer-brand-name small { display: block; font-family: 'Outfit', sans-serif; font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--vip-gold); margin-top: 2px; }
.vip-footer-tag { font-size: 0.92rem; line-height: 1.7; color: var(--vip-muted); margin: 18px 0 0; max-width: 320px; }
.vip-footer-h { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--vip-gold); margin: 0 0 20px; }
.vip-footer-list { list-style: none; margin: 0; padding: 0; }
.vip-footer-list li { margin-bottom: 13px; }
.vip-footer-list a, .vip-footer-list span { font-size: 0.9rem; color: var(--vip-text); opacity: 0.8; text-decoration: none; transition: opacity .25s, color .25s; display: inline-flex; align-items: center; gap: 10px; }
.vip-footer-list a:hover { opacity: 1; color: var(--vip-gold-soft); }
.vip-footer-list i { color: var(--vip-gold); font-size: 0.92rem; width: 16px; }
.vip-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(236,233,227,0.08); }
.vip-footer-copy { font-size: 0.8rem; color: var(--vip-muted); }
.vip-footer-social { display: flex; gap: 18px; }
.vip-footer-social a { color: var(--vip-muted); font-size: 1.15rem; transition: color .25s, transform .25s; }
.vip-footer-social a:hover { color: var(--vip-gold-soft); transform: translateY(-2px); }

/* ----------------------------- WHATSAPP FLOAT ----------------------------- */
.vip-wa {
    position: fixed; bottom: 26px; right: 26px; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%; background: #1f1f22;
    border: 1px solid var(--vip-line); display: flex; align-items: center; justify-content: center;
    color: var(--vip-gold-soft); font-size: 1.5rem; text-decoration: none;
    transition: transform .25s, background .25s, color .25s;
}
.vip-wa:hover { transform: scale(1.08); background: var(--vip-gold); color: #14110a; }

/* ----------------------------- REVEAL ----------------------------- */
/* Progressive enhancement: hidden only when JS is active (html.vip-js).
   Without JS the content stays fully visible — never a blank section. */
html.vip-js .vip-reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
/* Must match the hide selector's specificity (0,2,1) so is-visible actually wins */
html.vip-js .vip-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html.vip-js .vip-reveal { opacity: 1; transform: none; transition: none; }
    .vip-hero-slide { transition: opacity 1s ease-in-out; transform: none; }
}

/* ----------------------------- RESPONSIVE ----------------------------- */
@media (max-width: 900px) {
    .vip-burger { display: block; position: relative; z-index: 101; }
    .vip-brand { position: relative; z-index: 101; }
    /* backdrop-filter on the header makes fixed children relative to IT, not the
       viewport — collapsing the overlay. Drop it while the menu is open. */
    .vip-header.menu-open { background: var(--vip-black); border-bottom-color: var(--vip-line); -webkit-backdrop-filter: none; backdrop-filter: none; }
    /* Nav becomes a full-screen overlay menu */
    .vip-nav {
        position: fixed; inset: 0; z-index: 99;
        flex-direction: column; align-items: center; justify-content: center; gap: 30px;
        background: rgba(10,10,11,0.98); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
        opacity: 0; visibility: hidden; transform: translateY(-10px);
        transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
    }
    .vip-header.menu-open .vip-nav { opacity: 1; visibility: visible; transform: none; transition: opacity .35s ease, transform .35s ease, visibility 0s; }
    .vip-nav a { font-size: 1.15rem; letter-spacing: 0.2em; opacity: 0.92; }
    .vip-nav .vip-nav-cta { margin-top: 8px; padding: 14px 34px; }
    .vip-split-row { grid-template-columns: 1fr; }
    .vip-split-media { min-height: 300px; }
    .vip-split-row--reverse .vip-split-media { order: -1; }
    .vip-aud-grid { grid-template-columns: 1fr; }
    .vip-svc-grid { grid-template-columns: 1fr; }
    .vip-fleet-grid { grid-template-columns: 1fr; }
    .vip-form-grid { grid-template-columns: 1fr; }
    .vip-footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (min-width: 901px) and (max-width: 1100px) {
    .vip-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    .vip-btn { width: 100%; justify-content: center; }
    .vip-hero-actions, .vip-cta-actions { width: 100%; }
    .vip-scroll-hint { display: none; }
}
