/* ============================================================
   PSL SUPPLY CHAIN SOLUTION LLC — Main Stylesheet
   styles.css  |  All pages share this single file
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --clr-primary:     #0a2d5e;   /* Deep navy blue */
  --clr-secondary:   #f47920;   /* Logistics orange */
  --clr-accent:      #1a6fc4;   /* Bright blue */
  --clr-dark:        #111827;
  --clr-mid:         #374151;
  --clr-muted:       #6b7280;
  --clr-light:       #f3f4f6;
  --clr-white:       #ffffff;
  --clr-border:      #dde3ed;

  --font-sans:       'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --font-heading:    Georgia, 'Times New Roman', serif;

  --radius:          6px;
  --shadow-sm:       0 1px 3px rgba(0,0,0,.10);
  --shadow-md:       0 4px 16px rgba(0,0,0,.14);
  --shadow-lg:       0 8px 32px rgba(0,0,0,.18);

  --max-width:       1200px;
  --nav-height:      72px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--clr-dark);
  background: var(--clr-white);
  line-height: 1.7;
  font-size: 1rem;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--clr-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--clr-secondary); }

ul { list-style: none; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.25; }

/* ---------- Utility ---------- */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin-inline: auto;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--clr-primary);
  margin-bottom: .5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-muted);
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .25s, color .25s, transform .15s;
}

.btn-primary {
  background: var(--clr-secondary);
  color: var(--clr-white);
}
.btn-primary:hover {
  background: #d96800;
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid var(--clr-white);
}
.btn-outline:hover {
  background: var(--clr-white);
  color: var(--clr-primary);
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--clr-primary);
  color: rgba(255,255,255,.80);
  font-size: .82rem;
  padding: .45rem 0;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: flex-end;
  align-items: center;
}

.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--clr-secondary); }

.topbar-item {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---------- NAVIGATION ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-white);
  border-bottom: 3px solid var(--clr-secondary);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.logo-mark {
  width: 46px;
  height: 46px;
  background: var(--clr-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-secondary);
  font-family: var(--font-sans);
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: .01em;
}

.logo-tagline {
  font-size: .68rem;
  color: var(--clr-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  display: block;
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--clr-mid);
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-primary);
  background: var(--clr-light);
}

.nav-links a.active {
  color: var(--clr-secondary);
}

.nav-cta {
  background: var(--clr-secondary) !important;
  color: var(--clr-white) !important;
  padding: .5rem 1.2rem !important;
}
.nav-cta:hover {
  background: #d96800 !important;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(10,45,94,.88) 0%, rgba(10,45,94,.65) 60%, rgba(244,121,32,.35) 100%),
    url('assets/bg_01.png') center/cover no-repeat;
  color: var(--clr-white);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--clr-secondary);
  color: var(--clr-white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero h1 span { color: var(--clr-secondary); }

.hero-desc {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.20);
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--clr-secondary);
  line-height: 1;
}

.hero-stat span {
  font-size: .8rem;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---------- SECTION COMMON ---------- */
section { padding: 5rem 0; }

.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-secondary);
  margin-bottom: .6rem;
}

/* ---------- SERVICES OVERVIEW (home) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-top: 4px solid var(--clr-primary);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .2s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--clr-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg { width: 26px; height: 26px; stroke: var(--clr-primary); fill: none; stroke-width: 1.6; }

.service-card h3 {
  font-size: 1.1rem;
  color: var(--clr-primary);
  margin-bottom: .6rem;
}

.service-card p { font-size: .9rem; color: var(--clr-muted); }

/* ---------- WHY CHOOSE US ---------- */
.why-bg { background: var(--clr-light); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image img { width: 100%; height: 380px; object-fit: cover; }

.why-points { display: flex; flex-direction: column; gap: 1.5rem; }

.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-num {
  width: 40px;
  height: 40px;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.why-point-text h4 {
  font-size: 1rem;
  color: var(--clr-primary);
  margin-bottom: .3rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

.why-point-text p { font-size: .9rem; color: var(--clr-muted); }

/* ---------- FLEET OVERVIEW ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.fleet-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
}

.fleet-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.fleet-card-body {
  padding: 1.5rem;
}

.fleet-card-body h3 {
  font-size: 1.1rem;
  color: var(--clr-primary);
  margin-bottom: .5rem;
}

.fleet-card-body p { font-size: .88rem; color: var(--clr-muted); margin-bottom: 1rem; }

.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.fleet-specs span {
  background: var(--clr-light);
  color: var(--clr-mid);
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 20px;
  border: 1px solid var(--clr-border);
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
  color: var(--clr-white);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: .75rem;
  color: var(--clr-white);
}

.cta-band p {
  font-size: 1.05rem;
  opacity: .85;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-inline: auto;
}

/* ---------- ABOUT PAGE ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
  color: var(--clr-white);
  padding: 4rem 0 3.5rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: .75rem;
  color: var(--clr-white);
}

.page-hero p {
  font-size: 1.05rem;
  opacity: .85;
  max-width: 560px;
}

.breadcrumb {
  font-size: .82rem;
  opacity: .7;
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--clr-secondary); }
.breadcrumb span { margin: 0 .4rem; }

/* About content */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-intro img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-intro-text h2 { margin-bottom: 1rem; }
.about-intro-text p { color: var(--clr-muted); margin-bottom: 1rem; }

.value-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }

.value-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  color: var(--clr-mid);
  font-weight: 600;
}

.value-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--clr-secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--clr-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: .45rem;
  width: 14px;
  height: 14px;
  background: var(--clr-secondary);
  border-radius: 50%;
  border: 3px solid var(--clr-white);
  box-shadow: 0 0 0 2px var(--clr-secondary);
}

.timeline-year {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--clr-secondary);
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.timeline-item h4 {
  font-size: 1rem;
  color: var(--clr-primary);
  margin-bottom: .3rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

.timeline-item p { font-size: .88rem; color: var(--clr-muted); }

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-sans);
}

.team-card h4 { font-size: 1rem; color: var(--clr-primary); margin-bottom: .25rem; font-family: var(--font-sans); }
.team-card .title { font-size: .83rem; color: var(--clr-secondary); font-weight: 600; margin-bottom: .6rem; }
.team-card p { font-size: .84rem; color: var(--clr-muted); }

/* ---------- SERVICES PAGE ---------- */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-page-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .2s;
}

.service-page-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.service-page-card-header {
  background: var(--clr-primary);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-page-card-header svg {
  width: 32px;
  height: 32px;
  stroke: var(--clr-secondary);
  fill: none;
  stroke-width: 1.6;
  flex-shrink: 0;
}

.service-page-card-header h3 {
  font-size: 1.1rem;
  color: var(--clr-white);
}

.service-page-card-body { padding: 1.5rem; }
.service-page-card-body p { font-size: .9rem; color: var(--clr-muted); margin-bottom: 1rem; }
.service-page-card-body ul { display: flex; flex-direction: column; gap: .4rem; }
.service-page-card-body ul li {
  font-size: .88rem;
  color: var(--clr-mid);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.service-page-card-body ul li::before {
  content: '▸';
  color: var(--clr-secondary);
  font-size: .85rem;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.process-step-num {
  width: 48px;
  height: 48px;
  background: var(--clr-secondary);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h4 { font-size: .98rem; color: var(--clr-primary); margin-bottom: .4rem; font-family: var(--font-sans); font-weight: 700; }
.process-step p { font-size: .85rem; color: var(--clr-muted); }

/* ---------- FLEET PAGE ---------- */
.fleet-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.fleet-detail-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}

.fleet-detail-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.fleet-detail-body { padding: 1.75rem; }

.fleet-detail-body h3 {
  font-size: 1.2rem;
  color: var(--clr-primary);
  margin-bottom: .5rem;
}

.fleet-detail-body p { font-size: .9rem; color: var(--clr-muted); margin-bottom: 1.25rem; }

.fleet-detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.spec-item {
  background: var(--clr-light);
  border-radius: 4px;
  padding: .6rem .9rem;
}

.spec-item .spec-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--clr-muted);
  display: block;
  margin-bottom: .15rem;
}

.spec-item .spec-val {
  font-size: .92rem;
  font-weight: 700;
  color: var(--clr-primary);
}

.fleet-capabilities {
  background: var(--clr-light);
  padding: 4rem 0;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.capability-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.capability-item svg {
  width: 36px;
  height: 36px;
  stroke: var(--clr-primary);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto .75rem;
}

.capability-item h4 { font-size: .9rem; color: var(--clr-primary); font-family: var(--font-sans); font-weight: 700; }

/* ---------- INDUSTRIES PAGE ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.industry-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, border-color .25s, transform .2s;
  border-left: 4px solid var(--clr-secondary);
}

.industry-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.industry-card h3 {
  font-size: 1.05rem;
  color: var(--clr-primary);
  margin-bottom: .5rem;
}

.industry-card p { font-size: .9rem; color: var(--clr-muted); }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block h2 { margin-bottom: 1rem; }
.contact-info-block p { color: var(--clr-muted); margin-bottom: 2rem; }

.contact-detail-list { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 46px;
  height: 46px;
  background: var(--clr-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--clr-white);
  fill: none;
  stroke-width: 1.8;
}

.contact-detail-item h4 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--clr-muted);
  margin-bottom: .25rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.contact-detail-item p, .contact-detail-item a {
  font-size: 1rem;
  color: var(--clr-dark);
  font-weight: 500;
}

.contact-detail-item a:hover { color: var(--clr-secondary); }

.contact-hours-card {
  background: var(--clr-light);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid var(--clr-border);
}

.contact-hours-card h3 { font-size: 1rem; color: var(--clr-primary); margin-bottom: 1rem; font-family: var(--font-sans); font-weight: 700; }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: .45rem 0;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-mid);
}

.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 600; color: var(--clr-dark); }

.map-placeholder {
  background: var(--clr-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-placeholder iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

.map-address-bar {
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.map-address-bar svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-secondary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ---------- STATS SECTION ---------- */
.stats-section { background: var(--clr-primary); padding: 3.5rem 0; }

.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  text-align: center;
}

.stat-block strong {
  display: block;
  font-size: 2.6rem;
  font-family: var(--font-heading);
  color: var(--clr-secondary);
  line-height: 1.1;
}

.stat-block span {
  font-size: .85rem;
  color: rgba(255,255,255,.70);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--clr-secondary);
  opacity: .2;
  position: absolute;
  top: .5rem;
  left: 1rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card p { font-size: .92rem; color: var(--clr-muted); font-style: italic; margin-bottom: 1.5rem; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-initials {
  width: 42px;
  height: 42px;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author-info strong { display: block; font-size: .92rem; color: var(--clr-dark); }
.testimonial-author-info span { font-size: .8rem; color: var(--clr-muted); }

/* ---------- CERTIFICATIONS ---------- */
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.cert-badge {
  background: var(--clr-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1rem 1.75rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.cert-badge::before {
  content: '✓';
  color: var(--clr-secondary);
  font-size: 1rem;
  font-weight: 700;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer-brand .logo-mark { width: 48px; height: 48px; }
.footer-brand .logo-name { color: var(--clr-white); font-size: 1.05rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,.50); }

.footer-brand-desc {
  font-size: .88rem;
  margin-top: 1.25rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}

.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }

.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--clr-secondary); }

.footer-contact-info { display: flex; flex-direction: column; gap: .9rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--clr-secondary);
  fill: none;
  stroke-width: 2;
  margin-top: .15rem;
  flex-shrink: 0;
}

.footer-contact-item a { color: rgba(255,255,255,.70); }
.footer-contact-item a:hover { color: var(--clr-secondary); }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.40);
}

.footer-bottom a { color: rgba(255,255,255,.50); }
.footer-bottom a:hover { color: var(--clr-secondary); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .topbar .container { justify-content: center; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--clr-white);
    border-top: 1px solid var(--clr-border);
    border-bottom: 3px solid var(--clr-secondary);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
    background: none;
    border: none;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-primary);
    border-radius: 2px;
    transition: .2s;
  }

  .hero { min-height: 420px; }
  .hero-stats { gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .fleet-detail-specs { grid-template-columns: 1fr; }
  .why-image img { height: 260px; }
}

@media (min-width: 769px) {
  .hamburger { display: none; }
}
