*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:      #0B1F3A;
  --navy-dk:   #060F1E;
  --blue:      #1A52C4;
  --blue-mid:  #2563EB;
  --blue-pale: #EFF6FF;
  --blue-bdr:  #BFDBFE;
  --white:     #FFFFFF;
  --gray-50:   #F8FAFC;
  --gray-100:  #F1F5F9;
  --gray-200:  #E2E8F0;
  --gray-400:  #94A3B8;
  --gray-500:  #64748B;
  --gray-700:  #334155;
  --gray-900:  #0F172A;
  --radius:    12px;
  --shadow:    0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--gray-900); background: var(--white); overflow-x: hidden; }

/* ─ HEADER (logo only) ───────────────────── */
.site-header {
  background: var(--navy);
  padding: 0 0 0 24px;
  line-height: 0;
}
.site-header-inner {
  max-width: 1160px; margin: 0;
}

/* ─ NAV (links only, no sticky) ──────────── */
nav {
  background: var(--navy-dk);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  height: 80px; padding: 0 24px;
  display: flex; align-items: center; justify-content: flex-end;
}
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,.78); text-decoration: none; font-size: 16px; font-weight: 600; letter-spacing: .03em; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 14px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease;
  z-index: 100;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-dropdown-panel {
  background: var(--navy-dk); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 8px; min-width: 210px;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  display: flex; flex-direction: column; gap: 2px;
}
.nav-dropdown-panel a {
  padding: 10px 12px; border-radius: 6px;
  font-size: 14px !important; font-weight: 600 !important;
  white-space: nowrap; display: block;
}
.nav-dropdown-panel a:hover { background: rgba(255,255,255,.08); }
.nav-cta {
  background: var(--blue); color: #fff !important;
  padding: 10px 22px; border-radius: 8px; font-weight: 700 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--blue-mid) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 2px; background: white; border-radius: 2px; }

/* ─ HERO ─────────────────────────────────── */
#home {
  background: linear-gradient(135deg, var(--navy-dk) 0%, #0d2347 55%, #112960 100%);
  padding: 72px 24px 80px;
  position: relative; overflow: hidden;
}
#home::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background: url('/van.png') center / cover no-repeat;
  opacity: .13;
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(26,82,196,.3); border: 1px solid rgba(26,82,196,.5);
  color: #93C5FD; font-size: 12px; font-weight: 700;
  padding: 5px 13px; border-radius: 100px;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-badge::before { content: '●'; color: #4ADE80; font-size: 9px; }
h1 {
  font-size: clamp(34px, 5vw, 58px); font-weight: 800;
  color: white; line-height: 1.08; letter-spacing: -.02em; margin-bottom: 18px;
}
h1 em { font-style: normal; color: #60A5FA; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.72); margin-bottom: 32px; line-height: 1.65; max-width: 460px; }
.trust-row { display: flex; flex-direction: column; gap: 10px; width: fit-content; }
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.82); font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 100px;
}
.trust-pill svg { width: 14px; height: 14px; fill: #60A5FA; flex-shrink: 0; }

/* Booking card */
.book-card {
  background: white; border-radius: 18px; padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  width: 100%; overflow: hidden;
}
.book-card h2 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.book-card .sub { font-size: 13px; color: var(--gray-500); margin-bottom: 22px; }
.fgroup { display: flex; flex-direction: column; gap: 5px; margin-bottom: 13px; }
.fgroup label { font-size: 11px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; }
.fgroup input, .fgroup select {
  padding: 11px 13px; border: 1.5px solid var(--gray-200); border-radius: 8px;
  font-size: 15px; font-family: inherit; color: var(--gray-900); outline: none;
  background: white; transition: border-color .2s;
}
.fgroup input:focus, .fgroup select:focus { border-color: var(--blue); }
.frow2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; min-width: 0; }
.frow2 .fgroup { min-width: 0; }
.frow2 .fgroup input { width: 100%; min-width: 0; }
.btn-submit {
  width: 100%; padding: 14px;
  background: var(--blue); color: white;
  font-size: 16px; font-weight: 800; font-family: inherit;
  border: none; border-radius: 10px; cursor: pointer;
  transition: background .2s; margin-top: 4px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { background: var(--blue-mid); }
.book-phone {
  text-align: center; margin-top: 16px;
  font-size: 14px; color: var(--gray-500);
}
.book-phone a { color: var(--blue); font-weight: 700; text-decoration: none; }
.book-phone a:hover { text-decoration: underline; }

/* ─ SERVICES ─────────────────────────────── */
#services { padding: 88px 24px; background: var(--gray-50); }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 10px;
}
.section-label::before { content: ''; width: 24px; height: 3px; background: var(--blue); border-radius: 2px; display: block; }
h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; color: var(--gray-900); margin-bottom: 12px; }
.section-desc { font-size: 16px; color: var(--gray-500); max-width: 520px; line-height: 1.7; margin-bottom: 48px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: white; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
a.svc-card { text-decoration: none; color: inherit; display: block; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-card-photo { aspect-ratio: 16/9; background: var(--gray-100); overflow: hidden; }
.svc-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.svc-card:hover .svc-card-photo img { transform: scale(1.05); }
.svc-card-body { padding: 22px 22px 24px; }
.svc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.svc-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }
.svc-card .learn-more { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--blue); }

/* ─ WHY US ───────────────────────────────── */
#why { padding: 88px 24px; background: var(--navy); }
#why .section-label { color: #60A5FA; }
#why .section-label::before { background: #60A5FA; }
#why h2 { color: white; }
#why .section-desc { color: rgba(255,255,255,.6); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px; padding: 28px 24px; transition: background .2s;
}
.why-card:hover { background: rgba(255,255,255,.12); }
.why-num { font-size: 40px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 12px; }
.why-card h3 { font-size: 17px; font-weight: 800; color: white; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,.58); line-height: 1.7; }

/* ─ VAN ──────────────────────────────────── */
#fleet { padding: 88px 24px; background: white; }
.fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.fleet-img { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.fleet-img img { width: 100%; display: block; }
.fleet-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--blue); color: white; font-size: 13px; font-weight: 700;
  padding: 7px 14px; border-radius: 8px; display: flex; align-items: center; gap: 6px;
}
.fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.spec {
  background: var(--blue-pale); border: 1px solid var(--blue-bdr);
  border-radius: 9px; padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.spec svg { width: 18px; height: 18px; fill: var(--blue); flex-shrink: 0; }

/* ─ COVERAGE ─────────────────────────────── */
#coverage { padding: 88px 24px; background: var(--gray-50); }
.cov-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.areas { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.area-tag {
  background: white; border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 10px 14px;
  font-size: 14px; font-weight: 600; color: var(--gray-700);
  display: flex; align-items: center; gap: 7px;
}
.area-tag::before { content: '📍'; font-size: 13px; }
.cov-cta {
  background: var(--navy); border-radius: 16px; padding: 36px;
  color: white;
}
.cov-cta h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.cov-cta p { color: rgba(255,255,255,.6); font-size: 15px; margin-bottom: 24px; line-height: 1.65; }
.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: white; text-decoration: none;
  font-size: 15px; font-weight: 700; padding: 13px 24px; border-radius: 10px;
  transition: background .2s;
}
.btn-blue:hover { background: var(--blue-mid); }

/* ─ FOOTER ───────────────────────────────── */
footer { background: var(--navy-dk); color: rgba(255,255,255,.6); padding: 64px 24px 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.75; margin-top: 16px; max-width: 270px; }
.footer-col h4 { color: white; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: white; }
.footer-div { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 24px; }
.footer-btm { display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 8px; }
.footer-btm a { color: rgba(255,255,255,.4); text-decoration: none; }

/* ─ TOAST ────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: #16A34A; color: white;
  padding: 14px 20px; border-radius: 12px; font-size: 15px; font-weight: 700;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px); opacity: 0; transition: all .3s ease; z-index: 999;
  display: flex; align-items: center; gap: 8px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─ SUBPAGE HERO (services / blog) ───────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, #0d2347 55%, #112960 100%);
  padding: 64px 24px 60px;
}
.page-hero .section-inner { max-width: 760px; }
.page-hero .hero-sub { max-width: 640px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.page-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.35);
  text-decoration: none; font-size: 15px; font-weight: 700; padding: 13px 24px; border-radius: 10px;
  transition: background .2s, border-color .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* ─ CONTENT / PROSE ──────────────────────── */
.content-section { padding: 72px 24px; }
.content-section.alt { background: var(--gray-50); }
.prose { max-width: 720px; }
.prose h2 { margin-top: 40px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16px; color: var(--gray-700); line-height: 1.75; margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; color: var(--gray-700); font-size: 16px; line-height: 1.75; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--blue); font-weight: 600; text-decoration: underline; text-decoration-color: var(--blue-bdr); text-underline-offset: 2px; }
.prose a:hover { color: var(--blue-mid); text-decoration-color: var(--blue-mid); }

/* ─ FAQ ──────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--gray-200); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.faq-item p { font-size: 15px; color: var(--gray-500); line-height: 1.7; }

/* ─ RELATED SERVICES ─────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  background: white; border: 1px solid var(--gray-200); border-radius: 14px; padding: 24px;
  text-decoration: none; display: block; transition: transform .2s, box-shadow .2s; box-shadow: var(--shadow);
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.related-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.related-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ─ BLOG ─────────────────────────────────── */
.blog-empty { text-align: center; padding: 40px 24px; color: var(--gray-500); font-size: 15px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card {
  background: white; border: 1px solid var(--gray-200); border-radius: 14px; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
  transition: transform .2s, box-shadow .2s; box-shadow: var(--shadow);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-thumb {
  aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy-dk) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-thumb svg { width: 64px; height: 64px; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 20px 22px; }
.blog-card .post-date { font-size: 12px; color: var(--gray-400); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; display: block; }
.blog-card h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.blog-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ─ BLOG POST ────────────────────────────── */
.post-meta { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.post-visual {
  border-radius: 14px; overflow: hidden; margin: 20px 0 28px;
  background: linear-gradient(135deg, var(--blue-pale) 0%, #E0EAFB 100%);
  border: 1px solid var(--blue-bdr); padding: 28px;
  display: flex; align-items: center; justify-content: center; min-height: 200px;
}
.post-visual svg { width: 100%; max-width: 340px; height: auto; }

/* ─ LOCATIONS ────────────────────────────── */
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.location-card {
  background: white; border: 1px solid var(--gray-200); border-radius: 12px; padding: 18px 20px;
}
.location-card h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.location-card h3::before { content: '📍'; font-size: 13px; }
.location-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
a.location-card { text-decoration: none; color: inherit; display: block; transition: transform .2s, box-shadow .2s; }
a.location-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue-bdr); }

/* ─ CONTACT ──────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: white; border: 1px solid var(--gray-200); border-radius: 14px; padding: 22px;
  display: flex; align-items: flex-start; gap: 14px; box-shadow: var(--shadow);
}
.contact-card svg { width: 22px; height: 22px; fill: var(--blue); flex-shrink: 0; margin-top: 2px; }
.contact-card h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--gray-500); text-decoration: none; line-height: 1.6; }
.contact-card a:hover { color: var(--blue); }
.map-embed { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); border: 0; width: 100%; height: 100%; min-height: 340px; display: block; }

/* ─ MOBILE ───────────────────────────────── */
@media (max-width: 1000px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .cov-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero-inner { grid-template-columns: 1fr; }
  #home::after { display: none; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .frow2 { grid-template-columns: 1fr; }
  .fleet-specs { grid-template-columns: 1fr; }
  .areas { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-btm { flex-direction: column; }
  .related-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--navy-dk); padding: 20px 24px;
    gap: 16px; z-index: 99;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
  }
  .nav-dropdown {
    position: static; padding-top: 0;
    opacity: 1; visibility: visible; pointer-events: auto;
    margin-top: 10px;
  }
  .nav-dropdown-panel {
    background: transparent; border: none; box-shadow: none; padding: 0 0 0 14px;
  }
}
