/* ========================================
   GMS Corporate Services — Redesigned
   ======================================== */

:root {
  --blue-primary: #A4292B;
  --blue-dark: #6E1C22;
  --navy: #1A2E4A;
  --navy-deep: #111D2E;
  --maroon-deep: #2A0F15;
  --maroon-dark: #3D1620;
  --red-accent: #A4292B;
  --green-accent: #2F6448;
  --charcoal: #2D2D2D;
  --charcoal-light: #4A4A4A;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --grey-light: #E5E7EB;
  --grey-mid: #9CA3AF;
  --grey-dark: #6B7280;

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --container-max: 1600px;
  --hero-inset: 14px;
  --page-padding: clamp(46px, calc(var(--hero-inset) + 5vw), 70px);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-semi);
  line-height: 1.25;
  color: var(--charcoal);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: var(--fw-bold);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
}

h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: var(--fw-semi); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); font-weight: var(--fw-semi); }

p {
  color: var(--charcoal-light);
  line-height: 1.75;
}

.label {
  font-size: 0.78rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-primary);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  min-width: 180px;
  font-weight: var(--fw-semi);
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-base), box-shadow var(--transition-base), color var(--transition-base), padding var(--transition-base);
  white-space: nowrap;
  position: relative;
  text-align: center;
}

.btn::after {
  content: '\2192';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  opacity: 0;
  transition: opacity var(--transition-base), transform var(--transition-base);
  font-size: 1.05em;
}

.btn:hover {
  padding-left: 20px;
  padding-right: 36px;
}

.btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.btn--primary {
  background: var(--blue-primary);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--blue-dark);
  box-shadow: var(--shadow-md);
}

.btn--outline-dark {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}
.btn--outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  font-weight: var(--fw-bold);
}
.btn--white:hover {
  background: var(--off-white);
  box-shadow: var(--shadow-md);
}

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

.btn--red {
  background: var(--red-accent);
  color: var(--white);
  font-weight: var(--fw-semi);
}
.btn--red:hover {
  background: #8B2224;
  box-shadow: var(--shadow-md);
}

/* ==================================
   NAVBAR — Glassmorphism, floating
   ================================== */
.navbar {
  position: fixed;
  top: calc(var(--hero-inset) + 24px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--page-padding) * 2);
  max-width: calc(var(--container-max) - var(--page-padding) * 2);
  z-index: 1000;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  background: rgba(30, 40, 60, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.navbar--scrolled {
  top: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.navbar__logo svg { height: 36px; width: auto; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Only top-level nav links — avoid styling mega-menu links (white on white) */
.navbar__links > a {
  font-size: 0.88rem;
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-fast);
}
.navbar__links > a:hover,
.navbar__links > a.active { color: var(--white); }

.navbar--scrolled .navbar__links > a { color: var(--charcoal-light); }
.navbar--scrolled .navbar__links > a:hover,
.navbar--scrolled .navbar__links > a.active { color: var(--charcoal); }

/* --- Mega-menu dropdown --- */
.navbar__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar__dropdown-trigger {
  font-size: 0.88rem;
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-fast);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  /* Reset native button so this works as both <a> and <button> */
  background: transparent;
  border: 0;
  padding: 0;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  -webkit-appearance: none;
          appearance: none;
}
.navbar__dropdown-trigger:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 6px;
  border-radius: 4px;
}
/* Dropdown affordance (active-page dot uses ::before so ::after stays free for chevron) */
.navbar__dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 7px;
  margin-bottom: 3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.88;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.navbar__dropdown.is-open .navbar__dropdown-trigger::after {
  transform: rotate(225deg);
  margin-bottom: 1px;
  opacity: 1;
}
.navbar__dropdown-trigger:hover,
.navbar__dropdown-trigger.active { color: var(--white); }
.navbar--scrolled .navbar__dropdown-trigger { color: var(--charcoal-light); }
.navbar--scrolled .navbar__dropdown-trigger:hover,
.navbar--scrolled .navbar__dropdown-trigger.active { color: var(--charcoal); }

.navbar__mega-menu {
  position: absolute;
  /* top: 100% keeps the menu element directly attached to the trigger so
     there is NO dead-zone for the mouse. The visible card is offset down
     via top padding + the ::before below, preserving the original look. */
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--charcoal);
  background: transparent;
  padding: 46px 32px 28px; /* 18px gap + 28px original = 46px */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  min-width: 640px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  z-index: 1101;
}
/* The visible white card lives in a pseudo-element so the surrounding
   element can extend up to the trigger without showing background there. */
.navbar__mega-menu::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  z-index: -1;
}

.navbar__dropdown:hover .navbar__mega-menu,
.navbar__dropdown.is-open .navbar__mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu__group {}

.mega-menu__category {
  display: block;
  font-size: 0.82rem;
  font-weight: var(--fw-bold);
  color: var(--charcoal);
  letter-spacing: 0.02em;
  padding: 8px 10px 10px;
  margin: -8px -10px 12px;
  border-bottom: 1px solid var(--grey-light);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.mega-menu__category:hover {
  color: var(--blue-primary);
  background: rgba(164, 41, 43, 0.06);
}

.mega-menu__services {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mega-menu__group:hover .mega-menu__services,
.mega-menu__group.is-expanded .mega-menu__services {
  max-height: 300px;
}

.mega-menu__services a {
  font-size: 0.82rem;
  font-weight: var(--fw-regular);
  color: var(--charcoal-light);
  padding: 6px 10px;
  margin: 0 -10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.mega-menu__services a:hover {
  color: var(--blue-primary);
  background: rgba(164, 41, 43, 0.06);
}

/* Desktop: show all sub-links at once (standard mega-menu scan pattern) */
@media (min-width: 769px) {
  .mega-menu__services {
    max-height: none;
    overflow: visible;
    padding-top: 4px;
  }
}

/* Active page indicator dot */
.navbar__links > a,
.navbar__dropdown-trigger {
  position: relative;
}
.navbar__links > a.active::after,
.navbar__dropdown-trigger.active::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.95;
}

.navbar__cta .btn {
  padding: 9px 24px;
  font-size: 0.85rem;
  min-width: 140px;
}
.navbar__cta .btn:hover {
  padding-left: 16px;
  padding-right: 32px;
}
.navbar__cta .btn::after {
  right: 14px;
  font-size: 0.95em;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}
.navbar__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--transition-base);
}
.navbar--scrolled .navbar__hamburger span { background: var(--charcoal); }
.navbar__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed; inset: 0; background: var(--navy-deep);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity var(--transition-base);
  overflow-y: auto;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav > a { font-size: 1.4rem; font-weight: var(--fw-semi); color: var(--white); }
.mobile-nav > a:hover { color: var(--red-accent); }

/* Mobile accordion for Services dropdown */
.mobile-nav__accordion {
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.mobile-nav__accordion-trigger {
  font-size: 1.4rem;
  font-weight: var(--fw-semi);
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mobile-nav__accordion-trigger:hover { color: var(--red-accent); }

.mobile-nav__accordion-trigger .chevron {
  font-size: 0.7em;
  transition: transform var(--transition-base);
}
.mobile-nav__accordion-trigger.is-open .chevron {
  transform: rotate(180deg);
}

.mobile-nav__accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}
.mobile-nav__accordion-panel.is-open {
  max-height: 600px;
  padding-top: 16px;
}

.mobile-nav__view-all {
  font-size: 0.95rem;
  font-weight: var(--fw-semi);
  color: var(--red-accent) !important;
  margin-bottom: 8px;
}

.mobile-nav__group-label {
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.mobile-nav__accordion-panel a {
  font-size: 1rem;
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.8);
}
.mobile-nav__accordion-panel a:hover { color: var(--red-accent); }

/* ==================================
   HERO — Inset with white border, rounded all corners
   ================================== */
.hero-wrapper {
  padding: var(--hero-inset);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--hero-inset) * 2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

/* Hero carousel — zoom-slide transition */
.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 6s ease-out;
  z-index: 1;
  will-change: opacity, transform;
}

.hero-carousel__slide--active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-carousel__slide--exiting {
  opacity: 0;
  transform: scale(1.04) translateX(-3%);
  transition: opacity 1.4s ease, transform 1.4s ease;
  z-index: 3;
}

.hero-carousel__slide--gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 30, 0.35) 0%, rgba(10, 15, 30, 0.55) 60%, rgba(10, 15, 30, 0.7) 100%);
  pointer-events: none;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Make ship more visible in slide 1 (mobile crop focus) */
.hero-carousel__slide[data-slide="0"] img {
  object-position: 50% 70%;
}

@media (max-width: 768px) {
  .hero-carousel__slide[data-slide="0"] img { object-position: 50% 80%; }
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 var(--page-padding) clamp(72px, 8vw, 96px);
  width: 100%;
}

.hero__heading {
  margin-bottom: 48px;
}

.hero__heading .line1 {
  display: block;
  color: var(--white);
  font-size: clamp(3.5rem, 8.5vw, 7rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: left;
}

.hero__heading .line2 {
  display: block;
  color: var(--white);
  font-size: clamp(5.5rem, 13vw, 11rem);
  font-weight: var(--fw-extrabold);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-align: left;
  padding-left: 20%;
}

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero__bottom--no-stats {
  justify-content: flex-end;
}

.hero__bottom--no-stats .hero__meta {
  max-width: 420px;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
}

.hero__stat-number {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: var(--fw-regular);
  font-style: italic;
}

.hero__meta {
  text-align: right;
  max-width: 320px;
}

.hero__subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero bottom content animation */
.hero__bottom,
.hero__scroll-hint {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero--final .hero__bottom,
.hero--final .hero__scroll-hint {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 4;
}

.hero--final .hero__scroll-hint {
  transform: translateX(-50%) translateY(0);
}

.hero__scroll-hint span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
}

.hero__scroll-hint .scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-hint .scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ==================================
   SECTION — Split header layout
   ================================== */
.section {
  padding: 100px 0;
}

.section--grey { background: var(--off-white); }
.section--dark {
  background: var(--navy-deep);
  color: var(--white);
}

.section-header-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.section-header-split .label {
  margin-bottom: 12px;
  display: block;
}

.section-header-split h2 {
  margin: 0;
}

.section-header-split p {
  font-size: 1.05rem;
  color: var(--grey-dark);
  max-width: 480px;
}

/* ==================================
   SERVICE CARDS — Image cutout style
   ================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-light);
  overflow: visible;
  position: relative;
  transition: all var(--transition-base);
  padding-top: 100px;
}

.section--grey .service-card {
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

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

.service-card__image {
  position: absolute;
  top: -32px;
  left: 24px;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* Household relocation (wide exterior shot): bias toward movers + truck */
.service-card__image--household img {
  object-position: 58% 46%;
}

/* Variant: artwork (transparent PNG) — let it breathe and add a subtle float */
.service-card__image--artwork {
  background: linear-gradient(135deg, #f4f7fb 0%, #e9eef5 100%);
  box-shadow: var(--shadow-md);
}
.service-card__image--artwork img {
  object-fit: contain;
  padding: 8px;
  will-change: transform;
  animation: artworkFloat 4.2s ease-in-out infinite;
}
.service-card:hover .service-card__image--artwork img {
  animation-duration: 2.6s;
}

@keyframes artworkFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-6px) rotate(-0.6deg); }
}

@media (prefers-reduced-motion: reduce) {
  .service-card__image--artwork img { animation: none; }
}

.service-card__body {
  padding: 0 28px 36px;
}

.service-card__body h3 { margin-bottom: 10px; }

.service-card__body p {
  font-size: 0.92rem;
  color: var(--grey-dark);
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: var(--fw-semi);
  color: var(--blue-primary);
  transition: gap var(--transition-fast);
}
.service-card__link:hover { gap: 10px; }

.service-card__link {
  text-decoration: none;
  cursor: pointer;
}

/* ==================================
   TEXT EFFECTS — Overlapping large text
   ================================== */
.text-effect-section {
  position: relative;
  overflow: hidden;
}

.text-effect-bg {
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: var(--fw-black);
  line-height: 0.9;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 1.5px rgba(164, 41, 43, 0.15);
  color: transparent;
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.text-effect-section .container {
  position: relative;
  z-index: 1;
}

/* Image-clipped text */
.text-image-clip {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: var(--fw-black);
  line-height: 1;
  letter-spacing: -0.04em;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Outlined text */
.text-outline {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: var(--fw-black);
  letter-spacing: -0.04em;
  -webkit-text-stroke: 2px var(--charcoal);
  color: transparent;
  line-height: 1;
}

.text-outline--light {
  -webkit-text-stroke-color: rgba(255,255,255,0.2);
}

/* ==================================
   WHY GMS — Split layout
   ================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  border-radius: var(--radius-lg);
  display: block;
}

.split__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--blue-primary);
  color: var(--white);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transform: rotate(-6deg);
  border: 3px dashed rgba(255,255,255,0.4);
  outline: 3px solid var(--blue-primary);
  outline-offset: -6px;
}

.split__badge .number {
  font-size: 2.2rem;
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  display: block;
}

.split__badge .text {
  font-size: 0.68rem;
  font-weight: var(--fw-semi);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-top: 2px;
}

.split__content .label { margin-bottom: 12px; display: block; }
.split__content h2 { margin-bottom: 28px; }

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.trust-point {
  display: flex;
  gap: 16px;
}

.trust-point__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(164, 41, 43, 0.08);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-point h4 { margin-bottom: 4px; letter-spacing: -0.01em; }
.trust-point p { font-size: 0.9rem; color: var(--grey-dark); }

/* ==================================
   STATS STRIP
   ================================== */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
}

.stats-strip__inner {
  display: flex;
  justify-content: center;
}

.stats-strip__item {
  flex: 1;
  text-align: center;
  padding: 44px 24px;
  position: relative;
}

.stats-strip__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 48px;
  background: var(--grey-light);
}

.stats-strip__number {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: var(--fw-extrabold);
  color: var(--blue-primary);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stats-strip__label {
  font-size: 0.85rem;
  color: var(--grey-dark);
  font-weight: var(--fw-medium);
}

/* ==================================
   PROMISE
   ================================== */
.promise {
  text-align: center;
  padding: 80px 0;
  background: var(--off-white);
}

.promise__inner {
  max-width: 900px;
  margin: 0 auto;
}

.promise .label { margin-bottom: 20px; display: block; }

.promise blockquote {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: var(--fw-semi);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 20px;
}

.promise__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--grey-light);
}

.promise__author {
  font-size: 0.9rem;
  font-weight: var(--fw-semi);
  color: var(--charcoal);
  margin-top: 12px;
}

.promise__author span {
  font-weight: var(--fw-regular);
  color: var(--grey-dark);
}

.promise__note {
  font-size: 0.95rem;
  color: var(--grey-dark);
}

/* ==================================
   CTA BANNER — Split with collage
   ================================== */
.cta-banner {
  background: linear-gradient(135deg, #7A2225 0%, #2E1014 80%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: radial-gradient(ellipse at -20% 50%, rgba(164, 41, 43, 0.32) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-banner__text {
  text-align: left;
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 36px; font-size: 1.05rem; }

.cta-banner__collage {
  position: relative;
  max-height: 100%;
}

.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 280px;
}

.collage__tall {
  border-radius: var(--radius-md);
  overflow: hidden;
  grid-row: 1 / -1;
}

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

/* Movers / Clients photo: keep faces in frame when collage crops (was center 45%) */
.collage__tall--clients img {
  object-position: 48% 26%;
}

.collage__img--clients img {
  object-position: 48% 22%;
}

.collage__stack {
  display: contents;
}

.collage__img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

/* Pet collage: include a bit of floor in crop */
.collage__img img.collage__pet {
  object-position: 50% 66%;
}

/* ==================================
   PAGE HERO (About / Services)
   ================================== */
.page-hero {
  position: relative;
  min-height: clamp(500px, 70vh, 680px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 30, 0.18) 0%, rgba(24, 20, 30, 0.62) 100%);
  z-index: 2;
}

.page-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 760px;
  padding: clamp(80px, 10vw, 120px) var(--page-padding) clamp(56px, 8vw, 84px);
}

.page-hero__content .label {
  color: rgba(255,255,255,0.75);
}

.page-hero__content h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.7vw, 5rem);
  margin: 12px 0 18px;
}

.page-hero__content p {
  color: rgba(255,255,255,0.86);
  max-width: 64ch;
  margin-bottom: 30px;
}

/* ==================================
   PAGE HERO — Short variant (about)
   ================================== */
.page-hero--short {
  min-height: clamp(420px, 56vh, 640px);
}

/* About hero uses the same cargo-ship asset as homepage slide 1 — match its focal point
   so the vessel isn’t lost to empty ocean when the short hero crops wide. */
/* About hero: aerial port photo — horizon + cranes sit in the upper-middle
   band, container yard fills the lower half. Bias crop so cranes + skyline
   stay in frame inside the short/wide hero. */
.page-hero--about .page-hero__bg img {
  object-position: 50% 42%;
}

@media (max-width: 768px) {
  .page-hero--about .page-hero__bg img {
    object-position: 50% 38%;
  }
}

/* Services hero (plane + containers): bias toward top of frame so the aircraft nose isn’t clipped */
.page-hero--services .page-hero__bg img {
  object-position: 50% 24%;
}

@media (max-width: 768px) {
  .page-hero--services .page-hero__bg img {
    object-position: 48% 30%;
  }
}

.page-hero--image-only { align-items: stretch; }

/* --- Services intro (below hero) --- */
.services-intro {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(24px, 4vw, 48px);
}

.services-intro h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  margin: 0;
}

.services-intro p {
  margin-bottom: 28px;
}

/* ==================================
   ABOUT — Company Profile section
   ================================== */
.about-profile-section {
  position: relative;
  overflow: visible;
  padding-bottom: 140px;
}

/* Top row: heading left, stats right (aligned to bottom of heading) */
.about-profile-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.about-profile-top__heading .label {
  display: block;
  margin-bottom: 14px;
}

.about-profile-top__heading h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  line-height: 1.08;
}

.about-profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.about-stat {
  text-align: left;
  padding: 4px 0;
}

.about-stat strong {
  display: block;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--charcoal);
  line-height: 1.2;
}

.about-stat span {
  display: block;
  font-size: 0.72rem;
  color: var(--grey-dark);
  margin-top: 4px;
}

/* Body row: text left, images right */
.about-profile-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-profile-text h4 {
  margin-bottom: 14px;
  color: var(--charcoal);
}

.about-profile-text p {
  margin-bottom: 16px;
}

/* Three images: 2 square stacks on the left, 1 tall portrait on the right.
   Aspect-ratio locks the heights so the section doesn't balloon vertically. */
.about-profile-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: min-content;
  gap: 12px;
  align-content: start;
}

.about-profile-images img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-profile-images img:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 1 / 1;
}
.about-profile-images img:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 1 / 1;
}
.about-profile-images img:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / span 2;
  height: 100%;
  /* matches combined height of two stacked squares + 12px gap */
}

/* Smart crops for the About triptych so faces / subjects stay in frame
   when the images are forced into 1:1 squares and a tall right column. */
.about-profile-images img:nth-child(1) {
  /* Client care: keep the advisor's face + phone in frame */
  object-position: 50% 30%;
}
.about-profile-images img:nth-child(2) {
  /* Office move: subject (mover with box) sits right-of-center */
  object-position: 62% 38%;
}
.about-profile-images img:nth-child(3) {
  /* Consultation: keep the people (upper half) rather than just the table */
  object-position: 50% 38%;
}

/* Airplane — full-width wrapper sitting at the bottom of the section */
.about-airplane-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 10;
  padding: 0 var(--page-padding);
}

.about-airplane {
  position: absolute;

  width: 42%;
  max-width: 720px;
  height: auto;

  bottom: 10px;
  left: 360px;

  mix-blend-mode: screen;
  filter: brightness(1.1);

  pointer-events: none;
}

/* 4-column service grid variant */
.services-grid--four {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.services-grid--four .service-card {
  padding-top: 80px;
}

.services-grid--four .service-card__image {
  width: 96px;
  height: 96px;
}

/* 5-column service grid variant (Core Values incl. Greener Moves) */
.services-grid--five {
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.services-grid--five .service-card {
  padding-top: 72px;
}

.services-grid--five .service-card__image {
  width: 88px;
  height: 88px;
}

@media (max-width: 1100px) {
  .services-grid--five { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .services-grid--five { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 480px) {
  .services-grid--five { grid-template-columns: 1fr; gap: 32px; }
}

/* ==================================
   ABOUT — Vision / Mission strip (light tint, black text)
   ================================== */
.about-vm-strip {
  padding: 0 var(--hero-inset);
  margin: 20px 0;
}

.about-vm-strip__inner {
  background: rgba(164, 41, 43, 0.07);
  border-radius: var(--radius-xl);
  padding: 56px var(--page-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.about-vm-strip__inner h3 {
  color: var(--charcoal);
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.about-vm-strip__inner p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* ==================================
   ABOUT — Centered section header
   ================================== */
.about-center-header {
  text-align: center;
  margin-bottom: 48px;
}

.section--core-values .about-center-header {
  margin-bottom: 64px;
}

.about-center-header h2 {
  margin-bottom: 8px;
}

.about-center-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--grey-dark);
}

/* ==================================
   ABOUT — Contact split
   ================================== */
.about-contact-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.about-contact__info h2 {
  margin-bottom: 12px;
}

.about-contact__info > p {
  margin-bottom: 32px;
}

.about-contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-contact__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(164, 41, 43, 0.08);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-contact__detail strong {
  display: block;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.about-contact__detail span {
  font-size: 0.92rem;
  color: var(--grey-dark);
}

.about-contact__form {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.about-contact__form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.about-contact__form input,
.about-contact__form select,
.about-contact__form textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: border-color var(--transition-fast);
}

.about-contact__form select {
  padding-right: 36px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.about-contact__form input:focus,
.about-contact__form select:focus,
.about-contact__form textarea:focus {
  border-color: var(--blue-primary);
}

.about-contact__form textarea {
  min-height: 110px;
  resize: vertical;
  margin-bottom: 18px;
}

.about-contact__form .btn {
  width: auto;
  min-width: 180px;
  margin-left: auto;
  display: flex;
}

/* ==================================
   GLOBAL QUOTE MODAL
   ================================== */
.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.quote-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.quote-modal {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.32);
  max-width: 560px;
  width: min(560px, 100% - 32px);
  padding: 32px 32px 24px;
  position: relative;
}

.quote-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.18);
  color: var(--charcoal);
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 1;
  font-size: 22px;
  cursor: pointer;
}

.quote-modal__title {
  font-size: clamp(1.7rem, 3vw, 2rem);
  margin-bottom: 6px;
  text-align: center;
}

.quote-modal__subtitle {
  font-size: 0.98rem;
  color: var(--grey-dark);
  margin: 0 auto 20px;
  text-align: center;
  max-width: 460px;
}

.quote-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-light);
  padding: 20px 22px 18px;
}

.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: border-color var(--transition-fast);
}

.quote-form select {
  padding-right: 34px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.quote-form textarea {
  min-height: 90px;
  resize: vertical;
  margin-bottom: 12px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue-primary);
}

.quote-form__actions {
  display: flex;
  justify-content: center;
}

.quote-form__actions .btn {
  min-width: 170px;
}

.quote-modal__logo {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.quote-modal__logo img {
  height: 30px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-value-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}

.about-value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.about-value-card p {
  font-size: 0.92rem;
  color: var(--grey-dark);
}

/* ==================================
   SERVICES PAGE
   ================================== */
.services-detail-list {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.services-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.services-detail--reverse .services-detail__image {
  order: 2;
}

.services-detail--reverse .services-detail__content {
  order: 1;
}

.services-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.services-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

/* Warehouse hero: subject sits right-of-center; bias crop so racks + worker stay in frame */
.services-detail__image--warehouse img {
  object-position: 58% 42%;
}

/* Data center: open rack / cabling slightly left of center */
.services-detail__image--data-center img {
  object-position: 42% 48%;
}

.services-detail__image--household img {
  object-position: 56% 50%;
}

.network-partner--household .network-partner__image img {
  object-position: 55% 48%;
}

/* Relocation partners: hand + wooden house sits left-of-center in the upper
   third — bias crop so the gesture stays in frame. */
.network-partner--relocation .network-partner__image img {
  object-position: 42% 42%;
}

.network-partner--ocean .network-partner__image img {
  object-position: 50% 65%;
}

.network-partner--air .network-partner__image img {
  object-position: 50% 30%;
}

.services-detail__content h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 10px 0 12px;
}

.services-detail__content p {
  margin-bottom: 18px;
}

.services-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--grey-dark);
  font-size: 0.95rem;
}

.services-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-primary);
}

.services-process {
  text-align: center;
}

.services-process h2 {
  max-width: 780px;
  margin: 12px auto 30px;
}

.services-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.services-process__item {
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 24px 18px;
}

.services-process__item .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(164, 41, 43, 0.12);
  color: var(--blue-primary);
  font-weight: var(--fw-bold);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.services-process__item h4 {
  margin-bottom: 8px;
}

.services-process__item p {
  font-size: 0.88rem;
  color: var(--grey-dark);
}

/* ==================================
   GLOBAL NETWORK PAGE
   ================================== */
.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.network-card {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 28px 22px;
}

.network-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(164, 41, 43, 0.08);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.network-card h4 {
  margin-bottom: 8px;
}

.network-card p {
  font-size: 0.92rem;
  color: var(--grey-dark);
  line-height: 1.6;
}

/* India map section */
.india-map-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.india-map {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

/* Container holds the SVG map with image and circles in unified coordinate space */
.india-map__container {
  position: relative;
  display: block;
  width: 100%;
}

/* SVG overlay now contains both the image and circles in same viewBox */
.india-map__overlay {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: auto;
}

/* Map is a static image (no hover/click interactions). */
.india-map__overlay {
  pointer-events: none;
}

.india-map__dot {
  fill: #b0302f;
  stroke: #fff;
  stroke-width: 2;
  transition: all 0.3s ease;
  cursor: pointer;
}

.india-map__dot:hover {
  fill: rgba(176, 48, 47, 0.8);
}

/* Pins that should NOT show hover/tooltips (static overlay markers) */
.india-map__dot--static,
.india-map__label--static {
  pointer-events: none;
}
.india-map__dot--static {
  cursor: default;
}

.india-map__label {
  fill: #111;
  font-size: 34px;
  font-weight: 600;
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
}

@keyframes indiaPulse {
  0%   { filter: drop-shadow(0 0 4px rgba(164, 41, 43, 0.8)); }
  100% { filter: drop-shadow(0 0 40px rgba(164, 41, 43, 0)); }
}

.network-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.network-partner {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-light);
}

.network-partner__image {
  height: 220px;
  overflow: hidden;
}

.network-partner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.network-partner__body {
  padding: 24px;
}

.network-partner__body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.network-partner__body p {
  font-size: 0.92rem;
  color: var(--grey-dark);
  line-height: 1.6;
}

.network-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.network-capabilities__text h2 {
  margin: 12px 0 16px;
}

.network-capabilities__text p {
  margin-bottom: 24px;
}

.network-capabilities__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.network-capabilities__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

/* Tech-operations port photo: keep the ship + crane + skyline band in view
   (horizon sits roughly a third from the top). */
.network-capabilities__image--tech img {
  object-position: 50% 40%;
}

/* ==================================
   CONTACT PAGE
   ================================== */
.contact-intro-section {
  padding-top: clamp(120px, 16vw, 180px);
}

/* Match contact form section grid so body text, highlights and form share same left edge */
.contact-intro-section .section-header-split {
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

.contact-intro-section .section-header-split p,
.contact-intro-section .section-header-split .contact-highlight {
  max-width: none;
}

.contact-intro-section .section-header-split > div:last-child {
  text-align: left;
}

.contact-highlight {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.contact-highlight__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: rgba(164, 41, 43, 0.06);
  color: var(--blue-primary);
  font-weight: var(--fw-semi);
  font-size: 0.95rem;
  transition: background var(--transition-fast);
  position: relative;
  cursor: pointer;
}

.contact-highlight__item:hover {
  background: rgba(164, 41, 43, 0.12);
}

.contact-highlight__item svg {
  flex-shrink: 0;
}

.contact-highlight__item::after {
  content: attr(data-copy-label);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  color: var(--white);
  font-size: 0.72rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.contact-highlight__item:hover::after,
.contact-highlight__item.is-copied::after {
  opacity: 1;
  transform: translate(-50%, -2px);
}

.contact-map {
  padding: 48px 0;
}

.contact-map iframe {
  display: block;
}

.contact-socials {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-light);
}

.contact-socials > span {
  display: block;
  font-size: 0.82rem;
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-dark);
  margin-bottom: 12px;
}

.contact-socials__icons {
  display: flex;
  gap: 14px;
}

.contact-socials__icons a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(164, 41, 43, 0.08);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.contact-socials__icons a:hover {
  background: var(--blue-primary);
  color: var(--white);
}

/* ==================================
   FOOTER
   ================================== */
.footer {
  background: var(--white);
  color: var(--charcoal-light);
  padding: 72px 0 0;
  border-top: 1px solid var(--grey-light);
}

.footer__logo-big {
  display: block;
  margin-bottom: 40px;
}

.footer__logo-big img {
  height: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--grey-light);
}

.footer__brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--grey-dark);
  line-height: 1.7;
  max-width: 280px;
}

.footer__brand .navbar__logo { margin-bottom: 4px; }

.footer h4 {
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  font-size: 0.9rem;
  color: var(--grey-dark);
  transition: color var(--transition-fast);
}
.footer ul li a:hover { color: var(--charcoal); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--grey-dark);
}
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.5; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--grey-mid);
}

.footer__socials { display: flex; gap: 16px; }
.footer__socials a { color: var(--grey-mid); transition: color var(--transition-fast); }
.footer__socials a:hover { color: var(--charcoal); }

/* ==================================
   SCROLL ANIMATIONS
   ================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==================================
   RESPONSIVE
   ================================== */
@media (max-width: 1024px) {
  .about-profile-top {
    gap: 32px;
  }
  .about-profile-body {
    gap: 36px;
  }
  .about-airplane {
    width: 38%;
    max-width: 520px;
    left: 260px;
    bottom: 5px;
  }
  .services-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-detail {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .services-detail--reverse .services-detail__image,
  .services-detail--reverse .services-detail__content {
    order: initial;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section-header-split { gap: 32px; }
  .cta-banner__split { gap: 40px; }
  .network-grid { grid-template-columns: repeat(2, 1fr); }
  .network-partners-grid { grid-template-columns: 1fr; }
  .network-capabilities { grid-template-columns: 1fr; gap: 36px; }
  .india-map-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-intro-section .section-header-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  :root { --hero-inset: 10px; }

  /* Slightly larger base type on mobile/tablet */
  body { font-size: 17px; }
  p { font-size: 1.03rem; }

  /* --- Navbar & Mobile Nav --- */
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .navbar { top: calc(var(--hero-inset) + 12px); padding: 10px 14px; }
  .navbar--scrolled { top: 8px; }
  .navbar__cta { margin-left: auto; margin-right: 12px; }
  .navbar__cta .btn { padding: 8px 20px; font-size: 0.82rem; min-width: 120px; }
  .navbar__cta .btn:hover { padding-left: 14px; padding-right: 26px; }

  /* --- Homepage Hero --- */
  .hero { min-height: calc(100vh - 20px); }
  .hero__heading .line1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero__heading .line2 { font-size: clamp(3.5rem, 14vw, 6rem); padding-left: 10%; }
  .hero__heading { margin-bottom: 32px; }
  .hero__content { padding-bottom: clamp(48px, 7vw, 72px); }
  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .hero__meta {
    text-align: left;
    max-width: 100%;
  }
  .hero__actions { justify-content: flex-start; flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: 16px 32px; }
  .hero__scroll-hint { bottom: 16px; }

  /* --- Sections --- */
  .section { padding: 60px 0; }
  .section-header-split {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }
  .section-header-split h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  /* --- Services intro (below hero) --- */
  .services-intro { padding-top: 40px; padding-bottom: 20px; }
  .services-intro h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .services-intro .section-header-split { margin-bottom: 0; }

  /* --- Service cards --- */
  .services-grid { grid-template-columns: 1fr; gap: 56px; }
  .service-card { padding-top: 100px; }
  .service-card__body p { font-size: 1rem; }

  /* --- Service detail --- */
  .services-detail-list { gap: 48px; }

  /* --- Page Hero (inner pages) --- */
  .page-hero { min-height: 540px; }
  .page-hero--short { min-height: 300px; }
  .page-hero__content { padding-bottom: 56px; }

  /* --- About page --- */
  .about-profile-top { grid-template-columns: 1fr; gap: 24px; }
  .about-profile-body { grid-template-columns: 1fr; gap: 28px; }
  .about-profile-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-profile-images { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .about-profile-images img:nth-child(1),
  .about-profile-images img:nth-child(2),
  .about-profile-images img:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    height: auto;
  }
  .about-profile-section { padding-bottom: 100px; }
  .about-airplane-wrap { padding: 0 var(--page-padding); }
  .about-airplane {
    width: 75%;
    max-width: 340px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
  .about-vm-strip__inner { grid-template-columns: 1fr; gap: 28px; }
  .services-grid--four { grid-template-columns: 1fr; gap: 48px; }
  .about-values-grid,
  .services-process__grid { grid-template-columns: 1fr; }

  /* --- Contact page --- */
  .contact-intro-section { padding-top: 100px; }
  .contact-intro-section .section-header-split {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  .contact-highlight { flex-direction: column; gap: 12px; }
  .about-contact__form .form-row { grid-template-columns: 1fr; }
  .contact-map { padding: 32px 0; }
  .contact-map iframe { height: 300px; }

  /* --- Quote modal (tablet & down) --- */
  .quote-modal {
    padding: 24px 20px 18px;
    width: min(640px, 100% - 24px);
  }
  .quote-form {
    padding: 16px 16px 14px;
  }
  .quote-form .form-row {
    grid-template-columns: 1fr;
  }

  /* --- Global Network page --- */
  .network-grid { grid-template-columns: 1fr; }
  .network-partners-grid { grid-template-columns: 1fr; }
  .india-map__legend { grid-template-columns: 1fr; }
  .network-capabilities { grid-template-columns: 1fr; gap: 28px; }

  /* --- Split layout --- */
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split__image { order: -1; }
  .split__badge { width: 110px; height: 110px; bottom: 16px; left: 16px; }
  .split__badge .number { font-size: 1.7rem; }
  .split__badge .text { font-size: 0.6rem; }

  /* --- Stats strip --- */
  .stats-strip__inner { flex-wrap: wrap; }
  .stats-strip__item { flex: 1 1 50%; padding: 28px 16px; }
  .stats-strip__item:nth-child(2)::after { display: none; }

  /* --- Promise / Quote --- */
  .promise blockquote { font-size: 1.15rem; }

  /* --- CTA Banner --- */
  .cta-banner { padding: 60px 0; }
  .cta-banner__split { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner__text { text-align: left; }
  .cta-banner h2 { font-size: clamp(1.6rem, 5vw, 2rem); }
  .collage { height: 220px; }

  /* --- Footer --- */
  .footer { padding: 48px 0 0; }
  .footer__logo-big img { height: 48px; }
  .footer__logo-big { margin-bottom: 28px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .text-effect-bg { font-size: 4rem; right: 0; }
}

@media (max-width: 480px) {
  :root {
    --hero-inset: 6px;
    --page-padding: 16px;
  }

  body { font-size: 17px; }
  p { font-size: 1.04rem; }

  /* --- Buttons --- */
  .btn { padding: 10px 20px; font-size: 0.88rem; min-width: 160px; }
  .btn:hover { padding-left: 14px; padding-right: 26px; }

  /* --- Navbar --- */
  .navbar { padding: 8px 10px; }
  .navbar__logo img { height: 30px !important; }
  .navbar__cta { margin-right: 10px; }
  .navbar__cta .btn { padding: 7px 16px; font-size: 0.78rem; min-width: auto; }
  .navbar__cta .btn:hover { padding-left: 12px; padding-right: 22px; }

  /* --- Homepage Hero --- */
  .hero { min-height: calc(100svh - 12px); }
  .hero__heading .line1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero__heading .line2 { font-size: clamp(2.8rem, 13vw, 4.5rem); padding-left: 5%; }
  .hero__heading { margin-bottom: 24px; }
  .hero__content { padding-bottom: 40px; }
  .hero__stats { gap: 12px 24px; }
  .hero__stat-number { font-size: 1.2rem; }
  .hero__stat-label { font-size: 0.75rem; }
  .hero__subtitle { font-size: 0.88rem; margin-bottom: 18px; }
  .hero__scroll-hint { display: none; }

  /* --- Sections --- */
  .section { padding: 56px 0; }
  .section-header-split { gap: 12px; margin-bottom: 36px; }
  .section-header-split h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-header-split p { font-size: 1.02rem; }

  /* --- Services intro --- */
  .services-intro { padding-top: 32px; padding-bottom: 12px; }
  .services-intro h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* --- Page Hero (inner) --- */
  .page-hero { min-height: 400px; }
  .page-hero--short { min-height: 240px; }

  /* --- Service cards --- */
  .service-card { padding-top: 80px; }
  .service-card__image { width: 100px; height: 100px; }
  .services-grid { gap: 52px; }
  .services-detail-list { gap: 40px; }
  .services-detail__content h3 { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  /* --- Services process --- */
  .services-process h2 { font-size: clamp(1.4rem, 5.5vw, 1.8rem); }
  .services-process__grid { gap: 12px; }

  /* --- About page --- */
  .about-profile-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .about-profile-section { padding-bottom: 70px; }
  .about-airplane { width: 80%; max-width: 300px; }

  /* --- Contact page --- */
  .contact-intro-section { padding-top: 80px; }
  .contact-intro-section h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .contact-highlight__item { font-size: 0.88rem; padding: 10px 16px; }
  .about-contact__form { padding: 24px 18px; }
  .contact-map iframe { height: 260px; }

  /* --- Quote modal (phone) --- */
  .quote-modal {
    padding: 20px 14px 14px;
    width: min(560px, 100% - 18px);
  }
  .quote-form {
    padding: 14px 12px 12px;
  }
  /* --- Global Network --- */
  .network-card { padding: 22px 18px; }
  .network-partner__image { height: 180px; }
  .network-partner__body { padding: 18px; }

  /* --- Stats strip --- */
  .stats-strip__item { padding: 20px 12px; }
  .stats-strip__number { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* --- CTA Banner --- */
  .cta-banner { padding: 48px 0; }
  .cta-banner__split { gap: 28px; }
  .cta-banner h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .cta-banner p { font-size: 0.92rem; margin-bottom: 24px; }
  .collage { height: 160px; gap: 8px; }
  .collage__tall, .collage__img { border-radius: var(--radius-sm); }

  /* --- Footer --- */
  .footer { padding: 40px 0 0; }
  .footer__logo-big img { height: 42px; }
  .footer__logo-big { margin-bottom: 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 32px; }
  .footer h4 { margin-bottom: 14px; }
  .footer__bottom { padding: 18px 0; }

  /* --- Mobile nav --- */
  .mobile-nav a { font-size: 1.2rem; }
}

/* ==================================
   COPY GUARD — disable text selection across the site
   except inside form fields and on phone/email/address spans
   marked [data-allow-copy].
   ================================== */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea, select,
[contenteditable="true"],
[data-allow-copy], [data-allow-copy] * {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

[data-allow-copy] {
  cursor: text;
}

/* ==================================
   TESTIMONIALS
   ================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.testimonial-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card__quote-mark {
  position: absolute;
  top: 18px;
  left: 24px;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--blue-primary);
  font-family: Georgia, 'Times New Roman', serif;
  opacity: 0.85;
  pointer-events: none;
}

.testimonial-card__quote {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-top: 28px;
}

.testimonial-card__author {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 4px;
  border-top: 1px solid var(--grey-light);
  padding-top: 18px;
  align-items: baseline;
}

.testimonial-card__author strong {
  color: var(--charcoal);
  font-weight: var(--fw-semi);
  font-size: 0.92rem;
}

.testimonial-card__author span {
  color: var(--grey-dark);
  font-size: 0.82rem;
}

.testimonial-card__author span::before {
  content: "— ";
}

@media (max-width: 820px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card { padding: 36px 24px 28px; }
}

/* ==================================
   INQUIRY FOLLOW-UP — Within India / International picker
   + searchable city/country combobox
   ================================== */
.inquiry-followup {
  margin: 4px 0 12px;
}

.inquiry-followup[hidden] { display: none; }

.inquiry-followup__inner {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inquiry-followup__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inquiry-followup__row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.inquiry-followup__label {
  font-size: 0.82rem;
  font-weight: var(--fw-semi);
  color: var(--charcoal);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.inquiry-followup__segmented {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
}

.inquiry-followup__segmented label {
  position: relative;
  padding: 8px 18px;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.inquiry-followup__segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.inquiry-followup__segmented label:has(input:checked) {
  background: var(--blue-primary);
  color: var(--white);
  font-weight: var(--fw-semi);
}

.combobox {
  position: relative;
}

.combobox__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color var(--transition-fast);
}

.combobox__input:focus {
  border-color: var(--blue-primary);
}

.combobox__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-sm);
  max-height: 240px;
  overflow-y: auto;
  z-index: 30;
  box-shadow: var(--shadow-md);
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.combobox__list[hidden] { display: none; }

.combobox__option {
  padding: 8px 14px;
  font-size: 0.9rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.combobox__option:hover,
.combobox__option:focus {
  background: var(--off-white);
}

.combobox__option--other {
  border-top: 1px solid var(--grey-light);
  color: var(--blue-primary);
  font-weight: var(--fw-semi);
}

@media (max-width: 480px) {
  .inquiry-followup__row--two { grid-template-columns: 1fr; }
}

/* ==================================
   Services navigation — active state
   ================================== */

/* Mega-menu: highlight the bucket that matches the current page */
.mega-menu__category.is-current {
  color: var(--blue-primary);
  background: rgba(164, 41, 43, 0.08);
}
.mega-menu__category.is-current::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--blue-primary);
  vertical-align: middle;
  margin-bottom: 2px;
}
.mega-menu__group.is-current .mega-menu__services a.is-current,
.mega-menu__services a.is-current {
  color: var(--blue-primary);
  font-weight: var(--fw-semi);
}

/* Mobile nav: highlight the active services group + its links */
.mobile-nav__group-label.is-current {
  color: var(--red-accent);
}
.mobile-nav__group-label.is-current::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--red-accent);
  vertical-align: middle;
}

/* ==================================
   Services pages — bucket tabs strip
   ================================== */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--grey-light);
}
.service-tabs__label {
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-right: 4px;
}
.service-tabs__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: var(--fw-semi);
  color: var(--charcoal-light);
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: 999px;
  transition: color var(--transition-fast), background var(--transition-fast),
              border-color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}
.service-tabs__pill:hover {
  color: var(--blue-primary);
  background: rgba(164, 41, 43, 0.06);
  border-color: rgba(164, 41, 43, 0.2);
  transform: translateY(-1px);
}
.service-tabs__pill.is-current {
  color: var(--white);
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  box-shadow: 0 6px 16px rgba(164, 41, 43, 0.22);
  cursor: default;
  pointer-events: none;
}
.service-tabs__pill.is-current::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--white);
}

@media (max-width: 640px) {
  .service-tabs { gap: 8px; }
  .service-tabs__label {
    width: 100%;
    margin-bottom: 4px;
  }
  .service-tabs__pill {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

/* ==================================
   Services pages — prev / next pager
   ================================== */
.service-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px 0 8px;
  border-top: 1px solid var(--grey-light);
  margin-top: 24px;
}
.service-pager__link {
  display: flex;
  flex-direction: column;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), background var(--transition-fast),
              transform var(--transition-fast), box-shadow var(--transition-fast);
}
.service-pager__link:hover {
  border-color: var(--blue-primary);
  background: rgba(164, 41, 43, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.service-pager__direction {
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 6px;
}
.service-pager__title {
  font-size: 1rem;
  font-weight: var(--fw-semi);
  color: var(--charcoal);
}
.service-pager__link:hover .service-pager__title { color: var(--blue-primary); }
.service-pager__link--next { text-align: right; }

@media (max-width: 640px) {
  .service-pager { grid-template-columns: 1fr; }
}
