/* ===========================================================
   HENRY IMPORT-EKSPORT — Core stylesheet
   Design tokens + base + shared components (public + shared)
   =========================================================== */

:root {
  --navy: #0B2545;
  --navy-deep: #071A33;
  --navy-soft: #12335E;
  --red: #C8102E;
  --red-deep: #A30D25;
  --blue: #1E6FD9;
  --blue-soft: #E8F1FC;
  --white: #FFFFFF;
  --gray-bg: #F4F6F8;
  --gray-100: #EDF0F3;
  --gray-200: #DDE3E9;
  --gray-400: #9AA7B5;
  --text: #16223A;
  --text-muted: #5B6B82;

  --font-display: 'Archivo', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(11, 37, 69, 0.08);
  --shadow: 0 8px 24px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 20px 48px rgba(11, 37, 69, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
}

.text-red {
  color: var(--red) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.text-navy {
  color: var(--navy) !important;
}

.text-muted-custom {
  color: var(--text-muted) !important;
}

.form-label-sm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  color: var(--navy);
  margin-bottom: .4rem;
}

.password-toggle-wrap {
  position: relative;
}

.password-toggle-btn {
  position: absolute;
  right: .8rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
}

.bg-navy {
  background: var(--navy) !important;
}

.bg-navy-deep {
  background: var(--navy-deep) !important;
}

.bg-gray {
  background: var(--gray-bg) !important;
}

.bg-blue-soft {
  background: var(--blue-soft) !important;
}

.app-toast {
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.app-toast .toast-body {
  font-size: .92rem;
  line-height: 1.4;
}

.app-toast .bi {
  flex-shrink: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.btn {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--radius-sm);
  padding: .65rem 1.4rem;
}

.btn-navy {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}

.btn-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: var(--white);
}

.btn-outline-navy {
  color: var(--navy);
  background: transparent;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  border: 1.5px solid rgba(255, 255, 255, .55);
  color: var(--white);
  background: transparent;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-blue {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: #175bb3;
  border-color: #175bb3;
  color: var(--white);
}

.topbar-strip {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
  padding: .45rem 0;
}

.topbar-strip a {
  color: rgba(255, 255, 255, .85);
}

.topbar-strip a:hover {
  color: var(--white);
}

.topbar-strip .divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .25);
  display: inline-block;
}

.site-navbar {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, padding .25s ease;
}

.site-navbar.navbar-scrolled {
  box-shadow: 0 8px 24px rgba(11, 37, 69, .12);
}

.site-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--white);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.05;
}

.brand-name small {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.brand-logo {
  height: 46px;
  width: auto;
  aspect-ratio: 1536 / 467;
}

.brand-logo-wrap {
  background: var(--white);
  padding: .4rem .75rem;
  border-radius: 10px;
}

/* Reserves the navbar's rendered height before components.js swaps this
   placeholder for the real markup, so the page doesn't jump/reflow once
   the script runs (topbar strip ~34px + nav row ~72px). */
#publicNavbar {
  min-height: 106px;
}

.site-navbar .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  padding: .5rem 1rem !important;
  position: relative;
  transition: color .2s ease;
}

.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.site-navbar .nav-link.active,
.site-navbar .nav-link:hover {
  color: var(--red);
}

.site-navbar .nav-link.active::after,
.site-navbar .nav-link:hover::after {
  transform: scaleX(1);
}

.site-navbar .navbar-toggler {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .4rem .6rem;
}

.site-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(200, 16, 46, .15);
}

.site-navbar .btn-outline-navy,
.site-navbar .btn-red {
  font-size: .9rem;
}

.hero {
  background: radial-gradient(circle at 15% 20%, rgba(30, 111, 217, .35), transparent 45%), linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .035) 0 2px, transparent 2px 90px);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-photo {
  background-size: cover;
  background-position: center;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 26, 51, .93) 0%, rgba(11, 37, 69, .88) 55%, rgba(18, 51, 94, .78) 100%);
}

.hero-route {
  font-family: var(--font-display);
  letter-spacing: .05em;
  font-weight: 700;
  font-size: .95rem;
  color: rgba(255, 255, 255, .75);
}

.hero-route .stop {
  color: var(--white);
}

.hero-route .dash {
  color: var(--red);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.08;
}

.hero p.lead {
  color: rgba(255, 255, 255, .8);
}

.hero-track-box {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.hero-track-box .form-control {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--white);
}

.hero-track-box .form-control::placeholder {
  color: rgba(255, 255, 255, .55);
}

.hero-track-box .form-control:focus {
  background: rgba(255, 255, 255, .12);
  border-color: var(--red);
  box-shadow: none;
  color: var(--white);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem;
  height: 100%;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}

.service-card:hover .service-icon {
  background: var(--red);
  color: var(--white);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem 1rem;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-meta span {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.service-meta i {
  color: var(--blue);
}

.step-card {
  position: relative;
  padding-left: 3.6rem;
}

.step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.country-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: linear-gradient(160deg, var(--navy-soft), var(--navy-deep));
  background-size: cover;
  background-position: center;
}

.country-card .overlay-content {
  padding: 1.4rem;
  position: relative;
  z-index: 1;
}

.country-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 26, 51, .92) 10%, rgba(7, 26, 51, .15) 70%);
}

.img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 130%);
  color: rgba(255, 255, 255, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .4rem;
  border-radius: var(--radius-lg);
  text-align: center;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.img-placeholder i {
  font-size: 2rem;
  opacity: .85;
}

.cta-band {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-band.cta-photo {
  background-size: cover;
  background-position: center;
}

.cta-band.cta-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(200, 16, 46, .92) 0%, rgba(163, 13, 37, .88) 100%);
}

.cta-band-content {
  position: relative;
  z-index: 1;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .72);
}

.site-footer h6 {
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 1.1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, .65);
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer .social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.site-footer .social-icon:hover {
  background: var(--red);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .82rem;
}

.status-badge {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .32rem .7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-created {
  background: #EEF1F5;
  color: #5B6B82;
}

.status-review {
  background: #FFF3E0;
  color: #B9740B;
}

.status-confirmed {
  background: var(--blue-soft);
  color: var(--blue);
}

.status-waiting {
  background: #FDECEC;
  color: var(--red);
}

.status-paid {
  background: #E7F7EE;
  color: #1C8A50;
}

.status-pickedup {
  background: #EFF0FF;
  color: #5A55D6;
}

.status-warehouse {
  background: #F1EFFE;
  color: #7A5AF8;
}

.status-transit {
  background: #E4F1FF;
  color: #1E6FD9;
}

.status-customs {
  background: #FFF4E5;
  color: #C9760B;
}

.status-outfordelivery {
  background: #E9FBF0;
  color: #17A363;
}

.status-delivered {
  background: #E1F8E9;
  color: #148A45;
}

.status-cancelled {
  background: #FBE9E9;
  color: #C8102E;
}

.tracking-timeline {
  position: relative;
  padding-left: 2.6rem;
}

.tracking-timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--gray-200);
}

.tl-item {
  position: relative;
  padding-bottom: 1.7rem;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -2.6rem;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--text-muted);
}

.tl-item.done .tl-dot {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.tl-item.current .tl-dot {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 5px rgba(200, 16, 46, .15);
}

.tl-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}

.tl-meta {
  font-size: .8rem;
  color: var(--text-muted);
}

.tracking-result-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.tracking-result-head {
  background: var(--navy);
  color: var(--white);
  padding: 1.4rem 1.6rem;
}

.tracking-code-tag {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .05em;
  background: rgba(255, 255, 255, .1);
  border: 1px dashed rgba(255, 255, 255, .35);
  padding: .35rem .8rem;
  border-radius: 6px;
  display: inline-block;
}

.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 2.4rem;
  color: var(--gray-400);
  margin-bottom: .8rem;
  display: block;
}

.skel {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 37%, var(--gray-100) 63%);
  background-size: 400% 100%;
  animation: skel-shine 1.4s ease infinite;
  border-radius: 6px;
}

@keyframes skel-shine {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

.section-py {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Plain white card, used standalone on public pages (e.g. tracking.html) —
   same look as the dashboard .panel but kept here so public pages don't
   need to load dashboard.css just for one class. */
.panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

/* ---- Stats strip ---- */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--gray-200);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .4rem;
}

/* ---- Trust badges ---- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: .6rem 1.1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-display);
}

.trust-badge i {
  color: var(--red);
  font-size: 1rem;
}

/* ---- Feature visual (replaces plain photo placeholder) ---- */
.feature-visual {
  position: relative;
  border-radius: var(--radius-lg);
  min-height: 380px;
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  /* visible (not hidden): the floating badge cards intentionally hang over
     the edge, and ::after below is rounded to match so no square corners
     show through instead. */
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .04) 0 2px, transparent 2px 90px);
  pointer-events: none;
}

.feature-visual-core {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
  padding: 1.6rem;
  color: var(--white);
}

.feature-visual-core .route-line {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 1rem 0;
}

.feature-visual-core .route-line .line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .5) 0 6px, transparent 6px 12px);
}

.feature-badge-float {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  color: var(--navy);
}

.feature-badge-float.top-left { top: 8%; left: -6%; }
.feature-badge-float.bottom-right { bottom: 10%; right: -6%; }

.feature-badge-float .badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- Photo banner (real photo + gradient scrim, used standalone) ---- */
.photo-banner {
  position: relative;
  border-radius: var(--radius-lg);
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.photo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 26, 51, .88) 5%, rgba(7, 26, 51, .15) 65%);
}

.photo-banner-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: var(--white);
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: #F5A623;
  font-size: .85rem;
  margin-bottom: .8rem;
}

.testimonial-quote {
  color: var(--text);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
}

/* ---- Testimonial carousel (3 desktop / 2 tablet / 1 mobile, slides one at a time) ---- */
.testimonial-carousel-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform .4s ease;
}

.testimonial-slide {
  flex: 0 0 33.3333%;
  padding: 0 .6rem;
  box-sizing: border-box;
}

.testimonial-slide .testimonial-card {
  height: 100%;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 3;
  cursor: pointer;
}

.testimonial-nav.prev { left: -54px; }
.testimonial-nav.next { right: -54px; }

.testimonial-arrow {
  color: var(--navy);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: color .2s ease;
}

.testimonial-nav:hover .testimonial-arrow {
  color: var(--red);
}

/* ---- FAQ accordion ---- */
.faq-accordion .accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius) !important;
  margin-bottom: .8rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--red);
  background: var(--blue-soft);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--gray-200);
}

.faq-accordion .accordion-body {
  color: var(--text-muted);
  font-size: .92rem;
}

/* ---- About: milestones timeline ---- */
.milestone-track {
  position: relative;
  padding-left: 2.2rem;
}

.milestone-track::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--gray-200);
}

.milestone-item {
  position: relative;
  padding-bottom: 1.9rem;
}

.milestone-item:last-child {
  padding-bottom: 0;
}

.milestone-item::before {
  content: "";
  position: absolute;
  left: -2.2rem;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--red);
}

.milestone-year {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
  font-size: .85rem;
  letter-spacing: .04em;
}

/* ---- About: team ---- */
.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}

/* ---- Contact: map + hours ---- */
.map-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.office-hours-item {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .88rem;
}

.office-hours-item:last-child {
  border-bottom: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}