/* ==========================================================
   Vintage Car Bharatpur — Responsive Single Page
   Unique premium look (dark + gold), mobile-first.
   ========================================================== */

:root{
  --bg:#0b0b0f;
  --panel:#11111a;
  --panel2:#0f0f16;
  --text:#f2f2f5;
  --muted:#b8b8c6;
  --accent:#d7b05a;
  --accent2:#9c6a10;
  --accentRgb: 215,176,90;
  
  --line:rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 22px;
  --radius2: 16px;
  --container: 1120px;
}

/* Premium typography */
h1,h2,h3,.section__title{
  font-family: 'Playfair Display', ui-serif, Georgia, 'Times New Roman', serif;
  letter-spacing: .2px;
}
.brand strong{
  font-family: 'Playfair Display', ui-serif, Georgia, 'Times New Roman', serif;
}
.brand__tag{
  display:block;
  margin-top: 2px;
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(var(--accentRgb),.10), transparent 55%),
    radial-gradient(900px 600px at 80% 20%, rgba(185,143,45,.10), transparent 52%),
    radial-gradient(800px 600px at 50% 90%, rgba(255,255,255,.05), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
}

/* Subtle luxury background texture */
body::before{
  content:"";
  position:fixed;
  inset:-2px;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(var(--accentRgb),.18), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(255,255,255,.06), transparent 55%),
    radial-gradient(900px 650px at 70% 90%, rgba(var(--accentRgb),.12), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 12px);
  filter: blur(.0px);
  opacity:.9;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
strong{color:var(--text)}
.container{width:min(var(--container), calc(100% - 32px)); margin-inline:auto}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 14px; border-radius:999px;
  background:#fff; color:#000; z-index:1000;
}

.sr-only{
  position:absolute!important;
  width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,11,15,.70);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar[data-elevate="true"]{
  background: rgba(11,11,15,.92);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.topbar__inner{
  display:flex; align-items:center; gap:14px;
  padding:12px 0;
}
.brand{display:flex; align-items:center; gap:10px; min-width: 0}
.brand__mark{
  width:38px; height:38px; color: var(--accent);
  display:grid; place-items:center;
}
.brand__mark svg{width:38px;height:38px}
.brand__text{display:flex; flex-direction:column; gap:1px; min-width:0}
.brand__name{
  font-weight:760; letter-spacing:.2px;
  font-size:14px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.brand__sub{
  font-size:12px; color:var(--muted);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}

.nav{margin-left:auto; display:flex; align-items:center; gap:12px}
.nav__toggle{
  display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color:var(--text);
}
.nav__toggleLines{
  width:18px; height:12px; position:relative; display:block;
}
.nav__toggleLines::before,
.nav__toggleLines::after{
  content:"";
  position:absolute; left:0; right:0;
  height:2px; border-radius:2px;
  background: currentColor;
}
.nav__toggleLines::before{top:0}
.nav__toggleLines::after{bottom:0}
.nav__menu{
  position:absolute;
  top:64px; right:16px;
  background: rgba(17,17,26,.92);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding:10px;
  display:none;
  flex-direction:column;
  gap:6px;
  min-width: 180px;
  box-shadow: var(--shadow);
}
.nav__menu a{
  padding:10px 12px; border-radius:14px;
  color:var(--text);
}
.nav__menu a:hover{background:rgba(255,255,255,.06)}
.nav__menu[data-open="true"]{display:flex}

.topbar__cta{display:flex; gap:10px; align-items:center}
@media (max-width: 900px){
  .topbar__cta{display:none}
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:11px 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:650;
  letter-spacing:.2px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(var(--accentRgb),.55)}
.btn:active{transform: translateY(0)}
.btn--primary{
  background: linear-gradient(135deg, rgba(var(--accentRgb),.95), rgba(185,143,45,.95));
  border-color: rgba(var(--accentRgb),.85);
  color:#0b0b0f;
}
.btn--ghost{background: rgba(255,255,255,.05)}
.btn--link{
  border:0; background:transparent; padding:8px 0;
  color: var(--accent);
}
.btn--link:hover{transform:none; text-decoration: underline}

/* Hero */
.hero{position:relative; min-height: 78vh; display:grid; align-items:center; overflow:hidden}
.hero__img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(11,11,15,.92) 0%, rgba(11,11,15,.55) 50%, rgba(11,11,15,.22) 100%),
    radial-gradient(900px 600px at 25% 45%, rgba(var(--accentRgb),.20), transparent 60%),
    radial-gradient(700px 500px at 85% 30%, rgba(185,143,45,.18), transparent 62%);
}
.hero__content{
  position:relative;
  padding: 82px 0 54px;
}
.hero__badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:9px 12px;
  border-radius:999px;
  background: rgba(17,17,26,.55);
  border:1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-size:13px;
}
.dot{
  width:9px;height:9px;border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(var(--accentRgb),.12);
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -.6px;
  line-height:1.05;
}
.hero__lead{
  margin:0 0 18px;
  max-width: 58ch;
  color: rgba(255,255,255,.88);
  font-size: 16px;
}
.hero__actions{
  display:flex; flex-wrap:wrap; gap:12px; align-items:center;
}
.hero__stats{
  margin-top: 26px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 560px;
}
.stat{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(17,17,26,.55);
}
.stat__kicker{color:var(--muted); font-size:13px}
.stat__value{font-weight:760}
@media (min-width: 760px){
  .hero__stats{grid-template-columns: 1fr 1fr 1fr; max-width: 900px}
  .stat{flex-direction:column; align-items:flex-start; gap:4px}
  .hero__lead{font-size:18px}
}
@media (min-width: 901px){
  .nav__toggle{display:none}
  .nav__menu{
    position:static; display:flex; flex-direction:row; gap:14px;
    background:transparent; border:0; box-shadow:none; padding:0; min-width:0;
  }
  .nav__menu a{padding:8px 10px}
  .nav__menu a:hover{background: rgba(255,255,255,.06)}
  .topbar__cta{display:flex}
}

/* Sections */
.section{padding: 72px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{
  display:flex; flex-direction:column; gap:10px;
  margin-bottom: 22px;
}
.section__head h2{
  margin:0;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -.4px;
}
.section__head p{
  margin:0;
  color: var(--muted);
  max-width: 70ch;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.card{
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  background: rgba(17,17,26,.70);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(400px 200px at 20% 10%, rgba(var(--accentRgb),.18), transparent 55%);
  pointer-events:none;
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color: rgba(255,255,255,.82)}
@media (min-width: 760px){
  .cards{grid-template-columns: 1fr 1fr}
}
@media (min-width: 1040px){
  .cards{grid-template-columns: 1fr 1fr 1fr 1fr}
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gallery__item{
  padding:0; border:0; background: transparent;
  border-radius: 18px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
}
.gallery__item::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55));
  opacity:.55;
  transition: opacity .15s ease;
}
.gallery__item:hover::after{opacity:.30}
.gallery__item img{
  width:100%; height:100%;
  object-fit:cover;
  aspect-ratio: 1 / 1;
  transform: scale(1.02);
  transition: transform .18s ease;
}
.gallery__item:hover img{transform: scale(1.05)}
@media (min-width: 760px){
  .gallery{grid-template-columns: 1fr 1fr 1fr}
}

/* Steps */
.steps{
  list-style:none;
  padding:0; margin:0;
  display:grid;
  gap: 14px;
}
.step{
  display:flex; gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(17,17,26,.70);
  position:relative;
  overflow:hidden;
}
.step::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(500px 220px at 10% 0%, rgba(185,143,45,.14), transparent 60%);
  pointer-events:none;
}
.step__num{
  width:42px; height:42px; border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(var(--accentRgb),.14);
  border:1px solid rgba(var(--accentRgb),.35);
  color: var(--accent);
  font-weight: 850;
}
.step h3{margin:0 0 6px}
.step p{margin:0; color: rgba(255,255,255,.82)}
@media (min-width: 900px){
  .steps{grid-template-columns: 1fr 1fr 1fr}
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.contact__card{
  padding: 18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(17,17,26,.70);
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}
.contact__card h3{margin:0 0 10px}
.contact__line{
  margin: 8px 0;
  display:flex; flex-wrap:wrap; gap:8px;
  color: rgba(255,255,255,.86);
}
.contact__line span{color: var(--muted); min-width: 92px}
.contact__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px}
.note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  border:1px dashed rgba(var(--accentRgb),.35);
  background: rgba(var(--accentRgb),.07);
}
.note p{margin:0; color: rgba(255,255,255,.88)}

/* Form */
.form{display:flex; flex-direction:column; gap:12px}
.form__row{display:grid; grid-template-columns: 1fr; gap:12px}
label{display:flex; flex-direction:column; gap:6px; font-weight:650}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(var(--accentRgb),.55)}
.form__hint{margin:0; color: var(--muted); font-size: 13px}
@media (min-width: 760px){
  .contact{grid-template-columns: 1fr 1fr}
  .form__row{grid-template-columns: 1fr 1fr}
}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.06);
  padding: 26px 0;
}
.footer__inner{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap: 16px; flex-wrap:wrap;
}
.footer__brand{font-weight:850}
.footer__sub{color: var(--muted); font-size: 13px; margin-top: 4px}
.footer__links{display:flex; gap:14px; flex-wrap:wrap; color: var(--muted)}
.footer__links a:hover{color: var(--text)}

/* Floating button */
.fab{
  position:fixed; right:16px; bottom:16px;
  display:flex; align-items:center; gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  border:1px solid rgba(var(--accentRgb),.45);
  background: rgba(17,17,26,.88);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor:pointer;
}
.fab__text{font-weight:750}
@media (min-width: 760px){
  .fab{right:20px; bottom:20px}
}

/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  display:none;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(8px);
  z-index:80;
  padding: 18px;
}
.lightbox[data-open="true"]{display:grid; place-items:center}
.lightbox__img{
  width: min(100%, 1100px);
  max-height: 82vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  object-fit: contain;
  background: rgba(17,17,26,.80);
}
.lightbox__close{
  position:absolute; top:14px; right:14px;
  width:46px; height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(17,17,26,.72);
  color: var(--text);
  font-size: 28px;
  cursor:pointer;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn, .gallery__item img{transition:none}
}


/* -----------------------
   Occasions marquee
------------------------*/
.card--icon .card__icon{
  width:46px;height:46px;
  border-radius:14px;
  display:grid;place-items:center;
  background: rgba(var(--accentRgb), .12);
  border:1px solid rgba(var(--accentRgb), .22);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  margin-bottom:10px;
  font-size:22px;
}

.marquee{
  margin-top:18px;
  overflow:hidden;
  border-radius:999px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}
.marquee__track{
  display:flex;
  gap:14px;
  padding:10px 14px;
  width:max-content;
  animation: marquee 22s linear infinite;
}
.marquee__track span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
  color: var(--text);
  font-weight:600;
  font-size:14px;
  white-space:nowrap;
}
.marquee__track span::before{
  content:"";
  width:8px;height:8px;border-radius:99px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(var(--accentRgb), .18);
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* -----------------------
   Split layout (Decor)
------------------------*/
.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}
.split__media{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  position:relative;
}
.split__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  min-height: 340px;
  filter: saturate(1.05) contrast(1.02);
}
.split__media::after{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(500px 220px at 20% 10%, rgba(var(--accentRgb), .20), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.40));
  pointer-events:none;
}
.split__content{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding:22px;
}
.bullets{
  margin:0 0 14px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.bullets li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: var(--text);
}
.bullets li::before{
  content:"✓";
  color: var(--accent);
  font-weight:900;
  margin-top:1px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(var(--accentRgb), .10);
  border:1px solid rgba(var(--accentRgb), .18);
  color: var(--text);
  font-weight:700;
}
.split__actions{ margin-top:14px; }

@media (max-width: 860px){
  .split{ grid-template-columns:1fr; }
  .split__media img{ min-height: 240px; }
}

/* -----------------------
   Theme switcher
------------------------*/
.btn--icon{
  display:inline-flex;
  gap:10px;
  align-items:center;
}
.btn__label{ display:inline-block; }
@media (max-width: 860px){
  .btn__label{ display:none; }
}

.theme{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  display:none;
  align-items:flex-end;
  justify-content:center;
  padding:16px;
  z-index: 80;
}
.theme[data-open="true"]{ display:flex; }
.theme__panel{
  width:min(640px, 100%);
  border-radius: 26px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,18,28,.98), rgba(13,13,20,.98));
  box-shadow: 0 28px 120px rgba(0,0,0,.65);
  padding:18px;
  position:relative;
}
.theme__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.theme__head h3{
  margin:0;
  font-size:18px;
  letter-spacing:.3px;
}
.theme__close{
  width:40px;height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size:22px;
  cursor:pointer;
}
.theme__desc{
  margin:10px 0 14px;
  color: var(--muted);
}
.theme__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}
.theme__swatch{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-weight:800;
  cursor:pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.theme__swatch:hover{
  transform: translateY(-1px);
  border-color: rgba(var(--accentRgb), .45);
  background: rgba(255,255,255,.07);
}
.theme__dot{
  width:14px;height:14px;
  border-radius:99px;
  background: var(--swatch);
  box-shadow: 0 0 0 5px rgba(255,255,255,.08);
}
.theme__custom{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.theme__label{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-weight:700;
}
.theme__label input{
  width:52px;height:40px;
  padding:0;
  border:none;
  background:transparent;
}
.theme__reset{ white-space:nowrap; }

@media (max-width: 520px){
  .theme__grid{ grid-template-columns:1fr; }
  .theme__panel{ border-radius:22px; }
}

.footer__small{
  margin-top: 8px;
  color: var(--muted);
  font-size: .9rem;
}


/* -----------------------
   Service Area section
------------------------*/
.areaGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 760px){
  .areaGrid{ grid-template-columns: 1fr 1fr; align-items: stretch; }
}
.chipWrap{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 12px;
}
.seoCopy p{
  color: rgba(255,255,255,.86);
}
