/* ===========================================
   ACSPL — 2026 Futuristic Effects Layer
   Loaded after site.css and home.css.
   Honors prefers-reduced-motion site-wide.
   =========================================== */

/* ---------- Page Fade Transition ----------
   Added by JS on internal-link clicks. The page-loader
   covers the network gap, so the eye sees a clean fade.
   ----------------------------------------------- */
body {
  transition: opacity 0.22s ease-out;
}
body.is-leaving {
  opacity: 0;
}

/* ---------- Truck Transition Strip ----------
   Sits between the hero and the next section.
   On scroll-into-view, the truck slides left → right.
   ----------------------------------------------- */
.truck-transition {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,0) 0%,
      rgba(245,247,250,0.6) 60%,
      rgba(245,247,250,1) 100%);
  pointer-events: none;
}

.truck-transition::before {
  /* horizon line — the road */
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(27,31,94,0.18) 12%,
    rgba(27,31,94,0.32) 50%,
    rgba(27,31,94,0.18) 88%,
    transparent 100%);
}

.truck-transition::after {
  /* dashed lane marker, scrolls subtly */
  content: "";
  position: absolute;
  left: -50%; right: -50%;
  bottom: 14px;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(230,51,41,0.45) 0 24px, transparent 24px 60px);
  background-size: 60px 2px;
  opacity: 0;
  transition: opacity 0.6s ease;
  animation: truck-lane 1.6s linear infinite;
  animation-play-state: paused;
}

.truck-transition.in-view::after {
  opacity: 1;
  animation-play-state: running;
}

@keyframes truck-lane {
  from { transform: translateX(0); }
  to   { transform: translateX(-60px); }
}

.truck-transition .truck-svg {
  position: absolute;
  bottom: 18px;
  left: -32%;
  width: clamp(220px, 28vw, 360px);
  height: auto;
  transform: translateZ(0);
  filter: drop-shadow(0 8px 14px rgba(27,31,94,0.18));
  transition: left 4.8s cubic-bezier(0.45, 0.05, 0.25, 1);
  will-change: left, transform;
}

.truck-transition.in-view .truck-svg {
  left: 132%;
}

/* dust puff behind the truck — three small pulses */
.truck-transition .truck-dust {
  position: absolute;
  bottom: 16px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(27,31,94,0.18);
  filter: blur(3px);
  opacity: 0;
}

.truck-transition.in-view .truck-dust {
  animation: truck-dust-puff 1.2s ease-out infinite;
}
.truck-transition.in-view .truck-dust:nth-child(2) { animation-delay: 0.4s; }
.truck-transition.in-view .truck-dust:nth-child(3) { animation-delay: 0.8s; }

@keyframes truck-dust-puff {
  0%   { opacity: 0.55; transform: scale(0.4) translateX(0); }
  100% { opacity: 0;    transform: scale(1.6) translateX(-26px); }
}

@media (max-width: 720px) {
  .truck-transition { height: 96px; }
  .truck-transition .truck-svg {
    width: 180px;
    transition-duration: 3.4s;
    bottom: 14px;
  }
  .truck-transition::after { bottom: 10px; }
}

/* ---------- 3D Tilt Cards ---------- */
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  will-change: transform;
}
.tilt.is-tilting {
  transform:
    perspective(900px)
    rotateX(var(--tilt-rx, 0deg))
    rotateY(var(--tilt-ry, 0deg))
    translateZ(0);
  transition: transform 0.08s linear, box-shadow 0.4s ease;
  box-shadow:
    0 18px 42px rgba(27,31,94,0.18),
    0 4px 12px rgba(230,51,41,0.08);
}
.tilt.is-tilting .tilt-inner {
  transform: translateZ(28px);
  transition: transform 0.18s ease;
}

/* ---------- Magnetic CTAs ---------- */
.magnetic {
  position: relative;
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

/* ---------- Animated Stat Counters (no halo — clean) ---------- */
.stat-counter {
  position: relative;
  display: inline-block;
}

/* ---------- Gradient Mesh Background (CTA section) ---------- */
.gradient-mesh {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, #0e1746 0%, #1B1F5E 100%);
}
.gradient-mesh::before,
.gradient-mesh::after {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(230,51,41,0.55), transparent 65%) 18% 26%/55% 60% no-repeat,
    radial-gradient(closest-side, rgba(80,140,255,0.40), transparent 65%) 78% 18%/45% 55% no-repeat,
    radial-gradient(closest-side, rgba(255,200,150,0.28), transparent 65%) 30% 78%/55% 60% no-repeat,
    radial-gradient(closest-side, rgba(255,255,255,0.18), transparent 65%) 88% 82%/30% 40% no-repeat;
  filter: blur(34px);
  animation: mesh-drift 28s ease-in-out infinite alternate;
}
.gradient-mesh::after {
  animation-duration: 36s;
  animation-direction: alternate-reverse;
  opacity: 0.65;
  mix-blend-mode: screen;
}
.gradient-mesh > * {
  position: relative;
  z-index: 1;
}
@keyframes mesh-drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-3%, 2%, 0) scale(1.06); }
  100% { transform: translate3d(2%, -2%, 0) scale(1.03); }
}

/* ---------- Marquee KPI Band ---------- */
.kpi-marquee {
  background: linear-gradient(90deg, #0e1746, #1B1F5E 50%, #0e1746);
  color: #fff;
  padding: 1.05rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.kpi-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: kpi-scroll 45s linear infinite;
  will-change: transform;
}
.kpi-marquee-item {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.92);
}
.kpi-marquee-item .kpi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #E63329;
  box-shadow: 0 0 10px rgba(230,51,41,0.7);
  flex: none;
}
.kpi-marquee-sep {
  opacity: 0.35;
  color: #fff;
}
@keyframes kpi-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.kpi-marquee:hover .kpi-marquee-track {
  animation-play-state: paused;
}

/* ---------- Timeline draw (How It Works) ----------
   Line + pins sit ABOVE the cards (in the negative space between
   the section header and the grid), not on top of the numbers.
   ---------------------------------------------------- */
.timeline-draw {
  position: relative;
  padding-top: 26px;
}
.timeline-draw-line {
  position: absolute;
  top: 22px;
  left: 8%;
  width: 84%;
  height: 8px;
  z-index: 0;
  pointer-events: none;
  display: none;
}
@media (min-width: 901px) {
  .timeline-draw-line { display: block; }
}
.timeline-draw-line line {
  transition: stroke-dashoffset 1.6s cubic-bezier(0.4,0,0.2,1);
}
.timeline-draw.in-view .timeline-draw-line line {
  stroke-dashoffset: 0 !important;
}

.hp-timeline-step { position: relative; z-index: 1; }
.timeline-pin {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%, 0) scale(0);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E63329;
  box-shadow:
    0 0 0 5px #1B1F5E,
    0 0 0 7px rgba(230,51,41,0.35),
    0 0 22px rgba(230,51,41,0.55);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  display: none;
  z-index: 3;
}
@media (min-width: 901px) {
  .timeline-pin { display: block; }
}
.timeline-draw.in-view .hp-timeline-step:nth-child(2) .timeline-pin { transform: translate(-50%, 0) scale(1); transition-delay: 0.20s; }
.timeline-draw.in-view .hp-timeline-step:nth-child(3) .timeline-pin { transform: translate(-50%, 0) scale(1); transition-delay: 0.50s; }
.timeline-draw.in-view .hp-timeline-step:nth-child(4) .timeline-pin { transform: translate(-50%, 0) scale(1); transition-delay: 0.80s; }
.timeline-draw.in-view .hp-timeline-step:nth-child(5) .timeline-pin { transform: translate(-50%, 0) scale(1); transition-delay: 1.10s; }
.timeline-draw.in-view .hp-timeline-step:nth-child(6) .timeline-pin { transform: translate(-50%, 0) scale(1); transition-delay: 1.40s; }

/* ---------- Route Map (city pages) ---------- */
.route-map {
  background: linear-gradient(135deg, #0e1746 0%, #1B1F5E 100%);
  border-radius: 16px;
  padding: 2rem 1.5rem 2.5rem;
  margin: 1.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.route-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(closest-side, rgba(230,51,41,0.18), transparent 65%) 18% 60%/60% 70% no-repeat,
    radial-gradient(closest-side, rgba(80,140,255,0.16), transparent 65%) 78% 40%/55% 65% no-repeat;
  filter: blur(20px);
}
.route-map-inner {
  position: relative;
  z-index: 1;
  color: #fff;
}
.route-map-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 1rem;
}
.route-map svg.route-svg {
  width: 100%;
  height: auto;
  max-height: 240px;
  display: block;
}
.route-svg .route-line {
  stroke-dasharray: 8 6;
  stroke-dashoffset: 0;
  animation: route-flow 1.6s linear infinite;
}
@keyframes route-flow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -28; }
}
.route-svg .route-pin {
  transform-origin: center;
}
.route-svg .route-pin.pulse {
  animation: route-pin-pulse 2.2s ease-in-out infinite;
}
@keyframes route-pin-pulse {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.55; }
}

/* ---------- About: values check draw + milestones ---------- */
.value-card .value-check {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.6rem;
}
.value-card .value-check path {
  fill: none;
  stroke: #E63329;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.4,0,0.2,1);
}
.value-card.reveal.active .value-check path {
  stroke-dashoffset: 0;
}

.milestones-track {
  position: relative;
}
.milestones-track::before {
  content: "";
  position: absolute;
  left: 14px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(230,51,41,0.7), rgba(27,31,94,0.5), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.6s cubic-bezier(0.4,0,0.2,1);
}
.milestones-track.in-view::before {
  transform: scaleY(1);
}

/* ---------- Cursor Follower ----------
   A blurred white dot that follows the cursor. Uses mix-blend-mode
   so it only "shows" against dark backgrounds — disappears on white.
   ---------------------------------------- */
.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%) translate3d(var(--cf-x, 50vw), var(--cf-y, 50vh), 0);
  filter: blur(2px);
  opacity: 0;
  transition: opacity 0.4s ease, width 0.2s ease, height 0.2s ease;
  will-change: transform;
}
.cursor-follower.visible { opacity: 0.85; }
.cursor-follower.is-link { width: 38px; height: 38px; opacity: 0.65; }

/* ---------- Footer Newsletter ---------- */
.footer-newsletter {
  background: linear-gradient(180deg, #0e1746 0%, #1B1F5E 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.4rem 0;
  color: #fff;
}
.footer-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.footer-newsletter h4 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.footer-newsletter p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  position: relative;
}
.newsletter-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #E63329;
  background: rgba(255,255,255,0.10);
}
.newsletter-form button {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: #E63329;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.25s;
}
.newsletter-form button:hover { background: #d12a21; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(230,51,41,0.35); }
.newsletter-form button:disabled { opacity: 0.6; cursor: wait; transform: none; }
.newsletter-msg {
  flex: 1 0 100%;
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  min-height: 1em;
}
.newsletter-msg.success { color: #7dd3a3; }
.newsletter-msg.error { color: #ff8b82; }

/* ==========================================================
   City Page Engagement Layer
   Targets body.city-page (customs-clearance-nagpur/mumbai/hyderabad)
   Adds visual energy to otherwise text-heavy pages without
   touching content/structure.
   ========================================================== */

/* --- Section backgrounds: subtle gradient mesh on alternating sections --- */
.city-page .section { position: relative; overflow: hidden; }
.city-page .section::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(230,51,41,0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.city-page .section.alt::before {
  top: auto; right: auto;
  bottom: -50px; left: -50px;
  background: radial-gradient(circle, rgba(27,31,94,0.06) 0%, transparent 65%);
}
.city-page .section > .container { position: relative; z-index: 1; }

/* --- Section header eyebrow: animated underline --- */
.city-page .section-header h2 {
  position: relative;
  display: inline-block;
}
.city-page .section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red, #E63329), transparent);
  transform: translateX(-50%);
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  border-radius: 3px;
}
.city-page .section-header.reveal.active h2::after,
.city-page .section-header.in-view h2::after { width: 60px; }

/* --- Card grid with auto-numbered serial badges --- */
.city-page .grid-3 { counter-reset: city-card; }
.city-page .grid-3 .card {
  counter-increment: city-card;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(27,31,94,0.06);
  background: #fff;
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.45s;
}
.city-page .grid-3 .card::before {
  content: counter(city-card, decimal-leading-zero);
  position: absolute;
  top: 0.85rem;
  right: 1.1rem;
  font-family: "Abril Fatface", serif;
  font-size: 1.65rem;
  color: rgba(230,51,41,0.18);
  line-height: 1;
  transition: color 0.4s, transform 0.4s;
  z-index: 2;
  pointer-events: none;
}
.city-page .grid-3 .card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red, #E63329), #FF6B63);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.city-page .grid-3 .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(27,31,94,0.12);
  border-color: rgba(230,51,41,0.18);
}
.city-page .grid-3 .card:hover::before {
  color: var(--red, #E63329);
  transform: scale(1.1);
}
.city-page .grid-3 .card:hover::after { width: 100%; }

/* Coverage state cards already use their own grid; don't re-number them */
.city-page .coverage-states { counter-reset: none; }
.city-page .coverage-states .coverage-state::before { content: none; }

/* --- Icon wrap inside service cards: subtle hover anim --- */
.city-page .icon-wrap {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s, box-shadow 0.4s;
}
.city-page .card:hover .icon-wrap {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, rgba(230,51,41,0.12), rgba(27,31,94,0.08));
  box-shadow: 0 10px 24px rgba(230,51,41,0.18);
}

/* --- Card heading: slide-up tease on hover --- */
.city-page .card h3 {
  transition: color 0.3s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.city-page .card:hover h3 {
  color: var(--red, #E63329);
  transform: translateX(4px);
}

/* --- "Why Choose ACSPL" list: staggered reveal + hover --- */
.city-page .section.alt ul li,
.city-page .section.alt .reveal ul li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  transition: padding 0.3s, color 0.3s;
}
.city-page .section.alt ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 1rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red, #E63329);
  box-shadow: 0 0 0 4px rgba(230,51,41,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}
.city-page .section.alt ul li:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(230,51,41,0.18);
}
.city-page .section.alt ul li:hover {
  padding-left: 2.1rem;
  color: var(--navy, #1B1F5E);
}

/* --- FAQ items: animated chevron + lift --- */
.city-page details {
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.city-page details[open] {
  box-shadow: 0 8px 28px rgba(27,31,94,0.08);
  transform: translateY(-1px);
}
.city-page details summary {
  position: relative;
  cursor: pointer;
  transition: color 0.3s;
}
.city-page details summary:hover { color: var(--red, #E63329); }

/* --- Section tag eyebrow: subtle pulse on entry --- */
.city-page .section-tag {
  position: relative;
}

/* --- Container "border lines" between sections (subtle) --- */
.city-page main > .section + .section::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230,51,41,0.4), transparent);
  z-index: 2;
}

/* (Reveal animations already handled by site.css .reveal/.reveal.active —
   no override needed.) */

@media (prefers-reduced-motion: reduce) {
  .city-page .grid-3 .card,
  .city-page .icon-wrap,
  .city-page .card h3,
  .city-page .section-header h2::after { transition: none !important; }
}

/* Navi Mumbai office contact card (customs-clearance-mumbai page) */
.nm-office-section {
  position: relative;
  overflow: hidden;
}
.nm-office-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 80% 20%, rgba(230,51,41,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at 20% 80%, rgba(27,31,94,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.nm-office-section > .container { position: relative; z-index: 1; }

.nm-office-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: linear-gradient(135deg, #1B1F5E 0%, #0e1746 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27,31,94,0.18);
  color: #fff;
  margin-top: 1rem;
  position: relative;
}
.nm-office-card::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(230,51,41,0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.nm-office-visual {
  padding: 3rem 2rem;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(230,51,41,0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.nm-pin-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.nm-pin {
  width: 64px;
  height: 64px;
  color: #FF4D42;
  filter: drop-shadow(0 6px 16px rgba(230,51,41,0.5));
  position: relative;
  z-index: 2;
  animation: nm-pin-bob 2.4s ease-in-out infinite;
}
@keyframes nm-pin-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.nm-pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #FF4D42;
  transform: translate(-50%, -50%);
  animation: nm-pulse 2.6s ease-out infinite;
  opacity: 0;
  z-index: 1;
}
.nm-pin-pulse--2 { animation-delay: 0.85s; }
.nm-pin-pulse--3 { animation-delay: 1.7s; }
@keyframes nm-pulse {
  0%   { width: 22px; height: 22px; opacity: 0.7; }
  100% { width: 130px; height: 130px; opacity: 0; }
}

.nm-office-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FF6B63;
  margin: 0 0 0.4rem;
  font-weight: 700;
}
.nm-office-city {
  font-family: "Abril Fatface", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 0 0 0.3rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.nm-office-tag {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.nm-office-details {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.nm-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.nm-detail-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FF6B63;
  transition: background 0.3s, transform 0.3s;
}
.nm-detail-icon svg { width: 20px; height: 20px; }
.nm-detail-row:hover .nm-detail-icon {
  background: rgba(230,51,41,0.18);
  transform: translateY(-2px);
}
.nm-detail-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.nm-detail-row p {
  margin: 0;
  font-size: 0.96rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
}
.nm-detail-row a {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s;
}
.nm-detail-row a:hover {
  color: #FF6B63;
  border-color: #FF6B63;
}

.nm-office-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nm-office-cta .btn-primary {
  background: linear-gradient(135deg, #E63329, #FF4D42);
}
.nm-office-cta .btn-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.nm-office-cta .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

@media (max-width: 820px) {
  .nm-office-card { grid-template-columns: 1fr; }
  .nm-office-visual { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 2rem 1.5rem; }
  .nm-office-details { padding: 2rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .nm-pin, .nm-pin-pulse { animation: none !important; }
}

/* Multi-state coverage block (e.g. customs-clearance-nagpur "Areas We Serve from Nagpur") */
.coverage-states {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.coverage-state {
  background: rgba(27,31,94,0.04);
  border: 1px solid rgba(27,31,94,0.08);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.coverage-state:hover {
  transform: translateY(-3px);
  border-color: rgba(230,51,41,0.25);
  box-shadow: 0 12px 28px rgba(27,31,94,0.08);
}
.coverage-state h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy, #1B1F5E);
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}
.coverage-state h4 span {
  font-weight: 500;
  color: var(--text-secondary, #6c708a);
  font-size: 0.85rem;
}
.coverage-state p {
  font-size: 0.88rem;
  color: var(--text, #333);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 900px) {
  .coverage-states { grid-template-columns: 1fr; }
}

/* Inline variant — sits on light backgrounds (e.g. blog "Stay Updated" section) */
.newsletter-form--inline {
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form--inline input[type="email"] {
  border: 1px solid rgba(27,31,94,0.18);
  background: #fff;
  color: var(--navy);
}
.newsletter-form--inline input[type="email"]::placeholder { color: rgba(27,31,94,0.45); }
.newsletter-form--inline input[type="email"]:focus {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(27,31,94,0.08);
}
.newsletter-form--inline .newsletter-msg.success { color: #1f7a44; }
.newsletter-form--inline .newsletter-msg.error { color: #c2362d; }

@media (max-width: 720px) {
  .footer-newsletter-inner { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ===========================================================
   GLOBAL HUD + PARTICLE FIELD — full-viewport fixed overlay.
   Applied site-wide. Persists through scroll, all pages.
   Particle blend-mode keeps dots visible on light AND dark bgs.
   =========================================================== */
.fx-hud-stage {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
}

.fx-particles-fixed {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
  mix-blend-mode: screen;
}

.hp-hud {
  position: fixed;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(15,15,18,0.78);
  pointer-events: none;
  line-height: 1.3;
  padding: 0.6rem 0.85rem;
  mix-blend-mode: difference;
}
.hp-hud-label { color: rgba(255,255,255,0.95); }
.hp-hud-sub { color: rgba(255,255,255,0.55); font-size: 0.58rem; letter-spacing: 0.18em; }

/* Top-left HUD with bracket corner — sits below site header */
.hp-hud--tl {
  top: 4.8rem;
  left: 1rem;
}
.hp-hud--tl::before,
.hp-hud--tr::before {
  content: "";
  position: absolute;
  top: 0;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(230,51,41,0.65);
  mix-blend-mode: normal;
}
.hp-hud--tl::before { left: 0; border-right: none; border-bottom: none; }

/* Top-right HUD with bracket corner */
.hp-hud--tr {
  top: 4.8rem;
  right: 1rem;
  text-align: right;
  align-items: flex-end;
}
.hp-hud--tr::before { right: 0; border-left: none; border-bottom: none; }

/* Bottom-left status pulse — solid bg so always readable */
.hp-hud--bl {
  bottom: 1.2rem;
  left: 1rem;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: rgba(10,14,46,0.92);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mix-blend-mode: normal;
  color: #fff;
  font-size: 0.6rem;
}
.hp-hud--bl .hp-hud-label { color: #fff; }
.hp-hud-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #43d18b;
  box-shadow: 0 0 0 0 rgba(67,209,139,0.6);
  animation: hp-hud-pulse 2.2s ease-in-out infinite;
  flex: none;
}
@keyframes hp-hud-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(67,209,139,0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(67,209,139,0); }
}

/* Hide HUD when overlay nav menu is open (avoid clutter) */
body:has(.site-nav.open) .fx-hud-stage,
body:has(.nav-overlay.active) .fx-hud-stage { opacity: 0; transition: opacity 0.3s ease; }

@media (max-width: 720px) {
  .hp-hud--tl { top: 4rem; left: 0.6rem; padding: 0.5rem 0.7rem; }
  .hp-hud--tr { top: 4rem; right: 0.6rem; padding: 0.5rem 0.7rem; }
  .hp-hud--tr .hp-hud-sub { display: none; }
  .hp-hud--tl .hp-hud-sub { display: none; }
  .hp-hud--bl { bottom: 0.9rem; left: 0.6rem; font-size: 0.55rem; padding: 0.4rem 0.7rem; }
}

/* Hide HUD overlay on mobile portrait (too cluttered) — show only the pulse pill */
@media (max-width: 540px) {
  .hp-hud--tl, .hp-hud--tr { display: none; }
}

/* ===========================================================
   CINEMATIC SECTIONS — full-bleed video bg + centered serif type
   Used on home page testimonial + CTA. Theme-matched (navy/red).
   =========================================================== */

.cine-quote,
.cine-cta {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #0A0E2E;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  isolation: isolate;
}
.cine-quote { padding: clamp(4rem, 7vw, 6rem) 0; min-height: auto; }
.cine-cta   { padding: clamp(5rem, 9vw, 8rem) 0; min-height: 60vh; }

.cine-quote-bg,
.cine-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease 0.2s;
  filter: saturate(0.85) brightness(0.75);
}
.cine-quote-bg.loaded,
.cine-cta-bg.loaded { opacity: 1; }

.cine-quote-overlay,
.cine-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.cine-quote-overlay {
  background:
    radial-gradient(ellipse at center, transparent 25%, rgba(10,14,46,0.55) 90%),
    linear-gradient(180deg, rgba(10,14,46,0.65) 0%, rgba(10,14,46,0.45) 30%, rgba(10,14,46,0.45) 70%, rgba(10,14,46,0.85) 100%);
}
.cine-cta-overlay {
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(10,14,46,0.65) 100%),
    linear-gradient(180deg, rgba(10,14,46,0.55) 0%, rgba(10,14,46,0.40) 35%, rgba(10,14,46,0.55) 70%, rgba(10,14,46,0.85) 100%);
}

.cine-quote-inner,
.cine-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cine-eyebrow {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin: 0 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}
.cine-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #E63329;
}

/* ---------- Quote ---------- */
.cine-quote-text {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  line-height: 1.55;
  letter-spacing: -0.005em;
  margin: 0 auto;
  max-width: 60ch;
  text-wrap: balance;
  color: #fff;
}
.cine-quote-mark {
  display: block;
  font-family: "Abril Fatface", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.6;
  color: #E63329;
  margin-bottom: 0.5rem;
  text-align: center;
}
.cine-quote-attr {
  margin: 2.5rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}
.cine-attr-bar {
  width: 36px;
  height: 1px;
  background: #E63329;
}
.cine-quote-attr strong {
  font-weight: 700;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.95rem;
}
.cine-quote-attr span {
  display: block;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.15rem;
}
.cine-quote-attr a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.cine-quote-attr a:hover { color: #fff; }

/* ---------- CTA ---------- */
.cine-cta-display {
  font-family: "Abril Fatface", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
  text-wrap: balance;
}
.cine-cta-lead {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 1.5rem auto 0;
  max-width: 50ch;
}
.cine-cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.cine-cta-actions .hp-btn-main {
  background: #E63329;
  color: #fff;
}
.cine-cta-actions .hp-btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  background: transparent;
}
.cine-cta-actions .hp-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}

@media (max-width: 720px) {
  .cine-cta-display { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .cine-quote-text { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .cine-cta-actions { flex-direction: column; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .cine-cta-actions a { width: 100%; }
}

/* ---------- Reduced Motion: kill all of the above ---------- */
@media (prefers-reduced-motion: reduce) {
  .truck-transition .truck-svg,
  .truck-transition::after,
  .truck-transition .truck-dust { animation: none !important; transition: none !important; }
  .truck-transition.in-view .truck-svg { left: 50%; transform: translateX(-50%); }
  .tilt, .tilt.is-tilting { transform: none !important; transition: none !important; }
  .tilt.is-tilting .tilt-inner { transform: none !important; }
  .magnetic { transform: none !important; transition: none !important; }
  .gradient-mesh::before,
  .gradient-mesh::after { animation: none !important; }
  .kpi-marquee-track { animation: none !important; }
  .timeline-draw-line line { transition: none !important; stroke-dashoffset: 0 !important; }
  .timeline-pin { transform: translate(-50%, 0) scale(1) !important; transition: none !important; }
  .route-svg .route-line, .route-svg .route-pin.pulse { animation: none !important; }
  .value-card .value-check path { transition: none !important; stroke-dashoffset: 0 !important; }
  .milestones-track::before { transition: none !important; transform: scaleY(1) !important; }
  body { transition: none !important; }
  .cursor-follower { display: none !important; }
  .cine-quote-bg, .cine-cta-bg { display: none !important; }
  .hp-hero-particles, .hp-hud-pulse { animation: none !important; }
}
