/* ============================================================
   VINIT LOGISTICS PACKERS AND MOVERS
   Design system built around the brand logo colors:
   Red #E0252F, Green #149A43, Blue #1490D8
   ============================================================ */

:root {
  --red: #e0252f;
  --red-dark: #b3141d;
  --red-soft: #fdecec;
  --green: #149a43;
  --green-dark: #0d7a33;
  --green-soft: #e8f7ee;
  --blue: #1490d8;
  --blue-dark: #0c6ca6;
  --blue-soft: #e7f4fc;
  --amber: #f5a623;
  --navy: #0b1733;
  --navy-2: #101f42;
  --ink: #1a2438;
  --muted: #5b6779;
  --line: #e6ebf2;
  --bg: #f6f8fb;
  --card: #ffffff;
  --radius: 22px;
  --shadow-sm: 0 2px 10px rgba(11, 23, 51, 0.06);
  --shadow-md: 0 14px 40px rgba(11, 23, 51, 0.1);
  --shadow-lg: 0 30px 70px rgba(11, 23, 51, 0.16);
  --grad-brand: linear-gradient(90deg, var(--red) 0%, #f0552d 100%);
  --grad-green: linear-gradient(90deg, var(--green) 0%, #29b95c 100%);
  --grad-blue: linear-gradient(90deg, var(--blue) 0%, #35aef0 100%);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script: "Caveat", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select { font-family: inherit; font-size: inherit; }

.container { width: min(1200px, 92%); margin: 0 auto; }

::selection { background: var(--red); color: #fff; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.9, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ---------- Section heading pattern ---------- */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red);
  background: var(--red-soft); border: 1px solid #f7cfd1;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 16px;
}
.eyebrow.green { color: var(--green-dark); background: var(--green-soft); border-color: #c8ecd5; }
.eyebrow.blue { color: var(--blue-dark); background: var(--blue-soft); border-color: #c5e6f7; }
.sec-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.02em; }
.sec-head h2 .u-red { color: var(--red); }
.sec-head h2 .u-green { color: var(--green); }
.sec-head h2 .u-blue { color: var(--blue); }
.sec-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  padding: 15px 30px; border-radius: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-red {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 12px 26px rgba(224, 37, 47, 0.32);
}
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(224, 37, 47, 0.4); }
.btn-green {
  background: var(--grad-green); color: #fff;
  box-shadow: 0 12px 26px rgba(20, 154, 67, 0.3);
}
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(20, 154, 67, 0.38); }
.btn-ghost {
  background: #fff; color: var(--ink); border: 2px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-dark); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--green-dark); box-shadow: 0 12px 30px rgba(0,0,0,0.18); }
.btn-white:hover { transform: translateY(-3px); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12); border-color: #fff;
  transform: translateY(-3px);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy); color: #cfd9ea; font-size: 0.84rem;
  position: relative; z-index: 60;
}
.topbar-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 9px 0;
}
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item strong { color: #fff; font-weight: 700; }
.topbar .dot-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(20, 154, 67, 0.18); color: #5fe08d;
  border: 1px solid rgba(95, 224, 141, 0.35);
  padding: 3px 12px; border-radius: 100px; font-weight: 700;
}
.dot-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #35d475;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(53, 212, 117, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(53, 212, 117, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 212, 117, 0); }
}
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; gap: 22px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 58;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-weight: 600; font-size: 0.95rem; color: var(--ink);
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 3px; border-radius: 3px;
  background: var(--grad-brand);
  transition: width 0.3s ease;
}
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 12px 24px; font-size: 0.92rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span { width: 26px; height: 3px; border-radius: 3px; background: var(--ink); transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-ic { display: none; }
.nav-overlay {
  position: fixed; inset: 0; z-index: 54;
  background: rgba(11, 23, 51, 0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 8% -10%, rgba(20, 144, 216, 0.12), transparent 60%),
    radial-gradient(800px 460px at 96% 4%, rgba(224, 37, 47, 0.1), transparent 55%),
    radial-gradient(700px 420px at 55% 110%, rgba(20, 154, 67, 0.1), transparent 55%),
    linear-gradient(180deg, #fdfeff 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11, 23, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 23, 51, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}
.hero-in {
  position: relative;
  display: grid; grid-template-columns: 1.12fr 0.88fr;
  gap: 56px; align-items: center;
  padding: 66px 0 30px;
}
.hero-in > * { min-width: 0; }
.hero-badge {
  display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px 9px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 8px 18px; border-radius: 100px;
  font-weight: 700; font-size: 0.86rem; margin-bottom: 22px;
}
.hero-badge .sep { color: var(--line); }
.hero-badge .g { color: var(--green-dark); }
.hero-badge .b { color: var(--blue-dark); }
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.025em;
}
.hero h1 .stroke-red { color: var(--red); }
.hero h1 .script {
  font-family: var(--script); font-weight: 700; color: var(--green);
  font-size: 1.18em; line-height: 1;
  display: inline-block; transform: rotate(-2deg);
}
.hero-sub { color: var(--muted); font-size: 1.12rem; max-width: 560px; margin: 20px 0 26px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line);
  padding: 8px 15px; border-radius: 100px;
  font-size: 0.88rem; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.chip:hover { transform: translateY(-2px); border-color: var(--blue); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.avatar-stack { display: flex; }
.avatar-stack .av {
  width: 44px; height: 44px; border-radius: 50%;
  border: 3px solid #fff; margin-left: -12px;
  display: flex; align-items: center; justify-content: center;
  object-fit: cover; font-weight: 800; font-size: 0.82rem; color: #fff;
  box-shadow: var(--shadow-sm);
}
.avatar-stack .av:first-child { margin-left: 0; }
.av-4 { background: linear-gradient(135deg, #f5a623, #f7c04b); }
.hero-trust-text { font-size: 0.92rem; color: var(--muted); }
.hero-trust-text .stars { color: var(--amber); letter-spacing: 2px; }
.hero-trust-text strong { color: var(--ink); }

/* ---------- Lead form card ---------- */
.lead-card {
  position: relative;
  background: #fff;
  border-radius: 26px;
  padding: 34px 32px 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.lead-card::before {
  content: "";
  position: absolute; inset: -2px; z-index: -1;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--red), var(--blue) 50%, var(--green));
  opacity: 0.85;
}
.lead-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  border-radius: 26px; background: #fff;
}
.lead-head { text-align: center; margin-bottom: 22px; }
.lead-head .tag {
  display: inline-block; background: var(--green-soft); color: var(--green-dark);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 10px;
}
.lead-head h3 { font-size: 1.45rem; font-weight: 800; letter-spacing: -0.01em; }
.lead-head p { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.lead-form .full { grid-column: 1 / -1; }
.field { position: relative; }
.field input, .field select {
  width: 100%;
  border: 1.5px solid var(--line);
  background: var(--bg);
  border-radius: 14px;
  padding: 13px 15px 13px 42px;
  font-size: 0.94rem; color: var(--ink);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  appearance: none;
}
.field select { cursor: pointer; }
.field input:focus, .field select:focus {
  border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 144, 216, 0.12);
}
.field .f-ic {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: 1rem; pointer-events: none;
}
.lead-form .btn { width: 100%; padding: 16px; font-size: 1.02rem; }
.lead-note {
  grid-column: 1 / -1; text-align: center;
  font-size: 0.8rem; color: var(--muted); margin-top: 2px;
}
.lead-note .g { color: var(--green-dark); font-weight: 700; }
.form-success {
  display: none; text-align: center; padding: 40px 10px;
}
.form-success.show { display: block; }
.form-success .big { font-size: 3rem; }
.form-success h4 { font-size: 1.3rem; font-weight: 800; margin: 10px 0 6px; }
.form-success p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Hero road + truck animation ---------- */
.road-strip { position: relative; height: 130px; margin-top: 12px; }
.road-strip .skyline {
  position: absolute; bottom: 34px; left: 0; right: 0;
  height: 60px; opacity: 0.1;
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: auto 60px;
}
.road {
  position: absolute; bottom: 0; left: 0; right: 0; height: 34px;
  background: var(--navy);
  overflow: hidden;
}
.road::before {
  content: "";
  position: absolute; top: 50%; left: 0; right: 0; height: 4px;
  transform: translateY(-50%);
  background-image: linear-gradient(90deg, #ffd75e 0 46px, transparent 46px 92px);
  background-size: 92px 4px;
  animation: roadmove 0.9s linear infinite;
}
@keyframes roadmove { to { background-position: -92px 0; } }
.truck-wrap {
  position: absolute; bottom: 16px; left: -300px;
  animation: drive 14s linear infinite;
  will-change: transform;
}
@keyframes drive {
  0% { transform: translateX(-60px); }
  100% { transform: translateX(calc(100vw + 340px)); }
}
.truck-wrap svg { display: block; }
.wheel { animation: spin 0.7s linear infinite; transform-box: fill-box; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }
.truck-body { animation: rumble 0.4s ease-in-out infinite alternate; }
@keyframes rumble { from { transform: translateY(0); } to { transform: translateY(-1.6px); } }

/* ============================================================
   MARQUEES
   ============================================================ */
.marquee-band { padding: 0; overflow: hidden; }
.marquee-band.cities { background: var(--navy); }
.marquee {
  display: flex; gap: 0; width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover { animation-play-state: paused; }
.marquee-track { display: flex; align-items: center; gap: 46px; padding: 16px 23px; }
.marquee.rev { animation-direction: reverse; }
@keyframes marquee { to { transform: translateX(-50%); } }
.mq-item {
  display: inline-flex; align-items: center; gap: 9px;
  color: #b9c6dd; font-weight: 700; font-size: 0.95rem;
  white-space: nowrap; letter-spacing: 0.02em;
}
.mq-item .st { color: #43507a; font-size: 0.7rem; }
.marquee-band.routes { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee-band.routes .mq-item { color: var(--muted); }
.marquee-band.routes .mq-item .st { color: #cdd6e3; }
.marquee-band.routes .mq-item b { color: var(--ink); }

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: 74px 0 66px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 30px 24px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.stat-card:nth-child(1)::before { background: var(--grad-brand); }
.stat-card:nth-child(2)::before { background: var(--grad-green); }
.stat-card:nth-child(3)::before { background: var(--grad-blue); }
.stat-card:nth-child(4)::before { background: linear-gradient(90deg, var(--amber), #f7c04b); }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-card .ic { font-size: 1.9rem; }
.stat-card .num {
  font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em;
  margin: 6px 0 2px; color: var(--ink);
}
.stat-card .num span.suffix { color: var(--red); }
.stat-card .lbl { color: var(--muted); font-weight: 600; font-size: 0.92rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 30px 0 90px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.svc-media { position: relative; height: 200px; overflow: hidden; }
.svc-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-card:hover .svc-media img { transform: scale(1.07); }
.svc-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 23, 51, 0.55));
}
.svc-ic {
  position: absolute; left: 18px; bottom: -24px; z-index: 2;
  width: 58px; height: 58px; border-radius: 17px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.svc-tag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; padding: 5px 12px; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.svc-tag.r { background: rgba(224, 37, 47, 0.85); }
.svc-tag.g { background: rgba(20, 154, 67, 0.85); }
.svc-tag.b { background: rgba(20, 144, 216, 0.85); }
.svc-body { padding: 38px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 1.22rem; font-weight: 800; letter-spacing: -0.01em; }
.svc-body p { color: var(--muted); font-size: 0.93rem; margin: 8px 0 14px; }
.svc-feats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.svc-feats li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.88rem; font-weight: 600; color: var(--ink);
}
.svc-feats li::before {
  content: "✓"; flex: 0 0 auto;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--green-soft); color: var(--green-dark);
  font-size: 0.7rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.svc-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.92rem; color: var(--red);
  transition: gap 0.25s ease;
}
.svc-link:hover { gap: 14px; }

/* ============================================================
   WHY US
   ============================================================ */
.why { padding: 64px 0; background: #fff; position: relative; overflow: hidden; }
.why::before {
  content: "";
  position: absolute; top: -140px; right: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 144, 216, 0.09), transparent 65%);
}
.why-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.why-media { position: relative; }
.why-media .main-img {
  border-radius: 26px; box-shadow: var(--shadow-lg);
  height: 520px; object-fit: cover; width: 100%;
}
.float-card {
  position: absolute; background: #fff; border-radius: 18px;
  box-shadow: var(--shadow-md); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line);
  animation: floaty 4s ease-in-out infinite;
}
.float-card .fc-ic {
  width: 44px; height: 44px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.float-card b { display: block; font-size: 0.95rem; letter-spacing: -0.01em; }
.float-card span { font-size: 0.78rem; color: var(--muted); }
.float-card.fc-top { top: 26px; right: -26px; }
.float-card.fc-top .fc-ic { background: var(--blue-soft); }
.float-card.fc-bot { bottom: 30px; left: -30px; animation-delay: 1.6s; }
.float-card.fc-bot .fc-ic { background: var(--green-soft); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.why-copy .sec-head { text-align: left; margin: 0 0 30px; max-width: none; }
.why-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wf {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 18px; padding: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.wf:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: #d8e0ea; }
.wf .wf-ic {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
  background: #fff; box-shadow: var(--shadow-sm);
}
.wf b { font-size: 0.98rem; display: block; margin-bottom: 3px; letter-spacing: -0.01em; }
.wf span { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: 64px 0; background: #fff; }
.gallery-grid { columns: 4 220px; column-gap: 18px; }
.g-item {
  position: relative; break-inside: avoid; margin: 0 0 18px;
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.g-item img {
  width: 100%; display: block;
  transition: transform 0.5s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 23, 51, 0.72));
  opacity: 0; transition: opacity 0.3s ease;
}
.g-item:hover::after { opacity: 1; }
.g-item figcaption {
  position: absolute; left: 14px; right: 14px; bottom: 12px;
  color: #fff; font-weight: 700; font-size: 0.92rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.g-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ============================================================
   PROCESS
   ============================================================ */
.process { padding: 64px 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.steps::before {
  content: "";
  position: absolute; top: 44px; left: 9%; right: 9%;
  border-top: 3px dashed #d3dce8; z-index: 0;
}
.step {
  position: relative; z-index: 1; text-align: center;
  padding: 0 8px;
}
.step .bubble {
  width: 88px; height: 88px; margin: 0 auto 18px;
  border-radius: 28px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem; position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover .bubble { transform: translateY(-6px) rotate(-3deg); box-shadow: var(--shadow-md); }
.step .n {
  position: absolute; top: -9px; right: -9px;
  width: 30px; height: 30px; border-radius: 50%;
  color: #fff; font-size: 0.85rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.step:nth-child(1) .n { background: var(--red); }
.step:nth-child(2) .n { background: var(--blue); }
.step:nth-child(3) .n { background: var(--green); }
.step:nth-child(4) .n { background: var(--amber); }
.step h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.01em; }
.step p { color: var(--muted); font-size: 0.89rem; }

/* ============================================================
   COORDINATOR BAND
   ============================================================ */
.coord {
  position: relative; overflow: hidden;
  background: linear-gradient(115deg, var(--navy) 0%, #12264f 55%, #0d3b66 100%);
  color: #fff; padding: 74px 0;
}
.coord::before, .coord::after {
  content: ""; position: absolute; border-radius: 50%;
}
.coord::before {
  width: 480px; height: 480px; top: -240px; right: -140px;
  background: radial-gradient(circle, rgba(20, 144, 216, 0.25), transparent 65%);
}
.coord::after {
  width: 420px; height: 420px; bottom: -230px; left: -120px;
  background: radial-gradient(circle, rgba(224, 37, 47, 0.22), transparent 65%);
}
.coord-in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; align-items: center; }
.coord h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
.coord h2 .hl { color: #ffd75e; }
.coord p { color: #b9c6dd; margin-top: 14px; font-size: 1.05rem; max-width: 560px; }
.coord-chat {
  display: flex; align-items: flex-start; gap: 12px; margin: 26px 0;
  animation: floaty 4s ease-in-out infinite;
}
.coord-avatar {
  flex: 0 0 auto; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.9rem; line-height: 1; box-shadow: var(--shadow-sm);
}
.chat-bubble {
  position: relative; background: #fff; color: var(--ink);
  border-radius: 6px 16px 16px 16px; padding: 8px 13px;
  max-width: 250px; box-shadow: var(--shadow-md);
  margin-top: 4px;
}
.chat-bubble::before {
  content: ""; position: absolute; left: -7px; top: 14px;
  width: 14px; height: 14px; background: #fff;
  clip-path: polygon(100% 0, 0 55%, 100% 100%);
}
.chat-bubble .chat-name {
  display: block; font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--green-dark); margin-bottom: 3px;
}
.chat-bubble p { font-size: 0.92rem; font-weight: 700; color: var(--ink); line-height: 1.4; }
.coord-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.coord-points .chip {
  background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.16);
  color: #e8eef8; box-shadow: none;
}
.coord-cta { text-align: center; }
.coord-cta .phone-big {
  display: block; font-size: 1.9rem; font-weight: 800; color: #fff;
  letter-spacing: -0.01em; margin: 10px 0 18px;
}
.coord-cta .phone-big:hover { color: #ffd75e; }
.coord-cta .small { color: #b9c6dd; font-size: 0.9rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { padding: 60px 0 54px; background: #fff; overflow: hidden; }
.testi-rail-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testi-rail {
  display: flex; gap: 22px; width: max-content;
  animation: marquee 46s linear infinite;
  padding: 10px 0 26px;
}
.testi-rail:hover { animation-play-state: paused; }
.t-card {
  width: 380px; flex: 0 0 auto;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.t-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.t-card .t-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.t-card .stars { color: var(--amber); letter-spacing: 3px; font-size: 0.95rem; }
.t-card .quote-ic { font-size: 1.6rem; opacity: 0.9; }
.t-card p { font-size: 0.95rem; color: var(--ink); line-height: 1.65; }
.t-card .t-who { display: flex; align-items: center; gap: 13px; margin-top: 18px; }
.t-card .t-av {
  width: 48px; height: 48px; border-radius: 50%; flex: 0 0 auto;
  object-fit: cover; border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}
.t-card .t-who b { display: block; font-size: 0.95rem; letter-spacing: -0.01em; }
.t-card .t-who span { font-size: 0.8rem; color: var(--muted); }
.t-card .t-route {
  margin-left: auto; font-size: 0.74rem; font-weight: 700;
  background: #fff; border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 100px; color: var(--muted);
  white-space: nowrap;
}

/* ============================================================
   BRANCHES
   ============================================================ */
.branches { padding: 90px 0; }
.branch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.b-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column; gap: 6px;
}
.b-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.b-card.hq {
  background: linear-gradient(150deg, var(--navy) 0%, #142a57 100%);
  color: #fff; border-color: #2a3f6e;
}
.b-card.hq .b-addr, .b-card.hq .b-line span { color: #b9c6dd; }
.b-card.hq .b-line a { color: #fff; }
.hq-badge {
  position: absolute; top: -12px; right: 18px;
  background: var(--grad-brand); color: #fff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  box-shadow: 0 8px 18px rgba(224, 37, 47, 0.4);
}
.b-city { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.b-city .b-ic {
  width: 46px; height: 46px; border-radius: 14px; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); border: 1px solid var(--line);
}
.b-card.hq .b-city .b-ic { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.16); }
.b-city h3 { font-size: 1.18rem; font-weight: 800; letter-spacing: -0.01em; }
.b-addr { font-size: 0.88rem; color: var(--muted); line-height: 1.55; min-height: 44px; }
.b-line { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; margin-top: 2px; }
.b-line span { color: var(--muted); }
.b-line a { font-weight: 700; }
.b-line a:hover { color: var(--red); }
.b-card.hq .b-line a:hover { color: #ffd75e; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 60px 0; background: #fff; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item.open { border-color: #cfe3f5; box-shadow: var(--shadow-sm); background: #fff; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  padding: 20px 24px; text-align: left;
  font-weight: 700; font-size: 1.02rem; color: var(--ink); letter-spacing: -0.01em;
}
.faq-q .fx {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 600; color: var(--red);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item.open .fx { transform: rotate(45deg); background: var(--red); color: #fff; border-color: var(--red); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: 40px 0 100px; }
.final-panel {
  position: relative; overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(120deg, var(--green-dark) 0%, var(--green) 50%, #22c667 100%);
  color: #fff; text-align: center;
  padding: 74px 30px;
  box-shadow: 0 34px 80px rgba(20, 154, 67, 0.35);
}
.final-panel::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.14) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 26%, rgba(255, 255, 255, 0.12) 0 4px, transparent 5px),
    radial-gradient(circle at 24% 82%, rgba(255, 255, 255, 0.1) 0 6px, transparent 7px),
    radial-gradient(circle at 74% 78%, rgba(255, 255, 255, 0.12) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.1) 0 4px, transparent 5px);
}
.final-panel h2 {
  position: relative;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.15;
}
.final-panel p { position: relative; color: #e3f9ea; margin: 16px auto 30px; max-width: 560px; font-size: 1.08rem; }
.final-actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: #b9c6dd; padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 46px;
}
.footer .logo-chip {
  display: inline-block; background: #fff; border-radius: 14px;
  padding: 10px 16px; margin-bottom: 18px;
}
.footer .logo-chip img { height: 44px; }
.footer p.about { font-size: 0.92rem; line-height: 1.7; max-width: 340px; }
.footer .gst-chip {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 8px 15px; border-radius: 100px;
  background: rgba(20, 154, 67, 0.14); border: 1px solid rgba(95, 224, 141, 0.3);
  color: #5fe08d; font-size: 0.82rem; font-weight: 700;
}
.footer h4 {
  color: #fff; font-size: 1rem; font-weight: 800;
  margin-bottom: 18px; letter-spacing: 0.02em;
}
.footer ul { display: flex; flex-direction: column; gap: 11px; font-size: 0.92rem; }
.footer ul a { transition: color 0.2s, padding-left 0.2s; }
.footer ul a:hover { color: #fff; padding-left: 5px; }
.footer .contact-li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.footer .contact-li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap; font-size: 0.84rem;
}
.footer-bottom .made { color: #7a89a6; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
  animation: wa-pop 2.4s ease-in-out infinite;
}
.float-wa svg { width: 30px; height: 30px; fill: #fff; }
.float-wa:hover { transform: scale(1.1); }
@keyframes wa-pop {
  0%, 100% { box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}
.float-call {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: none; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 14px 32px rgba(224, 37, 47, 0.4);
  transition: transform 0.25s ease;
  animation: call-pop 2.4s ease-in-out infinite;
}
.float-call svg { width: 27px; height: 27px; fill: #fff; }
.float-call:hover { transform: scale(1.1); }
@keyframes call-pop {
  0%, 100% { box-shadow: 0 14px 32px rgba(224, 37, 47, 0.4), 0 0 0 0 rgba(224, 37, 47, 0.4); }
  50% { box-shadow: 0 14px 32px rgba(224, 37, 47, 0.4), 0 0 0 14px rgba(224, 37, 47, 0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
  .hero-in { grid-template-columns: 1fr; gap: 44px; padding-top: 50px; }
  .hero-sub { max-width: none; }
  .lead-card { max-width: 560px; margin: 0 auto; width: 100%; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 70px; }
  .why-media .main-img { height: 420px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 34px; }
  .steps::before { display: none; }
  .coord-in { grid-template-columns: 1fr; text-align: center; }
  .coord p { margin-left: auto; margin-right: auto; }
  .coord-chat { justify-content: center; }
  .coord-points { justify-content: center; }
  .branch-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .topbar-right { display: none; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    background: #ffffff; flex-direction: column; align-items: stretch;
    padding: 90px 24px 34px; gap: 6px;
    box-shadow: var(--shadow-lg);
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.3, 1);
    z-index: 55;
    opacity: 1;
  }
  .nav.open { transform: translateX(0); }
  .nav a {
    display: flex; align-items: center; gap: 14px;
    font-size: 1.05rem; padding: 13px 14px; border-radius: 14px;
    color: var(--ink); transition: background 0.2s ease, color 0.2s ease;
  }
  .nav a:hover { background: var(--bg); color: var(--red); }
  .nav a::after { display: none; }
  .nav-ic {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 10px; flex: 0 0 auto;
    background: var(--bg); font-size: 1.05rem;
  }
  .hamburger { display: flex; z-index: 56; }
  .header-cta .btn-red { display: none; }
  .header-in { padding: 9px 0; }
  .brand img { height: 38px; }
  .hamburger { padding: 6px; gap: 4px; }
  .hamburger span { width: 22px; height: 2.5px; }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2.15rem; }
  .hero-in { padding-top: 40px; }
  .lead-form { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-feats { grid-template-columns: 1fr; }
  .why-media .main-img { height: 320px; }
  .float-card.fc-top { right: 6px; }
  .float-card.fc-bot { left: 6px; }
  .steps { grid-template-columns: 1fr; }
  .branch-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-card .num { font-size: 1.9rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .t-card { width: 320px; }
  .gallery-grid { columns: 2 160px; column-gap: 12px; }
  .g-item { margin-bottom: 12px; }
  .g-item::after { opacity: 1; background: linear-gradient(180deg, transparent 50%, rgba(11, 23, 51, 0.75)); }
  .g-item figcaption { opacity: 1; transform: none; font-size: 0.82rem; }
  .final-panel { padding: 56px 22px; }
  .float-wa { left: 22px; right: auto; }
  .float-call { display: flex; right: 22px; left: auto; }
  .topbar-in { justify-content: center; }
}

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