/* ================================================
   S&L Logistics LTD — Main Stylesheet
   ================================================ */

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

/* ── Variables ──────────────────────────────────── */
:root {
  --navy:       #0f2744;
  --navy-dark:  #0a192f;
  --orange:     #e07b1f;
  --orange-alt: #c96d18;
  --white:      #ffffff;
  --bg:         #ffffff;
  --muted-bg:   #f5f7fa;
  --border:     #e2e6ed;
  --fg:         #1a1f3a;
  --muted-fg:   #6b7a90;
  --radius:     10px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --transition: 0.25s ease;
  --container:  1200px;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--fg); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Container ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-alt); border-color: var(--orange-alt); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: #0d2239; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── Section Headers ────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }
.section-desc {
  font-size: 1.1rem;
  color: var(--muted-fg);
  max-width: 680px;
}
.section-desc--white { color: rgba(255,255,255,.72); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Scroll Animations ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.from-left  { transform: translateX(-30px); }
.reveal.from-right { transform: translateX(30px); }
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ╔══════════════════════════════════════════════╗
   ║  NAVBAR                                       ║
   ╚══════════════════════════════════════════════╝ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.navbar__logo img { height: 40px; width: auto; }
.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  transition: color var(--transition);
}
.navbar__links a:hover { color: var(--orange); }
.navbar__cta { display: flex; align-items: center; }
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.navbar__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.navbar__mobile a:hover { background: var(--muted-bg); color: var(--orange); }
.navbar__mobile .btn { margin-top: 8px; width: 100%; justify-content: center; }

/* ╔══════════════════════════════════════════════╗
   ║  HERO                                         ║
   ╚══════════════════════════════════════════════╝ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url('assets/hero-bg.png') center/cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,28,54,.90) 0%, rgba(10,28,54,.70) 55%, rgba(10,28,54,.30) 100%);
}
.hero__fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 96px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero__inner { max-width: 700px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 24px;
  animation: fadeDown 0.5s ease both;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
.hero__badge span { color: rgba(255,255,255,.9); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em; }
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 .accent { color: var(--orange); }
.hero__desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 40px;
  line-height: 1.75;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  animation: fadeUp 0.5s 0.3s ease both;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  animation: fadeUp 0.5s 0.45s ease both;
}
.hero__stat {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: default;
}
.hero__stat:hover { background: rgba(255,255,255,.16); border-color: rgba(224,123,31,.4); transform: translateY(-3px); }
.hero__stat svg { color: var(--orange); margin: 0 auto 4px; }
.hero__stat-value { font-size: 1.25rem; font-weight: 700; color: var(--white); }
.hero__stat-label { font-size: 0.7rem; color: rgba(255,255,255,.65); }

/* ╔══════════════════════════════════════════════╗
   ║  ABOUT                                        ║
   ╚══════════════════════════════════════════════╝ */
.about { padding: 96px 0; background: var(--muted-bg); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.about__img-wrap:hover img { transform: scale(1.05); }
.about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: transform var(--transition);
}
.about__badge:hover { transform: scale(1.05); }
.about__badge-num { font-size: 2rem; font-weight: 800; }
.about__badge-text { font-size: 0.8rem; font-weight: 600; opacity: .9; }
.about__text p { font-size: 1.05rem; color: var(--muted-fg); margin-bottom: 16px; line-height: 1.8; }
.about__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}
.about__point {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about__point:hover { border-color: rgba(15,39,68,.25); box-shadow: var(--shadow-md); }
.about__point svg { color: var(--orange); flex-shrink: 0; }
.about__point span { font-size: 0.875rem; font-weight: 600; }
.about__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.about__quote { font-size: 0.875rem; color: var(--muted-fg); font-style: italic; flex: 1; min-width: 200px; }

/* ╔══════════════════════════════════════════════╗
   ║  SERVICES                                     ║
   ╚══════════════════════════════════════════════╝ */
.services { padding: 96px 0; background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(15,39,68,.2); }
.service-card__icon {
  width: 48px; height: 48px;
  background: var(--muted-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-card__icon { background: rgba(15,39,68,.08); }
.service-card__icon svg { color: var(--navy); transition: color var(--transition); }
.service-card:hover .service-card__icon svg { color: var(--orange); }
.service-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition), gap var(--transition);
}
.service-card:hover .service-card__link { color: var(--orange); gap: 8px; }

/* ╔══════════════════════════════════════════════╗
   ║  WHY US                                       ║
   ╚══════════════════════════════════════════════╝ */
.whyus {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: url('assets/services-bg.png') center/cover no-repeat;
}
.whyus__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,39,68,.68);
}
.whyus > .container { position: relative; z-index: 2; }
.whyus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.whyus-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 32px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: default;
}
.whyus-card:hover { background: rgba(255,255,255,.14); border-color: rgba(224,123,31,.5); transform: translateY(-6px); }
.whyus-card__icon {
  width: 56px; height: 56px;
  background: rgba(224,123,31,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition);
}
.whyus-card:hover .whyus-card__icon { background: rgba(224,123,31,.3); }
.whyus-card__icon svg { color: var(--orange); }
.whyus-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.whyus-card p { color: rgba(255,255,255,.65); line-height: 1.7; transition: color var(--transition); }
.whyus-card:hover p { color: rgba(255,255,255,.82); }

/* ╔══════════════════════════════════════════════╗
   ║  INDUSTRIES                                   ║
   ╚══════════════════════════════════════════════╝ */
.industries { padding: 96px 0; background: var(--muted-bg); }
.industries__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(15,39,68,.25); }
.industry-card__icon {
  width: 48px; height: 48px;
  background: var(--muted-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.industry-card:hover .industry-card__icon { background: var(--navy); box-shadow: var(--shadow-sm); }
.industry-card__icon svg { color: var(--navy); transition: color var(--transition); }
.industry-card:hover .industry-card__icon svg { color: var(--white); }
.industry-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; transition: color var(--transition); }
.industry-card:hover h4 { color: var(--navy); }
.industry-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

/* ╔══════════════════════════════════════════════╗
   ║  PROCESS                                      ║
   ╚══════════════════════════════════════════════╝ */
.process { padding: 96px 0; background: var(--white); overflow: hidden; }
.process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process__line {
  display: none;
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  overflow: hidden;
}
.process__line-fill {
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s ease;
}
.process__line-fill.animated { transform: scaleX(1); }
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
}
.process-step__circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 6px solid var(--muted-bg);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  z-index: 2;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.process-step:hover .process-step__circle { border-color: var(--orange); box-shadow: var(--shadow-md); }
.process-step__circle svg { color: var(--navy); transition: color var(--transition); }
.process-step:hover .process-step__circle svg { color: var(--orange); }
.process-step__num { font-size: 0.65rem; font-weight: 700; color: var(--muted-fg); margin-top: 2px; }
.process-step h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; transition: color var(--transition); }
.process-step:hover h4 { color: var(--navy); }
.process-step p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; max-width: 220px; }
.process__mobile-line {
  width: 2px; height: 32px;
  background: var(--border);
  margin: 16px auto;
  display: none;
}

/* ╔══════════════════════════════════════════════╗
   ║  COVERAGE                                     ║
   ╚══════════════════════════════════════════════╝ */
.coverage {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.coverage__dots {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 32px 32px;
}
.coverage > .container { position: relative; z-index: 2; }
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.coverage__text { color: var(--white); }
.coverage__text .section-title { color: var(--white); }
.coverage__desc { font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 40px; }
.coverage__features { display: flex; flex-direction: column; gap: 28px; }
.coverage__feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.coverage__feat-icon {
  background: rgba(224,123,31,.2);
  border-radius: 50%;
  padding: 8px;
  flex-shrink: 0;
  transition: background var(--transition);
}
.coverage__feat:hover .coverage__feat-icon { background: rgba(224,123,31,.35); }
.coverage__feat-icon svg { color: var(--orange); }
.coverage__feat h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.coverage__feat p { color: rgba(255,255,255,.65); font-size: 0.9rem; }
.coverage__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.coverage__stat {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: default;
}
.coverage__stat:hover { background: rgba(255,255,255,.16); border-color: rgba(224,123,31,.4); transform: scale(1.04); }
.coverage__stat-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.coverage__stat-label { font-size: 0.875rem; color: rgba(255,255,255,.75); font-weight: 500; }

/* ╔══════════════════════════════════════════════╗
   ║  TESTIMONIALS                                 ║
   ╚══════════════════════════════════════════════╝ */
.testimonials { padding: 96px 0; background: var(--muted-bg); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(15,39,68,.2); }
.testi-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.testi-card__stars { display: flex; gap: 4px; }
.testi-card__stars svg { color: var(--orange); fill: var(--orange); }
.testi-card__quote-icon { color: rgba(0,0,0,.08); transition: color var(--transition); }
.testi-card:hover .testi-card__quote-icon { color: rgba(224,123,31,.18); }
.testi-card blockquote {
  font-size: 0.95rem;
  color: var(--fg);
  font-style: italic;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 32px;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background var(--transition);
}
.testi-card:hover .testi-card__avatar { background: var(--orange); }
.testi-card__name { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.testi-card__role { font-size: 0.75rem; color: var(--muted-fg); }
.testi-card__company { font-size: 0.75rem; font-weight: 600; margin-top: 2px; }

/* ╔══════════════════════════════════════════════╗
   ║  CTA BANNER                                   ║
   ╚══════════════════════════════════════════════╝ */
.cta-banner {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: url('assets/cta-bg.png') center/cover no-repeat;
  text-align: center;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,39,68,.68);
}
.cta-banner > .container { position: relative; z-index: 2; }
.cta-banner__inner { max-width: 760px; margin: 0 auto; }
.cta-banner__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 16px; }
.cta-banner h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.cta-banner p { font-size: 1.15rem; color: rgba(255,255,255,.78); margin-bottom: 40px; line-height: 1.7; }
.cta-banner__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ╔══════════════════════════════════════════════╗
   ║  FAQ                                          ║
   ╚══════════════════════════════════════════════╝ */
.faq { padding: 96px 0; background: var(--white); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__question {
  width: 100%;
  text-align: left;
  padding: 24px 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
  background: none;
}
.faq__question:hover { color: var(--navy); }
.faq__question.open { color: var(--navy); }
.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--muted-fg);
}
.faq__question.open .faq__chevron { transform: rotate(180deg); color: var(--navy); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq__answer.open { max-height: 300px; }
.faq__answer p { padding: 0 8px 24px; font-size: 1rem; color: var(--muted-fg); line-height: 1.8; }

/* ╔══════════════════════════════════════════════╗
   ║  CONTACT                                      ║
   ╚══════════════════════════════════════════════╝ */
.contact { padding: 96px 0; background: var(--muted-bg); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact__info-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.contact__info-head { font-size: 1.75rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.contact__info-desc { color: var(--muted-fg); margin-bottom: 40px; line-height: 1.7; }
.contact__details { display: flex; flex-direction: column; gap: 28px; }
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__detail-icon {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.contact__detail-icon svg { color: var(--navy); }
.contact__detail h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.contact__detail p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact__form-wrap h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--fg); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--muted-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,39,68,.12);
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group .error-msg { font-size: 0.8rem; color: #dc2626; display: none; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #dc2626; }
.form-group.has-error .error-msg { display: block; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.form-submit:hover { background: var(--orange-alt); transform: translateY(-2px); }
.form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 10px;
  color: #065f46;
  font-weight: 600;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ╔══════════════════════════════════════════════╗
   ║  FOOTER                                       ║
   ╚══════════════════════════════════════════════╝ */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__logo { height: 48px; width: auto; margin-bottom: 20px; }
.footer__desc { color: #9ca3af; line-height: 1.75; font-size: 0.9rem; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer__social:hover { background: var(--orange); }
.footer__social svg { color: var(--white); }
.footer__col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 24px; }
.footer__col ul { display: flex; flex-direction: column; gap: 14px; }
.footer__col ul li a { color: #9ca3af; font-size: 0.9rem; transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--white); }
.footer__col ul li { color: #9ca3af; font-size: 0.875rem; }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer__copy { font-size: 0.875rem; color: #6b7280; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 0.875rem; color: #6b7280; transition: color var(--transition); }
.footer__legal a:hover { color: var(--white); }

/* ── Page header (contact.html) ─────────────────── */
.page-hero {
  padding: 140px 0 64px;
  background: var(--navy);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }

/* ── Keyframes ──────────────────────────────────── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse    { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(.85); } }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__line { display: none !important; }
  .process__mobile-line { display: block; }
}

@media (max-width: 768px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__badge { display: none; }
  .whyus__grid { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: 1fr 1fr; }
  .coverage__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: 1fr; }
  .about__points { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .industries__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .coverage__stats { grid-template-columns: 1fr 1fr; }
}
