/* ============================================================
   Jolyn Theme — Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy:        #0A2540;
  --navy-mid:    #1a3a5c;
  --accent:      #2563EB;
  --accent-dark: #1d4ed8;
  --orange:      #F26B21;
  --orange-soft: #FEF3EC;
  --text:        #1a2332;
  --text-muted:  #5a6b80;
  --body-bg:     #ffffff;
  --soft-bg:     #F4F7FB;
  --border:      #dde6f1;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(10,37,64,0.08);
  --shadow-md:   0 8px 40px rgba(10,37,64,0.14);
  --container:   1200px;
  --transition:  0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--body-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; color: var(--navy); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,0.35); }
.btn--ghost-white {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost-white:hover { background: rgba(255,255,255,0.22); }
.btn--navy {
  background: var(--navy);
  color: #fff;
}
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--outline:hover { background: var(--accent); color: #fff; }

/* ---------- Eyebrow / Labels ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ---------- Section Utilities ---------- */
.section {
  padding: 96px 0;
}
.section--soft { background: var(--soft-bg); }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 8px 0 16px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(10,37,64,0.04);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo img { height: 46px; width: auto; max-width: 160px; object-fit: contain; }
.nav__logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav__menu {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav__menu a {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav__menu a:hover,
.nav__menu a.is-active {
  color: var(--navy);
  background: var(--soft-bg);
}
.nav__menu a.is-active { font-weight: 600; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__cta .btn { padding: 9px 20px; font-size: 0.88rem; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, #08213a 0%, var(--navy-mid) 55%, #0a2540 100%);
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 75% 40%, rgba(37,99,235,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(37,99,235,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cpath d='M0 20h40M20 0v40'/%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 100px 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__inner h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  max-width: 680px;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__corner {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 0;
  z-index: 2;
}
.hero__corner-item {
  display: flex;
  flex-direction: column;
  padding: 20px 28px;
  background: rgba(255,255,255,0.06);
  border-left: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__corner-item .k {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.hero__corner-item .v {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--navy);
  padding: 56px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats__grid > div {
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stats__grid > div:last-child { border-right: none; }
.stat__num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}
.stat__num small { font-size: 1.4rem; line-height: 1.4; }
.stat__label {
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ============================================================
   SERVICES GRID (home page cards)
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--body-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.svc-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--soft-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.svc-card p { color: var(--text-muted); font-size: 0.93rem; flex: 1; }
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.svc-card__link:hover { gap: 10px; }
.svc-card__link svg { width: 16px; height: 16px; }

/* ============================================================
   SPLIT (Why Choose Us)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.split__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
}
.split h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin: 8px 0 16px; }
.split p { color: var(--text-muted); margin-bottom: 28px; }

/* Bullets */
.bullets { display: flex; flex-direction: column; gap: 20px; }
.bullets li { display: flex; gap: 14px; align-items: flex-start; }
.bullets__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37,99,235,0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.bullets__check svg { width: 14px; height: 14px; }
.bullets__text { display: flex; flex-direction: column; gap: 2px; }
.bullets__text strong { font-size: 0.95rem; color: var(--navy); display: block; }
.bullets__text span { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================================
   ROUTES
   ============================================================ */
.routes__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.routes__map {
  background: var(--soft-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.routes__legend { display: flex; flex-direction: column; gap: 4px; }
.route-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.route-row:last-child { border-bottom: none; }
.route-row__pin {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37,99,235,0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.route-row__pin svg { width: 18px; height: 18px; }
.route-row__title { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.route-row__sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.route-row__meta {
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  background: var(--soft-bg);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.t-card__quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: -8px;
}
.t-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.t-card__person { display: flex; align-items: center; gap: 12px; }
.t-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-card__name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.t-card__role { font-size: 0.8rem; color: var(--text-muted); margin-top: 1px; }

/* ============================================================
   LOGOS MARQUEE
   ============================================================ */
.logos {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.logos__marquee { overflow: hidden; position: relative; }
.logos__marquee::before,
.logos__marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 1;
  pointer-events: none;
}
.logos__marquee::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.logos__marquee::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.logos__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.logos__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
}
.logos__item svg { width: 22px; height: 22px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy);
  padding: 72px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.65); margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050f1c;
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__brand img { height: 52px; width: auto; max-width: 200px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer__blurb { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.footer__social a:hover { background: var(--accent); color: #fff; }
.footer__social svg { width: 16px; height: 16px; }
.footer h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 20px; font-weight: 600; }
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer ul a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: 16px; }
.footer__contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.footer__contact-item div { font-size: 0.88rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   PAGE HEAD (inner pages hero)
   ============================================================ */
.pagehead {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 72px;
}
.pagehead h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin: 16px 0 16px; }
.pagehead p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb .sep { opacity: 0.4; }

/* ============================================================
   SERVICES DETAIL (inner services page)
   ============================================================ */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.svc-block:first-child { padding-top: 0; }
.svc-block:last-child { border-bottom: none; }
.svc-block--reverse { direction: rtl; }
.svc-block--reverse > * { direction: ltr; }
.svc-block__num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.svc-block h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin: 8px 0 16px; }
.svc-block p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.svc-block ul { list-style: disc; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; color: var(--text-muted); font-size: 0.92rem; margin-bottom: 28px; }
.svc-block ul li { padding-left: 4px; }
.svc-block__media { border-radius: var(--radius); overflow: hidden; position: relative; }
.svc-block__img { width: 100%; height: 380px; object-fit: cover; object-position: center; display: block; border-radius: var(--radius); }
.svc-block__img-credit { position: absolute; bottom: 0; right: 0; font-size: 0.7rem; color: rgba(255,255,255,0.7); background: rgba(0,0,0,0.45); padding: 3px 8px; border-top-left-radius: 6px; margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info h2 { font-size: 1.6rem; margin: 8px 0; }
.contact-info > p { color: var(--text-muted); margin-bottom: 28px; }
.contact-info__card {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-info__card:last-of-type { border-bottom: none; }
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--soft-bg);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__card h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 4px; font-weight: 600; }
.contact-info__card p { font-size: 0.9rem; color: var(--text); line-height: 1.6; }

/* Form */
.form-card {
  background: var(--body-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-card h2 { font-size: 1.5rem; margin-bottom: 8px; }
.form-card > p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 28px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.84rem; font-weight: 600; color: var(--navy); }
.field input,
.field select,
.field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.field textarea { min-height: 100px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6b80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-card__submit { margin-top: 24px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-card__submit small { font-size: 0.8rem; color: var(--text-muted); }
.form-card__sent { margin-top: 18px; padding: 18px; border-radius: 10px; background: #eef9f0; color: var(--navy); border: 1px solid #b7ddc4; }
.form-card__sent strong { display: block; margin-bottom: 4px; }
.form-card__sent p { font-size: 0.9rem; color: var(--text-muted); }

/* Map embed stand-in */
.map-embed { position: relative; height: 280px; overflow: hidden; }
.map-embed svg { width: 100%; height: 100%; object-fit: cover; }
.map-embed__pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.map-embed__pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(37,99,235,0); }
}

/* ============================================================
   IMAGE PLACEHOLDER (design mode)
   ============================================================ */
.imgph {
  background: linear-gradient(135deg, var(--soft-bg) 0%, #e8edf5 100%);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 96px 0;
}
.about-intro h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin: 8px 0 20px; }
.about-intro p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.fleet-spec {
  background: var(--soft-bg);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.fleet-spec__val { font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.fleet-spec__key { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.value-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37,99,235,0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-card__icon svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   GUTENBERG / BLOCK EDITOR CONTENT
   ============================================================ */
.entry-content h2 { font-size: 1.6rem; margin: 32px 0 16px; }
.entry-content h3 { font-size: 1.25rem; margin: 24px 0 12px; }
.entry-content p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.75; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 16px; }
.entry-content li { margin-bottom: 6px; color: var(--text-muted); }
.entry-content a { color: var(--accent); text-decoration: underline; }
.entry-content img { border-radius: var(--radius-sm); }
.entry-content .wp-block-image { margin: 24px 0; }
.entry-content .wp-block-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin: 24px 0; }
.entry-content .alignwide { max-width: calc(var(--container) + 80px); margin-left: auto; margin-right: auto; }
.entry-content .alignfull { width: 100vw; margin-left: calc(50% - 50vw); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: 1fr; }
  .routes__wrap { grid-template-columns: 1fr; }
  .routes__map { max-width: 480px; margin: 0 auto; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-block { grid-template-columns: 1fr; gap: 36px; }
  .svc-block--reverse { direction: ltr; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stats__grid > div:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.1); }
  .stats__grid > div:last-child, .stats__grid > div:nth-last-child(2) { border-bottom: none; }
  .hero__corner { display: none; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .fleet-specs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__menu { display: none; flex-direction: column; gap: 4px; }
  .nav--open .nav__menu {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 24px;
    box-shadow: 0 8px 24px rgba(10,37,64,0.1);
  }
  .nav--open .nav__menu li a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .nav { position: relative; }
  .nav__inner { position: relative; justify-content: space-between; }
  .nav__cta .btn:not(.nav__toggle) { display: none; }
  .nav__toggle { display: flex; margin-left: auto; }
  .section { padding: 64px 0; }
  .pagehead { padding: 56px 0 48px; }
  .hero__inner { padding: 80px 24px 60px; }
  .form-card { padding: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
