@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #0B0F1A;
  --orange: #FF6A00;
  --white: #fff;
  --offwhite: #F8FAFC;
  --border: rgba(11, 15, 26, .08);
  --border-strong: rgba(11, 15, 26, .12);
  --text: #334155;
  --muted: #64748B;
  --success: #16a34a;
  --shadow: 0 10px 30px rgba(11, 15, 26, .06);
  --shadow-lg: 0 18px 50px rgba(11, 15, 26, .1);
  /* Wider body: Increased from 1280px to 1440px */
  --container: min(1440px, calc(100vw - 3rem));
}

/* Base Reset */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

button, input, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0 0 1rem;
}

/* Layout Components */
.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-light {
  padding: 5rem 0;
  background: var(--offwhite);
}

.page-hero {
  padding: 9rem 0 4rem;
  background: var(--offwhite);
}

.hero-section {
  min-height: 100vh;
  padding-top: 6rem;
  display: flex;
  align-items: center;
}

/* Grid Systems */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-2-3 {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2rem;
}

/* Typography */
.text-center {
  text-align: center;
}

.max-2 {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.max-3 {
  max-width: 58rem;
  margin-left: auto;
  margin-right: auto;
}

.headline-1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--navy);
}

.headline-2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--navy);
}

.headline-3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--navy);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 106, 0, .1);
  color: var(--orange);
  font-size: .92rem;
  font-weight: 600;
}

.eyebrow-dot {
  width: .65rem;
  height: .65rem;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 106, 0, .12);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.lead-lg {
  font-size: 1.15rem;
  color: var(--muted);
}

.text-orange { color: var(--orange); }
.text-white { color: #fff; }
.text-white-soft { color: rgba(255, 255, 255, .78); }

/* Header & Navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: all .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(11, 15, 26, .06);
}

.header-inner {
  width: var(--container);
  margin: 0 auto;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  height: 84px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a, .mobile-panel a {
  position: relative;
  font-weight: 600;
  color: var(--navy);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.35rem;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .2s ease;
}

.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--orange);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.35rem;
  border-radius: 16px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 106, 0, .25);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(255, 106, 0, .32);
}

.btn-secondary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 24px rgba(11, 15, 26, .16);
}

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow);
}

.menu-toggle svg { width: 24px; height: 24px; }

.mobile-panel {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 26, .72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .25s ease;
  z-index: 999;
}

.mobile-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-panel-inner {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  padding: 6rem 1.5rem 2rem;
  box-shadow: -20px 0 50px rgba(11, 15, 26, .18);
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-panel.open .mobile-panel-inner { transform: translateX(0); }

/* Cards & Components */
.card, .stat-card, .feature-card, .service-card, .vehicle-card, .region-card, .info-card, .faq-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.card-padding { padding: 1.6rem; }

.image-card {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aspect-4-3 { aspect-ratio: 4/3; }

.stat-card {
  padding: 1.6rem 1.2rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  color: var(--navy);
}

.stat-label {
  display: block;
  color: var(--muted);
  margin-top: .45rem;
}

.icon-badge {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 106, 0, .1);
  color: var(--orange);
  font-size: 1.35rem;
  flex: 0 0 auto;
}

/* Service Detail */
.service-detail {
  overflow: hidden;
  padding: 0;
}

.service-detail .content { padding: 1.6rem; }
.service-detail img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* Lists & Items */
.check-list { display: grid; gap: .7rem; }
.check-list li, .trust-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: var(--text);
}

.check { color: var(--orange); font-weight: 700; line-height: 1.2; }

.pill-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill {
  padding: .55rem .9rem;
  border-radius: 999px;
  background: var(--offwhite);
  color: #334155;
  font-size: .92rem;
  border: 1px solid var(--border);
}

/* Special Sections */
.dark-panel {
  background: var(--navy);
  color: #fff;
  border-radius: 32px;
  padding: 2.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.process-card { text-align: center; }
.process-number {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

/* Form Styling */
.form-card { padding: 2rem; }
.field-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .94rem; font-weight: 600; color: #334155; }

.field input, .field textarea, .field select {
  width: 100%;
  padding: .95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--navy);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, .12);
}

/* Footer */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: rgba(255, 255, 255, .72);
  font-size: .95rem;
}

.footer-logo { 
    height: 64px; 
    width: auto;
    filter: brightness(0) invert(1); 
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* Utility Classes */
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.flex { display: flex; }
.gap-4 { gap: 1rem; }

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .grid-4, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .grid-2, .grid-2-3, .process-grid, .grid-3 { grid-template-columns: 1fr; }
  .page-hero { padding-top: 8rem; }
}

@media (max-width: 760px) {
  :root { --container: min(100vw - 1.25rem, 100%); }
  .field-grid-2, .grid-4, .footer-grid, .footer-bottom { grid-template-columns: 1fr; }
}