/* ==========================================================================
   AL Group — Transport & Logistics
   Design tokens
   ========================================================================== */
:root {
  /* Color refresh: warmer, richer navy + a more saturated signage amber —
     same highway-at-night identity, less flat-corporate-blue. */
  --ink-navy: #0A1526;
  --deep-navy: #12294D;
  --deep-navy-2: #1B3B6E;
  --steel: #3E5C76;
  --steel-100: #E9ECEE;
  --amber: #F2A200;
  --amber-dark: #B8720A;
  --amber-bright: #FFB627;
  --signal-orange: #E24E00;
  --paper: #F5F3EF;
  --white: #FFFFFF;
  --slate-800: #1C2430;
  --slate-700: #2B3444;
  --slate-500: #62707F;
  --slate-300: #A9B4BD;
  --border: #DEE0DA;
  --success: #1E8E5A;

  --hero-gradient: radial-gradient(120% 140% at 15% 0%, #16305C 0%, var(--deep-navy) 38%, var(--ink-navy) 78%);
  --dark-gradient: radial-gradient(140% 160% at 100% 0%, rgba(27, 59, 110, 0.55) 0%, transparent 55%), var(--ink-navy);

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --container: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-card: 0 1px 2px rgba(10, 21, 38, 0.07), 0 10px 28px -12px rgba(10, 21, 38, 0.22);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: 0.005em; color: var(--ink-navy); }
p { margin: 0; }
input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--signal-orange);
  display: inline-block;
}

.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--dark-gradient); color: var(--steel-100); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--paper-alt { background: var(--white); }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); line-height: 1.08; margin-top: 10px; }
.section-head p { margin-top: 14px; font-size: 17px; color: var(--slate-500); }
.section--dark .section-head p { color: var(--slate-300); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--amber); color: var(--ink-navy); }
.btn--primary:hover { background: var(--amber-dark); }
.btn--outline { border-color: rgba(255,255,255,0.35); color: var(--white); background: transparent; }
.btn--outline:hover { border-color: var(--white); }
.btn--outline-dark { border-color: var(--deep-navy); color: var(--deep-navy); background: transparent; }
.btn--outline-dark:hover { background: var(--deep-navy); color: var(--white); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ==========================================================================
   Top utility bar + header
   ========================================================================== */
.topbar {
  background: var(--ink-navy);
  color: var(--slate-300);
  font-family: var(--font-mono);
  font-size: 12.5px;
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--amber); }

.topbar__support { display: inline-flex; align-items: center; gap: 7px; color: var(--slate-300); }
.topbar__support svg { width: 13px; height: 13px; stroke: var(--amber); flex-shrink: 0; }
.topbar__support strong { color: var(--white); font-weight: 600; }
.topbar__support:hover strong { color: var(--amber); }

.topbar__modes { display: none; align-items: center; gap: 16px; margin: 0; }
.topbar__mode { display: inline-flex; align-items: center; gap: 5px; color: var(--slate-300); }
.topbar__mode svg { width: 13px; height: 13px; stroke: var(--amber); flex-shrink: 0; }
.topbar__mode:not(:last-child)::after { content: ''; }

.topbar__track { display: inline-flex; align-items: center; gap: 4px; }
.topbar__track::after { content: '→'; transition: transform 0.15s ease; }
.topbar__track:hover::after { transform: translateX(3px); }

@media (min-width: 640px) {
  .topbar__modes { display: flex; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 40px; height: 40px;
  background: var(--deep-navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand__mark--logo { background: var(--ink-navy); overflow: hidden; padding: 2px; }
.brand__mark--logo img { width: 100%; height: 100%; object-fit: contain; }
.site-header .brand__mark { width: auto; height: 48px; border-radius: 0; }
.site-header .brand__mark--logo { background: none; padding: 0; overflow: visible; }
.site-header .brand__mark--logo img { width: auto; height: 100%; object-fit: contain; }
.brand__name { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--ink-navy); line-height: 1; }
.brand__tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; color: var(--slate-500); text-transform: uppercase; }

.nav__links { display: none; align-items: center; gap: 30px; }
.nav__links a { font-size: 14.5px; font-weight: 600; color: var(--slate-700); position: relative; padding: 4px 0; }
.nav__links a:hover { color: var(--deep-navy); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { display: none; align-items: center; gap: 12px; }

.nav__toggle {
  display: inline-flex;
  background: none; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 8px; align-items: center; justify-content: center;
}
.nav__toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-menu.is-open { display: block; }
.mobile-menu__inner { padding: 14px 0 22px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  padding: 12px 4px; font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--steel-100);
}
.mobile-menu__cta { margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: flex; }
  .nav__toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ==========================================================================
   Hero — signature route-line element
   ========================================================================== */
.hero {
  background: var(--hero-gradient);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
}

/* ==========================================================================
   Hero background — parallax highway (two lanes of silhouettes moving in
   opposite directions, plus scrolling lane markings). Pure CSS/SVG, no
   video file needed, loops seamlessly.
   ========================================================================== */
.hero__bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }

.hero__road-layer { position: absolute; left: 0; width: 100%; overflow: hidden; }
.hero__road-layer--back  { bottom: 34%; height: 44px; opacity: 0.28; filter: blur(0.3px); }
.hero__road-layer--front { bottom: 9%;  height: 64px; opacity: 0.5; }

.hero__road-track {
  display: flex; align-items: flex-end; gap: 70px; width: max-content;
  will-change: transform;
}
.hero__road-track--back  { animation: road-scroll-ltr 42s linear infinite; }
.hero__road-track--front { animation: road-scroll-rtl 24s linear infinite; }
@keyframes road-scroll-ltr { from { transform: translateX(-50%); } to { transform: translateX(0%); } }
@keyframes road-scroll-rtl { from { transform: translateX(0%); } to { transform: translateX(-50%); } }

.hero__road-layer--back .veh  { width: 70px; height: auto; fill: var(--slate-300); }
.hero__road-layer--front .veh { width: 104px; height: auto; fill: var(--amber-bright); }

.hero__road-lines {
  position: absolute; left: 0; right: 0; bottom: 5.5%; height: 3px;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.5) 0 26px, transparent 26px 52px);
  animation: lane-scroll 1.6s linear infinite;
  opacity: 0.4;
}
@keyframes lane-scroll { from { background-position-x: 0; } to { background-position-x: -52px; } }

.hero__bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,21,38,0.94) 0%, rgba(10,21,38,0.75) 42%, rgba(10,21,38,0.4) 78%, rgba(10,21,38,0.2) 100%),
    linear-gradient(180deg, rgba(10,21,38,0.15) 0%, rgba(10,21,38,0.3) 55%, rgba(10,21,38,0.85) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero__road-track { animation: none; }
  .hero__road-lines { animation: none; }
}
@media (max-width: 767px) {
  .hero__road-layer--back { display: none; }
}

.hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}
.hero__copy { max-width: 640px; }
.hero__copy .eyebrow { color: var(--amber); }
.hero__copy h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.02;
  margin-top: 14px;
  letter-spacing: 0.005em;
}
.hero__copy h1 em { font-style: normal; color: var(--amber); }
.hero__copy p {
  margin-top: 18px;
  font-size: 17.5px;
  color: var(--slate-300);
  max-width: 46ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero__stats {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 26px 0;
  position: relative;
  z-index: 1;
  background: var(--ink-navy);
}
.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.stat__num { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; color: var(--white); }
.stat__num span { color: var(--amber); }
.stat__label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-300); margin-top: 4px; }

@media (min-width: 900px) {
  .hero__stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Services
   ========================================================================== */
.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-3px); border-color: var(--amber); }
.service-card__image {
  width: calc(100% + 48px);
  margin: -26px -24px 16px;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card__icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--deep-navy); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card__icon svg { width: 24px; height: 24px; stroke: var(--amber); }
.service-card h3 { font-size: 21px; }
.service-card p { margin-top: 8px; font-size: 14.5px; color: var(--slate-500); }
.service-card__tag {
  display: inline-block; margin-top: 14px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); background: var(--steel-100);
  padding: 4px 9px; border-radius: 3px;
}

/* ==========================================================================
   How it works — a real sequence, numbering earns its place
   ========================================================================== */
.timeline { display: grid; gap: 0; }
.timeline__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  position: relative;
  padding-bottom: 40px;
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__num {
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink-navy); color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.timeline__step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 27px; top: 56px; bottom: -4px;
  width: 2px;
  background-image: linear-gradient(var(--border) 60%, transparent 0%);
  background-size: 2px 10px;
  background-repeat: repeat-y;
}
.timeline__body h3 { font-size: 19px; }
.timeline__body p { margin-top: 6px; color: var(--slate-500); font-size: 14.5px; max-width: 56ch; }
.timeline__meta { font-family: var(--font-mono); font-size: 11px; color: var(--amber-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; display: block; }

/* ==========================================================================
   Network / coverage map
   ========================================================================== */
.network {
  display: grid;
  gap: 40px;
}
.network-map { background: var(--dark-gradient); border-radius: var(--radius-md); padding: 20px 20px 14px; position: relative; }
.india-map { width: 100%; height: auto; max-height: 460px; display: block; margin: 0 auto; }
.india-outline {
  fill: rgba(245, 163, 0, 0.07);
  stroke: rgba(245, 163, 0, 0.5);
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.india-pin__dot {
  fill: var(--white);
  animation: pin-blink 2.6s ease-in-out infinite;
  animation-delay: var(--pin-delay, 0s);
}
.india-pin__ring {
  fill: none;
  stroke: var(--amber);
  stroke-width: 1.4;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: pin-ring 2.6s ease-out infinite;
  animation-delay: var(--pin-delay, 0s);
}
@keyframes pin-blink {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
@keyframes pin-ring {
  0% { opacity: 0.6; transform: scale(0.6); }
  70% { opacity: 0; transform: scale(2.4); }
  100% { opacity: 0; transform: scale(2.4); }
}
.india-pin--hub .india-pin__dot--hub { fill: var(--amber); animation: pin-blink 2.6s ease-in-out infinite; }
.india-pin--hub .india-pin__ring--hub { stroke: var(--white); }
.india-pin--hub text {
  font-size: 11px; font-weight: 700; fill: var(--white); letter-spacing: 0.04em;
}
.india-pin--branch .india-pin__dot { fill: #8FB4D9; }
.india-pin--branch .india-pin__ring { stroke: #8FB4D9; }
.india-pin--branch text {
  font-size: 10px; font-weight: 700; fill: #C7DCF0; letter-spacing: 0.04em;
}
.india-map__caption {
  display: block; text-align: center; margin-top: 8px; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.05em; color: var(--slate-300);
}
.network-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.network-stat {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px 16px;
}
.network-stat__num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--deep-navy); }
.network-stat__label { font-size: 13px; color: var(--slate-500); margin-top: 2px; }
@media (min-width: 900px) { .network { grid-template-columns: 1.1fr 0.9fr; align-items: center; } }

.network-copy h2 { margin-top: 10px; font-size: clamp(28px, 3.6vw, 36px); }
.network-copy p { margin-top: 12px; color: var(--slate-500); font-size: 15.5px; }
.network-copy .network-stats { margin-top: 24px; }

/* ==========================================================================
   Industries
   ========================================================================== */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border); border-radius: 999px; padding: 9px 16px;
  font-size: 14px; font-weight: 600; color: var(--slate-700); background: var(--white);
}
.chip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--signal-orange); }

.industry-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .industry-grid { grid-template-columns: repeat(4, 1fr); } }
.industry-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 22px 20px; transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.industry-card:hover { transform: translateY(-3px); border-color: var(--amber); box-shadow: var(--shadow-card); }
.industry-card__icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: rgba(245, 163, 0, 0.12); display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.industry-card__icon svg { width: 22px; height: 22px; stroke: var(--amber-dark); }
.industry-card h3 { font-size: 16.5px; font-family: var(--font-body); font-weight: 700; color: var(--slate-800); }
.industry-card p { margin-top: 7px; font-size: 13.5px; color: var(--slate-500); }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.feature-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
.feature {
  display: flex; gap: 16px; padding-bottom: 4px;
}
.feature__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(245, 163, 0, 0.14); display: flex; align-items: center; justify-content: center;
}
.feature__icon svg { width: 22px; height: 22px; stroke: var(--amber-dark); }
.feature h3 { font-size: 17.5px; }
.feature p { margin-top: 5px; font-size: 14.5px; color: var(--slate-500); }

/* ==========================================================================
   Track shipment
   ========================================================================== */
.tracker {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.tracker__form { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 620px) { .tracker__form { flex-direction: row; } }
.field { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--slate-700); }
.field input, .field textarea, .field select {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 15px; color: var(--slate-800); background: var(--paper);
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--deep-navy); background: var(--white); }
.field small { font-size: 12px; color: var(--slate-500); }
.field.has-error input { border-color: #C23B2B; }
.field__error { font-size: 12.5px; color: #C23B2B; min-height: 16px; }

.tracker__result {
  margin-top: 22px; border-top: 1px dashed var(--border); padding-top: 20px; display: none;
}
.tracker__result.is-visible { display: block; }
.tracker__result-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.tracker__id { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--deep-navy); }
.status-badge {
  font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 11px; border-radius: 999px; font-weight: 700;
  background: rgba(30, 142, 90, 0.12); color: var(--success);
}
.tracker__steps { margin-top: 18px; display: flex; flex-direction: column; gap: 0; }
.tstep { display: grid; grid-template-columns: 20px 1fr; gap: 12px; padding-bottom: 20px; position: relative; }
.tstep:last-child { padding-bottom: 0; }
.tstep__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--success); margin-top: 3px; }
.tstep.is-pending .tstep__dot { background: var(--border); }
.tstep:not(:last-child)::before {
  content: ''; position: absolute; left: 5px; top: 16px; bottom: -4px; width: 2px; background: var(--border);
}
.tstep__title { font-weight: 700; font-size: 14.5px; color: var(--slate-800); }
.tstep.is-pending .tstep__title { color: var(--slate-500); }
.tstep__time { font-family: var(--font-mono); font-size: 12px; color: var(--slate-500); margin-top: 2px; }

/* honeypot: hidden from sighted users and screen readers, catches bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
}
.testi-card__quote { font-size: 15px; color: var(--slate-700); }
.testi-card__quote::before { content: '\201C'; color: var(--amber); font-family: var(--font-display); font-size: 30px; line-height: 0; display: block; margin-bottom: 4px; }
.testi-card__who { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.testi-card__avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--deep-navy); color: var(--amber);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 15px;
}
.testi-card__name { font-weight: 700; font-size: 13.5px; color: var(--slate-800); }
.testi-card__role { font-size: 12px; color: var(--slate-500); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: var(--amber);
  color: var(--ink-navy);
}
.cta-band__row {
  display: flex; flex-direction: column; gap: 20px; align-items: flex-start; justify-content: space-between; padding: 46px 0;
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 34px); }
.cta-band p { margin-top: 6px; color: rgba(11,23,39,0.75); font-size: 15px; }
@media (min-width: 800px) { .cta-band__row { flex-direction: row; align-items: center; } }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-card); }
.contact-form__row { display: grid; gap: 14px; grid-template-columns: 1fr; margin-bottom: 14px; }
@media (min-width: 560px) { .contact-form__row--2 { grid-template-columns: 1fr 1fr; } }
.form-status { font-size: 14px; margin-top: 12px; padding: 10px 12px; border-radius: var(--radius-sm); display: none; }
.form-status.is-success { display: block; background: rgba(30,142,90,0.1); color: var(--success); }
.form-status.is-error { display: block; background: rgba(194,59,43,0.1); color: #C23B2B; }

.branch-list { display: flex; flex-direction: column; gap: 16px; }
.branch-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px 20px; display: flex; gap: 14px; }
.branch-card__icon { width: 36px; height: 36px; border-radius: 50%; background: var(--steel-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.branch-card__icon svg { width: 18px; height: 18px; stroke: var(--deep-navy); }
.branch-card__icon--whatsapp { background: rgba(37, 211, 102, 0.14); }
.branch-card__icon--whatsapp svg { stroke: #1DA851; }
.branch-card h4 { font-size: 15.5px; font-family: var(--font-body); font-weight: 700; color: var(--slate-800); }
.branch-card p { font-size: 13.5px; color: var(--slate-500); margin-top: 3px; }
.branch-card a:hover { color: var(--amber-dark); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink-navy); color: var(--slate-300); padding: 56px 0 26px; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr; } }
.footer-brand p { margin-top: 12px; font-size: 14px; color: var(--slate-300); max-width: 42ch; }
.footer-brand .brand__name { color: var(--white); }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--slate-300); }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 12px; font-size: 12.5px; color: var(--slate-500);
}
@media (min-width: 700px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { border-color: var(--amber); }
.social-row svg { width: 16px; height: 16px; stroke: var(--slate-300); }
.social-row a:hover svg { stroke: var(--amber); }

.btn--dark { background: var(--ink-navy); color: var(--white); }
.tracker__note { margin-top: 16px; font-size: 12.5px; color: var(--slate-500); }
.field--submit { flex: 0 0 auto; justify-content: flex-end; }
.text-muted { font-weight: 400; color: var(--slate-500); }

/* ==========================================================================
   Mission & Vision
   ========================================================================== */
.mv-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .mv-grid { grid-template-columns: repeat(2, 1fr); } }
.mv-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 30px 28px; box-shadow: var(--shadow-card);
}
.mv-card--dark { background: var(--dark-gradient); border-color: var(--ink-navy); color: var(--steel-100); }
.mv-card__label {
  display: inline-block; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 700; color: var(--amber-dark);
  background: rgba(245, 163, 0, 0.12); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
}
.mv-card--dark .mv-card__label { color: var(--amber); background: rgba(245, 163, 0, 0.16); }
.mv-list { display: flex; flex-direction: column; gap: 20px; }
.mv-list h3 { font-size: 18px; }
.mv-card--dark .mv-list h3 { color: var(--white); }
.mv-list p { margin-top: 5px; font-size: 14.5px; color: var(--slate-500); }
.mv-card--dark .mv-list p { color: var(--slate-300); }

/* ==========================================================================
   Leadership
   ========================================================================== */
.leader-grid { display: grid; gap: 20px; grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
@media (min-width: 560px) { .leader-grid { grid-template-columns: repeat(2, 1fr); max-width: 560px; } }
.leader-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.leader-card:hover { transform: translateY(-5px); border-color: var(--amber); }
.leader-card__photo {
  width: 100%; aspect-ratio: 1 / 1; flex-shrink: 0;
  background: linear-gradient(160deg, var(--steel-100) 0%, #DCE1E6 100%); color: var(--steel);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: transform 0.4s ease;
}
.leader-card:hover .leader-card__photo { transform: scale(1.03); }
.leader-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.leader-card__body { padding: 16px 18px 20px; }
.leader-card__role {
  font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--amber-dark); font-weight: 700;
}
.leader-card__body h3 { font-size: 19px; margin-top: 4px; }
.leader-card__body p { margin-top: 8px; font-size: 13px; color: var(--slate-500); }
/* ==========================================================================
   Locations — Vapi HQ + Pune branch maps
   ========================================================================== */
.locations { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .locations { grid-template-columns: repeat(2, 1fr); } }
.location-block { display: flex; flex-direction: column; gap: 14px; }
.locations-map {
  background: var(--dark-gradient); border-radius: var(--radius-md); padding: 8px;
  box-shadow: var(--shadow-card);
}
.locations-map__embed {
  width: 100%; aspect-ratio: 16 / 11; border: 0; border-radius: calc(var(--radius-md) - 4px);
  display: block; filter: grayscale(0.15) contrast(1.05);
}

/* ==========================================================================
   Group companies (standalone section, above footer)
   ========================================================================== */
.group-companies-grid { display: grid; gap: 20px; grid-template-columns: 1fr; max-width: 780px; margin: 0 auto; }
@media (min-width: 640px) { .group-companies-grid { grid-template-columns: repeat(2, 1fr); } }
.group-company-card {
  display: flex; flex-direction: row; align-items: stretch;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.group-company-card:hover { transform: translateY(-4px); border-color: var(--amber); box-shadow: var(--shadow-card); }
.group-company-card__media {
  width: 40%; flex-shrink: 0;
  background: var(--paper); border-right: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.group-company-card__logo { width: 100%; height: 100%; object-fit: contain; display: block; }
.group-company-card__mark--text {
  font-family: var(--font-display); font-weight: 800; color: var(--deep-navy);
  background: var(--steel-100); width: 100%; height: 100%; border-radius: var(--radius-sm);
  align-items: center; justify-content: center; font-size: 15px;
}
.group-company-card__body { padding: 20px 22px; display: flex; flex-direction: column; justify-content: center; }
.group-company-card__name { font-weight: 700; font-size: 17px; color: var(--ink-navy); display: block; }
.group-company-card__tag { display: block; font-size: 13.5px; color: var(--slate-500); margin-top: 6px; line-height: 1.5; }

@media (max-width: 400px) {
  .group-company-card { flex-direction: column; }
  .group-company-card__media { width: 100%; height: 110px; border-right: 0; border-bottom: 1px solid var(--border); }
}

/* skip link for keyboard/screen-reader users */
.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--amber); color: var(--ink-navy); padding: 10px 16px; z-index: 999; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ==========================================================================
   Scroll reveal — lightweight, self-hosted AOS-style entrance animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal[data-reveal="up"]    { transform: translateY(26px); }
.reveal[data-reveal="down"]  { transform: translateY(-26px); }
.reveal[data-reveal="left"]  { transform: translateX(-30px); }
.reveal[data-reveal="right"] { transform: translateX(30px); }
.reveal[data-reveal="zoom"]  { transform: scale(0.92); }

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.whatsapp-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  animation: whatsapp-pulse 2.6s ease-in-out infinite;
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 14px 30px -8px rgba(0,0,0,0.5); }
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 10px 26px -8px rgba(0,0,0,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 26px -8px rgba(0,0,0,0.45), 0 0 0 10px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab { animation: none; }
}
@media (max-width: 480px) {
  .whatsapp-fab { right: 14px; bottom: 14px; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 25px; height: 25px; }
}