/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
*,*::before,*::after{box-sizing:border-box}
:root {
  --navy: #003087;
  --navy-dark: #001f5c;
  --crimson: #B4091A;
  --dark-red: #9e1e28;
  --white: #FFFFFF;
  --charcoal: #2d3940;
  --light-gray: #f3f3f3;
  --warm-gray: #e8e6e3;
  --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
  --top-bar-height: 36px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy);
}
p { margin: 0 0 1em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
button, input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Scroll-in animation */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-red {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
}
.btn-red:hover, .btn-red:focus-visible {
  background: var(--dark-red);
  border-color: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 9, 26, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover, .btn-navy:focus-visible {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 48, 135, 0.35);
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--crimson);
  color: var(--white);
  font-size: 0.8rem;
  line-height: var(--top-bar-height);
  height: var(--top-bar-height);
  overflow: hidden;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.top-bar a { color: var(--white); font-weight: 500; }
.top-bar a:hover { text-decoration: underline; }
.top-bar-left, .top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.4); }
@media (max-width: 767px) {
  .top-bar { font-size: 0.72rem; }
  .top-bar .container { justify-content: center; gap: 12px; }
  .top-bar-right { display: none; }
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  transition: var(--transition);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar.scrolled {
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 10px 24px; font-size: 0.82rem; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1023px) {
  .hamburger { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 100px 32px 32px;
    gap: 24px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
    z-index: 1050;
  }
  .nav-cta.open {
    display: block;
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1050;
  }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(var(--top-bar-height) + var(--nav-height));
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(0,31,92,0.72) 0%, rgba(0,48,135,0.55) 50%, rgba(0,31,92,0.50) 100%);
}
/* Subtle patriotic texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 42px
  );
}
.hero-content {
  padding: 0 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero h1 span { color: var(--crimson); display: inline; }
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 767px) {
  .hero { min-height: 90vh; }
  .hero-content { padding-bottom: 40px; }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--navy);
  padding: 48px 0;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--crimson);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
  white-space: nowrap;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: clamp(1.5rem, 6vw, 2rem); }
}
@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 1.4rem; }
}

/* =============================================
   SECTIONS BASE
   ============================================= */
.section { padding: 96px 0; }
.section-light { background: var(--light-gray); }
.section-dark { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.7); }
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--crimson);
  margin-bottom: 12px;
}
.section-dark .section-eyebrow { color: rgba(255,255,255,0.5); }

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,31,92,0.95) 30%, rgba(0,48,135,0.6) 100%);
}
.service-card-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  color: var(--white);
}
.service-card-content h3 {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.service-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-card-content li {
  font-size: 0.92rem;
  padding-left: 20px;
  position: relative;
  color: rgba(255,255,255,0.9);
}
.service-card-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--crimson);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-content ul { grid-template-columns: 1fr; }
}

/* =============================================
   COVERAGE MAP
   ============================================= */
.coverage { position: relative; }
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.coverage-map { position: relative; text-align: center; }
.coverage-map img { margin: 0 auto; opacity: 0.85; }
.terminal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.terminal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}
.terminal-dot {
  width: 10px;
  height: 10px;
  background: var(--crimson);
  border-radius: 50%;
  flex-shrink: 0;
}
.coverage-text h2 { margin-bottom: 20px; }
.coverage-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
}
.terminal-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .coverage-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================
   HERITAGE / TIMELINE
   ============================================= */
.heritage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--crimson), var(--navy));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--crimson);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--crimson);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--crimson);
  margin-bottom: 4px;
}
.timeline-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.timeline-item p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}
.heritage-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.heritage-photo {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.heritage-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.heritage-photo:hover img { transform: scale(1.05); }
.heritage-photo.large {
  grid-column: 1 / -1;
}
.heritage-photo.large img { height: 280px; }
@media (max-width: 767px) {
  .heritage-layout { grid-template-columns: 1fr; }
  .heritage-photos { grid-template-columns: 1fr; }
  .heritage-photo img { height: 200px; }
  .heritage-photo.large img { height: 220px; }
}

/* =============================================
   LEADERSHIP
   ============================================= */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.leader-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.leader-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.leader-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid rgba(255,255,255,0.15);
}
.leader-name {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.leader-title {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.leader-bio {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  line-height: 1.6;
}
.leader-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255,255,255,0.15);
}
.leader-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
@media (max-width: 767px) {
  .leadership-grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* =============================================
   MILITARY SUPPORT
   ============================================= */
.military {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.military-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.military-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.military-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,31,92,0.93) 0%, rgba(158,30,40,0.85) 100%);
}
.military-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}
.military-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}
.military-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.military-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 24px;
}

/* =============================================
   DRIVER RECRUITMENT
   ============================================= */
.driver-cta { background: var(--light-gray); }
.driver-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.driver-text h2 { margin-bottom: 24px; }
.driver-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg { width: 20px; height: 20px; color: var(--white); }
.benefit-text { font-size: 0.92rem; font-weight: 600; color: var(--charcoal); }
.driver-phones {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.driver-phone {
  font-size: 0.88rem;
  color: #6b7280;
}
.driver-phone strong { color: var(--navy); display: block; font-size: 1rem; }
.driver-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.driver-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .driver-layout { grid-template-columns: 1fr; }
  .driver-benefits { grid-template-columns: 1fr; }
  .driver-image img { height: 300px; }
}

/* =============================================
   CERTIFICATIONS
   ============================================= */
.certifications {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.cert-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.cert-item:hover { opacity: 1; }
.cert-item img { height: 56px; width: auto; }
.cert-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  max-width: 120px;
  line-height: 1.3;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-form { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,48,135,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.contact-info h2 { margin-bottom: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--white); }
.contact-detail h4 { font-size: 1rem; margin-bottom: 2px; }
.contact-detail p { font-size: 0.92rem; color: #6b7280; margin: 0; }
.contact-detail a { color: var(--navy); font-weight: 500; }
.contact-detail a:hover { text-decoration: underline; }
.contact-terminals h4 { margin-bottom: 16px; }
.contact-terminal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-terminal-item {
  font-size: 0.88rem;
  color: #6b7280;
  padding-left: 16px;
  position: relative;
}
.contact-terminal-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--crimson);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--crimson); }
.footer-social svg { width: 18px; height: 18px; fill: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =============================================
   MOBILE OVERLAY
   ============================================= */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
}
.mobile-overlay.active { display: block; }