/* Tokens + Premium header + waFloat (overrides) */
:root {
  --navy-900: #061a2a;
  --navy-800: #0b1f33;
  --navy-700: #123a5a;
  --muted: #64748b;
}
body {
  overflow-x: hidden;
}

/* ========== PREMIUM MEGA HEADER ========== */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #fff;
  transition: box-shadow .2s ease, background .2s ease;
}
.siteHeader__inner {
  max-width: 1320px;
  padding: 0 24px;
  margin: 0 auto;
}
.siteHeader__top {
  height: 32px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #0d2137 0%, #0a2540 100%);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  line-height: 1.2;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: transform .2s ease, opacity .2s ease;
}
.siteHeader__top .siteHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.siteHeader__topLeft { color: rgba(255,255,255,.95); }
.siteHeader__topRight { color: rgba(255,255,255,.78); }

/* Ana içerik: header ile aynı yatay hiza (logo = content başlangıcı) */
main .container-xxl {
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 575px) {
  main .container-xxl { padding-left: 20px; padding-right: 20px; }
}

/* Unified wide container – ekstra padding yok (hiza main .container-xxl’den) */
.home-container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

/* Ana sayfa modülleri: arka plana yapışmasın, dört yönde eşit boşluk */
.home-section {
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 767px) {
  .home-section { padding-left: 20px; padding-right: 20px; }
}

body.isScrolled .siteHeader__top {
  display: none;
}
.siteHeader__main {
  height: 68px;
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: height .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
body.isScrolled .siteHeader__main {
  height: 60px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(0,0,0,.06);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.siteHeader__main .siteHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.siteHeader__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-800);
  text-decoration: none;
  flex-shrink: 0;
}
.siteHeader__logoMark { flex-shrink: 0; vertical-align: middle; }
.siteHeader__logoText { letter-spacing: -.02em; }
.siteHeader__logo:hover { color: var(--navy-700); }
.siteHeader__logo:hover .siteHeader__logoMark { opacity: .9; }
.siteHeader__nav { flex: 1; min-width: 0; display: flex; justify-content: center; }

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.05rem;
}
.footer__brandMark { flex-shrink: 0; vertical-align: middle; filter: brightness(0) invert(1); }
.megaNav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.megaNav__item { position: relative; }
.megaNav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-800);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.megaNav__trigger:hover { background: rgba(0,0,0,.05); color: var(--navy-700); }
.megaNav__trigger[aria-expanded="true"] { background: rgba(0,0,0,.06); }
.megaNav__link {
  display: inline-block;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-800);
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.megaNav__link:hover { background: rgba(0,0,0,.05); color: var(--navy-700); }
.megaNav__link--active { color: var(--navy-700); font-weight: 600; }
.megaNav__link--active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--navy-700);
  border-radius: 1px;
  margin-top: 2px;
}
/* Kapalı varsayılan: sayfa yüklenirken mega menü asla görünmesin.
   app.min.css'teki .megaNav__item:hover .megaPanel kuralını geçersiz kılıyoruz:
   sadece JS aria-expanded="true" yaptığında panel açılsın, hover tek başına açmasın. */
.megaPanel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 520px;
  max-width: calc(100vw - 32px);
  width: max-content;
  margin-top: 4px;
  padding: 22px 28px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(0,0,0,.12);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
@media (min-width: 992px) {
  .megaPanel {
    min-width: 620px;
    max-width: 860px;
  }
}
@media (max-width: 991px) {
  .megaPanel { min-width: 280px; }
}
/* Kapalıyken tamamen kaldır ki slider sonrası içeriği kapatmasın */
.megaPanel {
  display: none;
}
.megaPanel[aria-expanded="true"] {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* Hover ile otomatik açılmayı kapat; sadece JS (mouseenter + aria-expanded) açsın */
.megaNav__item:hover .megaPanel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}
.megaNav__item:hover .megaPanel[aria-expanded="true"] {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.megaPanel__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
  min-width: 0;
}
.megaPanel__left { min-width: 0; }
.megaPanel__right { min-width: 0; }
.megaPanel__title { font-size: 1.1rem; font-weight: 700; color: var(--navy-800); margin: 0 0 6px 0; }
.megaPanel__desc { font-size: .875rem; color: var(--muted); line-height: 1.45; margin: 0 0 12px 0; }
.megaPanel__link {
  display: inline-block;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: var(--navy-800);
  padding: 8px 14px;
  margin: 4px 0 0 0;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.megaPanel__link:hover {
  background: var(--navy-700);
  color: #fff;
}
.megaPanel__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  min-width: 0;
}
.megaPanel__list { list-style: none; margin: 0; padding: 0; }
.megaPanel__list a {
  display: block;
  padding: 10px 14px;
  font-size: .9rem;
  color: var(--navy-800);
  text-decoration: none;
  border-radius: 8px;
  transition: color .15s ease, background .15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.megaPanel__list a:hover {
  color: var(--navy-700);
  background: rgba(0,0,0,.04);
}
@media (min-width: 992px) {
  .megaPanel__list a {
    max-width: 280px;
  }
}
.siteHeader__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.siteHeader__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.siteHeader__btn--wa {
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.35);
  color: #0a7a4a;
}
.siteHeader__btn--wa:hover { background: rgba(37,211,102,.2); color: #066b3e; }
.siteHeader__btn--primary {
  background: var(--navy-800);
  color: #fff;
  border: none;
}
.siteHeader__btn--primary:hover { background: var(--navy-700); color: #fff; transform: translateY(-1px); }
.siteHeader__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}
.siteHeader__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease;
}
@media (max-width: 992px) {
  .siteHeader__nav { display: none; }
  .siteHeader__hamburger { display: flex; }
  .siteHeader__main .siteHeader__inner { gap: 12px; }
  .siteHeader__logo { min-width: 0; flex: 1; min-width: 0; }
  .siteHeader__logoText {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 220px;
    font-size: 0.95rem;
  }
}
@media (max-width: 767px) {
  .siteHeader__topLeft { font-size: 11px; }
  .siteHeader__topRight { display: none; }
  .siteHeader__inner { padding-left: 16px; padding-right: 16px; }
  .siteHeader__main .siteHeader__inner { gap: 8px; }
  .siteHeader__logoText { max-width: 200px; font-size: 0.9rem; }
  .siteHeader__btn--primary { padding: 0 12px; font-size: 13px; min-width: auto; }
}
@media (max-width: 480px) {
  .siteHeader__logoText { max-width: 220px; font-size: 0.8rem; }
  .siteHeader__btn--primary { display: none; }
}

/* Mobile drawer: overlay closed by default — display:none when closed so it never blocks */
.mobileNav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1040;
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.mobileNav__overlay[aria-hidden="false"] {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobileNav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0,0,0,.15);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
  pointer-events: none;
}
.mobileNav__drawer[aria-hidden="false"] {
  transform: translateX(0);
  pointer-events: auto;
}
.mobileNav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.mobileNav__logo { display: inline-flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 700; color: var(--navy-800); text-decoration: none; }
.mobileNav__logoMark { flex-shrink: 0; }
.mobileNav__close {
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy-800);
  border-radius: 8px;
}
.mobileNav__close:hover { background: rgba(0,0,0,.06); }
.mobileNav__content { padding: 16px 0; }
.mobileNav__list { list-style: none; margin: 0; padding: 0; }
.mobileNav__item { border-bottom: 1px solid rgba(0,0,0,.06); }
.mobileNav__accordion {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy-800);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.mobileNav__accordion:hover { background: rgba(0,0,0,.04); }
.mobileNav__sublist {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.mobileNav__sublist[aria-expanded="true"] { max-height: 400px; }
.mobileNav__sublist a {
  display: block;
  padding: 10px 20px 10px 32px;
  font-size: .9rem;
  color: var(--muted);
  text-decoration: none;
}
.mobileNav__sublist a:hover { color: var(--navy-800); }
.mobileNav__link {
  display: block;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy-800);
  text-decoration: none;
}
.mobileNav__link--active { font-weight: 600; color: var(--navy-700); }
.mobileNav__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.mobileNav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.mobileNav__cta--wa { background: rgba(37,211,102,.15); color: #0a7a4a; }
.mobileNav__cta--wa:hover { background: rgba(37,211,102,.25); color: #066b3e; }
.mobileNav__cta--primary { background: var(--navy-800); color: #fff; }
.mobileNav__cta--primary:hover { background: var(--navy-700); color: #fff; }

/* ========== PREMIUM FLOATING WHATSAPP ========== */
.waFloat {
  position: fixed;
  right: 22px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 14px 0 0;
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  color: #fff;
  text-decoration: none;
  transition: width .25s ease, padding .25s ease, box-shadow .2s ease;
  overflow: hidden;
  width: 52px;
}
.waFloat:hover {
  width: 172px;
  padding-left: 14px;
  box-shadow: 0 20px 48px rgba(0,0,0,.22);
}
.waFloat__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.waFloat__icon svg { width: 26px; height: 26px; display: block; }
.waFloat__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s ease;
}
.waFloat:hover .waFloat__label { opacity: 1; }
.waFloat__title { font-size: 14px; font-weight: 700; line-height: 1.2; }
.waFloat__sub { font-size: 11px; opacity: .9; }
@media (max-width: 991px) {
  .waFloat { width: 52px; padding: 0; }
  .waFloat:hover { width: 52px; padding: 0; }
  .waFloat__label { display: none; }
}

/* Mobile: WhatsApp balonu CTA çubuğunun ÜSTÜNDE olsun */
@media (max-width: 991px) {
  body {
    padding-bottom: 110px; /* içerik CTA çubuğunun arkasına girmesin */
  }
  .mobile-cta-bar {
    bottom: env(safe-area-inset-bottom, 0px); /* en altta */
  }
  .waFloat {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px)); /* CTA çubuğunun biraz üzerinde */
  }
}

/* Social proof strip – başlık ve chip’ler ortada */
/* İkonlar arka planları ile ortalı – SVG display:block ile baseline hizası düzeltmesi */
.home-hiw__iconWrap { display: flex; align-items: center; justify-content: center; }
.home-hiw__iconWrap svg { display: block; }
.home-service-card__icon-wrap { display: flex; align-items: center; justify-content: center; }
.home-service-card__icon-wrap svg { display: block; }
.trust-strip-icon { display: inline-flex; align-items: center; justify-content: center; }

.social-proof-strip__title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.social-proof-strip__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

/* Trust strip – üst/alt boşluk üstteki ve alttaki section ile aynı (96px) */
section.trust-section.home-section {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}
@media (max-width: 767px) {
  section.trust-section.home-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
/* Muted arka planı section'da değil container'da: sağ/sol beyaz modüllerle aynı hizada */
.trust-section.home-section--muted {
  background: transparent;
}
/* Sağ ve sol alanı geniş: container genişliğini kullan */
.trust-section .home-container {
  background: #f6f8fb;
  padding: 24px;
  border-radius: 16px;
  max-width: 100%;
  width: 100%;
}
.trust-section .trust-strip.home-trust {
  padding: 0;
  background: transparent;
  border-radius: 0;
  width: 100%;
  max-width: none;
}
.home-trust__grid {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}
.home-trust__card {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 1.25rem; background: #fff;
  border: 1px solid rgba(0,0,0,.06); border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04); height: 100%;
  transition: box-shadow .25s ease, border-color .2s ease;
}
.home-trust__card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08); border-color: rgba(6,26,42,.08);
}
.home-trust__icon-wrap {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: #0a2540; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.home-trust__icon,
.home-trust__icon-wrap svg {
  width: 24px; height: 24px; display: block;
  margin: 0; /* app.min.css .home-trust__icon margin-bottom:.5rem override */
}
.home-trust__body { flex: 1; min-width: 0; text-align: center; }
.home-trust__title {
  font-size: 1rem; font-weight: 600; color: #0f172a;
  margin: 0 0 0.25rem 0; line-height: 1.3;
}
.home-trust__desc { font-size: 0.8125rem; color: #64748b; margin: 0; line-height: 1.45; }
@media (max-width: 991px) {
  .home-trust__card { padding: 1rem; gap: 0.875rem; }
  .home-trust__icon-wrap { width: 42px; height: 42px; }
  .home-trust__icon,
  .home-trust__icon-wrap svg { width: 20px; height: 20px; margin: 0; }
  .home-trust__title { font-size: 0.9375rem; }
}

/* Service Areas – kart tabanlı tasarım */
.service-areas-section__header {
  text-align: center;
  margin-bottom: 2.25rem;
}
.service-areas-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}
.service-areas-section__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: #0b1f33;
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.service-areas-section__subtitle {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .service-areas-grid { grid-template-columns: 1fr; }
}
.service-area-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .25s ease, transform .2s ease;
  overflow: hidden;
}
.service-area-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.service-area-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0b1f33 0%, #123a5a 100%);
  border-radius: 4px 0 0 4px;
}
.service-area-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 1rem 0.75rem;
  letter-spacing: 0.02em;
}
.service-area-card__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}
.service-area-card__city {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  color: #475569;
  background: #f1f5f9;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background .2s ease, color .2s ease;
}
.service-area-card__city:hover {
  background: #0b1f33;
  color: #fff;
}
.service-areas-cta {
  margin-top: 2rem;
  padding: 1.5rem 1.5rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.service-areas-cta__text {
  margin: 0;
  font-size: 0.9375rem;
  color: #64748b;
}
.service-areas-cta__btn {
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
}

/* Final CTA – kart tabanlı, açık ve sade */
.final-cta-section {
  background: #f8fafc;
  padding-top: 2rem !important;
  padding-bottom: 3rem !important;
}
.final-cta-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  text-align: center;
}
.final-cta-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}
.final-cta-card__text {
  font-size: 1rem;
  color: #64748b;
  margin: 0 0 1.75rem 0;
  line-height: 1.5;
}
.final-cta-card__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.final-cta-card__btn {
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  min-width: 260px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.final-cta-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 31, 51, .25);
}
.final-cta-card__link {
  font-size: 0.9375rem;
  color: #0b1f33;
  font-weight: 500;
  text-decoration: none;
}
.final-cta-card__link:hover {
  text-decoration: underline;
  color: #061a2a;
}
@media (max-width: 575px) {
  .final-cta-card { padding: 1.75rem 1.25rem; }
  .final-cta-card__title { font-size: 1.25rem; }
  .final-cta-card__btn { min-width: 100%; }
}

/* ========== PREMIUM HERO (Corporate + Executive + VIP) - start ========== */
.home-hero {
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding: 56px 56px 56px;
  background-color: #0a2540;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media (min-width: 992px) {
  .home-hero { padding: 64px; }
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,27,43,.42) 0%, rgba(7,27,43,.68) 55%, rgba(7,27,43,.88) 100%);
  z-index: 0;
  pointer-events: none;
}
.home-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 78px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%);
  z-index: 1;
  pointer-events: none;
}
.home-hero .home-container {
  position: relative;
  z-index: 2;
}
.home-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: auto auto;
  gap: 28px;
  align-items: start;
}
.home-hero__left { grid-column: 1; grid-row: 1; }
.home-hero__right { grid-column: 2; grid-row: 1; }
.home-hero__quote { grid-column: 1 / -1; grid-row: 2; width: 100%; }
@media (max-width: 991px) {
  .home-hero { padding: 40px 24px 48px; }
  .home-hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 24px;
  }
  .home-hero__left { order: 1; grid-column: 1; grid-row: auto; }
  .home-hero__quote { order: 2; grid-column: 1; grid-row: auto; }
  .home-hero__right { order: 3; grid-column: 1; grid-row: auto; }
}
.home-hero__panel {
  max-width: 680px;
  background: linear-gradient(145deg, rgba(7,27,43,.55), rgba(7,27,43,.34));
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 40px 80px rgba(0,0,0,.35);
  border-radius: 22px;
  padding: 28px;
}
.home-hero__title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 10px 36px rgba(0,0,0,.45);
  margin: 0 0 10px 0;
}
.home-hero__sub {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 10px 0;
  opacity: .95;
}
.home-hero__lead {
  color: rgba(255,255,255,.86);
  line-height: 1.55;
  margin: 0 0 14px 0;
  max-width: 52ch;
  font-size: 1.05rem;
}
.home-hero__bullets {
  color: rgba(255,255,255,.8);
  margin: 0 0 18px 0;
  padding: 0;
  list-style: none;
}
.home-hero__bullets li {
  margin: 8px 0 0 0;
}
.home-hero__bullets li:first-child {
  margin-top: 0;
}
.home-hero__ctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 14px;
}
.home-hero__ctaRow .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 44px;
  border-radius: 12px;
  padding: 0 16px;
  font-weight: 700;
}
.home-hero__btnSecondary {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.95);
}
.home-hero__btnSecondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.home-hero__pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.home-hero__pills .pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.82);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.home-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.heroStat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.heroStat__value {
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.heroStat__label {
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  margin-top: 4px;
}
.home-hero__micro {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  color: rgba(255,255,255,.7);
  font-size: 12px;
}
.home-hero__micro span:nth-child(2n) {
  opacity: .45;
}

/* ========== HERO REQUEST QUOTE MICRO-FORM - start ========== */
.hp-field { display: none !important; }
.home-hero__quote { margin-top: 14px; }
.heroQuote {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 12px 14px;
}
.heroQuote__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.heroQuote__title {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.heroQuote__note {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  text-align: right;
  margin: 0;
  max-width: 260px;
  line-height: 1.35;
}
.heroQuote__note--inline {
  margin-left: auto;
}
.heroQuote__form { display: flex; flex-direction: column; gap: 8px; }
.heroQuote__grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto 1fr;
  gap: 6px 8px;
  align-items: center;
}
.heroQuote__emailRow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.heroQuote__emailRow .heroQuote__actions {
  flex: 1;
  min-width: 0;
}
.heroQuote__input--email {
  flex: 0 1 200px;
  min-width: 140px;
}
.heroQuote__input {
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 0 8px;
  font-size: .8rem;
  min-width: 0;
}
.heroQuote__input::placeholder {
  color: rgba(255,255,255,.55);
}
.heroQuote__input--date { min-width: 110px; }
.heroQuote__input--date::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.9;
}
.heroQuote__input--date::-webkit-datetime-edit {
  color: #fff;
}
.heroQuote__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.heroQuote__actions .heroQuote__note--inline {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  text-align: right;
}
.heroQuote__btn {
  height: 32px;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 600;
  font-size: .85rem;
  background: #fff;
  color: #0b1f33;
  border: none;
}
.heroQuote__btn:hover:not(:disabled) {
  background: #f0f4f8;
  color: #0b1f33;
}
.heroQuote__btn:disabled { opacity: .9; }
.heroQuote__wa {
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
.heroQuote__wa:hover { color: #fff; text-decoration: underline; }
.heroQuote__msg {
  font-size: .85rem;
  text-align: center;
  min-height: 2.5em;
}
.heroQuote__msg.heroQuote__msg--success { color: rgba(144,238,144,.95); }
.heroQuote__msg.heroQuote__msg--error { color: rgba(255,200,200,.95); }
@media (max-width: 768px) {
  .heroQuote__grid {
    grid-template-columns: 1fr 1fr;
  }
  .heroQuote__input--date { min-width: 0; }
  .heroQuote__emailRow { flex-wrap: wrap; }
  .heroQuote__input--email { flex: 1 1 100%; min-width: 0; }
}
@media (max-width: 480px) {
  .heroQuote__grid { grid-template-columns: 1fr; }
}
/* ========== HERO REQUEST QUOTE MICRO-FORM - end ========== */

/* ========== ROUTE DETAIL MICRO QUOTE ========== */
.routeQuote {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,.06);
}
.routeQuote__title {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1rem;
}
.routeQuote input {
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  padding: 0 12px;
}
.routeQuote input.hp-field { position: absolute; left: -9999px; }
.routeQuote__btn {
  width: 100%;
  height: 42px;
  border-radius: 12px;
  margin-top: 4px;
}
.routeQuote__note {
  font-size: .8rem;
  color: #6b7280;
  margin-top: 8px;
  margin-bottom: 4px;
}
.routeQuote__msg {
  font-size: .85rem;
  min-height: 2.5em;
}
.routeQuote__msg.routeQuote__msg--success { color: #059669; }
.routeQuote__msg.routeQuote__msg--error { color: #dc2626; }
/* ========== ROUTE DETAIL MICRO QUOTE - end ========== */

/* ========== HYBRID QUOTE CARD (Routes, Locations, Services, Fleet) ========== */
.hybridQuote {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,.06);
}
.hybridQuote__head { margin-bottom: 12px; }
.hybridQuote__title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 4px 0;
  color: #0f172a;
}
.hybridQuote__sub {
  font-size: .8rem;
  color: #64748b;
  margin: 0;
}
.hybridQuote__form { margin-bottom: 10px; }
.hybridQuote__label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 4px 0;
}
.hybridQuote__input,
.hybridQuote input:not(.hp-field) {
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.1);
  padding: 0 12px;
  background: #fff;
  color: #0f172a;
}
.hybridQuote .hp-field { display: none !important; }
.hybridQuote__btn {
  width: 100%;
  height: 42px;
  border-radius: 12px;
  margin-top: 4px;
}
.hybridQuote__wa {
  display: inline-block;
  font-size: .8rem;
  color: #64748b;
  text-decoration: none;
  margin-bottom: 8px;
}
.hybridQuote__wa:hover { text-decoration: underline; color: #0b1f33; }
.hybridQuote__note {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  max-width: 260px;
  line-height: 1.35;
}
.hybridQuote__msg { font-size: .85rem; min-height: 2.5em; }
.hybridQuote__msg.hybridQuote__msg--success { color: #059669; }
.hybridQuote__msg.hybridQuote__msg--error { color: #dc2626; }
/* ========== HYBRID QUOTE - end ========== */

/* ========== PREMIUM HERO - end ========== */

/* ========== DETAIL PAGE (Locations – premium executive) ========== */
.detailPage { padding: 0 0 3rem; }
.detailGrid {
  display: grid;
  gap: 28px;
  align-items: start;
}
@media (min-width: 992px) {
  .detailGrid {
    grid-template-columns: 1fr 360px;
  }
}
.detailMain { min-width: 0; }
@media (max-width: 991.98px) {
  .detailGrid { display: flex; flex-direction: column; }
  .detailHeroBlock { order: 1; }
  .detailRail { order: 2; }
  .detailContent { order: 3; }
}

.detailRail {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.detailRail > section { margin-bottom: 0 !important; }
.detailRail .card {
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
}
.detailRail .hybridQuote { margin-top: 0; }
.detailRail .railMini { margin-top: 0; }
@media (min-width: 992px) {
  .detailRail {
    position: sticky;
    top: 96px;
    align-self: start;
    margin-bottom: 0;
  }
}

.detailHero {
  margin-bottom: 1.25rem;
  padding-bottom: 0;
}
.detailHero__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.6rem 0;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 18ch;
}
.detailHero__intro {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 1rem 0;
  max-width: 60ch;
}
.detailPage .detailBreadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 4px;
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
  font-size: .875rem;
  color: #64748b;
}
.detailPage .detailBreadcrumb__item:not(:last-child)::after {
  content: '\00a0/\00a0';
  margin-left: 2px;
  padding-inline: 2px;
  color: rgba(0,0,0,.25);
  font-weight: 400;
}
.detailPage .detailBreadcrumb__item a {
  color: #64748b;
  text-decoration: none;
}
.detailPage .detailBreadcrumb__item a:hover { color: #0b1f33; }

.detailHighlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 1rem;
}
.detailHighlights__chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 4px 10px;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  font-size: .75rem;
  line-height: 1.3;
}
.detailHighlights__icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  color: #059669;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.detailHighlights__icon svg { width: 12px; height: 12px; display: block; }
.detailHighlights__label { color: #475569; }
.detailHighlights__value { font-weight: 600; color: #0f172a; }

.detailPage .detailPills {
  margin-bottom: 0;
}
.detailPage .detailPills__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 10px 12px 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.detailPage .detailPills__link {
  display: inline-block;
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: #475569;
  background: transparent;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.detailPage .detailPills__link:hover {
  background: rgba(11,31,51,.06);
  color: #0b1f33;
  border-color: rgba(0,0,0,.1);
}
.detailPage .detailPills__link.is-active {
  background: #0b1f33;
  color: #fff;
  border-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.detailPage .detailPills__link.is-active:hover {
  background: #0a2540;
  color: #fff;
}

.detailPage .scroll-anchor { scroll-margin-top: 92px; }

.detailContent { min-width: 0; }

.detailSection {
  padding: 0 0 52px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.detailSection:first-child { border-top: none; }
.detailSection--soft {
  background: #f6f8fb;
  margin-left: -24px;
  margin-right: -24px;
  padding: 24px 24px 52px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.05);
  border-top: none !important;
  margin-top: 0;
}
.detailSection--soft + .detailSection { border-top: 1px solid rgba(0,0,0,.06); }
@media (max-width: 767px) {
  .detailSection { padding-bottom: 40px; }
  .detailSection--soft { padding: 20px 24px 40px; }
}
.detailSection__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem 0;
}
.detailSection__lead {
  font-size: 1rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 1rem 0;
}
.detailSection__list {
  margin: 0 0 1rem 0;
  padding-left: 1.25rem;
  color: #475569;
  line-height: 1.6;
}
.detailSection__list li { margin-bottom: 0.35rem; }

.detailCallout {
  margin-top: 1rem;
  padding: 14px 16px;
  background: rgba(11,31,51,.04);
  border: 1px solid rgba(11,31,51,.08);
  border-radius: 10px;
}
.detailCallout__text {
  margin: 0;
  font-size: .9rem;
  font-weight: 500;
  color: #0b1f33;
}

.detailChips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.detailChips__chip {
  display: inline-block;
  padding: 10px 14px;
  font-size: .85rem;
  color: #475569;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
  cursor: default;
  transition: background .2s ease;
}
.detailChips__chip:hover {
  background: #f1f5f9;
}

.detailGridTwo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}
.detailGridTwo__item {
  font-size: .9rem;
  color: #475569;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 10px;
}
@media (max-width: 575px) {
  .detailGridTwo { grid-template-columns: 1fr; }
}

.detailPage .detailFaq .accordion-item {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.detailPage .detailFaq .accordion-item:last-child { margin-bottom: 0; }
.detailPage .detailFaq__btn {
  font-size: .95rem;
  font-weight: 600;
  color: #0f172a;
  background: #fff !important;
  padding: 16px 18px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  width: 100%;
  border: none;
  transition: background .2s ease;
}
.detailPage .detailFaq__btn:hover {
  background: #f8fafc !important;
}
.detailPage .detailFaq__btn:not(.collapsed) { box-shadow: none; }
.detailPage .detailFaq__btn::after { display: none; }
.detailPage .detailFaq__btn .faqChevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
}
.detailPage .detailFaq__btn:not(.collapsed) .faqChevron {
  transform: rotate(180deg);
}
.detailPage .detailFaq__body {
  font-size: .9rem;
  color: #475569;
  line-height: 1.55;
  padding: 0 18px 16px;
}

.railMini {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.railMini__title {
  font-size: .95rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}
.railMini__text {
  font-size: .8rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0 0 10px 0;
}
.railMini__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
}
.railBadge {
  display: inline-block;
  padding: 3px 8px;
  font-size: .7rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border-radius: 6px;
}
/* ========== DETAIL PAGE - end ========== */

/* ========== LOCATIONS INDEX (list page) ========== */
.detailPage--locationsIndex { padding: 0 0 3rem; }

.indexHero {
  margin-bottom: 2rem;
}
.indexHero .detailBreadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 4px;
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  font-size: .875rem;
  color: #64748b;
}
.indexHero .detailBreadcrumb__item:not(:last-child)::after {
  content: '\00a0/\00a0';
  margin-left: 2px;
  color: rgba(0,0,0,.25);
}
.indexHero .detailBreadcrumb__item a { color: #64748b; text-decoration: none; }
.indexHero .detailBreadcrumb__item a:hover { color: #0b1f33; }

.indexHero__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.indexHero__subtitle {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 1rem 0;
  max-width: 60ch;
}
.indexHero__filters.destFilters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}
.destFilters__label { font-size: 0.8rem; font-weight: 600; color: #475569; display: block; margin-bottom: 4px; }
.destFilters__label--search { width: 100%; max-width: 100%; }
.destFilters__input,
.destFilters__select {
  font-size: 0.95rem;
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  background: #fff;
  color: #0b1f33;
}
.destFilters__input--search { min-width: 200px; flex: 1; max-width: 280px; }
.destFilters__select--type,
.destFilters__select--city { min-width: 140px; }
.destFilters__submit { flex-shrink: 0; }
@media (max-width: 576px) {
  .indexHero__filters.destFilters { flex-direction: column; align-items: stretch; }
  .destFilters__input--search { max-width: none; }
}
.indexHero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 1rem;
}
.indexHero__pill {
  display: inline-block;
  padding: 4px 10px;
  font-size: .75rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
}
.indexHero__nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.indexHero__navLink {
  font-size: .875rem;
  font-weight: 500;
  color: #0b1f33;
  text-decoration: none;
}
.indexHero__navLink:hover { text-decoration: underline; }

.indexControls {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  margin-bottom: 1.5rem;
}
.indexControls__searchWrap { flex: 1; min-width: 200px; }
@media (max-width: 576px) {
  .indexControls__searchWrap { width: 100%; min-width: 0; }
  .indexControls__search { max-width: none; }
}
.indexControls__search {
  width: 100%;
  max-width: 320px;
  height: 44px;
  padding: 0 14px;
  font-size: 1rem;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
}
.indexControls__search::placeholder { color: #94a3b8; }
.indexControls__search:focus {
  outline: none;
  border-color: #0b1f33;
  box-shadow: 0 0 0 3px rgba(11,31,51,.08);
}
.indexControls__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.indexControls__chip {
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: #475569;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.indexControls__chip:hover {
  background: #f8fafc;
  color: #0b1f33;
  border-color: rgba(0,0,0,.12);
}
.indexControls__chip.is-active {
  background: #0b1f33;
  color: #fff;
  border-color: transparent;
}

.indexPopular {
  margin-bottom: 2rem;
}
.indexPopular__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px 0;
}
.indexPopular__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.indexPopular__pill {
  display: inline-block;
  padding: 6px 12px;
  font-size: .8rem;
  font-weight: 500;
  color: #0b1f33;
  background: #f1f5f9;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.indexPopular__pill:hover {
  background: #e2e8f0;
  color: #0b1f33;
}

.locationGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .locationGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .locationGrid { grid-template-columns: 1fr; gap: 20px; }
}

.detailPage--locationsIndex .locCard { scroll-margin-top: 108px; }
.locCard {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.locCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(11,31,51,.22);
  border-radius: 16px 16px 0 0;
}
.locCard:hover {
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.08);
}
.locCard.is-hidden { display: none !important; }

.locCard__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}
.locCard__desc {
  font-size: .9rem;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 12px 0;
}
.locBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-bottom: 14px;
}
.locBadge {
  display: inline-block;
  padding: 3px 8px;
  font-size: .7rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border-radius: 6px;
}
.locCard__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.locCard__btn {
  font-weight: 600;
  border-radius: 10px;
  padding: 8px 16px;
}
.locCard__link {
  font-size: .8rem;
  color: #64748b;
  text-decoration: none;
}
.locCard__link:hover { color: #0b1f33; text-decoration: underline; }

.bottomCtaBand {
  padding: 2rem 24px;
  border-radius: 16px;
  background: #0b1f33;
  color: #fff;
  text-align: center;
}
.bottomCtaBand__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
}
.bottomCtaBand__text {
  font-size: .95rem;
  opacity: .9;
  margin: 0 0 1.25rem 0;
  line-height: 1.5;
}
.bottomCtaBand__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.bottomCtaBand__btn {
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 20px;
}
.bottomCtaBand__btn--primary {
  background: #fff;
  color: #0b1f33;
  border: none;
}
.bottomCtaBand__btn--primary:hover {
  background: #f1f5f9;
  color: #0b1f33;
}
.bottomCtaBand__btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}
.bottomCtaBand__btn--secondary:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

.locEmpty {
  text-align: center;
  padding: 2rem 24px;
  margin-bottom: 2rem;
  border-radius: 16px;
  border: 1px dashed rgba(0,0,0,.12);
  background: #f8fafc;
}
.locEmpty__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}
.locEmpty__text {
  font-size: .9rem;
  color: #64748b;
  margin: 0 0 14px 0;
}
.locEmpty__btn { border-radius: 10px; }
/* ========== LOCATIONS INDEX - end ========== */

/* ========== LOCATIONS DETAIL (destination experience) ========== */
.detailPage--location .detailMain { order: 1; }
.detailPage--location .detailRail { order: 2; }

.locationHeroExpanded {
  padding: 2.5rem 0 2.5rem;
  margin-bottom: 2rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.locationHeroExpanded::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.locationHeroExpanded--coastal::before {
  background: linear-gradient(135deg, rgba(14,165,233,.06) 0%, rgba(6,182,212,.04) 50%, transparent 100%);
}
.locationHeroExpanded--urban::before {
  background: linear-gradient(135deg, rgba(15,23,42,.03) 0%, rgba(51,65,85,.02) 50%, transparent 100%);
}
.locationHeroExpanded__breadcrumb {
  font-size: .85rem;
  color: #64748b;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.locationHeroExpanded__breadcrumb a { color: #0b1f33; text-decoration: none; }
.locationHeroExpanded__breadcrumb a:hover { text-decoration: underline; }
.locationHeroExpanded__sep { margin: 0 6px; }
.locationHeroExpanded__title {
  font-size: 2rem;
  font-weight: 700;
  color: #0b1f33;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .locationHeroExpanded__title { font-size: 2.25rem; }
}
.locationHeroExpanded__sub {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
  max-width: 42ch;
  position: relative;
  z-index: 1;
}
.locationHeroExpanded__cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: .9rem;
  color: #0b1f33;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.locationHeroExpanded__cta:hover { text-decoration: underline; color: #123a5a; }

.locationWhyBlock {
  padding: 2rem 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.locationWhyBlock__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b1f33;
  margin: 0 0 1.5rem 0;
}
.locationWhyBlock__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .locationWhyBlock__grid { grid-template-columns: 1fr; }
}
.locationWhyBlock__item {
  padding: 1.25rem;
  border-radius: 14px;
  background: #fafbfc;
  border: 1px solid rgba(0,0,0,.05);
}
.locationWhyBlock__icon { font-size: 1.5rem; display: block; margin-bottom: 10px; }
.locationWhyBlock__itemTitle {
  font-size: 1rem;
  font-weight: 700;
  color: #0b1f33;
  margin: 0 0 6px 0;
}
.locationWhyBlock__itemText {
  font-size: .9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.locationInsightStrip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 12px 0 1.5rem;
  font-size: .9rem;
  color: #64748b;
}
.locationInsightStrip__item { margin: 0; }
.locationInsightStrip__sep { opacity: .5; }

.locationRailNote {
  font-size: .9rem;
  color: #64748b;
  margin: 1rem 0 0 0;
  padding: 12px 14px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.06);
}
.locationRailNote__link {
  display: block;
  margin-top: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: #0b1f33;
  text-decoration: none;
}
.locationRailNote__link:hover { text-decoration: underline; color: #123a5a; }
/* ========== LOCATIONS DETAIL - end ========== */

/* ========== ROUTES (Route Finder + Route Brief) ========== */
.routesFinder { padding: 0 0 2rem; }
.routesFinder__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem 2.5rem;
  align-items: start;
}
@media (max-width: 991px) {
  .routesFinder__grid { grid-template-columns: 1fr; }
}
.routesFinder__head { margin-bottom: 1.25rem; }
.routesFinder__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0b1f33;
  margin: 0 0 6px 0;
}
.routesFinder__sub { font-size: 1rem; color: #64748b; margin: 0; }
.routesFinder__form {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f8fafc;
  margin-bottom: 1.5rem;
}
.routesFinder__formRow { margin-bottom: 12px; }
.routesFinder__formRow:last-of-type { margin-bottom: 0; }
.routesFinder__formRow--half { display: inline-block; width: calc(50% - 6px); vertical-align: top; }
.routesFinder__formRow--half:first-of-type { margin-right: 8px; }
@media (max-width: 480px) {
  .routesFinder__formRow--half { display: block; width: 100%; margin-right: 0; }
}
.routesFinder__label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 4px;
}
.routesFinder__input {
  width: 100%;
  max-width: 240px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  font-size: .95rem;
}
.routesFinder__formRow--half .routesFinder__input { max-width: 100%; }
.routesFinder__submit {
  margin-top: 8px;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  background: #0b1f33;
  border: none;
  color: #fff;
}
.routesFinder__submit:hover { background: #123a5a; color: #fff; }
.routesFinder__tableTitle { font-size: 1.1rem; font-weight: 700; color: #0b1f33; margin: 0 0 12px 0; }
.routesTableWrap { overflow-x: auto; border-radius: 12px; border: 1px solid rgba(0,0,0,.08); background: #fff; }
.routesTable {
  margin: 0;
  width: 100%;
  font-size: .9rem;
}
.routesTable th {
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.routesTable td { padding: 12px 14px; border-bottom: 1px solid rgba(0,0,0,.06); }
.routesTable tbody tr:last-child td { border-bottom: 0; }
.routesTable__btn { border-radius: 8px; font-size: .8rem; padding: 6px 12px; }
.routesFinder__empty { color: #64748b; margin: 1rem 0; }
.routesFinder__empty a { color: #0b1f33; }
.routesTrust {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  margin-bottom: 1rem;
}
.routesTrust__title { font-size: 1rem; font-weight: 700; color: #0b1f33; margin: 0 0 12px 0; }
.routesTrust__list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  font-size: .9rem;
  color: #475569;
  line-height: 1.5;
}
.routesTrust__list li { margin-bottom: 6px; padding-left: 18px; position: relative; }
.routesTrust__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0b1f33;
  font-weight: 700;
}
.routesTrust__stats { display: flex; flex-wrap: wrap; gap: 8px; }
.routesTrust__stat {
  font-size: .75rem;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #475569;
}
.routesPricingAccordion .accordion-item { border-radius: 8px; margin-bottom: 6px; overflow: hidden; }
.routesPricingAccordion .accordion-button { font-size: .9rem; padding: 10px 14px; }
.routesPricingAccordion .accordion-body { font-size: .85rem; color: #64748b; }
.routesFinder__sideCta {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  background: #0b1f33;
  color: #fff;
  text-decoration: none;
}
.routesFinder__sideCta:hover { background: #123a5a; color: #fff; }
.routesCorporate {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.routesCorporate__title { font-size: 1rem; font-weight: 700; color: #0b1f33; margin: 0 0 12px 0; }
.routesCorporate__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: .9rem;
  color: #475569;
}
.routesCorporate__list li { display: flex; align-items: center; gap: 8px; }
.routesCorporate__icon { font-size: 1.1rem; }
.routesLinks { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,.06); }
.routesLinks__title { font-size: .95rem; font-weight: 600; color: #334155; margin: 0 0 10px 0; }
.routesLinks__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 1rem;
  font-size: .9rem;
}
.routesLinks__list a { color: #0b1f33; text-decoration: none; }
.routesLinks__list a:hover { text-decoration: underline; }

/* ========== PAGE TYPE IDENTITY SYSTEM ========== */
[data-identity="route"] {
  --identity-spacing: 1.25rem;
  --identity-border: 1px solid rgba(0,0,0,.12);
  --identity-radius: 10px;
}
[data-identity="route"] .routeBrief__section { margin-bottom: 1.5rem; }
[data-identity="route"] .routeMetricsBar { border-top-width: 2px; border-top-color: rgba(0,0,0,.12); }
[data-identity="route"] .routeEstimateCard { border-width: 2px; border-color: rgba(0,0,0,.14); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
[data-identity="route"] .routeCompareBox { border-width: 2px; border-color: rgba(0,0,0,.1); }
[data-identity="route"] .routeBrief__chip { border-width: 2px; }
[data-identity="route"] .routeUseCases__card { border-width: 2px; border-color: rgba(0,0,0,.1); }

[data-identity="location"] {
  --identity-spacing: 1.75rem;
  --identity-border: 1px solid rgba(0,0,0,.06);
  --identity-radius: 14px;
}
[data-identity="location"] .detailSection { padding-bottom: 2rem; }
[data-identity="location"] .locationWhyBlock__item { border-color: rgba(0,0,0,.04); background: linear-gradient(180deg, #fcfcfd 0%, #f8fafc 100%); }
[data-identity="location"] .locationInsightStrip { background: linear-gradient(90deg, transparent 0%, rgba(248,250,252,.6) 50%, transparent 100%); padding: 14px 0; }
[data-identity="location"] .locationRailNote { border-color: rgba(0,0,0,.04); background: linear-gradient(180deg, #fafbfc 0%, #f8fafc 100%); }
/* ========== PAGE TYPE IDENTITY - end ========== */

/* ========== HERO MEDIA + EDITORIAL IMAGE (detail pages) ========== */
/* Hero wrappers: compact, bounded; padding-based; content starts ~24px after */
.routeBrief__heroWrap,
.serviceDetailHeroWrap,
.fleetDetailHeroWrap,
.locationHeroWrap {
  position: relative;
  min-height: 260px;
  max-height: 360px;
  padding: 32px 24px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .routeBrief__heroWrap,
  .serviceDetailHeroWrap,
  .fleetDetailHeroWrap,
  .locationHeroWrap {
    min-height: 300px;
    max-height: 360px;
    padding: 48px 32px;
  }
}
@media (min-width: 992px) {
  .routeBrief__heroWrap,
  .serviceDetailHeroWrap,
  .fleetDetailHeroWrap,
  .locationHeroWrap {
    min-height: 320px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
/* Main content: below header so mega menu can overlay hero */
.main-content {
  position: relative;
  z-index: 1;
}
/* Hero wrapper: contain .heroMedia so it doesn't cover content below (heroMedia is position:absolute; inset:0) */
.hero-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  overflow: hidden;
}
/* .heroMedia fills the wrapper only */
.heroMedia {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1f33 0%, #123a5a 50%, #0b1f33 100%);
}
.heroMedia__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.heroMedia__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,27,43,.25) 0%, rgba(7,27,43,var(--hero-overlay, 0.45)) 50%, rgba(7,27,43,.75) 100%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .heroMedia__overlay {
    background: linear-gradient(180deg, rgba(7,27,43,.4) 0%, rgba(7,27,43,.65) 50%, rgba(7,27,43,.85) 100%);
  }
}
/* Hero content: no stretch, no extra spacing inside wrap */
.routeBrief__heroWrap .routeBrief__top,
.serviceDetailHeroWrap .serviceDetailHero,
.fleetDetailHeroWrap .fleetDetailHero,
.locationHeroWrap .locationHeroExpanded {
  position: relative;
  z-index: 2;
  align-items: start;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.routeBrief__heroWrap .routeBrief__top { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.serviceDetailHeroWrap .serviceDetailHero { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.fleetDetailHeroWrap .fleetDetailHero { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.locationHeroWrap .locationHeroExpanded { margin-bottom: 0; padding: 0.5rem 0; }
/* Next block after hero: minimal gap so content starts within ~24px */
.routeBrief__heroWrap + .serviceLevelGrid { padding-top: 0; }
.serviceDetailHeroWrap + .serviceDetailBody { padding-top: 0; }
.fleetDetailHeroWrap + .fleetDetailBody { padding-top: 0; }
.locationHeroWrap + .locationWhyBlock { padding-top: 0; margin-top: 0; }
.routeBrief__heroWrap .routeBriefHero__breadcrumb,
.routeBrief__heroWrap .routeBriefHero__breadcrumb a,
.routeBrief__heroWrap .routeBriefHero__intro,
.routeBrief__heroWrap .routeBriefHero__title,
.routeBrief__heroWrap .routeMetricsBar__label,
.routeBrief__heroWrap .routeMetricsBar__value { color: #fff !important; text-shadow: 0 1px 3px rgba(0,0,0,.4); }
.routeBrief__heroWrap .routeBriefHero__breadcrumb .routeBriefHero__sep { color: rgba(255,255,255,.7); }
.serviceDetailHeroWrap .serviceDetailHero__breadcrumb,
.serviceDetailHeroWrap .serviceDetailHero__breadcrumb a,
.serviceDetailHeroWrap .serviceDetailHero__title,
.serviceDetailHeroWrap .serviceDetailHero__intro,
.serviceDetailHeroWrap .serviceDetailHero__bullets { color: #fff !important; }
.serviceDetailHeroWrap .serviceDetailHero__breadcrumb .serviceDetailHero__sep { color: rgba(255,255,255,.7); }
.serviceDetailHeroWrap .serviceDetailHero__bullets li::before { color: #86efac; }
.fleetDetailHeroWrap .fleetDetailHero__breadcrumb,
.fleetDetailHeroWrap .fleetDetailHero__breadcrumb a,
.fleetDetailHeroWrap .fleetDetailHero__title,
.fleetDetailHeroWrap .fleetDetailHero__intro,
.fleetDetailHeroWrap .fleetDetailHero__micro,
.fleetDetailHeroWrap .fleetDetailHero__bullets,
.fleetDetailHeroWrap .fleetDetailHero__bullets li { color: #fff !important; }
/* Chip’ler açık arka planda: koyu yazı (5 seats, 450 km range, Cabin okunaklı) */
.fleetDetailHeroWrap .fleetDetailHero__chip {
  color: #0f172a !important;
  background: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.4);
}
.fleetDetailHeroWrap .fleetDetailHero__breadcrumb .fleetDetailHero__sep { color: rgba(255,255,255,.7); }
.locationHeroWrap .locationHeroExpanded__breadcrumb,
.locationHeroWrap .locationHeroExpanded__breadcrumb a,
.locationHeroWrap .locationHeroExpanded__title,
.locationHeroWrap .locationHeroExpanded__sub { color: #fff !important; text-shadow: 0 1px 3px rgba(0,0,0,.35); }
.locationHeroWrap .locationHeroExpanded__breadcrumb .locationHeroExpanded__sep { color: rgba(255,255,255,.7); }

.editorialImage__container {
  margin: 28px 0;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 575px) {
  .editorialImage__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.editorialImage__container .editorialImage {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.editorialImage {
  margin: 0 auto;
  max-width: 100%;
}
.editorialImage__wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.1);
  background: #f8fafc;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.editorialImage__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
.editorialImage__caption {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.45;
}
.editorialImage--failed .editorialImage__img { display: none; }
.editorialImage--failed .editorialImage__wrap {
  display: block;
  background: linear-gradient(180deg, #0b1f33 0%, #1e3a5f 50%, #0b1f33 100%);
}
.editorialImage--failed:not(.editorialImage--has-caption) .editorialImage__wrap { min-height: 120px; }
/* ========== HERO MEDIA + EDITORIAL IMAGE - end ========== */

/* Route Brief (detail) */
.routeBrief { padding: 0 0 2rem; }
.routeBrief__top {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
@media (max-width: 991px) {
  .routeBrief__top { grid-template-columns: 1fr; }
}
.routeBriefHero__breadcrumb {
  font-size: .85rem;
  color: #64748b;
  margin-bottom: 10px;
}
.routeBriefHero__breadcrumb a { color: #0b1f33; text-decoration: none; }
.routeBriefHero__breadcrumb a:hover { text-decoration: underline; }
.routeBriefHero__sep { margin: 0 6px; }
.routeBriefHero__title {
  font-size: 1.65rem;
  font-weight: 700;
  color: #0b1f33;
  margin: 0 0 8px 0;
}
.routeBriefHero__intro { font-size: 1rem; color: #475569; margin: 0 0 1rem 0; line-height: 1.5; }
.routeMetricsBar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding: 12px 0 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.routeMetricsBar__item { display: flex; flex-direction: column; gap: 2px; }
.routeMetricsBar__label { font-size: .75rem; color: #64748b; text-transform: uppercase; letter-spacing: .03em; }
.routeMetricsBar__value { font-size: 1rem; font-weight: 600; color: #0b1f33; }
.routeEstimateCard {
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.1);
  background: #f8fafc;
  position: sticky;
  top: 100px;
}
.routeEstimateCard__price { font-size: 1.35rem; font-weight: 700; color: #0b1f33; margin: 0 0 12px 0; }
.routeEstimateCard__sub { font-size: .8rem; color: #64748b; margin: 0 0 8px 0; text-transform: uppercase; letter-spacing: .03em; }
.routeEstimateCard__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  font-size: .9rem;
  color: #475569;
}
.routeEstimateCard__list li { margin-bottom: 6px; padding-left: 18px; position: relative; }
.routeEstimateCard__list li::before { content: '✓'; position: absolute; left: 0; color: #0b1f33; font-weight: 700; }
.routeEstimateCard__cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  background: #0b1f33;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
}
.routeEstimateCard__cta:hover { background: #123a5a; color: #fff; }
.routeEstimateCard__wa { font-size: .85rem; margin: 0; }
.routeEstimateCard__wa a { color: #64748b; }
.routeEstimateCard__wa a:hover { color: #0b1f33; }

.routeCompareBox {
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f8fafc;
}
.routeCompareBox__title { font-size: 1rem; font-weight: 700; color: #0b1f33; margin: 0 0 12px 0; }
.routeCompareBox__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.routeCompareBox__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.routeCompareBox__label { font-size: .8rem; color: #64748b; text-transform: uppercase; letter-spacing: .03em; }
.routeCompareBox__value { font-size: 1.1rem; font-weight: 700; color: #0b1f33; }
.routeCompareBox__item--highlight .routeCompareBox__value { color: #0d9488; }
.routeCompareBox__saved {
  margin: 12px 0 0 0;
  font-size: .9rem;
  font-weight: 600;
  color: #0d9488;
}

.routeBrief__body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem 2.5rem;
  align-items: start;
}
@media (max-width: 991px) {
  .routeBrief__body { grid-template-columns: 1fr; }
}
.routeBrief__main { min-width: 0; }
.routeBrief__section { margin-bottom: 2rem; }
.routeBrief__section--soft {
  padding: 1.25rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,.06);
}
.routeBrief__sectionTitle { font-size: 1.15rem; font-weight: 700; color: #0b1f33; margin: 0 0 12px 0; }
.routeBrief__lead { font-size: 1rem; color: #475569; margin: 0 0 10px 0; line-height: 1.55; }
.routeBrief__p { font-size: .95rem; color: #475569; margin: 0 0 12px 0; line-height: 1.55; }
.routeBrief__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.routeBrief__chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .85rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  color: #475569;
}
.routeBrief__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .9rem;
  color: #475569;
}
.routeBrief__checklist li { margin-bottom: 8px; padding-left: 22px; position: relative; }
.routeBrief__checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0b1f33;
  font-weight: 700;
}
.routeUseCases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) {
  .routeUseCases__grid { grid-template-columns: 1fr; }
}
.routeUseCases__card {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}
.routeUseCases__cardTitle { font-size: .95rem; font-weight: 700; color: #0b1f33; margin: 0 0 6px 0; }
.routeUseCases__cardText { font-size: .85rem; color: #64748b; margin: 0; line-height: 1.45; }
.routeBrief__rail { position: sticky; top: 90px; }
.routeBrief__railForm { margin-bottom: 1rem; scroll-margin-top: 100px; }
.routeBrief__responseNote {
  font-size: .85rem;
  color: #64748b;
  margin-top: 1rem;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,.06);
}

/* ========== VALUE FRAMING (routes + services) ========== */
.valueStrip {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.valueStrip__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin: 0 0 0.75rem 0;
}
.valueStrip__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}
.valueStrip__list li {
  margin-bottom: 0.4rem;
  padding-left: 1.25rem;
  position: relative;
}
.valueStrip__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--navy-700, #123a5a);
  font-weight: 700;
}

.serviceLevelGrid {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.serviceLevelGrid__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}
.serviceLevelGrid__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}
.serviceLevelGrid__list li {
  padding-left: 1.25rem;
  position: relative;
}
.serviceLevelGrid__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--navy-700, #123a5a);
  font-weight: 700;
}
@media (max-width: 575px) {
  .serviceLevelGrid__list { grid-template-columns: 1fr; }
}

.includedChecklist {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.includedChecklist__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}
.includedChecklist__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 2rem;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
}
.includedChecklist__list li {
  padding-left: 1.25rem;
  position: relative;
}
.includedChecklist__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--navy-700, #123a5a);
  font-weight: 700;
}
@media (max-width: 767px) {
  .includedChecklist__list { grid-template-columns: 1fr; }
}

.operatingStandards {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.operatingStandards__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.75rem 0;
}
.operatingStandards__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}
.operatingStandards__list li {
  margin-bottom: 0.35rem;
  padding-left: 1.25rem;
  position: relative;
}
.operatingStandards__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--navy-700, #123a5a);
  font-weight: 700;
}
.operatingStandards--index.valueStrip {
  margin-bottom: 2.5rem;
  padding: 1.25rem 0;
}

.serviceDelivers {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.serviceDelivers__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}
.serviceDelivers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) {
  .serviceDelivers__grid { grid-template-columns: 1fr; }
}
.serviceDelivers__card {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.03);
}
.serviceDelivers__cardTitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.5rem 0;
}
.serviceDelivers__cardText {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}
/* ========== VALUE FRAMING - end ========== */

/* ========== ROUTES - end ========== */

/* ========== FAQ HUB (public /faq) ========== */
.faqHub { padding: 0 0 3rem; }
.faqHub__hero {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.faqHub__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}
.faqHub__sub {
  font-size: 1.05rem;
  color: #64748b;
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
  max-width: 56ch;
}
.faqHub__micro {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0.5rem 0 0 0;
}
.faqHub__searchWrap { margin-bottom: 1.25rem; }
.faqHub__search {
  max-width: 380px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.08);
  padding: 0 0.875rem;
  font-size: 0.9375rem;
  background: #fff;
  color: #0f172a;
}
.faqHub__search::placeholder { color: #94a3b8; }
.faqHub__search:focus {
  border-color: var(--navy-700, #123a5a);
  box-shadow: 0 0 0 2px rgba(18,58,90,.1);
  outline: none;
}
.faqHub__tabsWrap { margin-bottom: 1.25rem; }
.faqHub__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.faqHub__tab {
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.faqHub__tab:hover {
  color: var(--navy-800, #0b1f33);
  background: #f8fafc;
  border-color: rgba(0,0,0,.08);
}
.faqHub__tab--active {
  background: rgba(11,31,51,.06);
  color: var(--navy-800, #0b1f33);
  border-color: rgba(11,31,51,.15);
}
.faqHub__tab--active:hover { color: var(--navy-800, #0b1f33); background: rgba(11,31,51,.08); }
.faqHub__panels { margin-bottom: 2.5rem; }
.faqHub__panel { display: block; }
.faqHub__panel[hidden] { display: none !important; }
.faqHub__panelTitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}
.faqHub__accordion { margin-bottom: 0; }
.faqHub__item { margin-bottom: 0.25rem; }
.faqHub__item.faqHub__item--hidden { display: none !important; }
.faqHub__btn { font-weight: 600; }
.faqHub__body { font-size: 0.95rem; color: #475569; line-height: 1.55; }
.faqHub__emptyWrap[hidden] { display: none !important; }
.faqHub__emptyWrap {
  margin-top: 1.25rem;
  padding: 1.5rem 1.25rem;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  text-align: center;
}
.faqHub__empty--noResults {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}
.faqHub__emptyState { margin: 2rem 0; padding: 1.5rem; background: #f8fafc; border-radius: 12px; border: 1px solid rgba(0,0,0,.06); }
.faqHub__emptyText { margin: 0; color: #64748b; }
@media (max-width: 767px) {
  .faqHub__accordion .accordion-item { border-radius: 10px; margin-bottom: 0.5rem; overflow: hidden; }
  .faqHub__btn {
    min-height: 52px;
    padding: 14px 16px;
    font-size: 0.9375rem;
    line-height: 1.4;
  }
  .faqHub__body { padding: 14px 16px; font-size: 0.9375rem; line-height: 1.6; }
}
.faqHub__cta {
  padding: 2rem;
  border-radius: 16px;
  background: var(--navy-800, #0b1f33);
  color: #fff;
  text-align: center;
}
.faqHub__ctaInner { max-width: 480px; margin: 0 auto; }
.faqHub__ctaTitle { font-size: 1.25rem; font-weight: 700; margin: 0 0 0.5rem 0; color: #fff; }
.faqHub__ctaText { font-size: 0.95rem; opacity: .9; margin: 0 0 1.25rem 0; line-height: 1.5; }
.faqHub__ctaBtn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  background: #fff;
  color: var(--navy-800, #0b1f33);
  text-decoration: none;
  border: none;
}
.faqHub__ctaBtn:hover { background: #f1f5f9; color: var(--navy-800, #0b1f33); }
/* ========== FAQ HUB - end ========== */

/* ========== CONTACT PAGE (Request Quote hub) ========== */
.detailPage--contact { padding: 0 0 3rem; }

.contactSteps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .contactSteps { grid-template-columns: 1fr; }
}
.contactSteps__card {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.contactSteps__num {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  color: #0b1f33;
  background: rgba(11,31,51,.08);
  border-radius: 50%;
  margin-bottom: 12px;
}
.contactSteps__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}
.contactSteps__text {
  font-size: .9rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.quoteFormCard {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  margin-bottom: 20px;
}
.quoteFormCard .hp-field { display: none !important; }
.quoteFormCard__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.quoteFormCard__form > *:nth-child(1),
.quoteFormCard__form > *:nth-child(2) { grid-column: 1; }
.quoteFormCard__form > *:nth-child(3),
.quoteFormCard__form > *:nth-child(4) { grid-column: 2; }
.quoteFormCard__form > *:nth-child(n+5) { grid-column: 1 / -1; }
.quoteFormCard__label { font-size: .8rem; font-weight: 600; color: #0f172a; margin: 0 0 4px 0; }

.quoteFormCard__input,
.quoteFormCard__select {
  width: 100%;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.1);
  padding: 0 12px;
  background: #fff;
  color: #0f172a;
}
.quoteFormCard__textarea {
  width: 100%;
  min-height: 80px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.1);
  padding: 12px;
  font-size: 1rem;
  resize: vertical;
}
.quoteFormCard__btn {
  margin-top: 8px;
  height: 42px;
  border-radius: 12px;
  font-weight: 600;
}
.quoteFormCard__micro {
  font-size: .8rem;
  color: #64748b;
  margin: 8px 0 0 0;
}
.quoteFormCard__msg { font-size: .85rem; min-height: 2.5em; }
.quoteFormCard__msg.quoteFormCard__msg--success { color: #059669; }
.quoteFormCard__msg.quoteFormCard__msg--error { color: #dc2626; }

.contactDiscretionNote {
  font-size: 0.85rem;
  color: #64748b;
  margin: 1rem 0 0 0;
  padding: 0;
  font-style: italic;
}
.contactLegalNote {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,.08);
}
.contactLegalNote__p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 0 0 0.35rem 0;
  line-height: 1.45;
}
.contactLegalNote__p:last-child { margin-bottom: 0; }

.quoteFormCard--wa {
  padding: 20px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f8fafc;
}
.quoteFormCard__waText {
  font-size: .9rem;
  color: #475569;
  margin: 0 0 12px 0;
  line-height: 1.45;
}
.quoteFormCard__waBtn { border-radius: 10px; }
@media (max-width: 576px) {
  .quoteFormCard__form { grid-template-columns: 1fr; }
  .quoteFormCard__form > *:nth-child(1),
  .quoteFormCard__form > *:nth-child(2),
  .quoteFormCard__form > *:nth-child(3),
  .quoteFormCard__form > *:nth-child(4) { grid-column: 1; }
}
/* ========== CONTACT PAGE - end ========== */

/* ========== STATIC PAGES (About, Safety, FAQ – page/show) ========== */
.pageStatic .pageStrip {
  margin-bottom: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.pageStatic .pageStrip:first-of-type { border-top: none; padding-top: 0; }
.pageStrip--beforeFaq { margin-bottom: 1.5rem; }

.pageSteps {
  margin-bottom: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.pageSteps__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.75rem 0;
}
.pageSteps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
}
.pageSteps__item {
  margin-bottom: 0.5rem;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.pageSteps__item:last-child { margin-bottom: 0; }
.pageSteps__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  background: rgba(11,31,51,.08);
  border-radius: 50%;
}
/* ========== STATIC PAGES - end ========== */

/* ========== SERVICES INDEX ========== */
.servicesIndex { padding: 0 0 3rem; }
.servicesIndexHero {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.servicesIndexHero__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}
.servicesIndexHero__sub {
  font-size: 1.05rem;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
  max-width: 56ch;
}

.servicesCategories { margin-bottom: 2.5rem; }
.servicesCategories__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1.25rem 0;
}
.serviceCardGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.serviceCardGrid--featured {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 992px) {
  .serviceCardGrid--featured {
    grid-template-columns: repeat(2, 1fr);
  }
  .serviceCardGrid--featured .serviceCard--featured {
    min-height: 140px;
  }
}
@media (max-width: 767px) {
  .serviceCardGrid { grid-template-columns: 1fr; }
  .serviceCardGrid--featured { grid-template-columns: 1fr; }
}
.serviceCard {
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.serviceCard:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.1);
}
.serviceCard__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.5rem 0;
}
.serviceCard__desc {
  font-size: .9rem;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
}
.serviceCard__meta {
  font-size: .75rem;
  color: #64748b;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.serviceCard__cta {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  background: var(--navy-800, #0b1f33);
  color: #fff;
  border: none;
}
.serviceCard__cta:hover { color: #fff; background: var(--navy-700, #123a5a); }

.serviceCard--featured { position: relative; }
.serviceCard__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-700, #123a5a);
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.servicesTimeline {
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.servicesTimeline__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1.25rem 0;
}
.servicesTimeline__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) {
  .servicesTimeline__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .servicesTimeline__list { grid-template-columns: 1fr; }
}
.servicesTimeline__item {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
  background: #f8fafc;
}
.servicesTimeline__num {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-weight: 800;
  font-size: .875rem;
  color: var(--navy-800, #0b1f33);
  background: rgba(11,31,51,.08);
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.servicesTimeline__step {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.25rem 0;
}
.servicesTimeline__text {
  font-size: .875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

.servicesTrust {
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.servicesTrust__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}
.servicesTrust__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.servicesTrust__item {
  padding: 6px 12px;
  font-size: .9rem;
  color: #475569;
  background: #f1f5f9;
  border-radius: 8px;
}
.servicesTrust__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.servicesTrust__stat {
  font-size: .75rem;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f8fafc;
  color: #64748b;
  border: 1px solid rgba(0,0,0,.06);
}

.servicesCtaBand {
  padding: 2rem;
  border-radius: 16px;
  background: var(--navy-800, #0b1f33);
  color: #fff;
  text-align: center;
}
.servicesCtaBand__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #fff;
}
.servicesCtaBand__text {
  font-size: .95rem;
  opacity: .9;
  margin: 0 0 1.25rem 0;
  line-height: 1.5;
}
.servicesCtaBand__btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  background: #fff;
  color: var(--navy-800, #0b1f33);
  text-decoration: none;
  border: none;
}
.servicesCtaBand__btn:hover { background: #f1f5f9; color: var(--navy-800, #0b1f33); }
/* ========== SERVICES INDEX - end ========== */

/* ========== SERVICE DETAIL ========== */
.serviceDetail { padding: 0 0 3rem; }
.serviceDetailHero {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
@media (max-width: 991px) {
  .serviceDetailHero { grid-template-columns: 1fr; }
}
.serviceDetailHero__breadcrumb {
  font-size: .85rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}
.serviceDetailHero__breadcrumb a { color: var(--navy-800, #0b1f33); text-decoration: none; }
.serviceDetailHero__breadcrumb a:hover { text-decoration: underline; }
.serviceDetailHero__sep { margin: 0 6px; }
.serviceDetailHero__title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}
.serviceDetailHero__intro {
  font-size: 1rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 1rem 0;
}
.serviceDetailHero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .9rem;
  color: #475569;
}
.serviceDetailHero__bullets li {
  margin-bottom: 0.35rem;
  padding-left: 1.25rem;
  position: relative;
}
.serviceDetailHero__bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

.serviceCoordinationCard {
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.1);
  background: #f8fafc;
  position: sticky;
  top: 100px;
}
.serviceCoordinationCard__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.25rem 0;
}
.serviceCoordinationCard__sub {
  font-size: .8rem;
  color: #64748b;
  margin: 0 0 1rem 0;
}
.serviceCoordinationCard__cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  background: var(--navy-800, #0b1f33);
  color: #fff;
  text-decoration: none;
}
.serviceCoordinationCard__cta:hover { color: #fff; background: var(--navy-700, #123a5a); }

.serviceDetailBody { margin-bottom: 2rem; }
.serviceIncludes {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.serviceIncludes__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}
.serviceIncludes__list {
  margin: 0;
  padding-left: 1.25rem;
  color: #475569;
  line-height: 1.6;
}
.serviceIncludes__list li { margin-bottom: 0.35rem; }

.serviceUseCases {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.serviceUseCases__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}
.serviceUseCases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) {
  .serviceUseCases__grid { grid-template-columns: 1fr; }
}
.serviceUseCases__card {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}
.serviceUseCases__cardTitle {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.5rem 0;
}
.serviceUseCases__cardText {
  font-size: .85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

.servicesProcessTimeline {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.servicesProcessTimeline__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}
.servicesProcessTimeline__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) {
  .servicesProcessTimeline__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .servicesProcessTimeline__list { grid-template-columns: 1fr; }
}
.servicesProcessTimeline__item {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
  background: #f8fafc;
}
.servicesProcessTimeline__num {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-weight: 800;
  font-size: .875rem;
  color: var(--navy-800, #0b1f33);
  background: rgba(11,31,51,.08);
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.servicesProcessTimeline__step {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.25rem 0;
}
.servicesProcessTimeline__text {
  font-size: .875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

.serviceOperational {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.serviceOperational__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}
.serviceOperational__list {
  margin: 0;
  padding-left: 1.25rem;
  color: #475569;
  line-height: 1.6;
}
.serviceOperational__list li { margin-bottom: 0.35rem; }

.serviceFaq__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}

/* Service detail: compact internal links (suggested routes + service areas) */
.serviceDetailLinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
@media (max-width: 767px) {
  .serviceDetailLinks { grid-template-columns: 1fr; gap: 1.25rem; }
}
.serviceDetailLinks__block { min-width: 0; }
.serviceDetailLinks__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin: 0 0 0.5rem 0;
}
.serviceDetailLinks__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.serviceDetailLinks__list li { margin-bottom: 0.35rem; }
.serviceDetailLinks__list a {
  color: var(--navy-800, #0b1f33);
  text-decoration: none;
}
.serviceDetailLinks__list a:hover { text-decoration: underline; color: var(--navy-700, #123a5a); }
.serviceDetailLinks__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.serviceDetailLinks__chip {
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.serviceDetailLinks__chip:hover {
  background: var(--navy-800, #0b1f33);
  color: #fff;
  border-color: transparent;
}

.serviceRailMicrocopy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 10px;
  padding: 8px 0 0 0;
}
.serviceRailMicrocopy__item { margin: 0; }

/* ========== RELATED / SUGGESTED BLOCKS (detail pages) ========== */
.relatedBlocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
@media (max-width: 767px) {
  .relatedBlocks { grid-template-columns: 1fr; gap: 1.25rem; }
}
.relatedBlock {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 10px;
  background: #fff;
}
.relatedBlock__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin: 0 0 0.25rem 0;
}
.relatedBlock__micro {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0 0 0.5rem 0;
  line-height: 1.35;
}
.relatedBlock__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.relatedBlock__item {
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}
.relatedBlock__item:last-child { margin-bottom: 0; }
.relatedBlock__item a {
  color: var(--navy-800, #0b1f33);
  text-decoration: none;
  display: inline-block;
}
.relatedBlock__item a:hover { text-decoration: underline; color: var(--navy-700, #123a5a); }
.relatedBlock__itemMeta {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.2rem;
  margin-left: 0;
}
/* ========== RELATED BLOCKS - end ========== */

/* Nearby destinations (destination detail) */
.nearbyDestinations {
  margin: 2rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.nearbyDestinations__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.35rem 0;
}
.nearbyDestinations__intro {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0 0 0.75rem 0;
  line-height: 1.45;
}
.nearbyDestinations__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.nearbyDestinations__item {
  margin: 0;
}
.nearbyDestinations__item a {
  font-size: 0.9rem;
  color: var(--navy-800, #0b1f33);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid rgba(0,0,0,.06);
  display: inline-block;
}
.nearbyDestinations__item a:hover {
  background: #e2e8f0;
  border-color: rgba(0,0,0,.1);
  text-decoration: none;
  color: var(--navy-800, #0b1f33);
}

.serviceRailNote {
  font-size: .85rem;
  color: #64748b;
  margin-top: 1rem;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,.06);
}
/* ========== SERVICE DETAIL - end ========== */

/* ========== FLEET INDEX ========== */
.fleetIndex { padding: 0 0 3rem; }
.fleetIndexHero {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.fleetIndexHero__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}
.fleetIndexHero__sub {
  font-size: 1.05rem;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
  max-width: 56ch;
}

.fleetGrid { margin-bottom: 2.5rem; }
.fleetGrid__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1.25rem 0;
}
.fleetGrid__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.fleetCard {
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fleetCard:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.1);
}
.fleetCard__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0;
}
.fleetCard__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.fleetCard__spec { margin: 0; }
.fleetTags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.fleetTags__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 8px;
}
.fleetCard__cta {
  display: inline-block;
  margin-top: auto;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background: var(--navy-800, #0b1f33);
  color: #fff;
  border: none;
  align-self: flex-start;
}
.fleetCard__cta:hover { color: #fff; background: var(--navy-700, #123a5a); }
.fleetCard__onRequest {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.35rem;
}

.fleetCtaBand {
  padding: 2rem;
  border-radius: 16px;
  background: var(--navy-800, #0b1f33);
  color: #fff;
  text-align: center;
}
.fleetCtaBand__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #fff;
}
.fleetCtaBand__text {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0 0 1.25rem 0;
  line-height: 1.5;
}
.fleetCtaBand__btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  background: #fff;
  color: var(--navy-800, #0b1f33);
  text-decoration: none;
  border: none;
}
.fleetCtaBand__btn:hover { background: #f1f5f9; color: var(--navy-800, #0b1f33); }
/* ========== FLEET INDEX - end ========== */

/* ========== FLEET DETAIL ========== */
.fleetDetail { padding: 0 0 3rem; }
.fleetDetailHero {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
@media (max-width: 991px) {
  .fleetDetailHero { grid-template-columns: 1fr; }
}
.fleetDetailHero__breadcrumb {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}
.fleetDetailHero__breadcrumb a { color: var(--navy-800, #0b1f33); text-decoration: none; }
.fleetDetailHero__breadcrumb a:hover { text-decoration: underline; }
.fleetDetailHero__sep { margin: 0 6px; }
.fleetDetailHero__title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}
.fleetDetailHero__intro {
  font-size: 1rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 0.5rem 0;
}
.fleetDetailHero__micro {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}
.fleetDetailHero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.fleetDetailHero__chip {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 8px;
}

.fleetCapabilityCard {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.1);
  background: #f8fafc;
  position: sticky;
  top: 100px;
}
.fleetCapabilityCard__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.5rem 0;
}
.fleetCapabilityCard__text {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0 0 0.75rem 0;
  line-height: 1.45;
}
.fleetCapabilityCard__meta {
  margin: 0 0 1rem 0;
  padding: 0;
  font-size: 0.85rem;
}
.fleetCapabilityCard__meta dt {
  color: #64748b;
  margin: 0;
  font-weight: 500;
}
.fleetCapabilityCard__meta dd {
  margin: 0.2rem 0 0 0;
  color: var(--navy-800, #0b1f33);
  font-weight: 600;
}
.fleetCapabilityCard__cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  background: var(--navy-800, #0b1f33);
  color: #fff;
  text-decoration: none;
}
.fleetCapabilityCard__cta:hover { color: #fff; background: var(--navy-700, #123a5a); }

.fleetDetailBody { margin-bottom: 2rem; }
.fleetSpecsGrid {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.fleetSpecsGrid__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}
.fleetSpecsGrid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  margin: 0;
  padding: 0;
}
.fleetSpecsGrid__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.06);
}
.fleetSpecsGrid__item dt {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}
.fleetSpecsGrid__item dd {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0;
}
@media (max-width: 575px) {
  .fleetSpecsGrid__list { grid-template-columns: 1fr; }
}

.fleetCabin {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.fleetCabin__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}
.fleetCabin__lead,
.fleetCabin__p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 0.75rem 0;
}
.fleetCabin__bullets {
  margin: 1rem 0 0 0;
  padding-left: 1.25rem;
  color: #475569;
  line-height: 1.6;
}
.fleetCabin__bullets li { margin-bottom: 0.35rem; }

.fleetIdealMissions {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.fleetIdealMissions__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}
.fleetIdealMissions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) {
  .fleetIdealMissions__grid { grid-template-columns: 1fr; }
}
.fleetIdealMissions__card {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.03);
}
.fleetIdealMissions__cardTitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.5rem 0;
}
.fleetIdealMissions__cardText {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

.fleetFaq__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}

/* Fleet content from content_json (lead + sections) */
.fleetCabin__lead { font-size: 1.05rem; color: #475569; line-height: 1.6; margin: 0; }
.fleetCabin__lead p { margin: 0 0 0.75rem 0; }
.fleetCabin__lead p.lead { font-size: 1.1rem; color: #334155; }
.fleetContentSection {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.fleetContentSection__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}
.fleetContentSection__body { font-size: 1rem; color: #475569; line-height: 1.55; }
.fleetContentSection__body p { margin: 0 0 0.75rem 0; }

.fleetRailCta {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f8fafc;
}
.fleetRailCta__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.5rem 0;
}
.fleetRailCta__html { font-size: 0.9rem; color: #64748b; margin-bottom: 0.75rem; line-height: 1.45; }
.fleetRailCta__html p { margin: 0; }
.fleetRailCta__buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.fleetRailCta__btn { display: inline-block; margin: 0; }

.fleetDetail .detailRail .hybridQuote { margin-top: 0; }
.fleetDetail .detailRail .serviceRailNote { margin-top: 1rem; }
/* ========== FLEET DETAIL - end ========== */

/* ========== DESTINATIONS (Premium hotel/restaurant/resort transfers) ========== */
.destinationsGrid__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.destCard {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.destCard:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.1);
}
.destCard__featured {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}
.destCard__type {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0.5rem;
}
.destCard__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 0.35rem 0;
}
.destCard__city {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0 0 1rem 0;
}
.destCard__cta {
  margin-top: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.destinationsEmpty {
  text-align: center;
  color: #64748b;
  padding: 3rem 1rem;
  margin: 0;
}
.destinationLegal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.destinationLegal__text {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}
.detailPage--destination .detailRail .hybridQuote { margin-top: 0; }

/* Home route cards: secondary CTA muted */
.route-card-link--muted { color: #64748b; }
.route-card-link--muted:hover { color: #0b1f33; text-decoration: underline; }

/* ========== 404 PAGE (prestige style) ========== */
.error404 {
  text-align: center;
  padding: 3rem 1rem;
}
.error404__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-800, #0b1f33);
  margin: 0 0 1rem 0;
}
.error404__text {
  color: #64748b;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}
.error404__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.error404__btn {
  border-radius: 10px;
  font-weight: 600;
}

/* ========== INTL-TEL-INPUT (phone country code) ========== */
/* Bayrak görselleri: kütüphane ../img/ kullanıyor, mutlak yol ile override */
:root,
.iti,
.iti .iti__flag {
  --iti-path-flags-1x: url("/assets/vendor/intl-tel-input/img/flags.webp");
  --iti-path-flags-2x: url("/assets/vendor/intl-tel-input/img/flags@2x.webp");
  --iti-path-globe-1x: url("/assets/vendor/intl-tel-input/img/globe.webp");
  --iti-path-globe-2x: url("/assets/vendor/intl-tel-input/img/globe@2x.webp");
}
.iti { display: block; width: 100%; }
.iti__country-container { border-radius: 12px 0 0 12px; }
.iti input.iti__tel-input {
  height: 40px !important;
  min-height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  padding-left: 52px;
  width: 100%;
  font-size: 1rem;
}
.iti input.iti__tel-input:focus {
  outline: none;
  border-color: var(--navy-700, #123a5a);
  box-shadow: 0 0 0 3px rgba(18,58,90,.15);
}
.iti--container { width: 100%; }
.iti__selected-country-primary { padding-left: 12px; border-radius: 12px 0 0 12px; }
.iti__arrow { border-color: rgba(0,0,0,.4) transparent transparent; }
.iti__country-list { border-radius: 12px; border: 1px solid rgba(0,0,0,.10); box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.iti__country.iti__highlight { background: rgba(18,58,90,.08); }
/* Dark hero form variant */
.on-dark .iti input.iti__tel-input {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.on-dark .iti input.iti__tel-input:focus {
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 0 0 3px rgba(255,255,255,.12);
}
.on-dark .iti__selected-country { background: transparent; }
.on-dark .iti__arrow { border-top-color: rgba(255,255,255,.7); }

/* Anasayfa hero: koyu arka plan, placeholder ve yazı açık */
.home-hero .iti input.iti__tel-input {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  height: 32px !important;
  min-height: 32px;
  border-radius: 8px;
  padding-left: 48px;
  font-size: .8rem;
}
.home-hero .iti input.iti__tel-input::placeholder {
  color: rgba(255,255,255,.55);
}
.home-hero .iti input.iti__tel-input:focus {
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 0 0 2px rgba(255,255,255,.15);
}
.home-hero .iti .iti__country-container,
.home-hero .iti .iti__selected-country-primary { background: transparent; border-radius: 8px 0 0 8px; }
.home-hero .iti .iti__arrow { border-top-color: rgba(255,255,255,.7); }
.home-hero .iti .iti__selected-dial-code { color: rgba(255,255,255,.85); }

/* ========== COMPANY PAGES (Istanbul Helicopter Charter – premium editorial) ========== */
.iac-content { max-width: 42em; }
.iac-page-header { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.iac-page-header__title { font-size: clamp(1.5rem, 2.5vw, 1.75rem); font-weight: 700; color: var(--navy-900, #061a2a); margin: 0 0 0.5rem 0; line-height: 1.25; }
.iac-lead { font-size: 1.05rem; color: #374151; line-height: 1.55; margin: 0 0 0.5rem 0; }
.iac-muted { font-size: 0.875rem; color: #6b7280; margin: 0; line-height: 1.45; }
.iac-section { margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem); }
.iac-section-title { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #374151; margin: 0 0 0.75rem 0; }
.iac-section__body { font-size: 0.95rem; color: #374151; line-height: 1.6; }
.iac-section__body p { margin: 0 0 0.75rem 0; }
.iac-section__body p:last-child { margin-bottom: 0; }
.iac-divider { border: 0; border-top: 1px solid rgba(0,0,0,.08); margin: clamp(1rem, 2vw, 1.5rem) 0; }
.iac-callout { padding: clamp(1rem, 2vw, 1.25rem); border-radius: 8px; border: 1px solid rgba(0,0,0,.08); margin-bottom: 1.25rem; }
.iac-callout--note { background: #f8fafc; }
.iac-callout--legal { background: #f3f4f6; border-color: rgba(0,0,0,.1); }
.iac-callout__title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #6b7280; margin: 0 0 0.5rem 0; }
.iac-callout__list { list-style: none; padding: 0; margin: 0; font-size: 0.875rem; color: #4b5563; line-height: 1.55; }
.iac-callout__list li { margin-bottom: 0.35rem; padding-left: 1.25rem; position: relative; }
.iac-callout__list li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 4px; height: 4px; border-radius: 50%; background: #6b7280; }
.iac-callout__body { font-size: 0.875rem; color: #4b5563; line-height: 1.55; margin: 0; }
.iac-list { list-style: none; padding: 0; margin: 0 0 0.75rem 0; font-size: 0.95rem; color: #374151; line-height: 1.6; }
.iac-list li { margin-bottom: 0.4rem; padding-left: 1.35rem; position: relative; }
.iac-list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: #4b5563; }
ol.iac-list { list-style: none; counter-reset: iac-ol; }
ol.iac-list li { counter-increment: iac-ol; }
ol.iac-list li::before { content: counter(iac-ol); width: auto; height: auto; border-radius: 0; background: transparent; font-weight: 600; color: #374151; font-size: 0.9em; }
.iac-kpi { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 1rem; margin-bottom: clamp(1.5rem, 2.5vw, 2rem); padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,.08); }
.iac-kpi__item { text-align: left; }
.iac-kpi__value { display: block; font-size: 1.1rem; font-weight: 700; color: var(--navy-800, #0b1f33); }
.iac-kpi__label { font-size: 0.8rem; color: #6b7280; }
@media (max-width: 575px) { .iac-kpi { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .iac-kpi { grid-template-columns: repeat(3, 1fr); } }
