/* ═══════════════════════════════════════════
   YASH ROADWAYS — Dev Shah / Claude Aesthetic
   Cream bg · Warm dark text · Terracotta accent
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

:root {
  /* ── Exact portfolio colors ── */
  --bg:        #F9F5EF;
  --bg-2:      #F0EAE2;
  --bg-3:      #F5F0E8;
  --surface:   #FFFFFF;
  --surface-2: #F9F5EF;

  /* ── Dark warm text ── */
  --text:      #1C1714;
  --text-2:    #3d2e25;
  --text-3:    #7A6F68;
  --text-4:    #2A4A8A;

  /* ── Navy — primary ── */
  --accent:       #1E3A7B;
  --accent-light: #2E55B0;
  --accent-pale:  #4E78D8;
  --accent-glow:  rgba(13, 33, 72, 0.18);
  --accent-dim:   rgba(13, 33, 72, 0.07);
  --accent-mid:   rgba(13, 33, 72, 0.18);

  /* ── Premium gold ── */
  --gold:         #C8860A;
  --gold-light:   #E8A820;
  --gold-pale:    #F5C84A;
  --gold-glow:    rgba(200, 134, 10, 0.20);
  --gold-dim:     rgba(200, 134, 10, 0.10);

  /* ── Teal / cyan ── */
  --teal:         #0891B2;
  --teal-light:   #06B6D4;
  --teal-glow:    rgba(8, 145, 178, 0.20);

  /* ── Purple ── */
  --purple:       #6D28D9;
  --purple-light: #8B5CF6;
  --purple-glow:  rgba(109, 40, 217, 0.18);

  /* ── Emerald ── */
  --emerald:      #047857;
  --emerald-light:#10B981;
  --emerald-glow: rgba(4, 120, 87, 0.18);

  /* ── Rose ── */
  --rose:         #BE185D;
  --rose-light:   #EC4899;
  --rose-glow:    rgba(190, 24, 93, 0.18);

  /* ── Borders ── */
  --border:   #E5DDD5;
  --border-2: rgba(13, 33, 72, 0.15);

  /* ── Typography ── */
  --font-main: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius:    14px;
  --radius-sm: 9px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
}

html { scroll-behavior: smooth; }

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

/* Grain texture — exact portfolio opacity 0.022 */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

::selection { background: rgba(27,61,140,0.15); color: #1B3D8C; }

body > * { position: relative; z-index: 1; }

a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 55%, var(--gold-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── CURSOR SPOTLIGHT ─── */
#cursorGlow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: radial-gradient(
    circle 160px at var(--cx, -9999px) var(--cy, -9999px),
    rgba(30, 58, 123, 0.10) 0%,
    transparent 100%
  );
}

/* ─── TYPEWRITER cursor blink ─── */
.typewriter-cursor {
  font-size: 1rem;
  color: var(--accent);
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ═══════════════════════ NAV ═══════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 28px;
  transition: var(--transition);
  background: linear-gradient(135deg, #1E3A7B 0%, #162D62 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

#navbar.scrolled {
  background: linear-gradient(135deg, rgba(30,58,123,0.97) 0%, rgba(22,45,98,0.97) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.20);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo { display: flex; align-items: center; gap: 10px; }

.logo-icon { font-size: 1.6rem; }

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
}

.footer-logo-img {
  height: 52px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.logo-main {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.1;
}

/* Gold dot accent */
.logo-main::after {
  content: '•';
  color: var(--gold);
  margin-left: 2px;
}

.logo-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.52);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }

.nav-links a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: var(--transition);
}

.nav-links a:hover { color: #ffffff; background: rgba(255,255,255,0.10); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 9px !important;
  box-shadow: 0 3px 12px var(--gold-glow) !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-pale)) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--gold-glow) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span { width: 22px; height: 2px; background: rgba(255,255,255,0.85); border-radius: 2px; transition: var(--transition); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 10px 0;
}

.mobile-menu a {
  padding: 12px 28px;
  font-size: 0.95rem;
  color: var(--text-2);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.mobile-menu a:hover { color: var(--accent); border-left-color: var(--accent); background: var(--accent-dim); }
.mobile-menu.open { display: flex; }

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
  /* Exact portfolio dot grid */
  background-color: #F9F5EF;
  background-image: radial-gradient(rgba(27,61,140,0.14) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Aurora blob 1 */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -100px; right: -60px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,123,0.28) 0%, transparent 65%);
  filter: blur(80px);
  animation: aurora1 22s ease-in-out infinite;
}

/* Aurora blob 2 */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,134,10,0.22) 0%, transparent 65%);
  filter: blur(100px);
  animation: aurora2 28s ease-in-out infinite;
}

/* Aurora blob 3 (extra div injected by JS, or use sibling) */
.hero-aurora-3 {
  position: absolute;
  top: 25%; left: 35%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,0.16) 0%, transparent 65%);
  filter: blur(70px);
  animation: aurora3 18s ease-in-out infinite;
  pointer-events: none;
}

/* Aurora blob 4 — purple */
.hero-aurora-4 {
  position: absolute;
  bottom: 5%; right: 8%;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,40,217,0.18) 0%, transparent 65%);
  filter: blur(80px);
  animation: aurora2 24s ease-in-out infinite reverse;
  pointer-events: none;
}

/* Aurora blob 5 — rose */
.hero-aurora-5 {
  position: absolute;
  top: 55%; left: 8%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190,24,93,0.14) 0%, transparent 65%);
  filter: blur(70px);
  animation: aurora1 32s ease-in-out infinite alternate;
  pointer-events: none;
}

/* symbolFloat for floating transport chars */
@keyframes symbolFloat {
  0%   { opacity: 0; transform: translateY(0px); }
  10%  { opacity: var(--sym-opacity, 0.10); }
  90%  { opacity: var(--sym-opacity, 0.10); }
  100% { opacity: 0; transform: translateY(-90px); }
}

@keyframes aurora1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(-40px,30px) scale(1.08); }
  66%     { transform: translate(30px,-20px) scale(0.96); }
}
@keyframes aurora2 {
  0%,100% { transform: translate(0,0) scale(1.04); }
  33%     { transform: translate(50px,-35px) scale(1); }
  66%     { transform: translate(-30px,40px) scale(1.1); }
}
@keyframes aurora3 {
  0%,100% { transform: translate(0,0) scale(0.98); }
  50%     { transform: translate(-25px,-30px) scale(1.06); }
}

.hero-scatter, .hero-lines { display: none; }

/* ─── HERO CONTENT ─── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 80px 28px;
  margin-left: calc((100vw - 1200px) / 2);
}

@media (max-width: 1260px) { .hero-content { margin-left: 28px; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(28,23,20,0.06);
  border: 1px solid var(--border);
  color: var(--text-3);
  padding: 7px 15px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.5); }
}

/* The massive Dev Shah-style heading */
.hero-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  color: var(--text);
}

/* The terracotta dot after the name — like "Dev Shah." */
.hero-title-dot {
  color: var(--gold);
  display: inline;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 22px;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.hero-subtitle-prefix {
  color: var(--text-4);
  font-weight: 400;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-3);
  max-width: 500px;
  line-height: 1.82;
  margin-bottom: 36px;
}

.hero-desc strong { color: var(--text); font-weight: 700; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1E3A7B 0%, #1A4DB5 50%, #0891B2 100%);
  color: white;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(8,145,178,0.30);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1A4DB5 0%, #0891B2 50%, #06B6D4 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(8,145,178,0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-2);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(28,23,20,0.06);
  border-color: var(--text-3);
  color: var(--text);
}

/* Social-style links row — like Dev Shah's GitHub / LinkedIn / Email */
.hero-social {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-social a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-4);
  transition: color 0.2s;
}

.hero-social a:hover { color: var(--accent); }

/* ─── HERO STATS ─── */
.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hstat { display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.hstat:first-child { padding-left: 0; }

.hstat-val {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.hstat-num {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hstat-val > span:last-child {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

/* ── Colorful stat numbers ── */
.hero-stats > :nth-child(1) .hstat-num,
.hero-stats > :nth-child(1) .hstat-val > span:last-child {
  background: linear-gradient(135deg, #1E3A7B, #3B6DD0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stats > :nth-child(3) .hstat-num,
.hero-stats > :nth-child(3) .hstat-val > span:last-child {
  background: linear-gradient(135deg, #C8860A, #F5C84A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stats > :nth-child(5) .hstat-num,
.hero-stats > :nth-child(5) .hstat-val > span:last-child {
  background: linear-gradient(135deg, #0891B2, #06B6D4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stats > :nth-child(7) .hstat-num,
.hero-stats > :nth-child(7) .hstat-val > span:last-child {
  background: linear-gradient(135deg, #047857, #10B981);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hstat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-4);
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hstat-divider { width: 1px; height: 36px; background: var(--border); }


/* ─── HERO VISUAL PANEL (right side) ─── */
.hero-visual {
  position: absolute;
  right: calc((100vw - 1200px) / 2);
  top: calc(50% + 40px);
  transform: translateY(-50%);
  z-index: 3;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: visualFloat 6s ease-in-out infinite;
}

@media (max-width: 1260px) { .hero-visual { right: 28px; } }
@media (max-width: 1100px) { .hero-visual { display: none; } }

@keyframes visualFloat {
  0%,100% { transform: translateY(-50%); }
  50%      { transform: translateY(calc(-50% - 8px)); }
}

/* Base card */
.hv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(28,23,20,0.10);
  transition: var(--transition);
}

.hv-card:hover {
  border-color: var(--accent-mid);
  box-shadow: 0 16px 48px rgba(28,23,20,0.14);
}

/* ── Live route card ── */
.hv-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hv-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hv-live-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hv-time {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-4);
}

.hv-route-body {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.hv-city {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hv-city strong { display: block; font-size: 1rem; font-weight: 800; color: var(--text); line-height: 1.1; }
.hv-city small  { display: block; font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-4); margin-top: 2px; }

.hv-city-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid;
  flex-shrink: 0;
}

.hv-dot-from { border-color: var(--accent); background: var(--accent-dim); }
.hv-dot-to   { border-color: var(--text-3); background: rgba(28,23,20,0.08); }

.hv-route-line {
  flex: 1;
  position: relative;
  height: 32px;
  display: flex;
  align-items: center;
}

.hv-dashes {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px,
    var(--accent) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.35;
}

.hv-truck-anim {
  position: absolute;
  font-size: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  animation: truckMove 4s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px var(--accent-glow));
}

@keyframes truckMove {
  0%   { left: 0%; }
  100% { left: calc(100% - 24px); }
}

.hv-route-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-3);
  font-family: var(--font-mono);
}

.hv-ontime {
  color: #16a34a;
  font-weight: 600;
}

/* ── Today's Operations card ── */
.hv-ops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 0;
}

.hv-ops-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hv-ops-cold {
  border-color: rgba(8,145,178,0.25);
  background: rgba(8,145,178,0.05);
}

.hv-ops-num {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hv-ops-cold .hv-ops-num { color: var(--teal); }

.hv-ops-num small {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.7;
}

.hv-ops-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hv-active-routes {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.hv-ar-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
}

.hv-ar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hv-ar-route {
  flex: 1;
  color: var(--text-2);
  font-weight: 500;
}

.hv-ar-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.hv-badge-green { background: rgba(16,185,129,0.12); color: #059669; }
.hv-badge-blue  { background: rgba(59,109,208,0.12); color: #2E55B0; }
.hv-badge-gold  { background: rgba(200,134,10,0.12);  color: #C8860A; }

/* ── Client trust strip ── */
.hv-strip-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-4);
  margin-bottom: 12px;
}

.hv-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hv-logo-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  transition: var(--transition);
  white-space: nowrap;
}

.hv-logo-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ── Mini stat cards ── */
.hv-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hv-mini {
  text-align: center;
  padding: 18px 14px;
}

.hv-mini-icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.hv-mini strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.hv-mini small  { font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-4); text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-4);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.15); }
}

/* ═══════════════════════ MARQUEE BAND ═══════════════════════ */
.marquee-band {
  background: linear-gradient(90deg, #1E3A7B 0%, #1A4DB5 25%, #0891B2 50%, #6D28D9 75%, #1E3A7B 100%);
  background-size: 200% 100%;
  animation: marqueeGradient 8s linear infinite;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

@keyframes marqueeGradient {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.marquee-band::before,
.marquee-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 1;
}

.marquee-band::before { left: 0; background: linear-gradient(to right, #1E3A7B, transparent); }
.marquee-band::after  { right: 0; background: linear-gradient(to left, #1E3A7B, transparent); }

.marquee-track {
  display: inline-flex;
  gap: 20px;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  color: rgba(255,252,248,0.88);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════ SECTION COMMONS ═══════════════════════ */
.section-tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(200, 134, 10, 0.30);
  color: var(--gold);
  padding: 5px 13px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 14px;
}

.section-subtitle { font-size: 1rem; color: var(--text-3); max-width: 540px; line-height: 1.75; }
.section-header { margin-bottom: 60px; }

/* ═══════════════════════ ABOUT ═══════════════════════ */
.about-section { background: var(--bg-3); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 400px;
}

.about-card-main {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  width: 270px;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(28,23,20,0.10);
  transition: var(--transition);
}

.about-card-main:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 50px var(--accent-glow);
  transform: translate(-50%, -52%);
}

.about-icon-big { font-size: 2.8rem; margin-bottom: 12px; }

.about-card-main h3 { font-weight: 800; font-size: 1.05rem; margin-bottom: 4px; color: var(--text); }
.about-card-main p  { color: var(--text-4); font-size: 0.8rem; font-family: var(--font-mono); }

.about-branch-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.about-card-float {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 3;
  color: var(--text-2);
  box-shadow: 0 4px 20px rgba(28,23,20,0.08);
  animation: floatCard 5.5s ease-in-out infinite;
}

.top-right   { top: 18px; right: 0; animation-delay: -2s; }
.bottom-left { bottom: 18px; left: 0; animation-delay: -4s; }

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

.glow-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(27,61,140,0.12);
  z-index: 1;
  animation: ringPulse 4.5s ease-in-out infinite;
}

.glow-ring::after {
  content: '';
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(27,61,140,0.06);
}

@keyframes ringPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.5; }
  50%      { transform: translate(-50%,-50%) scale(1.05); opacity: 1; }
}

.about-desc { color: var(--text-2); margin-bottom: 14px; font-size: 0.97rem; line-height: 1.82; }
.about-highlights { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.highlight-item:hover { border-color: var(--accent); }

.hi-icon { font-size: 1.4rem; flex-shrink: 0; }

.highlight-item strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; color: var(--text); }
.highlight-item span   { font-size: 0.82rem; color: var(--text-3); }

/* ═══════════════════════ SERVICES ═══════════════════════ */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(28,23,20,0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(1);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28,23,20,0.14);
}

/* Unique color per service card */
.service-card:nth-child(1)::before { background: linear-gradient(90deg, #1E3A7B, #3B6DD0); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, #C8860A, #F5C84A); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, #0891B2, #06B6D4); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, #6D28D9, #8B5CF6); }
.service-card:nth-child(5)::before { background: linear-gradient(90deg, #047857, #10B981); }
.service-card:nth-child(6)::before { background: linear-gradient(90deg, #BE185D, #EC4899); }

.service-card:nth-child(1):hover { border-color: rgba(30,58,123,0.30);   box-shadow: 0 16px 40px rgba(30,58,123,0.18); }
.service-card:nth-child(2):hover { border-color: rgba(200,134,10,0.30); box-shadow: 0 16px 40px rgba(200,134,10,0.18); }
.service-card:nth-child(3):hover { border-color: rgba(8,145,178,0.30);  box-shadow: 0 16px 40px rgba(8,145,178,0.18); }
.service-card:nth-child(4):hover { border-color: rgba(109,40,217,0.30); box-shadow: 0 16px 40px rgba(109,40,217,0.18); }
.service-card:nth-child(5):hover { border-color: rgba(4,120,87,0.30);   box-shadow: 0 16px 40px rgba(4,120,87,0.18); }
.service-card:nth-child(6):hover { border-color: rgba(190,24,93,0.30);  box-shadow: 0 16px 40px rgba(190,24,93,0.18); }

.service-icon { font-size: 2rem; margin-bottom: 16px; display: block; }

.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }

.service-card p { color: var(--text-3); font-size: 0.86rem; line-height: 1.78; margin-bottom: 18px; }

.service-tag {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 3px 11px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═══════════════════════ CLIENTS ═══════════════════════ */
.clients-section { background: var(--bg-2); }

.clients-category { margin-bottom: 52px; }

.cat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-4);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cat-icon { font-size: 1.2rem; }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}

.clients-grid-small {
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
}

.client-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(28,23,20,0.04);
}

.client-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(28,23,20,0.10), 0 0 0 1px var(--accent-dim);
}

.client-logo { font-size: 1.8rem; margin-bottom: 9px; }

.client-card span { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 3px; line-height: 1.3; }

.client-card small { display: block; font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-4); }

/* ═══════════════════════ WHY US ═══════════════════════ */
.whyus-section { background: var(--bg-3); }

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(28,23,20,0.05);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(28,23,20,0.10);
}

.why-num {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 600;
  color: rgba(27,61,140,0.10);
  position: absolute;
  top: 14px; right: 18px;
  line-height: 1;
}

/* Colorful left border + accent per why-card */
.why-card:nth-child(1) { border-left: 3px solid #1E3A7B; }
.why-card:nth-child(2) { border-left: 3px solid #C8860A; }
.why-card:nth-child(3) { border-left: 3px solid #0891B2; }
.why-card:nth-child(4) { border-left: 3px solid #6D28D9; }
.why-card:nth-child(5) { border-left: 3px solid #047857; }
.why-card:nth-child(6) { border-left: 3px solid #BE185D; }

.why-card:nth-child(1) .why-num { color: rgba(30,58,123,0.13); }
.why-card:nth-child(2) .why-num { color: rgba(200,134,10,0.18); }
.why-card:nth-child(3) .why-num { color: rgba(8,145,178,0.18); }
.why-card:nth-child(4) .why-num { color: rgba(109,40,217,0.18); }
.why-card:nth-child(5) .why-num { color: rgba(4,120,87,0.18); }
.why-card:nth-child(6) .why-num { color: rgba(190,24,93,0.18); }

.why-icon { font-size: 1.7rem; margin-bottom: 14px; }
.why-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.why-card p  { font-size: 0.85rem; color: var(--text-3); line-height: 1.75; }

/* ═══════════════════════ CONTACT ═══════════════════════ */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}

.contact-info h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 26px; color: var(--text); }

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact-item:hover { border-color: var(--accent); }

.c-icon { font-size: 1.3rem; flex-shrink: 0; }

.contact-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-item p { font-size: 0.86rem; color: var(--text-2); line-height: 1.72; }
.contact-item a { color: var(--accent); transition: color 0.2s; }
.contact-item a:hover { color: var(--accent-light); }

.social-row { display: flex; gap: 10px; margin-top: 22px; }

.social-btn {
  flex: 1;
  text-align: center;
  padding: 11px;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  font-weight: 700;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: var(--transition);
}

.social-btn:hover { border-color: var(--accent); color: var(--accent); }
.social-btn.whatsapp { color: #16a34a; }
.social-btn.whatsapp:hover { border-color: #16a34a; background: rgba(22,163,74,0.05); }

/* FORM */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(28,23,20,0.07);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-4);
  margin-bottom: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-4); }

.btn-full { width: 100%; justify-content: center; font-size: 0.97rem; padding: 14px; }
.btn-arrow { font-size: 1.1rem; transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.form-note {
  margin-top: 11px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-4);
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer {
  background: #0C1A3A;
  border-top: none;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.48); line-height: 1.78; margin-bottom: 18px; }

.footer .logo-main { color: #ffffff; }
.footer .logo-sub  { color: rgba(255,255,255,0.42); }

.footer-contact-chips { display: flex; gap: 9px; flex-wrap: wrap; }

.footer-contact-chips a {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.58);
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-contact-chips a:hover { border-color: var(--gold); color: var(--gold); }

.footer-links h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links a { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.45); margin-bottom: 9px; transition: color 0.2s; }
.footer-links a:hover { color: #ffffff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  color: rgba(255,255,255,0.28);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

/* ═══════════════════════ REVEAL ═══════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 44px; }
  .about-visual  { height: 300px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section       { padding: 68px 0; }
  .nav-links     { display: none; }
  .hamburger     { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .whyus-grid    { grid-template-columns: 1fr; }
  .clients-grid  { grid-template-columns: repeat(2, 1fr); }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .contact-form  { padding: 22px; }
  .hero-content  { padding: 60px 24px 80px; }
}

@media (max-width: 480px) {
  .hero-title    { font-size: 3rem; }
  .hero-actions  { flex-direction: column; }
  .hstat-divider { display: none; }
  .social-row    { flex-direction: column; }
}

/* ═══════════════════════════════════════════
   MULTI-PAGE STYLES
   ═══════════════════════════════════════════ */

/* ─── Nav active link ─── */
.nav-links a.active {
  color: #ffffff;
  background: rgba(255,255,255,0.15);
}

.mobile-menu a.active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: var(--accent-dim);
}

/* ─── Hero photo card (home right side) ─── */
.hero-photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(28,23,20,0.18);
}

.hero-truck-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.hero-photo-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(240,234,226,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ─── Page hero banner ─── */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 68px;
}

.page-hero-short { height: 340px; }

.page-hero-photo {
  position: absolute;
  inset: 0;
}

.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,23,20,0.3) 0%,
    rgba(28,23,20,0.75) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 52px;
  color: var(--bg);
}

.page-hero-content h1 {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 12px 0 10px;
  color: #f9f5ef;
}

.page-hero-content p {
  font-size: 1rem;
  color: rgba(240,234,226,0.8);
  font-weight: 400;
}

/* ─── Home About teaser ─── */
.home-about { background: var(--bg-3); }

.ha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ha-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(28,23,20,0.14);
}

.ha-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ha-photo:hover img { transform: scale(1.03); }

.ha-photo-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(240,234,226,0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
}

.ha-text p { color: var(--text-2); line-height: 1.82; font-size: 0.97rem; }

/* ─── Home Services teaser ─── */
.home-services { background: var(--bg); }

.hs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(28,23,20,0.05);
  position: relative;
}

.hs-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}

.hs-card:nth-child(1)::after { background: linear-gradient(90deg, #1E3A7B, #3B6DD0); }
.hs-card:nth-child(2)::after { background: linear-gradient(90deg, #C8860A, #F5C84A); }
.hs-card:nth-child(3)::after { background: linear-gradient(90deg, #0891B2, #06B6D4); }

.hs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(28,23,20,0.14);
}

.hs-card:nth-child(1):hover { border-color: rgba(30,58,123,0.30);   box-shadow: 0 20px 48px rgba(30,58,123,0.18); }
.hs-card:nth-child(2):hover { border-color: rgba(200,134,10,0.30); box-shadow: 0 20px 48px rgba(200,134,10,0.18); }
.hs-card:nth-child(3):hover { border-color: rgba(8,145,178,0.30);  box-shadow: 0 20px 48px rgba(8,145,178,0.18); }

.hs-photo { overflow: hidden; height: 200px; }

.hs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hs-card:hover .hs-photo img { transform: scale(1.06); }

.hs-body { padding: 22px; }
.hs-icon { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.hs-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.hs-body p  { font-size: 0.86rem; color: var(--text-3); line-height: 1.75; }

/* ─── CTA banner ─── */
.cta-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-photo {
  position: absolute;
  inset: 0;
}

.cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,123,0.88) 0%, rgba(109,40,217,0.55) 50%, rgba(8,145,178,0.55) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #f9f5ef;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(240,234,226,0.75);
  margin-bottom: 32px;
}

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #f9f5ef;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid rgba(240,234,226,0.35);
  transition: var(--transition);
}

.btn-ghost-light:hover {
  background: rgba(240,234,226,0.1);
  border-color: rgba(240,234,226,0.7);
}

/* ─── About page ─── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-story-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(28,23,20,0.14);
}

.about-story-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.asp-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(240,234,226,0.92);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px 16px;
}

.asp-badge strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--text); }
.asp-badge span   { display: block; font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-4); margin-top: 2px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}

.value-card:hover { border-color: var(--accent-mid); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(28,23,20,0.08); }

.value-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(27,61,140,0.08);
  position: absolute;
  top: 14px; right: 18px;
  line-height: 1;
}

.value-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: var(--accent); }
.value-card p  { font-size: 0.88rem; color: var(--text-2); line-height: 1.78; }

.fleet-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.fleet-photo-col { display: flex; flex-direction: column; gap: 18px; }

.fleet-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(28,23,20,0.10);
  flex: 1;
}

.fleet-photo img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.fleet-photo:hover img { transform: scale(1.04); }

.fleet-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(240,234,226,0.9);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text);
}

.branch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.branch-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 8px 28px rgba(28,23,20,0.08);
}

.bc-icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.branch-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.branch-card p  { font-size: 0.88rem; color: var(--text-3); line-height: 1.75; }

.bc-divider { height: 1px; background: var(--border); margin: 24px 0; }

.bc-contacts { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.bc-contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--accent);
  font-weight: 500;
  transition: color 0.2s;
}
.bc-contacts a:hover { color: var(--accent-light); }

/* ─── Services page ─── */
.svc-section { }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.svc-grid-reverse { direction: rtl; }
.svc-grid-reverse > * { direction: ltr; }

.svc-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(28,23,20,0.14);
}

.svc-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.svc-photo:hover img { transform: scale(1.03); }

.svc-icon-big { font-size: 2.6rem; margin-bottom: 10px; display: block; }

.svc-text p { color: var(--text-2); line-height: 1.82; font-size: 0.97rem; }

.svc-features {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.svc-features li {
  font-size: 0.88rem;
  color: var(--text-2);
  font-weight: 500;
  padding: 8px 12px;
  background: var(--accent-dim);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.mini-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mini-svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.mini-svc-card:hover { border-color: var(--accent-mid); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(28,23,20,0.08); }
.mini-svc-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--text); margin-top: 12px; }
.mini-svc-card p  { font-size: 0.88rem; color: var(--text-2); line-height: 1.78; }

/* ─── Clients page ─── */
.clients-intro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.ci-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.ci-stat:hover { border-color: var(--accent); }

.ci-stat strong {
  display: block;
  font-family: var(--font-main);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.ci-stat span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.clients-tagline {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 0;
}

.clients-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.client-card-full {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: var(--transition);
}

.client-card-full:hover {
  border-color: var(--accent);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(28,23,20,0.08);
}

.ccf-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 10px;
}

.ccf-body { flex: 1; }
.ccf-body h3 { font-size: 0.97rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.ccf-body span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-4); }

.ccf-tag {
  background: var(--accent);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─── Contact: select dropdown ─── */
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239e7b65' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }

/* ─── Responsive additions ─── */
@media (max-width: 1024px) {
  .ha-grid           { grid-template-columns: 1fr; }
  .about-story-grid  { grid-template-columns: 1fr; }
  .branch-grid       { grid-template-columns: 1fr; }
  .hs-grid           { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: 1fr; }
  .svc-grid          { grid-template-columns: 1fr; }
  .svc-grid-reverse  { direction: ltr; }
  .svc-photo img     { height: 260px; }
  .fleet-grid        { grid-template-columns: 1fr; }
  .clients-intro     { grid-template-columns: repeat(2, 1fr); }
  .clients-grid-full { grid-template-columns: 1fr; }
  .mini-svc-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-hero         { height: 320px; }
  .page-hero-short   { height: 260px; }
  .cta-banner        { height: auto; padding: 60px 0; }
  .clients-intro     { grid-template-columns: repeat(2, 1fr); }
  .hs-grid           { grid-template-columns: 1fr; }
}
