/* ============================================
   FLEETON LOGISTICS — SHARED STYLESHEET
   Used by all pages: index.html, ftl.html, ptl.html,
   warehousing.html, fleeton-express.html, odc.html,
   about.html, work.html, careers.html, faq.html
   ============================================ */

:root {
  --navy: #0A1F3D;
  --navy-deep: #07172E;
  --navy-soft: #162849;
  --gold: #C9A46B;
  --gold-warm: #D4B077;
  --graphite: #1E2430;
  --slate: #3A4A63;
  --slate-light: #6B7A92;
  --porcelain: #F4F6FA;
  --cream: #FBF9F4;
  --white: #FFFFFF;
  --border: rgba(10, 31, 61, 0.08);
  --border-strong: rgba(10, 31, 61, 0.15);
  --whatsapp: #25D366;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1320px;
  --container-narrow: 1080px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--graphite);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.display-xl {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.display-xl em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.h-section {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.08;
}
.h-section em { font-style: italic; color: var(--gold); font-weight: 400; }

.h-card {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.15;
}

.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--slate);
  font-weight: 400;
}

/* ============ LAYOUT ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 110px 0; position: relative; }

.section-dark { background: var(--navy); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-cream { background: var(--cream); }
.section-porcelain { background: var(--porcelain); }

/* ============ ANNOUNCE BAR ============ */
.announce {
  background: var(--navy-deep);
  color: var(--cream);
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.02em;
}
.announce span { color: var(--gold); font-weight: 500; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.main-nav > a, .main-nav .nav-item > a, .main-nav .nav-dropdown > button {
  font-size: 14px;
  color: var(--slate);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s var(--ease);
  padding: 6px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
}
.main-nav > a:hover, .main-nav .nav-dropdown > button:hover { color: var(--navy); }
.main-nav > a::after, .main-nav .nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.main-nav > a:hover::after, .main-nav .nav-dropdown:hover > button::after { width: 100%; }

/* Dropdown menu (Services) */
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown > button::before { content: none; }
.nav-dropdown .dropdown-arrow {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s var(--ease);
}
.nav-dropdown:hover .dropdown-arrow { transform: rotate(225deg) translateY(0px); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px -20px rgba(10, 31, 61, 0.2);
  min-width: 240px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 102;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 14px;
  color: var(--slate);
  transition: all 0.2s var(--ease);
}
.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--navy);
}
.dropdown-menu a .dropdown-meta {
  display: block;
  font-size: 11px;
  color: var(--slate-light);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-top: 2px;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 13px 22px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 20px 40px -20px rgba(10, 31, 61, 0.4);
}
.btn-primary .arrow { transition: transform 0.3s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-warm);
  transform: translateY(-1px);
  box-shadow: 0 20px 40px -20px rgba(201, 164, 107, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.5); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border: 1px solid var(--whatsapp);
}
.btn-whatsapp:hover {
  background: #1ea952;
  transform: translateY(-1px);
}

/* ============ HERO — FULL WIDTH WAREHOUSE (HOMEPAGE) ============ */
.hero-wide { padding: 60px 0 90px; position: relative; overflow: hidden; }
.hero-wide-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 48px;
  text-align: center;
}
.hero-wide-content .eyebrow { margin-bottom: 24px; display: inline-flex; }
.hero-wide-content h1 {
  margin-bottom: 28px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.hero-wide-content .lead {
  max-width: 760px;
  margin: 0 auto 36px;
}
.hero-wide-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-wide-micro {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--slate-light);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-micro-dot {
  width: 8px; height: 8px;
  background: #1F7A55;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(31, 122, 85, 0.15);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31, 122, 85, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(31, 122, 85, 0.05); }
}

.hero-wide-visual {
  position: relative;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-wide-image-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 2px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 40px 80px -30px rgba(10, 31, 61, 0.3);
}
.hero-wide-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-wide-image-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 31, 61, 0.25) 100%);
  pointer-events: none;
}

.hero-card {
  position: absolute;
  bottom: 28px;
  right: 56px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 20px 26px;
  border-radius: 2px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.4);
  animation: floatIn 0.8s var(--ease) 0.6s both;
  z-index: 2;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-card-stat {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-card-stat em { font-size: 22px; font-style: normal; color: var(--gold); }
.hero-card-label { font-size: 12px; color: var(--navy); letter-spacing: 0.02em; font-weight: 500; }

/* ============ HERO — SERVICE PAGE (SPLIT) ============ */
.page-hero {
  padding: 70px 0 100px;
  background: var(--cream);
  position: relative;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.page-hero-content .eyebrow { margin-bottom: 24px; }
.page-hero-content h1 { margin-bottom: 24px; font-size: clamp(36px, 5vw, 64px); font-weight: 300; }
.page-hero-content h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-hero-content .lead { margin-bottom: 32px; max-width: 560px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero-visual {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(10, 31, 61, 0.3);
}
.page-hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Light variant (no photo, just eyebrow + heading on clean background) */
.page-hero-light {
  padding: 60px 0 60px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.page-hero-light .eyebrow { margin-bottom: 18px; display: inline-flex; }
.page-hero-light h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  max-width: 900px;
  margin-bottom: 20px;
}
.page-hero-light h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-hero-light .lead { max-width: 760px; }

/* ============ STATS STRIP ============ */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 22px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.8vw, 48px);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-number em { font-style: normal; color: var(--gold); font-size: 0.55em; }
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.stat-note {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============ SECTION HEADING PATTERN ============ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head .eyebrow { margin-bottom: 20px; display: inline-flex; }
.section-head p { color: var(--slate); font-size: 17px; line-height: 1.6; }

/* ============ SERVICES PREVIEW CARDS (HOMEPAGE) ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.services-grid.five-cols { grid-template-columns: repeat(3, 1fr); }
.service-preview-card {
  background: var(--white);
  padding: 40px 32px 36px;
  transition: background 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 320px;
}
.service-preview-card:hover { background: var(--cream); }
.service-preview-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.service-preview-icon {
  width: 42px; height: 42px;
  margin-bottom: 20px;
}
.service-preview-icon svg {
  width: 100%; height: 100%;
  stroke: var(--navy);
  stroke-width: 1.3;
  fill: none;
}
.service-preview-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 500;
}
.service-preview-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 24px;
  flex: 1;
}
.service-preview-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--navy);
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease);
}
.service-preview-link:hover { gap: 14px; color: var(--gold); }
.service-preview-link::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

/* ============ FEATURE LIST (used on service pages) ============ */
.service-features {
  list-style: none;
  margin-bottom: 32px;
}
.service-features li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.service-features li:first-child { border-top: 1px solid var(--border); }
.sf-check {
  width: 20px; height: 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.sf-check::after {
  content: "";
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg) translate(1px, -1px);
}
.service-features-label { font-weight: 500; color: var(--navy); display: block; margin-bottom: 2px; font-size: 16px; }
.service-features-sub { font-size: 14px; color: var(--slate); line-height: 1.5; }

.service-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(201, 164, 107, 0.12);
  color: var(--navy);
  border: 1px solid rgba(201, 164, 107, 0.3);
  font-size: 12px;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
}

.lanes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 30px;
}
.lane-chip {
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border-strong);
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  transition: all 0.3s var(--ease);
}
.lane-chip:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.mini-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ============ SERVICE DEEP LAYOUT ============ */
.service-deep-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-deep-block.reverse { direction: rtl; }
.service-deep-block.reverse > * { direction: ltr; }

.service-deep-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(10, 31, 61, 0.25);
}
.service-deep-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.service-deep-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 22px;
  font-weight: 400;
  line-height: 1.1;
}
.service-deep-content h2 em { font-style: italic; color: var(--gold); }
.service-deep-content .lead-text {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ============ WHY FLEETON ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
  margin-top: 64px;
}
.why-item { position: relative; }
.why-item-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  font-style: italic;
}
.why-item h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 500;
}
.why-item p {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-size: 15px;
}

/* ============ PROCESS ============ */
.process-section { background: var(--cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 64px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  background: var(--cream);
  padding-right: 18px;
}
.process-num {
  width: 60px; height: 60px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
}
.process-step:hover .process-num { background: var(--navy); color: var(--gold); }
.process-step h4 { font-size: 20px; margin-bottom: 10px; font-weight: 500; }
.process-step p { font-size: 14px; color: var(--slate); line-height: 1.55; }
.process-highlight {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============ INDUSTRIES ============ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
  border: 1px solid var(--border);
}
.industry-item {
  background: var(--white);
  padding: 40px 32px;
  transition: all 0.3s var(--ease);
  cursor: default;
}
.industry-item:hover { background: var(--navy); }
.industry-item:hover h4,
.industry-item:hover .industry-desc { color: var(--white); }
.industry-item:hover .industry-icon svg { stroke: var(--gold); }

.industry-icon {
  width: 42px; height: 42px;
  margin-bottom: 20px;
}
.industry-icon svg {
  width: 100%; height: 100%;
  stroke: var(--navy);
  stroke-width: 1.2;
  fill: none;
  transition: stroke 0.3s var(--ease);
}
.industry-item h4 { font-size: 22px; margin-bottom: 8px; transition: color 0.3s var(--ease); font-weight: 500; }
.industry-desc { font-size: 14px; color: var(--slate); line-height: 1.5; transition: color 0.3s var(--ease); }

/* ============ EDITORIAL CASE STUDIES (no photos) ============ */
.cases-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.case-editorial {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 36px 44px;
  position: relative;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.case-editorial:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -30px rgba(10, 31, 61, 0.2);
  border-color: var(--border-strong);
}
.case-editorial.theme-navy {
  background: var(--navy);
  color: var(--white);
  border: none;
}
.case-editorial.theme-gold {
  background: linear-gradient(135deg, #E8D4B0 0%, #C9A46B 100%);
  color: var(--navy);
  border: none;
}
.case-editorial.theme-cream {
  background: var(--cream);
  border: 1px solid var(--border-strong);
}

.case-editorial-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}
.case-editorial.theme-navy .case-editorial-num { color: var(--gold); }
.case-editorial.theme-gold .case-editorial-num { color: var(--navy-deep); }

.case-editorial-client {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 10px;
}
.case-editorial.theme-navy .case-editorial-client { color: var(--white); }
.case-editorial.theme-gold .case-editorial-client { color: var(--navy-deep); }

.case-editorial-context {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.case-editorial.theme-navy .case-editorial-context { color: rgba(255,255,255,0.55); border-bottom-color: rgba(255,255,255,0.15); }
.case-editorial.theme-gold .case-editorial-context { color: rgba(10,31,61,0.6); border-bottom-color: rgba(10,31,61,0.15); }

.case-editorial-headline {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 18px;
}
.case-editorial.theme-navy .case-editorial-headline { color: var(--gold); }
.case-editorial.theme-gold .case-editorial-headline { color: var(--navy-deep); }

.case-editorial-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 22px;
  flex: 1;
}
.case-editorial.theme-navy .case-editorial-desc { color: rgba(255,255,255,0.75); }
.case-editorial.theme-gold .case-editorial-desc { color: var(--navy-deep); }

.case-editorial-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.case-editorial-tag {
  font-size: 10px;
  font-family: var(--font-mono);
  padding: 4px 10px;
  background: var(--porcelain);
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.case-editorial.theme-navy .case-editorial-tag { background: rgba(255,255,255,0.1); color: var(--white); }
.case-editorial.theme-gold .case-editorial-tag { background: rgba(10,31,61,0.1); color: var(--navy-deep); }

/* ============ LOGO STRIP ============ */
.trust-strip {
  padding: 90px 0;
  background: var(--white);
}
.trust-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--slate-light);
  text-transform: uppercase;
  margin-bottom: 56px;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1280px;
  margin: 0 auto;
}
.logo-tile {
  background: var(--white);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  transition: all 0.3s var(--ease);
}
.logo-tile:hover { background: var(--cream); }
.logo-tile img {
  max-height: 56px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
  transition: all 0.3s var(--ease);
  mix-blend-mode: multiply;
}
.logo-tile:hover img {
  opacity: 1;
  transform: scale(1.06);
}

/* ============ QUOTE FORM ============ */
.quote-section {
  background: var(--cream);
  padding: 120px 0;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.quote-side h2 { margin-bottom: 22px; font-size: clamp(30px, 3.8vw, 46px); font-weight: 400; }
.quote-side h2 em { font-style: italic; color: var(--gold); }
.quote-side p { color: var(--slate); margin-bottom: 32px; font-size: 17px; line-height: 1.6; }
.quote-features { list-style: none; }
.quote-features li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.quote-features li:first-child { border-top: 1px solid var(--border); }
.quote-check {
  width: 20px; height: 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.quote-check::after {
  content: "";
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg) translate(1px, -1px);
}
.quote-feature-label { font-weight: 500; color: var(--navy); }
.quote-feature-sub { font-size: 14px; color: var(--slate-light); margin-left: 6px; }

.quote-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
  box-shadow: 0 40px 80px -40px rgba(10, 31, 61, 0.15);
}
.quote-form-title {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--navy);
}
.quote-form-sub { color: var(--slate); font-size: 14px; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--slate);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border-strong);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--graphite);
  transition: border 0.2s var(--ease);
  border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-textarea { resize: vertical; min-height: 80px; font-family: var(--font-body); }
.form-select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A4A63' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; }

.form-group-service {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.service-chip {
  padding: 11px 8px;
  border: 1px solid var(--border-strong);
  text-align: center;
  font-size: 12px;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  background: var(--white);
  font-weight: 500;
  user-select: none;
}
.service-chip.active, .service-chip:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.form-submit {
  width: 100%;
  padding: 17px;
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover { background: #1ea952; }
.form-submit svg { width: 18px; height: 18px; fill: currentColor; }
.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--slate-light);
  text-align: center;
  line-height: 1.5;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201, 164, 107, 0.08), transparent 60%);
  pointer-events: none;
}
.cta-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 300;
  line-height: 1.08;
}
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band .cta-sub {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.cta-contact {
  text-align: right;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
  font-size: 13px;
}
.cta-contact-label { font-size: 11px; letter-spacing: 0.1em; margin-bottom: 18px; text-transform: uppercase; }
.cta-contact-phone {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 400;
  display: block;
}
.cta-contact-email {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--white);
  margin-top: 18px;
  font-weight: 400;
  display: block;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-brand .footer-logo img {
  height: 38px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 340px;
}
.footer-contact {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 2;
}
.footer-contact a { transition: color 0.2s var(--ease); }
.footer-contact a:hover { color: var(--gold); }
.footer-24x7 {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.8;
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s var(--ease);
}
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ FLOATING WHATSAPP BUTTON ============ */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s var(--ease);
}
.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}
.floating-whatsapp svg { width: 28px; height: 28px; fill: var(--white); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ TRANSIT TIME TABLE (Fleeton Express) ============ */
.transit-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border: 1px solid var(--border-strong);
}
.transit-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}
.transit-table thead {
  background: var(--navy);
  color: var(--white);
}
.transit-table th {
  padding: 18px 20px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-mono);
}
.transit-table th.fleeton-col {
  background: var(--gold);
  color: var(--navy);
}
.transit-table td {
  padding: 16px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.transit-table tr:last-child td { border-bottom: none; }
.transit-table td:first-child {
  font-weight: 500;
  color: var(--navy);
}
.transit-table td.fleeton-time {
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-mono);
  background: rgba(201, 164, 107, 0.08);
}
.transit-table td.industry-time {
  color: var(--slate);
  font-family: var(--font-mono);
}
.transit-table tbody tr:hover { background: var(--cream); }
.transit-table tbody tr:hover td.fleeton-time { background: rgba(201, 164, 107, 0.15); }

/* ============ WHEN TO CHOOSE (PTL page) ============ */
.when-to-choose {
  margin-top: 40px;
  border: 1px solid var(--border-strong);
}
.when-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.when-row:last-child { border-bottom: none; }
.when-row.header {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.when-row > div { padding: 16px 20px; }
.when-row:not(.header) > div:first-child { color: var(--navy); font-weight: 500; border-right: 1px solid var(--border); background: var(--white); }
.when-row:not(.header) > div:last-child { background: var(--cream); }
.when-row .match { color: #1F7A55; font-weight: 500; }
.when-row .alt { color: var(--slate); font-style: italic; }

/* ============ FAQ ACCORDION ============ */
.faq-category { margin-bottom: 56px; }
.faq-category-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-strong);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  top: 50%; left: 50%;
  transition: all 0.3s var(--ease);
}
.faq-icon::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 22px; }
.faq-answer p {
  color: var(--slate);
  line-height: 1.65;
  font-size: 15px;
  padding-right: 40px;
}
.faq-answer ul { list-style: disc; padding-left: 20px; margin-top: 10px; }
.faq-answer ul li { color: var(--slate); font-size: 15px; margin-bottom: 6px; }

/* ============ CAREERS JOB CARDS ============ */
.job-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.job-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
}
.job-info-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.job-info-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
  .services-grid, .services-grid.five-cols { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-editorial { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
  .logo-grid { grid-template-columns: repeat(4, 1fr); max-width: 820px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-deep-block { grid-template-columns: 1fr; gap: 40px; }
  .service-deep-block.reverse { direction: ltr; }
  .service-deep-visual { aspect-ratio: 3/2; max-height: 440px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-content { grid-template-columns: 1fr; gap: 28px; }
  .cta-contact { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .job-info-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card { right: 40px; bottom: 20px; padding: 16px 20px; }
  .hero-card-stat { font-size: 28px; }

  /* Mobile menu full-screen overlay */
  .main-nav.mobile-open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 40px 40px;
    z-index: 105;
    gap: 4px;
    overflow-y: auto;
    align-items: stretch;
  }
  .main-nav.mobile-open > a,
  .main-nav.mobile-open .nav-item > a,
  .main-nav.mobile-open .nav-dropdown > button {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    text-align: left;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--navy);
    justify-content: flex-start;
  }
  .main-nav.mobile-open > a::after,
  .main-nav.mobile-open .nav-dropdown > button::after { display: none; }
  .main-nav.mobile-open .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 8px 0 16px;
    background: none;
    min-width: auto;
  }
  .main-nav.mobile-open .dropdown-menu a {
    padding: 10px 18px;
    font-size: 16px;
    font-family: var(--font-body);
    border-bottom: none;
  }
  .main-nav.mobile-open .nav-dropdown .dropdown-arrow { display: none; }
}
@media (max-width: 640px) {
  section, .service-deep, .quote-section, .cta-band { padding: 70px 0; }
  .container { padding: 0 20px; }
  .header-inner { padding: 12px 20px; gap: 12px; }
  .logo-img { height: 36px; }
  .btn { padding: 11px 16px; font-size: 13px; }
  .header-actions .btn-primary { display: none; } /* Hide Get Quote button on mobile — hamburger has it */
  .hero-wide { padding: 30px 0 60px; }
  .hero-wide-content { padding: 0 20px 32px; }
  .hero-wide-visual { padding: 0 16px; }
  .hero-wide-image-wrap { aspect-ratio: 4/3; }
  .hero-card { right: 20px; bottom: 16px; padding: 12px 16px; }
  .hero-card-stat { font-size: 22px; }
  .hero-card-label { font-size: 10px; }
  .hero-wide-actions .btn { flex: 1; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px 14px; }
  .stat-item { padding-left: 14px; }
  .stats { padding: 44px 0; }
  .services-grid, .services-grid.five-cols { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group-service { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .quote-form-wrap { padding: 28px 20px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-tile { height: 90px; padding: 16px; }
  .cta-contact-phone { font-size: 24px; }
  .floating-whatsapp { bottom: 16px; right: 16px; }
  .job-info-grid { grid-template-columns: 1fr; }
  .when-row { grid-template-columns: 1fr; }
  .when-row:not(.header) > div:first-child { border-right: none; border-bottom: 1px solid var(--border); }
}
