/* ═══════════════════════════════════════════════════════
   Fast Cargo & Logistics — Design System
   Palette: Crimson + Navy  ·  Type: Outfit + Inter
   ═══════════════════════════════════════════════════════ */

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

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

:root {
  --crimson:    #D42027;
  --crimson-dk: #B11A20;
  --crimson-10: rgba(212,32,39,0.10);
  --navy:       #0F3D6E;
  --navy-dk:    #092C50;
  --navy-lt:    #1A5091;
  --slate:      #475569;
  --slate-lt:   #94A3B8;
  --cloud:      #F1F5F9;
  --cloud-dk:   #E2E8F0;
  --ink:        #0F172A;
  --white:      #FFFFFF;
  --display:    'Outfit', sans-serif;
  --body:       'Inter', sans-serif;
  --max:        1200px;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(15,23,42,0.06);
  --shadow-md:  0 4px 16px rgba(15,23,42,0.08);
  --shadow-lg:  0 12px 40px rgba(15,23,42,0.12);
}

html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--white); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--body); }

/* ─── Utility ─── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* ═══════════════ TOPNAV ═══════════════ */
.topnav {
  position: sticky; top: 0; z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--cloud-dk);
  backdrop-filter: blur(12px);
}
.topnav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; height: 64px; gap: 2.5rem;
}
/* Logo */
.brand { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.brand-mark {
  width: 38px; height: 38px; background: var(--crimson);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.brand-mark::after {
  content: ''; position: absolute; top: -6px; right: -6px;
  width: 16px; height: 16px; background: var(--navy); border-radius: 50%;
  opacity: 0.3;
}
.brand-mark svg { width: 22px; height: 22px; position: relative; z-index: 1; }
.brand-name {
  font-family: var(--display); font-weight: 800;
  font-size: 1.15rem; line-height: 1.1; color: var(--navy);
  letter-spacing: -0.02em;
}
.brand-name small {
  display: block; font-weight: 500; font-size: 0.6rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--crimson); margin-top: 1px;
}

/* Links */
.topnav-links { display: flex; align-items: center; gap: 0; flex: 1; }
.topnav-links a {
  padding: 0 1rem; height: 64px;
  display: flex; align-items: center;
  font-size: 0.85rem; font-weight: 600; color: var(--slate);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.topnav-links a:hover, .topnav-links a.active {
  color: var(--crimson); border-bottom-color: var(--crimson);
}
/* Dropdown */
.dropdown { position: relative; }
.dropdown-trigger { cursor: pointer; }
.dropdown-trigger svg { width: 10px; height: 10px; margin-left: 4px; }
.dropdown-panel {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--white); border: 1px solid var(--cloud-dk);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.2s; z-index: 600; padding: 0.4rem 0;
}
.dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-panel a {
  display: block; padding: 0.55rem 1.1rem; height: auto;
  font-size: 0.84rem; color: var(--slate); border-bottom: none;
}
.dropdown-panel a:hover { color: var(--crimson); background: var(--cloud); }

.topnav-cta {
  margin-left: auto;
  background: var(--crimson); color: var(--white);
  padding: 0.5rem 1.3rem; border-radius: var(--radius);
  font-size: 0.84rem; font-weight: 600; border: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap; display: inline-flex; align-items: center; gap: 0.4rem;
}
.topnav-cta:hover { background: var(--crimson-dk); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; padding: 0.5rem; color: var(--navy); }
.hamburger svg { width: 24px; height: 24px; }

/* ═══════════════ HERO — SPLIT DIAGONAL ═══════════════ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  min-height: 520px; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute;
  top: -20%; right: -5%; width: 55%; height: 140%;
  background: var(--crimson);
  transform: skewX(-8deg);
  opacity: 0.07;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 4rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 2; width: 100%;
}
.hero-text { }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,32,39,0.15); color: var(--crimson);
  padding: 0.35rem 0.9rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--crimson);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800; color: var(--white); line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--crimson); font-style: normal; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.7;
  max-width: 440px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  height: 380px;
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
}
/* floating stat pills on hero image */
.hero-float {
  position: absolute; background: var(--white); border-radius: var(--radius);
  padding: 0.6rem 1rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.6rem;
}
.hero-float.top { top: 1rem; right: 1rem; }
.hero-float.bottom { bottom: 1rem; left: 1rem; }
.hero-float-num {
  font-family: var(--display); font-weight: 800; font-size: 1.4rem;
  color: var(--crimson); line-height: 1;
}
.hero-float-label { font-size: 0.68rem; color: var(--slate); font-weight: 500; line-height: 1.3; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.6rem; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 600; border: none;
  transition: all 0.2s; white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; }
.btn-primary { background: var(--crimson); color: #fff; }
.btn-primary:hover { background: var(--crimson-dk); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,32,39,0.3); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--cloud-dk); }
.btn-outline-dark:hover { border-color: var(--crimson); color: var(--crimson); }
.btn-white { background: var(--white); color: var(--crimson); }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ═══════════════ SECTION SYSTEM ═══════════════ */
.section { padding: 5rem 0; }
.section.alt { background: var(--cloud); }
.section.dark { background: var(--navy); color: var(--white); }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--crimson); margin-bottom: 0.6rem;
}
.section-label::before {
  content: ''; width: 20px; height: 2px; background: var(--crimson);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section-desc {
  font-size: 0.95rem; color: var(--slate); line-height: 1.7;
  max-width: 540px;
}
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }

/* ═══════════════ SERVICES — CARD GRID ═══════════════ */
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.svc-card {
  background: var(--white); border: 1px solid var(--cloud-dk);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--crimson), var(--navy));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--crimson-10); color: var(--crimson);
}
.svc-card-icon svg { width: 26px; height: 26px; }
.svc-card h3 {
  font-family: var(--display); font-size: 1.1rem;
  font-weight: 700; margin-bottom: 0.5rem; color: var(--navy);
}
.svc-card p {
  font-size: 0.85rem; color: var(--slate); line-height: 1.65;
  margin-bottom: 1.25rem;
}
.svc-card-link {
  font-size: 0.82rem; font-weight: 600; color: var(--crimson);
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.svc-card-link:hover { gap: 0.6rem; }
.svc-card-link svg { width: 14px; height: 14px; }

/* ═══════════════ STATS STRIP ═══════════════ */
.stats-strip {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  padding: 3.5rem 0;
}
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-item { }
.stat-num {
  font-family: var(--display); font-size: 2.8rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.stat-num span { color: var(--crimson); }
.stat-lbl {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 0.4rem; font-weight: 500;
}

/* ═══════════════ WHY US — ICON ROW ═══════════════ */
.why-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.why-item { text-align: center; }
.why-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cloud); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: var(--navy);
  transition: background 0.2s, color 0.2s;
}
.why-item:hover .why-icon { background: var(--crimson); color: var(--white); }
.why-icon svg { width: 24px; height: 24px; }
.why-item h4 { font-family: var(--display); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.why-item p { font-size: 0.82rem; color: var(--slate); line-height: 1.6; }

/* ═══════════════ INDUSTRIES — CHIP CLOUD ═══════════════ */
.chip-cloud { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 1rem; background: var(--white); border: 1px solid var(--cloud-dk);
  border-radius: 100px; font-size: 0.82rem; font-weight: 500; color: var(--slate);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.chip::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--crimson);
}
.chip:hover { border-color: var(--crimson); color: var(--navy); background: var(--crimson-10); }

/* ═══════════════ CTA BAND ═══════════════ */
.cta-band {
  background: var(--crimson); padding: 3.5rem 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 40%; height: 180%; background: var(--crimson-dk);
  transform: skewX(-12deg); opacity: 0.3;
}
.cta-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--display); font-size: 1.6rem; font-weight: 800;
  color: var(--white); margin-bottom: 0.3rem;
}
.cta-inner p { font-size: 0.92rem; color: rgba(255,255,255,0.75); }

/* ═══════════════ ABOUT PAGE — STORY ═══════════════ */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.story-img {
  border-radius: var(--radius-lg); overflow: hidden;
  height: 380px; position: relative;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: var(--crimson); color: #fff; border-radius: var(--radius);
  padding: 0.8rem 1.2rem; text-align: center;
}
.story-img-badge strong {
  font-family: var(--display); font-size: 1.6rem; font-weight: 800;
  display: block; line-height: 1;
}
.story-img-badge span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.9; }
.story-text p { font-size: 0.93rem; color: var(--slate); line-height: 1.8; margin-bottom: 1rem; }

/* Values grid */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.value-card {
  background: var(--white); border: 1px solid var(--cloud-dk);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.value-card:hover { border-color: var(--crimson); box-shadow: var(--shadow-md); }
.value-card h4 {
  font-family: var(--display); font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.value-card h4::before {
  content: ''; width: 8px; height: 8px; border-radius: 2px;
  background: var(--crimson); flex-shrink: 0;
}
.value-card p { font-size: 0.85rem; color: var(--slate); line-height: 1.65; }

/* Mission row */
.mission-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mission-card {
  background: var(--white); border: 1px solid var(--cloud-dk);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  border-top: 3px solid var(--crimson);
}
.mission-card h3 {
  font-family: var(--display); font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.6rem;
}
.mission-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.7; }

/* Partners chips */
.partner-row { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.partner-chip {
  background: var(--white); border: 1px solid var(--cloud-dk);
  border-radius: 100px; padding: 0.6rem 1.2rem;
  font-size: 0.85rem; font-weight: 600; color: var(--slate);
  transition: border-color 0.2s, color 0.2s;
}
.partner-chip:hover { border-color: var(--crimson); color: var(--navy); }

/* ═══════════════ SERVICES DETAIL PAGE ═══════════════ */
.svc-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--cloud-dk);
}
.svc-detail:last-of-type { border-bottom: none; }
.svc-detail.flip .svc-detail-text { order: 2; }
.svc-detail.flip .svc-detail-img { order: 1; }

.svc-detail-text .section-label { margin-bottom: 0.4rem; }
.svc-detail-text h2 {
  font-family: var(--display); font-size: 1.8rem; font-weight: 800;
  color: var(--navy); margin-bottom: 1rem; line-height: 1.15;
}
.svc-detail-text p { font-size: 0.93rem; color: var(--slate); line-height: 1.75; margin-bottom: 1rem; }
.feature-list { margin: 1.25rem 0; }
.feature-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: var(--ink); line-height: 1.5;
  padding: 0.4rem 0;
}
.feature-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--crimson); margin-top: 2px; }

.svc-detail-img {
  border-radius: var(--radius-lg); overflow: hidden; height: 360px;
  position: relative;
}
.svc-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-badge-row {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(15,61,110,0.9); backdrop-filter: blur(8px);
}
.svc-badge-cell { padding: 0.8rem; text-align: center; }
.svc-badge-cell + .svc-badge-cell { border-left: 1px solid rgba(255,255,255,0.15); }
.svc-badge-num { font-family: var(--display); font-size: 1.3rem; font-weight: 800; color: var(--white); }
.svc-badge-lbl { font-size: 0.65rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.04em; }

/* ═══════════════ CONTACT PAGE ═══════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.contact-info-card {
  background: var(--cloud); border-radius: var(--radius-lg);
  padding: 2rem; margin-bottom: 1.25rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--crimson); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-card h4 { font-family: var(--display); font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.contact-info-card p { font-size: 0.85rem; color: var(--slate); line-height: 1.6; }
.contact-info-card a { color: var(--crimson); font-weight: 600; }

/* Form */
.form-card {
  background: var(--white); border: 1px solid var(--cloud-dk);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.78rem; font-weight: 600; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.03em;
}
.form-label .req { color: var(--crimson); }
.form-control {
  height: 42px; padding: 0 0.85rem;
  border: 1px solid var(--cloud-dk); border-radius: var(--radius);
  font-family: var(--body); font-size: 0.88rem; color: var(--ink);
  background: var(--white); outline: none; transition: border-color 0.2s;
}
.form-control:focus { border-color: var(--crimson); box-shadow: 0 0 0 3px var(--crimson-10); }
textarea.form-control { height: 120px; padding: 0.75rem; resize: vertical; }
select.form-control { cursor: pointer; }
.btn-submit {
  width: 100%; height: 46px; background: var(--crimson); color: var(--white);
  border: none; border-radius: var(--radius); font-size: 0.9rem; font-weight: 700;
  font-family: var(--display); cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--crimson-dk); }

/* ═══════════════ PAGE HERO — INNER PAGES ═══════════════ */
.page-hero {
  background: var(--navy); padding: 3rem 0; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -30%; right: -8%; width: 50%; height: 160%;
  background: var(--crimson); transform: skewX(-12deg); opacity: 0.06;
}
.page-hero .wrap { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.75rem;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--crimson); }
.page-hero h1 {
  font-family: var(--display); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 0.75rem;
}
.page-hero h1 em { color: var(--crimson); font-style: normal; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.7; }

/* ═══════════════ TRACKING (wrapper only) ═══════════════ */
.track-search-box {
  background: var(--white); border: 1px solid var(--cloud-dk);
  border-radius: var(--radius-lg); padding: 2.5rem;
  max-width: 600px; margin: -2rem auto 3rem; position: relative; z-index: 10;
  box-shadow: var(--shadow-lg);
}
.track-search-box h2 {
  font-family: var(--display); font-size: 1.25rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.5rem; text-align: center;
}
.track-search-box p { font-size: 0.85rem; color: var(--slate); text-align: center; margin-bottom: 1.25rem; }
.track-row { display: flex; gap: 0.5rem; }
.track-input {
  flex: 1; height: 46px; padding: 0 1rem;
  border: 1px solid var(--cloud-dk); border-radius: var(--radius);
  font-family: var(--body); font-size: 0.9rem; color: var(--ink); outline: none;
}
.track-input:focus { border-color: var(--crimson); }
.track-btn {
  height: 46px; padding: 0 1.5rem; background: var(--crimson);
  color: var(--white); border: none; border-radius: var(--radius);
  font-weight: 700; font-size: 0.88rem; cursor: pointer;
  transition: background 0.2s;
}
.track-btn:hover { background: var(--crimson-dk); }

/* ═══════════════ FAQ ACCORDION ═══════════════ */
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--cloud-dk); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; cursor: pointer; font-weight: 600;
  font-size: 0.92rem; color: var(--navy);
}
.faq-q svg { width: 16px; height: 16px; color: var(--crimson); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s;
  font-size: 0.88rem; color: var(--slate); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.1rem; }

/* ═══════════════ FOOTER ═══════════════ */
.site-footer {
  background: var(--navy-dk); padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 2.5rem;
}
.footer-brand-text {
  font-size: 0.83rem; color: rgba(255,255,255,0.45);
  line-height: 1.7; max-width: 260px; margin-top: 1rem;
}
.footer-col-title {
  font-family: var(--display); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3); margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.84rem; color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--crimson); }
.footer-address {
  font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.7;
}
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
  font-size: 0.75rem; color: rgba(255,255,255,0.25);
}

/* ═══════════════ MOBILE DRAWER ═══════════════ */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(15,23,42,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(4px);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 300px; max-width: 85vw; z-index: 950;
  background: var(--white);
  box-shadow: -8px 0 30px rgba(15,23,42,0.15);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--cloud-dk);
}
.mobile-drawer-head .brand-name {
  font-size: 1rem;
}
.mobile-close {
  background: none; border: none; padding: 0.4rem;
  color: var(--slate); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; transition: background 0.15s;
}
.mobile-close:hover { background: var(--cloud); }
.mobile-close svg { width: 22px; height: 22px; }

.mobile-nav { padding: 0.5rem 0; flex: 1; }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--cloud);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover { background: var(--cloud); color: var(--crimson); }
.mobile-nav a.active { color: var(--crimson); }
.mobile-nav a svg { width: 16px; height: 16px; color: var(--slate-lt); }

/* Sub-links indented */
.mobile-sub { background: var(--cloud); }
.mobile-sub a {
  padding-left: 2.25rem;
  font-size: 0.88rem; font-weight: 500; color: var(--slate);
  border-bottom-color: var(--cloud-dk);
}
.mobile-sub a:hover { color: var(--crimson); }

.mobile-drawer-foot {
  padding: 1.25rem;
  border-top: 1px solid var(--cloud-dk);
}
.mobile-drawer-foot .btn {
  width: 100%; justify-content: center;
}

/* Prevent body scroll when drawer is open */
body.drawer-open { overflow: hidden; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .why-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 2rem; }
  .svc-detail.flip .svc-detail-text { order: 1; }
  .svc-detail.flip .svc-detail-img { order: 2; }
}
@media (max-width: 768px) {
  .topnav-links { display: none; }
  .topnav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero { min-height: auto; }
  .hero-img { height: 260px; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-img { height: 260px; }
  .values-grid { grid-template-columns: 1fr; }
  .mission-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 3rem 0; }
  .page-hero { padding: 2rem 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
