/* ==========================================================================
   Citywide Services — Main Stylesheet (Bold Editorial / Premium)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
main {
  padding-top: 0;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* Page-wide film grain for depth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--gold-gradient);
  z-index: 1001;
  box-shadow: 0 0 12px rgba(245, 164, 0, 0.6);
}

/* --------------------------------------------------------------------------
   Editorial section heading kit
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-head {
  position: relative;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 760px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow::after {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  color: var(--text-strong);
}

.section-title em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-intro {
  margin-top: 1.1rem;
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 560px;
}

.section-head--center .section-intro { margin-inline: auto; }

/* Oversized faint section index numeral */
.section-num {
  position: absolute;
  top: -2.4rem;
  right: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 164, 0, 0.16);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Gold gradient text utility (kept for hero/legacy) */
.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              backdrop-filter var(--dur) var(--ease-out);
}

.header.is-scrolled {
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(245, 164, 0, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

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

.nav__logo-img {
  height: 52px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--r-sm);
  padding: 5px 9px;
  transition: transform var(--dur) var(--ease-out);
}

.nav__logo:hover .nav__logo-img { transform: translateY(-1px); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color var(--dur-fast) var(--ease-out);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  transition: width var(--dur) var(--ease-out);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }
.nav__link--active { color: var(--gold); }

.nav__link:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }

/* CTA in nav */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-900);
  background: var(--gold-gradient);
  border-radius: var(--r-pill);
  box-shadow: 0 6px 20px rgba(245, 164, 0, 0.28);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.nav__cta:hover {
  color: var(--ink-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 164, 0, 0.45);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

.nav__mobile-overlay {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: rgba(5, 7, 13, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.nav__mobile-overlay.is-open { display: flex; }

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--dur-fast) var(--ease-out);
}

.nav__mobile-link:hover { color: var(--gold); }
.nav__mobile-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  border: none;
  text-decoration: none;
  overflow: hidden;
  min-height: 48px;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn__arrow { transition: transform var(--dur) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--gold-gradient);
  color: var(--ink-900);
  box-shadow: 0 10px 30px rgba(245, 164, 0, 0.32);
}

/* Shine sweep */
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sheen);
  transform: translateX(-150%);
  transition: transform 750ms var(--ease-out);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(245, 164, 0, 0.48);
}

.btn--primary:hover::after { transform: translateX(150%); }
.btn--primary:active { transform: translateY(-1px); }

.btn--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}

.btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + clamp(2rem, 6vw, 5rem)) 0 clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  background-color: var(--primary-black);
}

/* Photo underlay */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

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

/* "Netting" — dark scrim + fine mesh so the copy stays readable */
.hero__net {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,13,0.94) 0%, rgba(5,7,13,0.82) 38%, rgba(5,7,13,0.5) 64%, rgba(5,7,13,0.7) 100%),
    linear-gradient(180deg, rgba(5,7,13,0.55) 0%, rgba(5,7,13,0.2) 40%, rgba(5,7,13,0.88) 100%),
    radial-gradient(900px 600px at 80% 22%, rgba(245,164,0,0.14), transparent 60%);
}

/* Fine net mesh texture over the photo */
.hero__net::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, black 30%, transparent 85%);
  -webkit-mask-image: linear-gradient(90deg, black 30%, transparent 85%);
}

/* Map grid mask */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 164, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 164, 0, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 75% at 60% 45%, black 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 60% 45%, black 20%, transparent 72%);
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  width: 100%;
}

.hero__content { max-width: 640px; }

.hero__eyebrow { margin-bottom: 1.5rem; }

.hero__headline {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: var(--fs-display);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__headline em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subheadline {
  font-family: var(--font-body);
  font-size: var(--fs-lead);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Trust row under CTAs */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--text-faint);
  font-size: var(--fs-small);
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__trust-item strong {
  font-family: var(--font-heading);
  color: var(--white);
  font-weight: 600;
}

.hero__trust-divider { width: 1px; height: 26px; background: rgba(255, 255, 255, 0.12); }

/* Hero visual — animated globe / routes */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.9rem;
  min-height: 420px;
  padding-right: clamp(0.5rem, 2vw, 1.75rem);
}

.hero__globe {
  display: none;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Animated dashed routes */
.hero__route {
  stroke-dasharray: 6 8;
  animation: routeDash 3.5s linear infinite;
}
.hero__route--2 { animation-duration: 4.5s; }
.hero__route--3 { animation-duration: 5.5s; }

@keyframes routeDash {
  to { stroke-dashoffset: -140; }
}

/* Pulsing destination pins */
.hero__pin { transform-box: fill-box; transform-origin: center; animation: pinPulse 2.6s var(--ease-in-out) infinite; }
.hero__pin--2 { animation-delay: 0.7s; }
.hero__pin--3 { animation-delay: 1.4s; }
.hero__pin--4 { animation-delay: 2s; }

@keyframes pinPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.25); }
}

/* Floating glass stat chips over the visual */
.hero__chip {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 168px;
  padding: 0.8rem 1.1rem;
  background: rgba(11, 15, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  animation: chipFloat 6s var(--ease-in-out) infinite;
}

.hero__chip-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__chip-label {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero__chip--a { animation-delay: 0s; }
.hero__chip--b { animation-delay: 1.2s; }
.hero__chip--c { animation-delay: 2.4s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-faint);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 3;
}

.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; text-align: left; }
  .hero__visual { display: none; }
  .hero__scroll { display: none; }
}

/* --------------------------------------------------------------------------
   Marquee strip (logos / trust line)
   -------------------------------------------------------------------------- */
.marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--secondary-black);
  overflow: hidden;
  padding: 1.1rem 0;
}

.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.marquee__item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about {
  position: relative;
  background: var(--gray-light);
  color: var(--ink-900);
  padding: var(--section-padding) 0;
}

.about__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  margin-top: 2rem;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-700);
}

.about__feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(245, 164, 0, 0.16);
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.about__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

/* Secondary button reads on the light About background */
.about__cta .btn--secondary {
  background: transparent;
  color: var(--ink-900);
  border-color: rgba(0, 0, 0, 0.18);
  backdrop-filter: none;
}
.about__cta .btn--secondary:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  background: rgba(245, 164, 0, 0.06);
}

.about .eyebrow { color: var(--gold-deep); }
.about .eyebrow::before { background: linear-gradient(90deg, var(--gold-deep), transparent); }

.about__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 1rem 0 1.5rem;
}

.about__heading em {
  font-style: italic;
  color: var(--gold-deep);
}

.about__description {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: #3a3f4a;
}

.about__mission {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--ink-700);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
  margin-top: 1.5rem;
}

/* About visual: layered card with globe + stat overlay */
.about__image {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
  padding: 1.25rem;
}

.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 50% 40%, rgba(245, 164, 0, 0.12), transparent 60%),
    linear-gradient(160deg, #0E1320, #05070D);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 164, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 164, 0, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 75%);
}

.about__icon {
  width: 64%;
  height: auto;
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
  animation: heroFloat 9s var(--ease-in-out) infinite;
}

.about__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about__badge {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 0.85rem 1.15rem;
  background: linear-gradient(160deg, #141A2A, #0B0F1A);
  border: 1px solid rgba(245, 164, 0, 0.3);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}

.about__badge--tl { top: 0; right: 0; }
.about__badge--br { bottom: 0; left: 0; }

.about__badge-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold-light);
}

.about__badge-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 860px) {
  .about__content { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__image { order: -1; max-width: 360px; }
  .about__features { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.services {
  background: var(--primary-black);
  padding: var(--section-padding) 0;
  position: relative;
}

.services__content { position: relative; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 4rem;
}

.services__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.75rem;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(245, 164, 0, 0.3);
  transition: border-color var(--dur) var(--ease-out);
}

.services__card::before { display: none; }

.services__card:hover,
.services__card--tapped {
  border-color: var(--gold);
}

.services__card-num {
  position: static;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.services__card-icon { display: none; }

.services__card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.services__card-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.services__card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--dur) var(--ease-out);
}

.services__card:hover .services__card-link { gap: 0.7rem; }

@media (max-width: 1100px) { .services__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* --------------------------------------------------------------------------
   Process (How it works) — NEW
   -------------------------------------------------------------------------- */
.process {
  background: linear-gradient(180deg, #05070D, #080B16);
  padding: var(--section-padding) 0;
  position: relative;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

/* connecting line */
.process__grid::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 164, 0, 0.4), transparent);
}

.process__step {
  position: relative;
  text-align: center;
  padding: 0 0.5rem;
}

.process__num {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--gold-light);
  background: radial-gradient(circle at 50% 40%, rgba(245, 164, 0, 0.18), rgba(5,7,13,0.9));
  border: 1px solid rgba(245, 164, 0, 0.4);
  box-shadow: 0 0 0 6px rgba(5, 7, 13, 1), 0 0 30px rgba(245, 164, 0, 0.18);
  position: relative;
  z-index: 1;
}

.process__step-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.process__step-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 240px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .process__grid::before { display: none; }
}
@media (max-width: 460px) { .process__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Why Choose Us
   -------------------------------------------------------------------------- */
.why-choose-us {
  background: var(--gray-light);
  color: var(--ink-900);
  padding: var(--section-padding) 0;
}

.why-choose-us .eyebrow { color: var(--gold-deep); }
.why-choose-us .eyebrow::before,
.why-choose-us .eyebrow::after { background: linear-gradient(90deg, var(--gold-deep), transparent); }
.why-choose-us .section-title { color: var(--ink-900); }
.why-choose-us .section-intro { color: #4a4f59; }

.why-choose-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-choose-us__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 2rem 1.6rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r-lg);
  box-shadow: 0 10px 30px rgba(20, 18, 10, 0.05);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.why-choose-us__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(201, 122, 0, 0.16);
}

.why-choose-us__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: rgba(245, 164, 0, 0.12);
}

.why-choose-us__icon svg { width: 34px; height: 34px; }

.why-choose-us__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 0.55rem;
}

.why-choose-us__description {
  font-size: 0.95rem;
  color: #4a4f59;
  line-height: 1.6;
}

@media (max-width: 1100px) { .why-choose-us__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-choose-us__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats {
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(245, 164, 0, 0.08), transparent 60%),
    var(--primary-black);
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid rgba(245, 164, 0, 0.12);
  border-bottom: 1px solid rgba(245, 164, 0, 0.12);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stats__number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stats__suffix {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--gold);
  margin-left: 2px;
}

.stats__label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

@media (max-width: 760px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .stats__item:nth-child(2)::after { display: none; }
}

/* --------------------------------------------------------------------------
   Countries
   -------------------------------------------------------------------------- */
.countries {
  background: var(--primary-black);
  padding: var(--section-padding) 0;
}

.countries__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.countries__card {
  position: relative;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  cursor: pointer;
  transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}

.countries__card:hover,
.countries__card:active {
  transform: translateY(-6px);
  background: rgba(245, 164, 0, 0.06);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

.countries__flag {
  width: 100%;
  max-width: 108px;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: transform var(--dur) var(--ease-out);
}

.countries__card:hover .countries__flag { transform: scale(1.06); }
.countries__flag svg { width: 100%; height: 100%; object-fit: cover; }

.countries__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 1100px) { .countries__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .countries__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials {
  background: var(--gray-light);
  color: var(--ink-900);
  padding: var(--section-padding) 0;
}

.testimonials .eyebrow { color: var(--gold-deep); }
.testimonials .eyebrow::before,
.testimonials .eyebrow::after { background: linear-gradient(90deg, var(--gold-deep), transparent); }
.testimonials .section-title { color: var(--ink-900); }

.testimonials__carousel { position: relative; overflow: hidden; }
.testimonials__track { display: flex; transition: transform var(--dur) var(--ease-out); }

.testimonials__card {
  min-width: 100%;
  flex-shrink: 0;
  background: #fff;
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  box-shadow: 0 30px 70px rgba(20, 18, 10, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Giant quotation mark */
.testimonials__card::before {
  content: '\201C';
  position: absolute;
  top: 0.3rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: rgba(245, 164, 0, 0.18);
}

.testimonials__rating { display: flex; align-items: center; gap: 4px; }
.testimonials__star { width: 22px; height: 22px; }

.testimonials__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-900);
  max-width: 640px;
  font-style: italic;
}

.testimonials__client { display: flex; flex-direction: column; gap: 4px; margin-top: 0.5rem; }
.testimonials__client-name { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--ink-900); }
.testimonials__client-service { font-size: 0.85rem; color: var(--gold-deep); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.25rem; }

.testimonials__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  background: transparent;
  color: var(--gold-deep);
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}

.testimonials__arrow:hover { background: var(--gold); color: var(--ink-900); border-color: var(--gold); transform: translateY(-2px); }
.testimonials__arrow:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.testimonials__arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.testimonials__arrow:disabled:hover { background: transparent; color: var(--gold-deep); transform: none; }
.testimonials__arrow svg { width: 20px; height: 20px; }

.testimonials__dots { display: flex; align-items: center; gap: 8px; }

.testimonials__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  background: transparent;
  padding: 0;
  transition: background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), width var(--dur) var(--ease-out);
}

.testimonials__dot:hover { background: rgba(245, 164, 0, 0.4); }
.testimonials__dot--active { background: var(--gold); width: 26px; border-radius: var(--r-pill); }
.testimonials__dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 767px) {
  .testimonials__track { flex-direction: column; gap: 1.5rem; }
  .testimonials__card { min-width: unset; }
  .testimonials__controls { display: none; }
}

/* --------------------------------------------------------------------------
   FAQ — NEW
   -------------------------------------------------------------------------- */
.faq {
  background: var(--primary-black);
  padding: var(--section-padding) 0;
}

.faq__content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.faq__list { display: flex; flex-direction: column; gap: 0.85rem; }

.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}

.faq__item.is-open {
  border-color: rgba(245, 164, 0, 0.4);
  background: rgba(245, 164, 0, 0.05);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
}

.faq__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 2px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform var(--dur) var(--ease-out);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease-out);
}

.faq__answer-inner {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.97rem;
}

.faq__aside {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.faq__aside-card {
  padding: 2rem;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(245,164,0,0.12), rgba(255,255,255,0.02));
  border: 1px solid rgba(245, 164, 0, 0.25);
}

.faq__aside-card .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 0.5rem; }
.faq__aside-card p { color: var(--text-muted); margin: 1rem 0 1.5rem; line-height: 1.6; }

@media (max-width: 860px) {
  .faq__content { grid-template-columns: 1fr; }
  .faq__aside { position: static; order: -1; }
}

/* --------------------------------------------------------------------------
   Consultation form
   -------------------------------------------------------------------------- */
.consultation {
  background: linear-gradient(180deg, #080B16, #05070D);
  padding: var(--section-padding) 0;
}

.consultation__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  margin-top: 2.5rem;
}

.consultation__form {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.consultation__sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

.consultation__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1.25rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
}

.consultation__info-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.consultation__info-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; }

.consultation__map {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(245, 164, 0, 0.2);
}
.consultation__map iframe { display: block; width: 100%; height: 240px; }

@media (max-width: 860px) {
  .consultation__grid { grid-template-columns: 1fr; }
  .consultation__map iframe { height: 220px; }
}

/* Form fields */
.form-group { margin-bottom: 1.4rem; display: flex; flex-direction: column; }

.form-group__label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-group__required { color: var(--gold); }

.form-group__input {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-sm);
  color: var(--white);
  font-size: 1rem;
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}

.form-group__input::placeholder { color: rgba(255, 255, 255, 0.35); }

.form-group__input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(245, 164, 0, 0.15);
}

.form-group__input:focus-visible { outline: none; }

.form-group__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F5A400' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group__select option { background-color: var(--secondary-black); color: var(--white); }
.form-group__textarea { resize: vertical; min-height: 120px; }

.form-group__error {
  font-size: 0.8125rem;
  color: #f87171;
  margin-top: 0.4rem;
  min-height: 1.1rem;
  display: none;
}
.form-group__error--visible { display: block; }
.form-group__input--error { border-color: #ef4444; }

.consultation__submit {
  width: 100%;
  padding: 1.05rem 2rem;
  background: var(--gold-gradient);
  color: var(--ink-900);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-pill);
  margin-top: 0.5rem;
  min-height: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(245, 164, 0, 0.3);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.consultation__submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sheen);
  transform: translateX(-150%);
  transition: transform 750ms var(--ease-out);
}

.consultation__submit:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(245, 164, 0, 0.48); }
.consultation__submit:hover::after { transform: translateX(150%); }
.consultation__submit:active { transform: translateY(-1px); }
.consultation__submit:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.consultation__success {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--r-sm);
  color: #4ade80;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  animation: fadeIn var(--dur) var(--ease-out);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--primary-black);
  border-top: 1px solid rgba(245, 164, 0, 0.16);
  padding: clamp(3.5rem, 6vw, 5rem) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand { display: flex; flex-direction: column; gap: 1rem; }

.footer__logo {
  height: 48px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--r-sm);
  padding: 5px 9px;
}

.footer__tagline { font-size: 0.92rem; line-height: 1.7; color: var(--text-faint); max-width: 340px; }

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.footer__nav { display: flex; flex-direction: column; gap: 0.7rem; }

.footer__nav-link, .footer__nav-text {
  font-size: 0.92rem;
  color: var(--text-faint);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer__nav-link:hover { color: var(--gold); }
.footer__nav-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright { font-size: 0.82rem; color: var(--text-faint); }

.footer__socials { display: flex; align-items: center; gap: 0.75rem; }

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.footer__social-link:hover { background: var(--gold); color: var(--ink-900); transform: translateY(-2px); }
.footer__social-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.footer__social-link svg { width: 17px; height: 17px; }

.footer__back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-faint);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer__back-to-top:hover { color: var(--gold); }
.footer__back-to-top:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { align-items: center; }
  .footer__nav { align-items: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* --------------------------------------------------------------------------
   Lazy loading + scroll animations
   -------------------------------------------------------------------------- */
img[data-src] { opacity: 0; transition: opacity var(--dur) var(--ease-out); }
img.is-loaded { opacity: 1; }

.will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.will-animate.is-animated { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   Floating social sidebar (left)
   -------------------------------------------------------------------------- */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 997;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(5, 7, 13, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  border: 1px solid rgba(245, 164, 0, 0.15);
  border-left: none;
  padding: 0.85rem 0.5rem;
  box-shadow: 4px 0 16px rgba(0, 0, 0, 0.3);
}

.social-sidebar__label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin-top: 0.75rem;
  white-space: nowrap;
  order: 1;
}

.social-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.social-sidebar__link:hover { color: var(--gold); background: rgba(245, 164, 0, 0.1); }
.social-sidebar__link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

@media (max-width: 900px) { .social-sidebar { display: none; } }

/* --------------------------------------------------------------------------
   WhatsApp widget
   -------------------------------------------------------------------------- */
.whatsapp-widget { position: fixed; bottom: 24px; right: 24px; z-index: 998; }

/* Dim backdrop so the chat reads as a focused layer */
.whatsapp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 13, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: none;
  animation: waFade var(--dur) var(--ease-out);
}

@keyframes waFade { from { opacity: 0; } to { opacity: 1; } }

.whatsapp-btn {
  position: relative;
  width: 60px; height: 60px;
  background: linear-gradient(145deg, #2BE36F, #11924B);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 26px rgba(18, 140, 80, 0.5);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

/* Expanding signal ring */
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: waRing 2.6s var(--ease-out) infinite;
}

@keyframes waRing {
  0% { transform: scale(1); opacity: 0.5; }
  70%, 100% { transform: scale(1.75); opacity: 0; }
}

.whatsapp-btn:hover { transform: scale(1.08) rotate(-4deg); box-shadow: 0 16px 32px rgba(18, 140, 80, 0.62); color: #fff; }
.whatsapp-btn:active { transform: scale(1.03); }
.whatsapp-btn:focus-visible { outline: 2px solid #25D366; outline-offset: 4px; }
.whatsapp-btn__icon { width: 30px; height: 30px; }

.whatsapp-btn__badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--ink-900);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--r-pill);
  border: 2px solid var(--primary-black);
}

.whatsapp-popup {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 326px;
  max-width: calc(100vw - 48px);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transform-origin: bottom right;
}

.whatsapp-popup.is-open { display: block; animation: waPopIn var(--dur) var(--ease-out); }

@keyframes waPopIn {
  from { opacity: 0; transform: translateY(14px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.whatsapp-popup__header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-popup__avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.whatsapp-popup__heading { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.whatsapp-popup__title { font-family: var(--font-heading); font-size: 0.98rem; font-weight: 700; color: #fff; }

.whatsapp-popup__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.88);
}

.whatsapp-popup__status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b9f6ca;
  animation: waBlink 1.8s ease-in-out infinite;
}

@keyframes waBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.whatsapp-popup__close {
  margin-left: auto;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  border-radius: 50%;
  transition: background var(--dur-fast) var(--ease-out);
}
.whatsapp-popup__close:hover { background: rgba(255, 255, 255, 0.34); }

.whatsapp-popup__subtitle {
  font-size: 0.85rem;
  color: var(--ink-700);
  padding: 0.95rem 1rem 0.6rem;
  line-height: 1.5;
}

.whatsapp-popup__option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--dur-fast) var(--ease-out);
}
.whatsapp-popup__option:hover { background: rgba(37, 211, 102, 0.09); }

.whatsapp-popup__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.14);
}

.whatsapp-popup__body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.whatsapp-popup__text { font-size: 0.93rem; font-weight: 600; color: var(--ink-900); }
.whatsapp-popup__number { font-size: 0.76rem; color: rgba(0, 0, 0, 0.5); }

.whatsapp-popup__chevron {
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.32);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.whatsapp-popup__option:hover .whatsapp-popup__chevron { transform: translateX(4px); color: #128C7E; }

.whatsapp-popup__footer {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.4);
  padding: 0.7rem;
  background: #f6f7f8;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 767px) {
  .whatsapp-widget { bottom: 18px; right: 18px; }
}
