/* ============================================================
   Sindhu Transport — premium logistics theme
   Design tokens
   ============================================================ */
:root {
  --ink: #ffffff;
  --ink-2: #f2f7fc;
  --ink-3: #e8f2fa;
  --line: rgba(15, 27, 45, 0.10);
  --text: #0f1b2d;
  --muted: #56687f;
  --gold: #0ea5e9;
  --gold-2: #2563eb;
  --gold-soft: rgba(14, 165, 233, 0.10);
  --grad-gold: linear-gradient(120deg, #38bdf8, #2563eb);
  --grad-panel: linear-gradient(160deg, #ffffff, #f7fafd);
  --shadow: 0 24px 60px -28px rgba(15, 27, 45, 0.35);
  --shadow-gold: 0 18px 40px -18px rgba(14, 165, 233, 0.55);
  --r: 18px;
  --r-lg: 26px;
  --maxw: 1180px;
  --nav-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Sora", system-ui, sans-serif; line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; color: var(--muted); }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.section--alt { background: linear-gradient(180deg, var(--ink), var(--ink-2) 45%, var(--ink)); }
.card { box-shadow: 0 10px 30px -24px rgba(15,27,45,.35); }

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-soft);
  border: 1px solid rgba(14,165,233,.25); border-radius: 999px;
  padding: 7px 15px; margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(14,165,233,.18); }
.head { max-width: 660px; margin-bottom: 52px; }
.head--center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.06rem; }
.gold { color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: .95rem;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--grad-gold); color: #ffffff; box-shadow: var(--shadow-gold); }
.btn--ghost { border-color: var(--line); background: rgba(15,27,45,.03); color: var(--text); }
.btn--ghost:hover { border-color: rgba(14,165,233,.5); background: var(--gold-soft); }
.btn--block { width: 100%; }

.card {
  background: var(--grad-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(14,165,233,.35); box-shadow: var(--shadow); }

.grid { display: grid; gap: 20px; }
.grid--1 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(212px, 1fr)); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  height: 66px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(15,27,45,.25);
}
.nav__inner { display: flex; align-items: center; gap: 18px; width: 100%; }
.brand { display: flex; align-items: center; color: var(--text); flex: 0 0 auto; }
.brand svg, .brand img { height: 44px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  font-size: .93rem; font-weight: 500; color: var(--muted);
  padding: 9px 13px; border-radius: 10px; transition: color .2s ease, background .2s ease;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--text); background: rgba(14,165,233,.09); }
.nav__cta { margin-left: 10px; }
.nav__track { margin-left: 10px; font-size: .86rem; padding: 10px 18px; }
.nav__track:hover { border-color: rgba(14,165,233,.5); background: var(--gold-soft); }
.nav__toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(15,27,45,.03); cursor: pointer;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav__toggle span { width: 19px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 12px; right: 12px;
    flex-direction: column; align-items: stretch; gap: 2px; padding: 14px;
    background: #ffffff; border: 1px solid var(--line); border-radius: var(--r);
    box-shadow: var(--shadow); transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 12px 14px; }
  .nav__cta { margin: 8px 0 0; }
}

/* ---------- hero ---------- */
.hero { position: relative; padding: calc(var(--nav-h) + 60px) 0 90px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg::before {
  content: ""; position: absolute; width: 720px; height: 720px; top: -280px; right: -180px;
  background: radial-gradient(circle, rgba(14,165,233,.28), transparent 62%); filter: blur(20px);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000, transparent 75%);
  opacity: .5;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero h1 span { display: block; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: 1.1rem; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 34px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 30px 44px; padding-top: 26px; border-top: 1px solid var(--line); }
.stat__num { font-family: "Sora", sans-serif; font-size: 1.9rem; font-weight: 700; color: var(--text); line-height: 1; }
.stat__label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

.hero__media { position: relative; }
.phone {
  position: relative; border-radius: 34px; overflow: hidden; border: 1px solid rgba(15,27,45,.12);
  background: #0b1220; box-shadow: 0 40px 90px -34px rgba(0,0,0,.95), 0 0 0 1px rgba(14,165,233,.14);
  aspect-ratio: 9 / 16; max-height: 560px; margin-inline: auto; width: min(100%, 320px);
}
.phone video { width: 100%; height: 100%; object-fit: cover; }
.phone::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,13,22,.35), transparent 34%, rgba(8,13,22,.75));
}
.hero__badge {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: 16px;
  padding: 12px 16px; backdrop-filter: blur(10px); box-shadow: var(--shadow);
  font-size: .82rem; font-weight: 600; font-family: "Sora", sans-serif;
}
.hero__badge small { display: block; font-weight: 500; color: var(--muted); font-size: .72rem; }
.hero__badge--a { left: -6px; bottom: 78px; animation: float 6s ease-in-out infinite; }
.hero__badge--b { right: -6px; top: 54px; animation: float 6s ease-in-out infinite 1.6s; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 4px rgba(61,220,132,.18); flex: none; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__media { order: -1; }
  .hero__badge--a { left: 0; }
  .hero__badge--b { right: 0; }
}

/* Mobile: no hero video — keep the top of the page light and fast */
@media (max-width: 720px) {
  .hero { padding-top: calc(var(--nav-h) + 8px); padding-bottom: 54px; }
  .hero__media { display: none; }
  .hero__inner { gap: 0; }
  .hero__stats { gap: 22px 30px; }
  .brand img { height: 38px; }
}

/* ---------- marquee ---------- */
.ticker { border-block: 1px solid var(--line); background: var(--ink-2); overflow: hidden; padding: 16px 0; }
.ticker__track { display: flex; gap: 54px; width: max-content; animation: slide 28s linear infinite; }
.ticker span { font-family: "Sora", sans-serif; font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.ticker span::before { content: "◆"; color: var(--gold); margin-right: 16px; font-size: .6rem; vertical-align: middle; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about__media .reel { aspect-ratio: 9/14; }
.about__media .reel:nth-child(2) { margin-top: 38px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; color: var(--muted); }
.checks svg { flex: none; margin-top: 3px; color: var(--gold); }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- reels ---------- */
.reel {
  position: relative; border-radius: 20px; overflow: hidden; background: #05080e;
  border: 1px solid var(--line); aspect-ratio: 9 / 15;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.reel:hover { transform: translateY(-8px) scale(1.012); border-color: rgba(14,165,233,.4); box-shadow: var(--shadow); }
.reel video { width: 100%; height: 100%; object-fit: cover; }
.reel__tag {
  position: absolute; left: 14px; bottom: 14px; right: 14px; z-index: 2;
  font-family: "Sora", sans-serif; font-size: .85rem; font-weight: 600;
}
.reel__tag small { display: block; font-weight: 400; font-size: .74rem; color: #dbe6f2; }
.reel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(5,8,14,.9), transparent 46%);
}
.reels { grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); }

/* ---------- services ---------- */
.svc__icon {
  width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center;
  background: var(--gold-soft); border: 1px solid rgba(14,165,233,.24); color: var(--gold); margin-bottom: 18px;
}
.card p:last-child { margin-bottom: 0; }
.card--wide { grid-column: span 2; }
@media (max-width: 700px) { .card--wide { grid-column: span 1; } }

/* ---------- process ---------- */
.steps { counter-reset: s; display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.step { position: relative; padding-top: 26px; }
.step__no {
  font-family: "Sora", sans-serif; font-size: 2.4rem; font-weight: 800; line-height: 1;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .95;
}
.step__bar { height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--gold), transparent); margin: 16px 0 18px; }

/* ---------- testimonials ---------- */
.quote { font-size: 1rem; color: var(--text); }
.quote::before { content: "“"; display: block; font-family: "Sora", serif; font-size: 3rem; line-height: .6; color: var(--gold); margin-bottom: 14px; }
.who { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-gold); color: #ffffff; font-family: "Sora", sans-serif; font-weight: 700; flex: none; }
.who b { display: block; font-size: .93rem; font-weight: 600; }
.who span { font-size: .8rem; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 3px; font-size: .85rem; margin-bottom: 12px; }

/* ---------- faq ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.acc { border: 1px solid var(--line); border-radius: var(--r); background: var(--grad-panel); overflow: hidden; transition: border-color .3s ease; }
.acc.is-open { border-color: rgba(14,165,233,.38); }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 22px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: "Sora", sans-serif; font-size: 1rem; font-weight: 600; color: var(--text);
}
.acc__btn i { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-style: normal; color: var(--gold); transition: transform .3s ease, background .3s ease; }
.acc.is-open .acc__btn i { transform: rotate(45deg); background: var(--gold-soft); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc__panel p { padding: 0 22px 20px; margin: 0; }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: .95fr 1.05fr; gap: 44px; align-items: start; }
.info { display: grid; gap: 14px; margin-top: 26px; }
.info a, .info div {
  display: flex; gap: 14px; align-items: center; padding: 16px 18px;
  border: 1px solid var(--line); border-radius: var(--r); background: var(--grad-panel);
  transition: border-color .3s ease, transform .3s ease;
}
.info a:hover { border-color: rgba(14,165,233,.45); transform: translateX(4px); }
.info i { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); flex: none; }
.info b { display: block; font-family: "Sora", sans-serif; font-size: .96rem; }
.info small { color: var(--muted); font-size: .82rem; }

form { display: grid; gap: 14px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 7px; }
input, select, textarea {
  width: 100%; padding: 13px 15px; border-radius: 13px; font: inherit; font-size: .95rem;
  color: var(--text); background: rgba(15,27,45,.03); border: 1px solid var(--line);
  transition: border-color .25s ease, background .25s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); background: rgba(14,165,233,.06); }
select option { background: var(--ink-2); }
textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .82rem; color: var(--muted); margin: 0; }
.form-msg { display: none; padding: 13px 16px; border-radius: 13px; font-size: .9rem; border: 1px solid rgba(61,220,132,.35); background: rgba(61,220,132,.1); color: #b6f5d3; }
.form-msg.is-shown { display: block; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } .row { grid-template-columns: 1fr; } }

/* ---------- cta band ---------- */
.band {
  border-radius: var(--r-lg); padding: clamp(32px, 5vw, 56px);
  background: linear-gradient(120deg, rgba(14,165,233,.16), rgba(37,99,235,.05)), var(--ink-3);
  border: 1px solid rgba(14,165,233,.28);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px;
}
.band h2 { margin-bottom: 6px; }
.band p { margin: 0; }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); background: var(--ink-2); padding: 60px 0 26px; }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.foot h4 { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.foot li { margin-bottom: 9px; }
.foot li a { color: var(--muted); font-size: .93rem; transition: color .2s; }
.foot li a:hover { color: var(--gold); }
.foot__bar { margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .84rem; color: var(--muted); }
@media (max-width: 760px) { .foot__grid { grid-template-columns: 1fr 1fr; } }

/* ---------- floating action buttons ---------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad-gold); color: #ffffff; font-family: "Sora", sans-serif; font-weight: 700; font-size: .9rem;
  padding: 13px 20px; border-radius: 999px; box-shadow: var(--shadow-gold);
  transition: transform .25s ease;
}
.fab:hover { transform: translateY(-3px); }
.fab--wa {
  bottom: 82px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 14px 34px -12px rgba(37, 211, 102, 0.55);
}
@media (max-width: 560px) { .fab span { display: none; } .fab { padding: 15px; } .fab--wa { bottom: 76px; } }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .ticker__track, .hero__badge { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- routes ---------- */
.routes { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.route {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px; font-size: .92rem; font-weight: 500;
  color: var(--text); background: var(--grad-panel); border: 1px solid var(--line);
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.route::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.route:hover { border-color: rgba(14,165,233,.45); background: var(--gold-soft); transform: translateY(-3px); }
@media (max-width: 560px) { .route { font-size: .84rem; padding: 9px 14px; } }


/* ---------- quick quote form (hero) ---------- */
.quickform {
  margin-top: -34px; position: relative; z-index: 3;
}
.quickform__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 30px); box-shadow: 0 30px 70px -40px rgba(15,27,45,.45);
}
.quickform__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; margin-bottom: 18px; }
.quickform__head h3 { margin: 0; font-size: 1.15rem; }
.quickform__head p { margin: 0; font-size: .9rem; }
.quickform__grid { display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr); align-items: end; }
.quickform__grid .field--wide { grid-column: span 2; }
@media (max-width: 900px) { .quickform__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .quickform__grid { grid-template-columns: 1fr; } .quickform__grid .field--wide { grid-column: span 1; } .quickform { margin-top: 0; } }
