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

:root {
  --orange: #F97316;
  --orange-d: #EA6A0B;
  --orange-glow: rgba(249,115,22,0.2);
  --bg: #07090F;
  --bg2: #0C1018;
  --bg3: #111827;
  --border: rgba(255,255,255,0.07);
  --border-o: rgba(249,115,22,0.28);
  --text: #F1F5F9;
  --muted: #94A3B8;
  --dim: #475569;
  --radius: 18px;
  --r-sm: 12px;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ===== GRADIENT TEXT ===== */
.text-grad {
  background: linear-gradient(130deg, #F97316 0%, #FB923C 50%, #FCD34D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== TAG / LABEL ===== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,115,22,0.09);
  border: 1px solid var(--border-o);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.tag-light {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* ===== SECTION HEADS ===== */
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-p { color: var(--muted); font-size: 1rem; max-width: 540px; margin: 0 auto; line-height: 1.75; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  padding: 12px 22px;
  letter-spacing: 0.02em;
  font-family: inherit;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249,115,22,0.38);
}
.btn-primary:hover {
  background: var(--orange-d);
  box-shadow: 0 6px 28px rgba(249,115,22,0.55);
  transform: translateY(-2px);
}
.btn-outline {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 30px; font-size: 0.95rem; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,9,15,0.9);
  border-bottom-color: var(--border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark {
  width: 40px;
  height: 40px;
  background: rgba(249,115,22,0.15);
  border: 1px solid var(--border-o);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text);
}
.logo-name em { color: var(--orange); font-style: normal; }
.logo-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 2px;
}

.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 10px 20px; font-size: 0.84rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 8px 28px 24px;
  background: rgba(7,9,15,0.98);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--orange); }
.mobile-menu .btn { margin-top: 16px; align-self: flex-start; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) saturate(0.8);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,9,15,0.85) 0%,
    rgba(7,9,15,0.6) 50%,
    rgba(7,9,15,0.4) 100%
  );
  /* Extra gradient to blend into the ticker */
  background:
    linear-gradient(to bottom, rgba(7,9,15,0) 60%, rgba(7,9,15,1) 100%),
    linear-gradient(135deg, rgba(7,9,15,0.9) 0%, rgba(7,9,15,0.5) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding-top: 100px;
  padding-bottom: 48px;
  min-height: 100vh;
}

.hero-content { flex: 1; display: flex; flex-direction: column; justify-content: center; max-width: 680px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(241,245,249,0.8);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero stats */
.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(12,16,24,0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 32px;
  margin-top: 60px;
  width: fit-content;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; padding: 0 36px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { padding-right: 0; }
.hs-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  display: inline;
}
.hs-suf {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  display: inline;
  margin-left: 2px;
}
.hs-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 6px;
  white-space: nowrap;
}
.hs-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--orange);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker-track span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.td { color: rgba(255,255,255,0.4) !important; font-size: 0.55rem !important; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services { padding: 120px 0 0; }
.services .container { padding-bottom: 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 0;
}

.svc-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.svc-photo {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}
.svc-photo img { filter: brightness(0.45) saturate(0.7); transition: filter 0.5s; }
.svc-card:hover .svc-photo { transform: scale(1.05); }
.svc-card:hover .svc-photo img { filter: brightness(0.35) saturate(0.6); }

.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,9,15,0.98) 30%, rgba(7,9,15,0.2) 100%);
  transition: background 0.4s;
}
.svc-card:hover .svc-overlay {
  background: linear-gradient(to top, rgba(7,9,15,1) 40%, rgba(249,115,22,0.05) 100%);
}

.svc-content {
  position: absolute;
  inset: 0;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.svc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
  opacity: 0.8;
}

.svc-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}

.svc-content p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.35s;
}
.svc-card:hover .svc-content p { max-height: 200px; opacity: 1; }

.svc-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.35s 0.05s;
}
.svc-card:hover .svc-content ul { max-height: 200px; opacity: 1; }
.svc-content li {
  font-size: 0.8rem;
  color: rgba(148,163,184,0.85);
  display: flex;
  align-items: center;
  gap: 7px;
}
.svc-content li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.svc-link {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid rgba(249,115,22,0.25);
  padding-top: 16px;
  margin-top: auto;
  transition: gap 0.2s;
}
.svc-link:hover { gap: 10px; }

/* Orange accent bar on hover */
.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover::after { transform: scaleX(1); }

/* ===== FLEET ===== */
.fleet {
  padding: 120px 0;
  background: var(--bg2);
}
.fleet-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.ft {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-family: inherit;
}
.ft:hover { border-color: var(--border-o); color: var(--text); }
.ft.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
}

.fleet-panels { min-height: 420px; }
.fp { display: none; animation: fadeUp 0.4s var(--ease); }
.fp.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.fp-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.fp-photo img { width: 100%; height: 100%; object-fit: cover; }
.fp-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
}

.fp-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}
.fp-info p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.fp-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.fspec {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.fspec span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 4px;
}
.fspec strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* ===== ABOUT SPLIT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.about-photo-col {
  position: relative;
  overflow: hidden;
}
.about-photo-col img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,9,15,0) 60%, rgba(7,9,15,0.8) 100%);
}
.about-content-col {
  background: var(--bg2);
  display: flex;
  align-items: center;
}
.about-content {
  padding: 80px 60px;
  max-width: 540px;
}
.about-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
}
.about-content > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 40px;
}
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color 0.25s, background 0.25s;
}
.why-item:hover { border-color: var(--border-o); background: rgba(249,115,22,0.04); }
.wi-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(249,115,22,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  padding: 9px;
}
.wi-icon svg { width: 100%; height: 100%; }
.why-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* ===== PROCESS ===== */
.process {
  padding: 120px 0;
  background: var(--bg);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.proc-item {
  padding: 0 32px;
  border-left: 1px solid var(--border);
  position: relative;
}
.proc-item:first-child { padding-left: 0; border-left: none; }
.proc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(249,115,22,0.15);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.proc-item:hover .proc-num { color: rgba(249,115,22,0.4); }
.proc-line {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 20px;
  border-radius: 2px;
}
.proc-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.proc-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }
.proc-line.hide { opacity: 0; }

/* ===== TESTIMONIALS ===== */
.testi {
  padding: 120px 0;
  background: var(--bg2);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tc {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.25s, transform 0.3s;
}
.tc:hover { border-color: var(--border-o); transform: translateY(-4px); }
.tc-stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 3px; }
.tc blockquote {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  position: relative;
  padding-left: 0;
}
.tc-author { display: flex; align-items: center; gap: 14px; }
.tc-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c, var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 0.9rem; }
.tc-author span { font-size: 0.78rem; color: var(--dim); }

/* ===== BRANDS ===== */
.brands {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.brands-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 28px;
}
.brands-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.brands-strip span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.25s;
  cursor: default;
}
.brands-strip span:hover { color: var(--text); }

/* ===== CONTACT ===== */
.contact {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.2) saturate(0.3); }
.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,9,15,0.97) 0%, rgba(7,9,15,0.85) 100%);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.contact-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
}
.contact-left > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 40px;
}
.cinfo-list { display: flex; flex-direction: column; gap: 12px; }
.cinfo-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, background 0.25s;
}
.cinfo-item:hover { border-color: var(--border-o); background: rgba(249,115,22,0.05); }
.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(249,115,22,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  padding: 10px;
}
.ci-icon svg { width: 100%; height: 100%; }
.cinfo-item span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 3px;
}
.cinfo-item strong { font-size: 0.95rem; font-weight: 600; }

/* Form */
.qform {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.qform h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 28px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.fg label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--dim); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}
.fg select option { background: var(--bg3); }
.fg textarea { resize: vertical; min-height: 96px; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--dim); margin-top: 14px; }

/* Form success */
.form-success {
  text-align: center;
  padding: 32px 20px;
}
.form-success .si {
  width: 64px;
  height: 64px;
  background: rgba(249,115,22,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
}
.form-success h4 { font-size: 1.4rem; margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 0.95rem; }
.form-success a { color: var(--orange); font-weight: 600; text-decoration: none; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 20px;
  max-width: 260px;
}
.footer-domain {
  color: var(--orange) !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  margin-top: 10px !important;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fn-col { display: flex; flex-direction: column; gap: 0; }
.fn-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 18px;
}
.fn-col a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  padding: 6px 0;
  transition: color 0.2s;
}
.fn-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--dim); }
.fb-links { display: flex; gap: 20px; }
.fb-links a { text-decoration: none; color: var(--dim); font-size: 0.78rem; transition: color 0.2s; }
.fb-links a:hover { color: var(--muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card { aspect-ratio: 4/3; }
  .svc-content p, .svc-content ul { max-height: unset; opacity: 1; }
  .about { grid-template-columns: 1fr; min-height: auto; }
  .about-photo-col { height: 400px; }
  .about-photo-overlay { background: linear-gradient(to bottom, rgba(7,9,15,0) 50%, rgba(7,9,15,0.9) 100%); }
  .about-content { padding: 60px 40px; max-width: 100%; }
  .fp-grid { grid-template-columns: 1fr; gap: 32px; }
  .fp-photo { max-width: 500px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .proc-item { border-left: none; padding-left: 0; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .fleet-tabs { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-stats-bar { flex-direction: column; width: 100%; padding: 20px; gap: 16px; }
  .hs-divider { width: 48px; height: 1px; }
  .hero-stat { flex-direction: row; align-items: baseline; gap: 8px; padding: 0; }
  .hs-label { margin-top: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { aspect-ratio: 16/9; }
  .process-grid { grid-template-columns: 1fr; }
  .fleet-tabs { gap: 6px; }
  .ft { font-size: 0.78rem; padding: 8px 16px; }
  .fp-grid { grid-template-columns: 1fr; }
  .fp-specs { grid-template-columns: 1fr 1fr; }
  .about-content { padding: 48px 28px; }
  .why-list { gap: 14px; }
  .frow { grid-template-columns: 1fr; }
  .qform { padding: 28px 22px; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .brands-strip { gap: 28px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .section-head h2 { font-size: 2.4rem; }
}
