/* =============================================================================
   UOE THEME STYLES — Premium Redesign v2
   ============================================================================= */

/* ── Scroll Reveal Utility ────────────────────────────────────────────────── */
/* Transition lives on both states so the class-swap (sr-hidden → sr-visible) animates,
   while elements WITHOUT either class (e.g. inner-hero items animated by GSAP) stay free. */
.sr-hidden,
.sr-visible {
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-hidden {
  opacity: 0;
  transform: translateY(40px);
}

.sr-hidden[data-gsap-reveal="left"]  { transform: translateX(-60px); }
.sr-hidden[data-gsap-reveal="right"] { transform: translateX(60px); }
.sr-hidden[data-gsap-reveal="up"]    { transform: translateY(50px); }
.sr-hidden[data-gsap-reveal="scale"] { transform: scale(0.92); }

.sr-visible {
  opacity: 1;
  transform: none;
}

/* ── Site Header ──────────────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: var(--space-5) 0;
  background: #0F1623;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Both transparent and solid use the same solid dark — keeps the chrome clean */
#site-header.is-transparent,
#site-header.is-solid {
  background: #0F1623;
}

#site-header.is-solid {
  padding: var(--space-3) 0;
  box-shadow: 0 8px 28px -8px rgba(0,0,0,0.45);
  border-bottom-color: rgba(255,255,255,0.06);
}

/* Keep Leaflet map below the header */
.leaflet-pane,
.leaflet-top,
.leaflet-bottom,
.leaflet-control { z-index: 1 !important; }
.leaflet-top.leaflet-left,
.leaflet-top.leaflet-right { z-index: 2 !important; }
.leaflet-popup { z-index: 5 !important; }
.leaflet-container { z-index: 0 !important; isolation: isolate; }
#leaflet-map { position: relative; z-index: 0; isolation: isolate; }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header__logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Shrink SVG logo on mobile so toggle has room */
@media (max-width: 1024px) {
  .header__inner { gap: var(--space-4); }
  .header__logo svg { width: 130px; height: auto; }
}

@media (max-width: 480px) {
  .header__inner { gap: var(--space-3); }
  .header__logo svg { width: 110px; height: auto; }
}

.header__nav { display: flex; align-items: center; }

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav__item { position: relative; }

.nav__link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  display: block;
  white-space: nowrap;
}

.nav__link:hover, .nav__link.is-active {
  color: var(--secondary);
  background: rgba(255,255,255,0.06);
}

.nav__item--dropdown > .nav__link::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: var(--space-2);
  transition: transform var(--transition-fast);
}

.nav__item--dropdown:hover > .nav__link::after { transform: rotate(-135deg) translateY(-2px); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 0;
  min-width: 220px;
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  z-index: var(--z-dropdown);
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,0.75);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nav__dropdown-link:hover {
  color: var(--secondary);
  background: rgba(255,255,255,0.06);
  padding-left: var(--space-5);
}

.header__cta { flex-shrink: 0; }

/* ── Hamburger button — full reset, no browser default bleeding in ── */
.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
  pointer-events: none;
}

.header__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle.is-open span:nth-child(2) { opacity: 0; }
.header__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg-darker);
  z-index: calc(var(--z-fixed) - 1);
  padding: 100px var(--gutter) var(--space-8);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.header__mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__list { list-style: none; display: flex; flex-direction: column; gap: var(--space-1); }

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: rgba(255,255,255,0.85);
  display: block;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border-dark);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.mobile-nav__link:hover { color: var(--secondary); }
.mobile-nav__cta { margin-top: var(--space-8); }

/* ── SPLIT HERO ───────────────────────────────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  margin-top: 72px; /* header height */
}

.hero-split__left {
  background: var(--color-bg);
  display: flex;
  align-items: center;
  padding: var(--space-20) var(--space-16) var(--space-20) calc(50vw - min(var(--container-max),100vw)/2 + var(--gutter));
}

.hero-split__content { max-width: 560px; }

.hero-split__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.hero-split__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.6); opacity: 0.5; }
}

.hero-split__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4.75rem);
  font-weight: var(--weight-black);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.hero-split__headline span { color: var(--primary); display: block; }
.hero-split__headline em   { font-style: normal; color: var(--secondary); display: block; }

.hero-split__sub {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
}

.hero-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.hero-split__stats {
  display: flex;
  gap: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}

.hero-stat__value {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  color: var(--primary);
  line-height: 1;
  display: block;
}

.hero-stat__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.hero-split__right {
  position: relative;
  overflow: hidden;
}

.hero-split__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-split__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,61,155,0.35) 0%, rgba(8,12,18,0.45) 100%);
}

.hero-split__badge {
  position: absolute;
  bottom: var(--space-10);
  left: var(--space-8);
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 210px;
}

.hero-split__badge svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  stroke: var(--secondary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-split__badge strong {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-black);
  color: var(--primary);
  display: block;
  line-height: 1;
}

.hero-split__badge span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ── TICKER STRIP ─────────────────────────────────────────────────────────── */
.ticker-strip {
  background: var(--primary);
  overflow: hidden;
  padding: var(--space-4) 0;
}

.ticker-strip__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 50s linear infinite;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.ticker-strip__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 var(--space-8);
  white-space: nowrap;
}

.ticker-strip__item svg { width: 6px; height: 6px; color: var(--secondary); flex-shrink: 0; }

/* ── ABOUT — split layout ─────────────────────────────────────────────────── */
.about-new { background: var(--color-bg); }

.about-new__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.about-new__visual { position: relative; padding-bottom: var(--space-8); }

.about-new__img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}

.about-new__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* about-new__img-main hover zoom removed (was: transform: scale(1.04)) */

.about-new__img-secondary {
  position: absolute;
  bottom: 0;
  right: calc(-1 * var(--space-6));
  width: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
  border: 5px solid white;
}

.about-new__img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-new__years-badge {
  position: absolute;
  top: var(--space-8);
  left: calc(-1 * var(--space-5));
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-primary);
  text-align: center;
  min-width: 110px;
}

.about-new__years-num {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--weight-black);
  color: var(--secondary);
  display: block;
  line-height: 1;
}

.about-new__years-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.70);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  display: block;
  margin-top: var(--space-1);
  line-height: var(--leading-snug);
}

.about-new__text h2 { margin-bottom: var(--space-6); }

.about-new__body {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.about-new__mini-stats {
  display: flex;
  gap: var(--space-8);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-8);
}

.about-mini-stat__val {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  color: var(--primary);
  line-height: 1;
  display: block;
}

.about-mini-stat__lbl {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-weight: var(--weight-medium);
}

.about-new__regions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.about-new__region-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-primary-200);
  color: var(--primary);
  background: var(--color-primary-50);
}

.about-new__region-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SERVICES — numbered cards grid ──────────────────────────────────────── */
.services-new { background: var(--color-bg-alt); }

.services-new__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.services-new__header h2 { margin-top: var(--space-2); }

.services-new__header p {
  max-width: 380px;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.services-new__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.svc-card {
  background: var(--color-bg);
  padding: var(--space-10) var(--space-8);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: background var(--transition-slow);
}

.svc-card:hover { background: var(--color-primary-50); }

.svc-card__num {
  position: absolute;
  top: var(--space-5);
  right: var(--space-6);
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: var(--weight-black);
  color: var(--color-neutral-100);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color var(--transition-slow);
}

.svc-card:hover .svc-card__num { color: var(--color-primary-100); }

.svc-card__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-slow);
}

.svc-card:hover .svc-card__icon { background: var(--primary); }

.svc-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-slow);
}

.svc-card:hover .svc-card__icon svg { stroke: white; }

.svc-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  transition: color var(--transition-base);
}

.svc-card:hover .svc-card__title { color: var(--primary); }

.svc-card__desc {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  flex: 1;
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--primary);
  text-decoration: none;
  letter-spacing: var(--tracking-wide);
  margin-top: auto;
  transition: gap var(--transition-base);
}

.svc-card__link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--transition-base); }
.svc-card__link:hover { gap: var(--space-3); }
.svc-card__link:hover svg { transform: translateX(4px); }

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.svc-card:hover::after { transform: scaleX(1); }

/* ── STATS — dark full-bleed ──────────────────────────────────────────────── */
.stats-new {
  background: var(--color-bg-dark);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

.stats-new__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%, rgba(29,61,155,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 90% 50%, rgba(245,166,35,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats-new__inner {
  position: relative;
  z-index: var(--z-base);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-16);
  align-items: center;
}

.stats-new__heading {
  color: var(--color-text-invert);
  font-size: var(--text-4xl);
  max-width: 260px;
  margin-top: var(--space-3);
}

.stats-new__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-width: 0;
}

.stat-new {
  background: rgba(255,255,255,0.03);
  padding: var(--space-10) var(--space-6);
  text-align: center;
  transition: background var(--transition-slow);
  min-width: 0;
}

.stat-new:hover { background: rgba(255,255,255,0.06); }

.stat-new__val {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.75rem);
  font-weight: var(--weight-black);
  color: var(--secondary);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-3);
}

.stat-new__lbl {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── COVERAGE MAP — Leaflet ───────────────────────────────────────────────── */
.coverage-new { background: var(--color-bg); }

.coverage-new__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}

.coverage-new__layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-5);
  align-items: start;
}

.coverage-tabs {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.coverage-tab {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  text-align: left;
  transition: all var(--transition-base);
}

.coverage-tab:hover { border-color: var(--primary); color: var(--primary); background: var(--color-primary-50); }

.coverage-tab.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.coverage-tab__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.coverage-tab__dot--europe       { background: var(--color-primary-500); }
.coverage-tab__dot--gulf         { background: var(--color-secondary-600); }
.coverage-tab__dot--subcontinent { background: var(--color-accent-500); }
.coverage-tab__dot--sea          { background: var(--color-primary-400); }
.coverage-tab.is-active .coverage-tab__dot { background: rgba(255,255,255,0.75); }

.coverage-new__map-wrap {
  grid-column: 2;
  grid-row: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

#leaflet-map {
  height: 420px;
  width: 100%;
  background: var(--color-neutral-100);
}

.leaflet-container { font-family: var(--font-body); }

.uoe-popup .leaflet-popup-content-wrapper {
  background: var(--color-bg-dark);
  color: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-dark);
  box-shadow: var(--shadow-xl);
  padding: 0;
}

.uoe-popup .leaflet-popup-tip { background: var(--color-bg-dark); }

.uoe-popup .leaflet-popup-content { margin: 0; padding: var(--space-4) var(--space-5); }

.uoe-popup-inner strong {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  display: block;
  color: var(--secondary);
  margin-bottom: 2px;
}

.uoe-popup-inner span { font-size: var(--text-sm); color: rgba(255,255,255,0.60); }

.coverage-panel {
  grid-column: 2;
  grid-row: 2;
  background: var(--color-primary-50);
  border: 1px solid var(--color-primary-100);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
}

.coverage-panel__content { display: flex; flex-direction: column; gap: var(--space-3); }
.coverage-panel__content.is-hidden { display: none; }
.coverage-panel__content h3 { font-size: var(--text-xl); color: var(--primary); margin: 0; }
.coverage-panel__content p { font-size: var(--text-base); line-height: var(--leading-relaxed); color: var(--color-text-muted); margin: 0; }

.coverage-panel__cities { display: flex; flex-wrap: wrap; gap: var(--space-2); list-style: none; }

.coverage-panel__cities li {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  padding: var(--space-1) var(--space-3);
  background: white;
  border: 1px solid var(--color-primary-200);
  border-radius: var(--radius-full);
  color: var(--primary);
}

/* ── PROCESS SECTION ──────────────────────────────────────────────────────── */
.process-new { background: var(--color-bg-alt); }

.process-new__header { text-align: center; margin-bottom: var(--space-16); }

.process-new__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: var(--space-4);
}

/* Single horizontal line through icon centres */
.process-new__steps::before {
  content: '';
  position: absolute;
  top: 40px; /* half of 80px icon */
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-100) 0%, var(--color-primary-300) 50%, var(--color-primary-100) 100%);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: 0 var(--space-4);
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--color-primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  transition: all var(--transition-slow);
  flex-shrink: 0;
}

.process-step:hover .process-step__icon {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.process-step__icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-slow);
}

.process-step:hover .process-step__icon svg { stroke: white; }

.process-step__num {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-widest);
  color: var(--secondary);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--color-text);
}

.process-step p {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
}

/* ── TESTIMONIALS ─────────────────────────────────────────────────────────── */
.testimonials-new { background: var(--color-bg); overflow: hidden; }

.testimonials-new__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-16);
  align-items: start;
}

.testimonials-new__left {
  position: sticky;
  top: 100px;
}

.testimonials-new__left h2 { margin: var(--space-3) 0 0; }

.testimonials-new__left p {
  margin-top: var(--space-6);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
}

.testimonials-new__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.tcard {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-slow);
}

.tcard:hover { border-color: var(--color-primary-200); }

.tcard__stars { display: flex; gap: var(--space-1); margin-bottom: var(--space-5); color: var(--secondary); }
.tcard__stars svg { width: 16px; height: 16px; }

.tcard__quote {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.tcard__author { display: flex; align-items: center; gap: var(--space-4); padding-top: var(--space-5); border-top: 1px solid var(--color-border); }

.tcard__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-bg-alt);
  border: 2px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tcard__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.tcard__name { font-family: var(--font-heading); font-size: var(--text-base); font-weight: var(--weight-semibold); color: var(--color-text); display: block; }
.tcard__role { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ── PARTNERS ─────────────────────────────────────────────────────────────── */
.partners-new {
  background: var(--color-bg);
  padding: var(--space-16) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.partners-new__label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-10);
}

.partners-new__marquee-wrap { position: relative; overflow: hidden; }

.partners-new__marquee-wrap::before,
.partners-new__marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: var(--z-raised);
  pointer-events: none;
}

.partners-new__marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--color-bg), transparent); }
.partners-new__marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--color-bg), transparent); }

.partners-new__marquee {
  display: flex;
  gap: var(--space-4);
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.partners-new__marquee:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 var(--space-10);
  flex-shrink: 0;
  color: #9CA3AF;
  transition: color 0.25s ease;
}

.partner-logo svg {
  width: 160px;
  height: 40px;
  display: block;
}

.partner-logo:hover { color: var(--color-text); }

/* ── CTA — full-bleed image ───────────────────────────────────────────────── */
.cta-new {
  position: relative;
  padding: var(--space-32) 0;
  overflow: hidden;
}

.cta-new__bg { position: absolute; inset: 0; z-index: var(--z-below); }
.cta-new__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cta-new__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,22,35,0.90) 0%, rgba(29,61,155,0.78) 100%); }

.cta-new__inner { position: relative; z-index: var(--z-base); text-align: center; max-width: 720px; margin: 0 auto; }

.cta-new__headline {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--weight-black);
  color: white;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: var(--space-4) 0 var(--space-5);
}

.cta-new__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.70);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
}

.cta-new__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; align-items: center; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
#site-footer { background: var(--color-bg-darker); color: rgba(255,255,255,0.75); }

.footer__main { padding: var(--space-20) 0 var(--space-12); border-bottom: 1px solid rgba(255,255,255,0.06); }

.footer__grid { display: grid; grid-template-columns: 360px repeat(3, 1fr); gap: var(--space-10); }

.footer__brand { display: flex; flex-direction: column; gap: var(--space-5); }

.footer__logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }

.footer__tagline { font-size: var(--text-sm); line-height: var(--leading-relaxed); color: rgba(255,255,255,0.50); max-width: 280px; }

.footer__social { display: flex; gap: var(--space-3); margin-top: var(--space-2); }

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer__social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.55); transition: fill var(--transition-base); }
.footer__social-link:hover { background: var(--primary); border-color: var(--primary); }
.footer__social-link:hover svg { fill: white; }

.footer__col-title {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  display: block;
  margin-bottom: var(--space-5);
}

.footer__links { display: flex; flex-direction: column; gap: var(--space-3); list-style: none; }

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__link::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.footer__link:hover { color: white; }
.footer__link:hover::before { opacity: 1; }

.footer__contact-item { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-sm); color: rgba(255,255,255,0.50); margin-bottom: var(--space-3); }

.footer__contact-item svg { width: 16px; height: 16px; stroke: var(--secondary); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }

.footer__bar { padding: var(--space-5) 0; }

.footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); }

.footer__copyright { font-size: var(--text-xs); color: rgba(255,255,255,0.28); }

.footer__legal-links { display: flex; gap: var(--space-5); list-style: none; }

.footer__legal-link { font-size: var(--text-xs); color: rgba(255,255,255,0.28); text-decoration: none; transition: color var(--transition-fast); }
.footer__legal-link:hover { color: rgba(255,255,255,0.60); }

/* ═══════════════════════════════════════════════════════════════════════════
   INNER PAGE UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════ */

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  font-weight: var(--weight-black);
  color: var(--color-text);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-5);
}

.section-sub {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
}

/* ═══════════════════════════════════════════════════════════════════════════
   INNER PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Inner Page Hero Banner ───────────────────────────────────────────────── */
.inner-hero {
  position: relative;
  background: var(--color-bg-dark);
  padding: calc(72px + var(--space-20)) 0 var(--space-20);
  overflow: hidden;
}

.inner-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.inner-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}

/* Dark gradient sits INSIDE the bg layer so it can never overlap text */
.inner-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,22,35,0.55) 0%, rgba(15,22,35,0.78) 60%, rgba(15,22,35,0.92) 100%),
    linear-gradient(90deg, rgba(15,22,35,0.55) 0%, transparent 45%);
  pointer-events: none;
}

.inner-hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(29,61,155,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(245,166,35,0.10) 0%, transparent 50%);
}

.inner-hero__content {
  position: relative;
  z-index: 2;
}

.inner-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-5);
}

.inner-hero__breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color var(--transition-fast); }
.inner-hero__breadcrumb a:hover { color: var(--secondary); }
.inner-hero__breadcrumb-sep { color: rgba(255,255,255,0.25); }

.inner-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: var(--weight-black);
  color: white;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-5);
}

.inner-hero__sub {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.65);
  line-height: var(--leading-relaxed);
  max-width: 600px;
}

/* ── About Page ───────────────────────────────────────────────────────────── */
.about-mission {
  background: var(--color-bg);
}

.about-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.about-mission__text h2 { margin-bottom: var(--space-6); }

.about-mission__text p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.about-mission__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.about-mission__img img { width: 100%; height: 100%; object-fit: cover; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-16);
}

.value-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-slow);
}

.value-card:hover .value-card__title { color: var(--primary); }

.value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: all var(--transition-slow);
}

.value-card:hover .value-card__icon { background: var(--primary); }

.value-card__icon svg { width: 26px; height: 26px; stroke: var(--primary); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--transition-slow); }
.value-card:hover .value-card__icon svg { stroke: white; }

.value-card__title { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: var(--weight-bold); color: var(--color-text); margin-bottom: var(--space-3); }
.value-card__desc { font-size: var(--text-base); line-height: var(--leading-relaxed); color: var(--color-text-muted); }

/* Timeline */
.about-timeline { background: var(--color-bg-alt); }

.about-timeline__track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-12);
}

.about-timeline__track::before {
  content: '';
  position: absolute;
  left: calc(140px + var(--space-6));
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--color-primary-200) 10%, var(--color-primary-200) 90%, transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px var(--space-12) 1fr;
  gap: 0;
  align-items: flex-start;
  padding: var(--space-8) 0;
  position: relative;
}

.timeline-item__year {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-black);
  color: var(--primary);
  text-align: right;
  padding-top: var(--space-1);
  padding-right: var(--space-6);
}

.timeline-item__dot-col {
  display: flex;
  justify-content: center;
  padding-top: var(--space-2);
  position: relative;
  z-index: 1;
}

.timeline-item__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--color-primary-200);
  flex-shrink: 0;
}

.timeline-item__body { padding-left: var(--space-6); padding-bottom: var(--space-4); }
.timeline-item__body h4 { font-size: var(--text-lg); font-weight: var(--weight-bold); color: var(--color-text); margin-bottom: var(--space-2); }
.timeline-item__body p { font-size: var(--text-base); line-height: var(--leading-relaxed); color: var(--color-text-muted); }

/* Region presence — typographic row layout (no boxy cards) */
.about-regions { background: var(--color-bg-dark); padding: var(--space-24) 0; color: white; }

.about-regions__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: end;
  margin-bottom: var(--space-16);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.about-regions__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: var(--weight-black);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
  margin: var(--space-3) 0 0;
}

.about-regions__intro p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-8);
}

.about-regions__total {
  display: flex;
  align-items: baseline;
  gap: var(--space-5);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.10);
}

.about-regions__total-num {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: var(--weight-black);
  color: var(--secondary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.about-regions__total-num span { color: rgba(245,166,35,0.55); font-size: 0.6em; }

.about-regions__total-lbl {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.50);
  line-height: var(--leading-snug);
  max-width: 240px;
}

.about-regions__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.region-row {
  display: grid;
  grid-template-columns: 56px 1.3fr 1.6fr 2fr 1.4fr;
  align-items: baseline;
  gap: var(--space-8);
  padding: var(--space-8) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background-color 0.35s ease;
}
.region-row:last-child { border-bottom: 0; }
.region-row:hover { background: rgba(255,255,255,0.02); }

.region-row__no {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-black);
  color: var(--secondary);
  letter-spacing: 0.08em;
}

.region-row__name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: white;
  letter-spacing: -0.01em;
}

.region-row__cities {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
  line-height: var(--leading-snug);
}

.region-row__lane {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.50);
  line-height: var(--leading-relaxed);
}

.region-row__stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.region-row__stat {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.region-row__stat strong {
  font-family: var(--font-heading);
  font-weight: var(--weight-black);
  color: white;
  margin-right: var(--space-1);
}

/* ── Services Page ────────────────────────────────────────────────────────── */
.services-detail { background: var(--color-bg); }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding: var(--space-20) 0;
  border-bottom: 1px solid var(--color-border);
}

.service-block:last-child { border-bottom: none; }

.service-block.service-block--reverse { direction: rtl; }
.service-block.service-block--reverse > * { direction: ltr; }

.service-block__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-xl);
}

.service-block__media img { width: 100%; height: 100%; object-fit: cover; }

.service-block__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-4);
}

.service-block__title { font-size: var(--text-3xl); font-weight: var(--weight-bold); color: var(--color-text); margin-bottom: var(--space-5); }
.service-block__body { font-size: var(--text-lg); line-height: var(--leading-relaxed); color: var(--color-text-muted); margin-bottom: var(--space-6); }

.service-block__features { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-8); }

.service-block__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.service-block__features li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--color-primary-50);
  border: 1px solid var(--color-primary-200);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D3D9B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Why choose us */
.why-uoe { background: var(--color-bg-alt); }

.why-uoe__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); margin-top: var(--space-12); }

.why-card { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-8) var(--space-6); text-align: center; transition: all var(--transition-slow); }
.why-card:hover { border-color: var(--color-primary-200); }
.why-card:hover .why-card__num { color: var(--secondary); }

.why-card__num { font-family: var(--font-heading); font-size: var(--text-5xl); font-weight: var(--weight-black); color: var(--color-primary-100); line-height: 1; display: block; margin-bottom: var(--space-4); }
.why-card__title { font-family: var(--font-heading); font-size: var(--text-lg); font-weight: var(--weight-bold); color: var(--color-text); margin-bottom: var(--space-3); }
.why-card__desc { font-size: var(--text-sm); line-height: var(--leading-relaxed); color: var(--color-text-muted); }

/* ── Contact Page ─────────────────────────────────────────────────────────── */
.contact-layout { background: var(--color-bg); }

.contact-layout__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-16);
  align-items: start;
}

/* Contact form */
.contact-form { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-10); box-shadow: var(--shadow-md); }

.contact-form__title { font-family: var(--font-heading); font-size: var(--text-2xl); font-weight: var(--weight-bold); color: var(--color-text); margin-bottom: var(--space-2); }
.contact-form__sub { font-size: var(--text-base); color: var(--color-text-muted); margin-bottom: var(--space-8); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }

.form-group { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
.form-group:last-child { margin-bottom: 0; }

.form-label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  letter-spacing: var(--tracking-wide);
}

.form-input,
.form-select,
.form-textarea {
  padding: var(--space-4) var(--space-5);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  width: 100%;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,61,155,0.1);
}

.form-textarea { resize: vertical; min-height: 140px; line-height: var(--leading-relaxed); }

.form-submit { width: 100%; justify-content: center; margin-top: var(--space-2); }

/* Contact info sidebar */
.contact-info { display: flex; flex-direction: column; gap: var(--space-5); }

.contact-info-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  transition: all var(--transition-base);
}

.contact-info-card:hover { border-color: var(--primary); background: var(--color-primary-50); }

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-base);
}

.contact-info-card:hover .contact-info-card__icon { background: var(--primary); }

.contact-info-card__icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--transition-base); }
.contact-info-card:hover .contact-info-card__icon svg { stroke: white; }

.contact-info-card__label { font-family: var(--font-heading); font-size: var(--text-xs); font-weight: var(--weight-semibold); letter-spacing: var(--tracking-widest); text-transform: uppercase; color: var(--color-text-muted); display: block; margin-bottom: var(--space-1); }
.contact-info-card__value { font-size: var(--text-base); font-weight: var(--weight-medium); color: var(--color-text); line-height: var(--leading-snug); }

/* Office cards */
.offices { background: var(--color-bg-alt); }

.offices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); margin-top: var(--space-12); }

.office-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.office-card:hover::before { transform: scaleX(1); }
.office-card:hover .office-card__city { color: var(--primary); }

.office-card__flag { font-size: 2rem; display: block; margin-bottom: var(--space-4); }
.office-card__city { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: var(--weight-bold); color: var(--color-text); margin-bottom: var(--space-2); }
.office-card__role { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--secondary); letter-spacing: var(--tracking-wide); text-transform: uppercase; margin-bottom: var(--space-4); display: block; }
.office-card__address { font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--leading-relaxed); }

/* ── Service Detail Page (template-service-detail.php) ───────────────────── */
.service-lead { background: var(--color-bg); padding: var(--space-20) 0; border-bottom: 1px solid var(--color-border); }

.service-lead__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.service-lead__body {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-8);
}

.service-lead__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); }

.service-lead__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-1);
  background: var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-spec {
  background: var(--color-bg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: background var(--transition-base);
}
.service-spec:hover { background: var(--color-primary-50); }

.service-spec__val {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  font-weight: var(--weight-black);
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.service-spec__lbl {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

/* Features grid */
.service-features { background: var(--color-bg-alt); }

.service-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.service-feature {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-slow);
}
.service-feature:hover {
  border-color: var(--color-primary-200);
}
.service-feature:hover .service-feature__title { color: var(--primary); }

.service-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: all var(--transition-slow);
}
.service-feature:hover .service-feature__icon { background: var(--primary); }

.service-feature__icon svg { width: 24px; height: 24px; stroke: var(--primary); transition: stroke var(--transition-slow); }
.service-feature:hover .service-feature__icon svg { stroke: white; }

.service-feature__title { font-family: var(--font-heading); font-size: var(--text-lg); font-weight: var(--weight-bold); color: var(--color-text); margin-bottom: var(--space-3); }
.service-feature__desc { font-size: var(--text-sm); line-height: var(--leading-relaxed); color: var(--color-text-muted); }

/* Process timeline (numbered) */
.service-process { background: var(--color-bg-dark); padding: var(--space-20) 0; color: white; }

.service-process .section-eyebrow { color: var(--secondary); }
.service-process .section-title { color: white; }
.service-process .section-sub { color: rgba(255,255,255,0.60); }

.service-process__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-12);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.service-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-8);
  align-items: flex-start;
  padding: var(--space-8) var(--space-6);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
}

.service-step:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--secondary);
}

.service-step__num {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--weight-black);
  color: var(--secondary);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
}

.service-step__title { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: var(--weight-bold); color: white; margin-bottom: var(--space-2); }
.service-step__desc { font-size: var(--text-base); line-height: var(--leading-relaxed); color: rgba(255,255,255,0.65); }

/* Related services */
.service-related { background: var(--color-bg); }

.service-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.service-related-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--transition-slow);
}
.service-related-card:hover {
  border-color: var(--color-primary-200);
}
.service-related-card:hover .service-related-card__title { color: var(--primary); }

.service-related-card__media {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-related-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
/* image scale-on-hover removed for cleaner feel */

.service-related-card__body { padding: var(--space-6); }
.service-related-card__eyebrow { font-family: var(--font-heading); font-size: var(--text-xs); font-weight: var(--weight-semibold); letter-spacing: var(--tracking-widest); text-transform: uppercase; color: var(--secondary); display: block; margin-bottom: var(--space-3); }
.service-related-card__title { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: var(--weight-bold); color: var(--color-text); margin-bottom: var(--space-4); }
.service-related-card__link { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--primary); }

/* ── Elementor takeover wrap ─────────────────────────────────────────────── */
/* Clearance for the fixed header when Elementor content is rendered.
   Elementor's own sections handle their internal spacing; we just clear 72px header height. */
.uoe-elementor-wrap {
  padding-top: 72px;
  background: var(--color-bg);
}

/* ── Default page.php ─────────────────────────────────────────────────────── */
.page-content-wrap {
  background: var(--color-bg);
  padding: var(--space-20) 0;
}

.page-content-wrap .entry-content h1,
.page-content-wrap .entry-content h2,
.page-content-wrap .entry-content h3 { margin-bottom: var(--space-4); margin-top: var(--space-8); }

.page-content-wrap .entry-content p { margin-bottom: var(--space-4); font-size: var(--text-base); line-height: var(--leading-relaxed); color: var(--color-text-muted); }

/* Inner page CTA strip */
.inner-cta {
  background: var(--primary);
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 0% 50%, rgba(245,166,35,0.15), transparent 60%),
              radial-gradient(ellipse 60% 100% at 100% 50%, rgba(165,94,26,0.12), transparent 60%);
}

.inner-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.inner-cta__title { font-family: var(--font-heading); font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl)); font-weight: var(--weight-black); color: white; margin: var(--space-3) 0 var(--space-5); line-height: var(--leading-tight); }
.inner-cta__sub { font-size: var(--text-lg); color: rgba(255,255,255,0.70); margin-bottom: var(--space-8); }
.inner-cta__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
/* Breakpoints (desktop-first, large → small):
   1200px  — small desktop / large tablet landscape
   1024px  — tablet landscape (mobile nav engages here)
   768px   — tablet portrait
   600px   — large phone
   480px   — small phone                                                  */

/* ── 1200px ───────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root {
    --section-py:    var(--space-20);
    --section-py-sm: var(--space-12);
  }

  .hero-split__left { padding-left: var(--gutter-md); padding-right: var(--gutter-md); }

  .stats-new__inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .stats-new__label { text-align: center; }
  .stats-new__heading { max-width: 100%; font-size: var(--text-4xl); }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }

  .testimonials-new__layout { grid-template-columns: 1fr; gap: var(--space-10); }
  .testimonials-new__left { position: static; }
  .testimonials-new__left .divider { display: block; }

  .coverage-new__layout { grid-template-columns: 1fr; }
  .coverage-tabs { grid-column: 1; grid-row: 1; flex-direction: row; flex-wrap: wrap; }
  .coverage-new__map-wrap { grid-column: 1; grid-row: 2; }
  .coverage-panel { grid-column: 1; grid-row: 3; }

  .about-mission__grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .contact-layout__grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .services-detail .service-block { grid-template-columns: 1fr; gap: var(--space-10); }
  .services-detail .service-block--reverse { direction: ltr; }
  .why-uoe__grid { grid-template-columns: repeat(2, 1fr); }
  .offices__grid { grid-template-columns: 1fr 1fr; }
  .about-regions__head { grid-template-columns: 1fr; gap: var(--space-8); align-items: start; }
  .region-row { grid-template-columns: 40px 1fr 1.2fr; row-gap: var(--space-2); }
  .region-row__lane { grid-column: 2 / -1; }
  .region-row__stats { grid-column: 2 / -1; flex-direction: row; gap: var(--space-6); text-align: left; }

  .service-lead__grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .service-features__grid { grid-template-columns: repeat(2, 1fr); }
  .service-related__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 1024px (tablet landscape — mobile nav engages) ────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-py:    var(--space-16);
    --section-py-sm: var(--space-10);
    --gutter:        var(--space-5);
    --gutter-md:     var(--space-6);
  }

  .hero-split { grid-template-columns: 1fr; min-height: auto; margin-top: 68px; }
  .hero-split__left { padding: var(--space-14) var(--gutter) var(--space-12); order: 2; }
  .hero-split__content { max-width: 100%; }
  .hero-split__right { height: 55vw; min-height: 380px; order: 1; }
  .hero-split__title { font-size: clamp(2rem, 6vw, 3.25rem); }
  .hero-split__sub { font-size: var(--text-base); }

  .inner-hero { min-height: 360px; }
  .inner-hero__title { font-size: clamp(1.875rem, 5vw, 2.75rem); }
  .inner-hero__sub { font-size: var(--text-base); }

  .about-new__grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .about-new__img-secondary { right: var(--space-4); }
  .about-new__years-badge { left: var(--space-4); }

  .services-new__grid { grid-template-columns: repeat(2, 1fr); }
  .services-new__header { flex-direction: column; align-items: flex-start; }
  .services-new__header p { max-width: 100%; }

  .stats-new__grid { grid-template-columns: repeat(2, 1fr); }

  .process-new__steps { grid-template-columns: repeat(2, 1fr); }
  .process-new__steps::before { display: none; }

  .values-grid { grid-template-columns: 1fr 1fr; }

  .partners-new__logos { grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

  .header__cta { display: none; }
  .header__nav { display: none; }
  .header__toggle { display: flex; }
  .header__mobile-nav { display: block; }

  .section-title { font-size: clamp(1.5rem, 4vw, 2.25rem); }
}

/* ── 768px (tablet portrait) ───────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-py:    var(--space-12);
    --section-py-sm: var(--space-8);
  }

  body { font-size: 15px; }

  .container,
  .container-wide,
  .container-mid {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  /* Hero & inner-hero */
  .hero-split__stats { flex-wrap: wrap; gap: var(--space-6); justify-content: flex-start; }
  .hero-split__stat { flex: 1 1 calc(50% - var(--space-3)); min-width: 0; }
  .hero-split__left { padding: var(--space-12) var(--gutter) var(--space-10); }
  .hero-split__right { min-height: 300px; height: 70vw; }
  .hero-split__actions { gap: var(--space-3); }

  .inner-hero { min-height: 320px; padding-top: 100px; padding-bottom: var(--space-12); }
  .inner-hero__title { font-size: clamp(1.625rem, 6vw, 2.25rem); line-height: 1.15; }
  .inner-hero__sub { font-size: var(--text-base); }
  .inner-hero__breadcrumb { font-size: var(--text-xs); }

  /* Grids collapse to single column */
  .services-new__grid { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .stats-new__grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .process-new__steps { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .partners-new__logos { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__bar-inner { flex-direction: column; text-align: center; gap: var(--space-3); }

  /* Map */
  #leaflet-map { height: 320px; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .why-uoe__grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .about-regions__grid { grid-template-columns: 1fr 1fr; }
  .offices__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* About timeline becomes single column */
  .about-timeline__track::before { display: none; }
  .timeline-item { grid-template-columns: auto 1fr; grid-template-rows: auto auto; gap: var(--space-3); }
  .timeline-item__year { grid-column: 1; grid-row: 1; text-align: left; padding-right: 0; }
  .timeline-item__dot-col { display: none; }
  .timeline-item__body { grid-column: 1 / 3; grid-row: 2; padding-left: 0; }

  /* Region rows tighten up */
  .region-row { grid-template-columns: 32px 1fr; gap: var(--space-3); padding: var(--space-5) 0; }
  .region-row__no { font-size: var(--text-base); }
  .region-row__cities,
  .region-row__lane,
  .region-row__stats { grid-column: 2; }

  /* Service detail page */
  .service-features__grid { grid-template-columns: 1fr; }
  .service-related__grid { grid-template-columns: 1fr; }
  .service-step { grid-template-columns: 56px 1fr; gap: var(--space-4); padding: var(--space-5); }
  .service-step__num { font-size: var(--text-3xl); }
  .service-lead__specs { grid-template-columns: 1fr 1fr; gap: var(--space-4); }

  /* Section titles smaller */
  .section-title { font-size: clamp(1.375rem, 5vw, 1.875rem); line-height: 1.2; }
  .section-eyebrow { font-size: var(--text-xs); }
  .section-sub { font-size: var(--text-base); }

  /* CTAs */
  .cta-new__title,
  .inner-cta__title { font-size: clamp(1.5rem, 5vw, 2.25rem); }

  /* Coverage tabs scroll horizontally on tablet */
  .coverage-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: var(--space-2); -webkit-overflow-scrolling: touch; }
  .coverage-tabs::-webkit-scrollbar { display: none; }
  .coverage-tab { flex-shrink: 0; }
}

/* ── 600px (large phone) ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .stats-new__grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .stat-new__val { font-size: clamp(2.25rem, 9vw, 3rem); }
  .stat-new__lbl { font-size: var(--text-xs); }

  .why-uoe__grid { grid-template-columns: 1fr; }
  .about-regions__grid { grid-template-columns: 1fr; }
  .partners-new__logos { grid-template-columns: repeat(2, 1fr); }

  .hero-split__stat { flex: 1 1 100%; }

  /* Touch targets — at least 44px */
  .header__toggle,
  .btn,
  .header__mobile-nav a,
  .footer__nav a { min-height: 44px; display: inline-flex; align-items: center; }

  /* Buttons full-width by default on small phones */
  .btn { padding: var(--space-4) var(--space-6); font-size: var(--text-sm); }
}

/* ── 480px (small phone) ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --section-py:    var(--space-10);
    --section-py-sm: var(--space-8);
    --gutter:        var(--space-4);
  }

  body { font-size: 14.5px; }

  .container,
  .container-wide,
  .container-mid {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  /* Hero */
  .hero-split__actions { flex-direction: column; align-items: stretch; }
  .hero-split__actions .btn { justify-content: center; width: 100%; }
  .hero-split__title { font-size: clamp(1.625rem, 8vw, 2.25rem); line-height: 1.15; }
  .hero-split__eyebrow { font-size: var(--text-xs); }

  /* Inner-hero */
  .inner-hero__title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .inner-hero__sub { font-size: var(--text-sm); }

  /* Stats single col */
  .stats-new__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .stat-new__val { font-size: var(--text-5xl); }

  /* Process single col */
  .process-new__steps { grid-template-columns: 1fr; gap: var(--space-8); }
  .process-new__steps::before { display: none; }

  /* Service detail */
  .service-lead__specs { grid-template-columns: 1fr; }
  .service-step { padding: var(--space-4); }

  /* CTAs stack */
  .cta-new__actions,
  .inner-cta__actions { flex-direction: column; align-items: stretch; }
  .cta-new__actions .btn,
  .inner-cta__actions .btn { justify-content: center; width: 100%; }

  /* Tighter section title */
  .section-title { font-size: clamp(1.25rem, 6vw, 1.625rem); }
  .cta-new__title,
  .inner-cta__title { font-size: clamp(1.375rem, 7vw, 1.875rem); }

  /* Footer stack */
  .footer__contact-item { font-size: var(--text-sm); }
  .footer__bottom { font-size: var(--text-xs); }

  /* Map shorter */
  #leaflet-map { height: 280px; }

  /* Buttons full width on smallest phones */
  .btn { width: 100%; justify-content: center; }
  .hero-split__actions .btn,
  .cta-new__actions .btn,
  .inner-cta__actions .btn { width: 100%; }
}

/* ── Touch device hints ──────────────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover-only effects on touch devices */
  .svc-card:hover,
  .value-card:hover,
  .office-card:hover { transform: none; }
}

/* ── Reduced motion accessibility ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .sr-hidden,
  .sr-visible {
    transition: none;
  }
  .sr-hidden {
    opacity: 1;
    transform: none;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
