/* Velora Luxe — Transport site styles (self-contained, brand-consistent) */
:root{
  --gold:#C9A55C; --gold-light:#E8C97A; --navy:#080E1D; --navy-mid:#0F1A2E;
  --cream:#F7F3EC; --white:#FFFFFF; --gray:rgba(255,255,255,0.6);
}
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--navy); color:var(--white);
  font-family:'Inter',sans-serif; line-height:1.6;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.section-label{ display:block; color:var(--gold); font-size:11px; letter-spacing:4px; text-transform:uppercase; font-weight:600; margin-bottom:14px; }

/* buttons */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; font-family:'Inter',sans-serif; font-weight:700; font-size:14px; letter-spacing:0.3px; cursor:pointer; border:none; border-radius:6px; padding:14px 28px; transition:all .2s; text-align:center; }
.btn-gold{ background:var(--gold); color:var(--navy); }
.btn-gold:hover{ background:var(--gold-light); transform:translateY(-2px); box-shadow:0 12px 36px rgba(201,165,92,0.35); }
.btn-ghost{ background:transparent; color:var(--white); border:1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover{ border-color:var(--gold); color:var(--gold); }

/* ── NAV ── */
nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px clamp(18px,4vw,48px);
  background:rgba(8,14,29,0.85); backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(201,165,92,0.12);
}
.t-logo{ font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:var(--white); }
.t-logo span{ color:var(--gold); font-size:13px; letter-spacing:3px; text-transform:uppercase; display:block; margin-top:-2px; }
.t-links{ display:flex; align-items:center; gap:28px; list-style:none; }
.t-links > li > a, .t-dd-btn{
  color:rgba(255,255,255,0.78); font-size:14px; font-family:'Inter',sans-serif; font-weight:500;
  background:none; border:none; cursor:pointer; transition:color .2s; letter-spacing:.2px;
}
.t-links > li > a:hover, .t-dd-btn:hover{ color:var(--gold); }

/* Fleet dropdown */
.t-dd{ position:relative; }
.t-dd-menu{
  position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%) translateY(8px);
  min-width:190px; background:#0c1830; border:1px solid rgba(201,165,92,0.25);
  border-radius:12px; padding:8px; display:flex; flex-direction:column; gap:2px;
  box-shadow:0 24px 60px rgba(0,0,0,0.6); opacity:0; pointer-events:none; transition:opacity .2s, transform .2s; z-index:120;
}
.t-dd:hover .t-dd-menu, .t-dd.open .t-dd-menu{ opacity:1; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.t-dd-menu a{ display:block; padding:9px 14px; border-radius:8px; font-size:13.5px; color:rgba(255,255,255,0.8); transition:all .15s; }
.t-dd-menu a:hover{ background:rgba(201,165,92,0.12); color:var(--gold); }
.t-actions{ display:flex; align-items:center; gap:14px; }
.t-back{ font-size:12.5px; color:rgba(255,255,255,0.5); transition:color .2s; }
.t-back:hover{ color:var(--gold); }
.t-cta{ background:var(--gold); color:var(--navy); font-weight:700; font-size:13px; padding:10px 20px; border-radius:6px; transition:all .2s; }
.t-cta:hover{ background:var(--gold-light); transform:translateY(-1px); }
.t-burger{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.t-burger span{ width:24px; height:2px; background:var(--white); border-radius:2px; transition:.3s; }

/* mobile menu */
.t-mobile{ position:fixed; inset:0; z-index:99; background:rgba(8,14,29,0.98); backdrop-filter:blur(10px); display:none; flex-direction:column; align-items:center; justify-content:center; gap:22px; }
.t-mobile.open{ display:flex; }
.t-mobile a{ font-family:'Playfair Display',serif; font-size:24px; color:var(--white); }
.t-mobile a:hover{ color:var(--gold); }
.t-mobile .mlabel{ font-family:'Inter',sans-serif; font-size:11px; letter-spacing:3px; text-transform:uppercase; color:rgba(201,165,92,0.7); margin-top:6px; }
.t-mobile-close{ position:absolute; top:24px; right:26px; background:none; border:none; color:#fff; font-size:30px; cursor:pointer; }

/* ── HERO ── */
.t-hero{
  position:relative; min-height:92vh; display:flex; align-items:center;
  padding:120px clamp(20px,6vw,80px) 80px; overflow:hidden;
  background-color:#0a1322;
  /* Designed luxe background. To use a photo, set background-image to your URL. */
  background-image:
    radial-gradient(90% 80% at 85% 12%, rgba(201,165,92,0.22), transparent 55%),
    radial-gradient(80% 90% at 0% 100%, rgba(201,165,92,0.10), transparent 55%),
    linear-gradient(160deg,#0e1c34 0%, #080f1d 75%);
}
.t-hero::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 40%, rgba(8,14,29,0.6) 100%); pointer-events:none; }
.t-hero-inner{ position:relative; z-index:2; max-width:760px; }
.t-hero h1{ font-family:'Playfair Display',serif; font-size:clamp(40px,7vw,82px); line-height:1.02; margin:10px 0 0; letter-spacing:0.5px; }
.t-hero h1 em{ font-style:normal; color:var(--gold); }
.t-hero p{ margin-top:20px; font-size:clamp(15px,1.8vw,18px); color:rgba(255,255,255,0.72); max-width:560px; line-height:1.7; }
.t-hero-btns{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }

/* ── TRUST STRIP ── */
.t-trust{ background:var(--navy-mid); border-top:1px solid rgba(201,165,92,0.12); border-bottom:1px solid rgba(201,165,92,0.12); }
.t-trust-inner{ max-width:1180px; margin:0 auto; padding:30px clamp(20px,5vw,40px); display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.t-trust-item{ display:flex; align-items:center; gap:12px; }
.t-trust-item svg{ width:26px; height:26px; color:var(--gold); flex-shrink:0; }
.t-trust-item strong{ display:block; font-size:14px; color:var(--white); font-weight:600; }
.t-trust-item span{ font-size:12px; color:rgba(255,255,255,0.5); }

/* ── FLEET ── */
.t-fleet{ padding:clamp(60px,8vw,100px) clamp(20px,5vw,40px); max-width:1240px; margin:0 auto; }
.t-fleet-header{ text-align:center; margin-bottom:14px; }
.t-fleet-header h2{ font-family:'Playfair Display',serif; font-size:clamp(32px,4.5vw,52px); color:var(--white); line-height:1.12; }
.t-fleet-header p{ color:rgba(255,255,255,0.6); font-size:16px; max-width:560px; margin:14px auto 0; }
.fleet-filters{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin:34px 0 40px; }
.fleet-pill{
  background:rgba(201,165,92,0.08); border:1px solid rgba(201,165,92,0.3); color:var(--gold);
  font-size:13px; font-weight:600; font-family:'Inter',sans-serif; padding:9px 20px; border-radius:24px;
  cursor:pointer; transition:all .2s; letter-spacing:.3px;
}
.fleet-pill:hover{ background:rgba(201,165,92,0.18); }
.fleet-pill.active{ background:var(--gold); color:var(--navy); border-color:var(--gold); }

.fleet-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(330px,1fr)); gap:26px; }
.fleet-empty{ display:none; text-align:center; padding:50px 20px; color:rgba(255,255,255,0.6); }
.fleet-empty h3{ font-family:'Playfair Display',serif; color:var(--white); font-size:24px; margin-bottom:10px; }

/* vehicle card */
.veh-card{
  background:linear-gradient(160deg,#13243c,#0e1b2e);
  border:1px solid rgba(201,165,92,0.18); border-radius:16px; overflow:hidden;
  display:flex; flex-direction:column; transition:transform .25s, border-color .25s, box-shadow .25s;
}
.veh-card:hover{ transform:translateY(-5px); border-color:rgba(201,165,92,0.5); box-shadow:0 26px 60px -24px rgba(0,0,0,0.7); }
.veh-media{ position:relative; aspect-ratio:16/10; overflow:hidden; }
.veh-media img{ width:100%; height:100%; object-fit:cover; }
.veh-badge{ position:absolute; top:12px; left:12px; background:rgba(8,14,29,0.78); border:1px solid rgba(201,165,92,0.5); color:var(--gold); font-size:10.5px; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:5px 11px; border-radius:20px; backdrop-filter:blur(6px); }

/* designed placeholder (no photo) */
.veh-ph{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
  background:radial-gradient(120% 120% at 70% 10%, rgba(201,165,92,0.16), transparent 55%), linear-gradient(160deg,#16273f,#0d1a2c); }
.veh-ph.cat-suvs{ background:radial-gradient(120% 120% at 70% 10%, rgba(201,165,92,0.18), transparent 55%), linear-gradient(160deg,#17283f,#0c1828); }
.veh-ph.cat-sedans{ background:radial-gradient(120% 120% at 70% 10%, rgba(201,165,92,0.14), transparent 55%), linear-gradient(160deg,#142540,#0c182b); }
.veh-ph.cat-vans{ background:radial-gradient(120% 120% at 70% 10%, rgba(201,165,92,0.2), transparent 55%), linear-gradient(160deg,#19294040,#0e1b2e); }
.veh-ph-car{ width:62%; max-width:200px; height:auto; color:var(--gold); opacity:0.5; }
.veh-ph-name{ font-family:'Playfair Display',serif; font-size:15px; color:rgba(255,255,255,0.55); letter-spacing:.5px; }

/* ── card photo gallery (multiple images) ── */
.veh-gallery{ cursor:pointer; }
.veh-slide{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .5s ease; }
.veh-slide.active{ opacity:1; }
.veh-gallery::after{ content:''; position:absolute; left:0; right:0; bottom:0; height:42%; background:linear-gradient(to top, rgba(6,12,24,.5), transparent); pointer-events:none; opacity:0; transition:opacity .25s; }
.veh-gallery:hover::after{ opacity:1; }
.veh-count{ position:absolute; right:12px; bottom:12px; display:inline-flex; align-items:center; background:rgba(8,14,29,.72); border:1px solid rgba(255,255,255,.16); color:#fff; font-size:11px; font-weight:600; letter-spacing:.3px; padding:5px 10px; border-radius:20px; -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); pointer-events:none; z-index:2; }
.veh-arrow{ position:absolute; top:50%; transform:translateY(-50%); width:34px; height:34px; border-radius:50%; border:none; background:rgba(8,14,29,.6); color:#fff; font-size:20px; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .2s, background .2s, color .2s; -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); z-index:3; }
.veh-arrow.prev{ left:10px; }
.veh-arrow.next{ right:10px; }
.veh-gallery:hover .veh-arrow{ opacity:1; }
.veh-arrow:hover{ background:var(--gold); color:var(--navy); }
.veh-dots{ position:absolute; left:0; right:0; bottom:12px; display:flex; gap:6px; justify-content:center; z-index:3; }
.veh-dot{ width:7px; height:7px; border-radius:50%; border:none; padding:0; cursor:pointer; background:rgba(255,255,255,.45); transition:background .2s, transform .2s; }
.veh-dot.active{ background:var(--gold); transform:scale(1.25); }

/* ── full lightbox gallery ── */
.vlb{ position:fixed; inset:0; z-index:4000; display:flex; align-items:center; justify-content:center; gap:8px; padding:24px; background:rgba(4,9,20,.82); -webkit-backdrop-filter:blur(16px); backdrop-filter:blur(16px); opacity:0; pointer-events:none; transition:opacity .3s ease; }
.vlb.open{ opacity:1; pointer-events:auto; }
.vlb-stage{ position:relative; max-width:min(1100px,92vw); max-height:86vh; display:flex; align-items:center; justify-content:center; }
.vlb-img{ max-width:100%; max-height:86vh; width:auto; height:auto; border-radius:14px; box-shadow:0 30px 90px -20px rgba(0,0,0,.8); animation:vlbpop .35s cubic-bezier(.22,1,.36,1); }
@keyframes vlbpop{ from{ transform:scale(.96); opacity:0; } to{ transform:scale(1); opacity:1; } }
.vlb-count{ position:absolute; left:50%; bottom:14px; transform:translateX(-50%); background:rgba(8,14,29,.7); border:1px solid rgba(255,255,255,.16); color:#fff; font-size:12px; padding:5px 12px; border-radius:20px; -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); pointer-events:none; }
.vlb-arrow{ flex:0 0 auto; width:48px; height:48px; border-radius:50%; border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.08); color:#fff; font-size:26px; line-height:1; cursor:pointer; transition:background .2s, color .2s; }
.vlb-arrow:hover{ background:var(--gold); color:var(--navy); border-color:var(--gold); }
.vlb-close{ position:absolute; top:18px; right:20px; width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.08); color:#fff; font-size:17px; cursor:pointer; z-index:2; transition:background .2s; }
.vlb-close:hover{ background:rgba(255,255,255,.18); }
.vlb-dots{ position:absolute; left:0; right:0; bottom:18px; display:flex; gap:7px; justify-content:center; }
.vlb-dot{ width:8px; height:8px; border-radius:50%; border:none; cursor:pointer; background:rgba(255,255,255,.4); }
.vlb-dot.active{ background:var(--gold); }
@media (max-width:600px){
  .vlb{ padding:10px; gap:2px; }
  .vlb-arrow{ width:40px; height:40px; font-size:22px; }
  .vlb-close{ top:12px; right:12px; }
}

.veh-body{ padding:20px 20px 22px; display:flex; flex-direction:column; flex:1; }
.veh-head{ display:flex; align-items:baseline; justify-content:space-between; gap:10px; }
.veh-name{ font-family:'Playfair Display',serif; font-size:21px; color:var(--white); font-weight:600; line-height:1.15; }
.veh-year{ font-size:13px; color:var(--gold); font-weight:600; flex-shrink:0; }
.veh-tagline{ font-size:13.5px; color:rgba(255,255,255,0.6); margin:6px 0 12px; }
.veh-chips{ display:flex; flex-wrap:wrap; gap:7px; margin-bottom:14px; }
.veh-chip{ font-size:11px; color:rgba(255,255,255,0.7); background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:14px; padding:4px 10px; }
.veh-chip.elec{ color:var(--gold); border-color:rgba(201,165,92,0.4); }
.veh-features{ list-style:none; display:grid; gap:9px; margin:0 0 18px; }
.veh-features li{ position:relative; padding-left:20px; font-size:13px; color:rgba(255,255,255,0.78); line-height:1.4; }
.veh-features li::before{ content:''; position:absolute; left:0; top:7px; width:6px; height:6px; border-radius:50%; background:var(--gold); }
.veh-cta{ margin-top:auto; display:block; text-align:center; background:var(--gold); color:var(--navy); font-weight:700; font-size:13.5px; letter-spacing:.3px; padding:13px; border-radius:8px; transition:all .2s; }
.veh-cta:hover{ background:var(--gold-light); transform:translateY(-1px); }

/* ── WHY ── */
.t-why{ background:var(--navy-mid); padding:clamp(56px,7vw,90px) clamp(20px,5vw,40px); }
.t-why-inner{ max-width:1080px; margin:0 auto; text-align:center; }
.t-why-inner h2{ font-family:'Playfair Display',serif; font-size:clamp(30px,4vw,46px); color:var(--white); margin-bottom:12px; }
.t-why-inner > p{ color:rgba(255,255,255,0.6); max-width:600px; margin:0 auto 40px; }
.t-why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; text-align:left; }
.t-why-card{ background:rgba(255,255,255,0.03); border:1px solid rgba(201,165,92,0.18); border-radius:14px; padding:26px 24px; }
.t-why-card svg{ width:32px; height:32px; color:var(--gold); margin-bottom:14px; }
.t-why-card h3{ font-family:'Playfair Display',serif; font-size:19px; color:var(--white); margin-bottom:8px; }
.t-why-card p{ font-size:14px; color:rgba(255,255,255,0.62); line-height:1.6; }

/* ── CTA BAND ── */
.t-cta-band{ position:relative; overflow:hidden; padding:clamp(56px,7vw,90px) clamp(20px,5vw,40px); text-align:center;
  background:radial-gradient(110% 130% at 50% 0%, rgba(201,165,92,0.18), transparent 60%), linear-gradient(160deg,#0c1830,#0a1422); }
.t-cta-band h2{ font-family:'Playfair Display',serif; font-size:clamp(30px,4.5vw,52px); color:var(--white); margin-bottom:14px; }
.t-cta-band p{ color:rgba(255,255,255,0.65); max-width:520px; margin:0 auto 28px; font-size:16px; }

/* ── FOOTER ── */
footer{ background:var(--navy); border-top:1px solid rgba(201,165,92,0.12); padding:48px clamp(20px,5vw,40px) 30px; }
.t-foot-inner{ max-width:1080px; margin:0 auto; display:flex; flex-wrap:wrap; gap:24px; justify-content:space-between; align-items:flex-start; }
.t-foot-brand .t-logo{ font-size:24px; }
.t-foot-brand p{ font-size:13px; color:rgba(255,255,255,0.5); max-width:320px; margin-top:12px; line-height:1.7; }
.t-foot-links{ display:flex; flex-direction:column; gap:10px; }
.t-foot-links a{ font-size:14px; color:rgba(255,255,255,0.65); transition:color .2s; }
.t-foot-links a:hover{ color:var(--gold); }
.t-foot-bottom{ max-width:1080px; margin:30px auto 0; padding-top:20px; border-top:1px solid rgba(255,255,255,0.08); font-size:12px; color:rgba(255,255,255,0.35); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }

/* ── fade-up ── */
.fade-up{ opacity:0; transform:translateY(28px); transition:opacity .6s ease, transform .6s ease; }
.fade-up.visible{ opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width:860px){
  .t-links, .t-back{ display:none; }
  .t-burger{ display:flex; }
  .t-trust-inner{ grid-template-columns:1fr 1fr; }
  .t-why-grid{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  .fleet-grid{ grid-template-columns:1fr; }
  .t-trust-inner{ grid-template-columns:1fr; }
  .t-hero{ min-height:88vh; }
  .t-foot-inner{ flex-direction:column; }
}
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  .fade-up{ opacity:1; transform:none; transition:none; }
}
