/* ───────────────────────── Reset + base ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0C1220;
  color: #E5EAF2;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

:root {
  --bg-0: #0C1220;
  --bg-1: #111a2e;
  --bg-2: #1a2540;
  --bg-3: #243355;
  --line: #1f2a44;
  --line-strong: #2c3a5b;
  --blue: #2563EB;
  --blue-bright: #3b82f6;
  --blue-deep: #1e3a8a;
  --blue-soft: rgba(37,99,235,0.12);
  --text: #E5EAF2;
  --text-mute: #8a96b0;
  --text-dim: #5d6a85;
  --display: 'Barlow Condensed', sans-serif;
}

.display { font-family: var(--display); font-weight: 700; letter-spacing: 0.02em; }
.eyebrow {
  font-family: var(--display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.28em;
  color: var(--blue-bright); font-size: 13px;
}
.section { padding: 120px 0; position: relative; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ───────────────────────── Custom cursor ───────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-bright);
  transition: transform 0.08s linear, width 0.18s, height 0.18s;
  box-shadow: 0 0 12px rgba(59,130,246,0.7);
}
.cursor-ring {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.5);
  transition: transform 0.18s ease-out, width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor-hover .cursor-dot { width: 10px; height: 10px; }
.cursor-hover .cursor-ring { width: 50px; height: 50px; border-color: rgba(59,130,246,0.9); }
@media (max-width: 1024px) { .cursor-dot, .cursor-ring { display: none; } }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ───────────────────────── Header ───────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(12,18,32,0.65);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: padding 0.25s, background 0.25s;
}
.header.scrolled { padding: 12px 0; background: rgba(12,18,32,0.92); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo {
  font-family: var(--display); font-weight: 800;
  font-size: 28px; letter-spacing: 3px; color: #fff;
  position: relative; padding: 4px 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.logo-img-wrap { padding: 0; }
.logo-img { height: 40px; width: auto; display: block; filter: brightness(0) invert(1); transition: opacity 0.2s; }
.logo-img-wrap:hover .logo-img { opacity: 0.85; }
.logo .o-accent { position: relative; display: inline-block; }
.logo .o-accent::after {
  content: ""; position: absolute; left: -2px; right: -2px;
  bottom: 4px; height: 2px;
  background: var(--blue-bright);
}
.logo .o-accent::before {
  content: ""; position: absolute; left: -2px; right: -2px;
  top: 4px; height: 2px;
  background: var(--blue-bright);
}

.nav { display: flex; gap: 28px; margin-left: auto; margin-right: auto; }
.nav a {
  font-size: 14px; font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  position: relative; padding: 6px 0;
  transition: color 0.2s;
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--blue-bright);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.header-right { display: flex; align-items: center; gap: 20px; }
.phone-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: color 0.2s;
}
.phone-link i { color: var(--blue-bright); font-size: 13px; }
.phone-link:hover { color: var(--blue-bright); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, background 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(37,99,235,0.55); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-large { padding: 16px 28px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

.hamburger {
  display: none; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
}
.hamburger span {
  display: block; width: 18px; height: 2px; background: #fff;
  position: relative; transition: transform 0.25s, opacity 0.25s;
}
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: #fff;
  transition: transform 0.25s;
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { transform: translateY(6px) rotate(45deg); }
.hamburger.open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 85vw);
  background: #0a0f1c;
  border-left: 1px solid var(--line);
  padding: 90px 32px 32px;
  transform: translateX(100%); transition: transform 0.3s ease;
  z-index: 99;
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  padding: 16px 0; font-size: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.mobile-nav .mobile-cta { margin-top: 24px; }
.mobile-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.25s; z-index: 98;
}
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }

/* ───────────────────────── Hero ───────────────────────── */
.hero {
  position: relative; min-height: 100vh; padding-top: 100px;
  display: flex; align-items: center;
  overflow: hidden;
  background: #070b15;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,11,21,0.95) 0%, rgba(7,11,21,0.78) 35%, rgba(7,11,21,0.35) 60%, rgba(7,11,21,0.55) 100%),
    radial-gradient(ellipse at 80% 40%, rgba(37,99,235,0.12), transparent 55%),
    linear-gradient(180deg, transparent 0%, transparent 60%, rgba(7,11,21,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 4;
  width: 100%;
  padding: 40px 0 140px;
}
.hero-grid { max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(59,130,246,0.35);
  background: rgba(37,99,235,0.08);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: #cfd9eb;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 28px;
}
.hero h1 .italic {
  font-style: italic; font-weight: 700;
  background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-mute);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.route-pills {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 13px;
}
.route-pills .pills-label {
  color: var(--text-dim);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em;
}
.pill {
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 500;
  color: #cfd9eb;
  letter-spacing: 0.05em;
}
.pill .arrow { color: var(--blue-bright); margin: 0 4px; }

/* hero stat strip */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 5;
  background: rgba(8,12,22,0.7);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-stat {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 4px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--display); font-weight: 800;
  font-size: 42px; line-height: 1;
  color: #fff;
  display: flex; align-items: baseline; gap: 4px;
}
.hero-stat .num .plus { color: var(--blue-bright); font-size: 30px; }
.hero-stat .label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--text-mute);
}

/* ───────────────────────── Booking band ───────────────────────── */
.booking-band {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.4), transparent 70%),
    linear-gradient(135deg, var(--blue-deep) 0%, #1e40af 100%);
  padding: 28px 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.4);
  overflow: hidden;
}
.booking-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 16px);
  pointer-events: none;
}
.booking-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.booking-band-text {
  font-family: var(--display); font-weight: 600;
  font-size: 22px; color: #fff;
  letter-spacing: 0.01em;
}
.booking-band-text .em { color: #93c5fd; }
.btn-band {
  background: #fff; color: var(--blue-deep);
  font-weight: 700; padding: 16px 28px;
  letter-spacing: 0.05em; text-transform: uppercase; font-size: 13px;
}
.btn-band:hover { background: #f1f5f9; transform: translateY(-2px); }

/* ───────────────────────── Section title ───────────────────────── */
.section-head { text-align: center; margin-bottom: 72px; }
.section-head h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 5.5vw, 60px);
  line-height: 1; color: #fff;
  margin-top: 14px;
  letter-spacing: -0.005em;
}
.section-head .lead {
  margin-top: 18px;
  color: var(--text-mute);
  max-width: 600px; margin-left: auto; margin-right: auto;
  font-size: 16px;
}

/* ───────────────────────── Services ───────────────────────── */
#storitve { background: #080d18; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.service-cell {
  background: #0c1322;
  padding: 44px 36px;
  position: relative;
  transition: background 0.2s;
  min-height: 260px;
  display: flex; flex-direction: column;
  border-left: 3px solid transparent;
}
.service-cell::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--blue-bright);
  transition: width 0.25s;
}
.service-cell:hover { background: #101a30; }
.service-cell:hover::before { width: 3px; }
.service-cell .num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; color: var(--text-dim);
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}
.service-cell .icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  color: var(--blue-bright); font-size: 24px;
  margin-bottom: 24px;
}
.service-cell h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.005em;
}
.service-cell p {
  font-size: 14px; color: var(--text-mute);
  line-height: 1.55;
}
.service-cell.cta {
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
  color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-cell.cta:hover { background: linear-gradient(135deg, #3b82f6 0%, var(--blue) 100%); }
.service-cell.cta::before { display: none; }
.service-cell.cta .num { color: rgba(255,255,255,0.6); }
.service-cell.cta h3 {
  font-size: 28px; line-height: 1.1;
  margin-bottom: 0;
}
.service-cell.cta .cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px; align-self: flex-start;
}
.service-cell.cta .cta-link i { transition: transform 0.2s; }
.service-cell.cta:hover .cta-link i { transform: translateX(4px); }

/* ───────────────────────── About ───────────────────────── */
#o-nas { background: #0C1220; }
.about-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px); line-height: 1;
  color: #fff; margin: 14px 0 28px;
  letter-spacing: -0.005em;
}
.about-text p {
  color: var(--text-mute); font-size: 16px; line-height: 1.7;
  margin-bottom: 18px;
}
.check-list {
  list-style: none; margin: 32px 0; padding: 0;
  display: grid; gap: 14px;
}
.check-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: #d8dfee;
}
.check-list li i {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(37,99,235,0.15);
  color: var(--blue-bright);
  font-size: 11px; flex-shrink: 0;
}
.fact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fact-card {
  background: #111a2e;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.fact-card::after {
  content: ""; position: absolute; top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top right, rgba(59,130,246,0.18), transparent 70%);
  pointer-events: none;
}
.fact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.2);
}
.fact-card .big {
  font-family: var(--display); font-weight: 800;
  font-size: 64px; line-height: 1;
  color: var(--blue-bright);
  margin-bottom: 6px;
  display: flex; align-items: baseline;
}
.fact-card .big .small { font-size: 36px; color: #93c5fd; margin-left: 2px; }
.fact-card .label {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--text-mute);
}
.fleet-banner {
  height: 340px;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 auto 80px;
}
.fleet-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 12px;
  transition: transform 0.8s ease;
}
.fleet-banner:hover img { transform: scale(1.03); }

@media (max-width: 768px) { .fleet-banner { height: 200px; margin-bottom: 48px; } }

/* ───────────────────────── Why us ───────────────────────── */
.why {
  background:
    radial-gradient(circle at 20% 30%, rgba(37,99,235,0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(37,99,235,0.05), transparent 50%),
    #080d18;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-item {
  position: relative; padding: 8px 0;
}
.why-item .why-num {
  font-family: var(--display); font-weight: 800;
  font-size: 96px; line-height: 1;
  color: rgba(59,130,246,0.12);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.why-item h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; color: #fff;
  margin-bottom: 12px;
}
.why-item p {
  color: var(--text-mute); font-size: 14px;
}

/* ───────────────────────── Disponent ───────────────────────── */
.disponent-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(37,99,235,0.1), transparent 60%),
    #0C1220;
  border-top: 1px solid var(--line);
}
.disponent-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.disponent-card {
  background: #111a2e;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.disponent-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.disponent-card:hover {
  border-color: rgba(59,130,246,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.12);
}
.disponent-card:hover::before { opacity: 1; }

.dc-status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: #22c55e;
}
.dc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 1.6s infinite;
}
.dc-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--blue-bright);
  margin: 4px 0;
}
.dc-name {
  font-family: var(--display); font-weight: 700;
  font-size: 17px; color: #fff; line-height: 1.2;
}
.dc-langs {
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
}
.dc-lang {
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px; font-weight: 500; color: var(--text-mute);
  font-family: 'JetBrains Mono', monospace;
}
.dc-call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 8px;
  font-size: 15px; font-weight: 600; color: #fff;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  margin-top: 4px;
}
.dc-call i { color: var(--blue-bright); }
.dc-call:hover {
  background: rgba(37,99,235,0.2);
  border-color: var(--blue-bright);
  transform: translateY(-1px);
}

/* CTA card */
.disponent-cta {
  background: linear-gradient(145deg, #111a2e 0%, #0f1729 100%);
  border-color: rgba(59,130,246,0.2);
  justify-content: center;
}
.dc-icon-big {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--blue-bright);
}
.disponent-cta h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 26px; color: #fff; margin: 0;
}
.disponent-cta p {
  font-size: 14px; color: var(--text-mute);
  line-height: 1.6; max-width: 260px;
}
.dc-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: #86efac;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.dc-badge i { color: #22c55e; }

@media (max-width: 1024px) { .disponent-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .disponent-grid { grid-template-columns: 1fr; } }

/* ───────────────────────── Contact ───────────────────────── */
#kontakt { background: #0C1220; }
.contact-grid {
  display: grid; grid-template-columns: 55fr 45fr; gap: 64px;
}
.contact-info { display: grid; gap: 16px; margin: 28px 0 32px; }
.contact-card {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px;
  background: #111a2e;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-card:hover { border-color: rgba(59,130,246,0.4); transform: translateX(2px); }
.contact-card-link { text-decoration: none; cursor: pointer; }
.ci-arrow {
  margin-left: auto; flex-shrink: 0;
  color: var(--text-dim); font-size: 12px;
  transition: color 0.2s, transform 0.2s;
}
.contact-card-link:hover .ci-arrow { color: var(--blue-bright); transform: translateX(3px); }
.contact-card .ci-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(37,99,235,0.12);
  color: var(--blue-bright); font-size: 18px;
  flex-shrink: 0;
}
.contact-card .ci-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 2px;
}
.contact-card .ci-value {
  font-size: 16px; color: #fff; font-weight: 500;
}
.map-placeholder {
  height: 240px; border-radius: 12px;
  background:
    radial-gradient(circle at 50% 50%, rgba(37,99,235,0.15), transparent 60%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 40px),
    #1a2a44;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.map-placeholder .map-pin {
  display: flex; align-items: center; gap: 10px;
  background: rgba(7,11,21,0.85);
  padding: 10px 16px; border-radius: 100px;
  border: 1px solid rgba(59,130,246,0.4);
  font-size: 13px; color: #cfd9eb;
}
.map-placeholder .map-pin i { color: var(--blue-bright); }

.contact-form {
  background: #111a2e;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px;
}
.contact-form h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 24px; color: #fff;
  margin-bottom: 6px;
}
.contact-form .note {
  font-size: 13px; color: var(--text-mute); margin-bottom: 24px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--text-dim);
  margin-bottom: 8px; font-weight: 500;
}
.input, .textarea, .select {
  width: 100%;
  padding: 14px 16px;
  background: #0a1224;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--blue-bright);
  background: #0d1730;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  padding: 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.4);
  border-radius: 8px;
  color: #86efac;
  font-size: 14px;
  margin-top: 14px;
}
.form-success.show { display: flex; align-items: center; gap: 10px; }

/* ───────────────────────── Footer ───────────────────────── */
.footer {
  background: #060912;
  border-top: 1px solid var(--line);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer .logo { font-size: 24px; margin-bottom: 16px; display: inline-block; }
.footer .tagline {
  color: var(--text-mute); font-size: 14px; max-width: 320px;
  line-height: 1.6;
}
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #111a2e;
  border: 1px solid var(--line);
  color: var(--text-mute);
  font-size: 14px;
  transition: all 0.2s;
}
.socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.footer h4 {
  font-family: var(--display); font-weight: 700;
  font-size: 16px; color: #fff;
  text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 20px;
}
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a { font-size: 14px; color: var(--text-mute); transition: color 0.2s; }
.footer ul a:hover { color: var(--blue-bright); }
.footer-contact { display: grid; gap: 12px; font-size: 14px; color: var(--text-mute); }
.footer-contact div { display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--blue-bright); width: 16px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}
.footer-bottom .legal { display: flex; gap: 18px; }

/* ───────────────────────── Reveal animations ───────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1 !important; transform: translateY(0) !important; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ───────────────────────── Responsive ───────────────────────── */
@media (max-width: 1100px) {
  .nav, .header-right .phone-link, .header-right .btn-primary { display: none; }
  .header-right .hamburger { display: inline-flex; }
}
@media (max-width: 1024px) {
  .section { padding: 88px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav, .header-right .phone-link, .header-right .btn { display: none; }
  .header-right .hamburger { display: inline-flex; }
  .hero { padding-top: 80px; }
  .hero-truck-img { display: none; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 18px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hero-stat .num { font-size: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .fact-cards { grid-template-columns: 1fr 1fr; }
  .fact-card .big { font-size: 48px; }
  .booking-band-inner { flex-direction: column; align-items: flex-start; }
  .booking-band-text { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-item .why-num { font-size: 72px; }
  .contact-card { padding: 16px 18px; gap: 14px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

@media (max-width: 420px) {
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-stat .num { font-size: 26px; }
  .section-head h2 { font-size: 32px; }
  .fact-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 24px; }
  .booking-band-text { font-size: 16px; }
  .btn-large { padding: 14px 20px; font-size: 14px; }
}
