/* STR ELVION Transport & Logistics — core styles */
:root {
  --navy-950: #050a12;
  --navy-900: #0a1628;
  --navy-800: #0f2744;
  --navy-700: #163a5e;
  --gold-500: #c9a227;
  --gold-400: #d4af37;
  --gold-300: #e8c547;
  --white: #f8fafc;
  --muted: #94a3b8;
  --radius: 12px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  background: var(--navy-950);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-400);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--gold-500);
  color: var(--navy-950);
  z-index: 2000;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  isolation: isolate;
  height: var(--header-h);
  background: rgba(5, 10, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  flex-shrink: 0;
  width: 56px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  letter-spacing: 0.02em;
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--white);
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
}

.nav-toggle[aria-expanded="true"] {
  border-color: var(--gold-400);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-300);
  text-decoration: none;
  border-bottom-color: var(--gold-500);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-950);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(201, 162, 39, 0.6);
}

.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe57;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(420px, 70vh, 640px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-900);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--navy-950) 0%, rgba(5, 10, 18, 0.88) 42%, rgba(5, 10, 18, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 3rem 4rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Sections */
section {
  padding-block: 4rem;
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 700;
}

.section-intro {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 60ch;
}

.section-intro--tight {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.alt-bg {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  border-block: 1px solid rgba(201, 162, 39, 0.12);
}

/* Cards grid */
.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: rgba(15, 39, 68, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: var(--gold-400);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Why us list */
.feature-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: rgba(10, 22, 40, 0.6);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold-500);
}

.feature-list strong {
  color: var(--gold-300);
}

/* CTA strip */
.cta-strip {
  padding-block: 3.5rem;
  text-align: center;
  background: radial-gradient(ellipse at center, var(--navy-800) 0%, var(--navy-950) 70%);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.cta-strip h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
}

.cta-strip p {
  margin: 0 auto 1.5rem;
  color: var(--muted);
  max-width: 50ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Page header (inner pages) */
.page-header {
  padding-block: 3rem 2rem;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-950));
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.page-header h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.page-header p {
  margin: 0;
  color: var(--muted);
  max-width: 55ch;
}

/* Two column layout */
.split {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

/* Team */
.team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.team-card {
  padding: 1.5rem;
  background: rgba(15, 39, 68, 0.5);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.team-card h3 {
  margin: 0 0 0.25rem;
  color: var(--gold-300);
}

.team-card .role {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Routes timeline */
.route-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.route-list li {
  padding: 1.25rem 1.5rem;
  background: rgba(15, 39, 68, 0.45);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.15);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.route-list .route-desc {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.route-cta {
  margin-top: 2rem;
}

.route-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.corridor-grid {
  display: grid;
  gap: 1rem;
}

/* Routes page hero */
.routes-hero {
  position: relative;
  padding-block: 4.5rem 3.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(201, 162, 39, 0.18) 0%, transparent 55%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-950) 100%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  overflow: hidden;
}

.routes-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 162, 39, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.routes-hero .container {
  position: relative;
  z-index: 1;
}

.routes-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--gold-300);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.routes-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  max-width: 16ch;
}

.routes-hero p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.routes-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.routes-stat {
  flex: 1 1 140px;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(15, 39, 68, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.routes-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold-400);
  line-height: 1.2;
}

.routes-stat span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Corridor timeline */
.corridor-timeline {
  position: relative;
  display: grid;
  gap: 1.75rem;
  padding-left: 0;
}

.corridor-timeline__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.corridor-timeline__marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.corridor-timeline__marker span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-500), var(--gold-300));
  color: var(--navy-950);
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
  z-index: 1;
}

.corridor-timeline__marker::after {
  content: "";
  flex: 1;
  width: 2px;
  min-height: 1.75rem;
  margin-top: 0.5rem;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.5), rgba(201, 162, 39, 0.08));
}

.corridor-timeline__item:last-child .corridor-timeline__marker::after {
  display: none;
}

.corridor-timeline__body {
  padding: 1.5rem 1.6rem;
  background: rgba(15, 39, 68, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: calc(var(--radius) + 4px);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.corridor-timeline__body:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateX(4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.corridor-timeline__body--featured {
  background: linear-gradient(135deg, rgba(15, 39, 68, 0.75) 0%, rgba(22, 58, 94, 0.65) 100%);
  border-color: rgba(201, 162, 39, 0.35);
}

.corridor-timeline__flags {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  letter-spacing: 0.1em;
}

.corridor-timeline__body h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
  color: var(--gold-400);
}

.corridor-timeline__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.corridor-card__tag {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-300);
  font-size: 0.8rem;
  font-weight: 600;
}

.support-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

.support-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(15, 39, 68, 0.45);
  border: 1px solid rgba(201, 162, 39, 0.18);
  text-align: center;
}

.support-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.support-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--white);
}

.support-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (min-width: 900px) {
  .corridor-grid--page {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .support-cards {
    grid-template-columns: 1fr;
  }

  .corridor-timeline__item {
    grid-template-columns: 44px 1fr;
    gap: 1rem;
  }

  .corridor-timeline__marker span {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }
}

.corridor-card {
  padding: 1.5rem;
  background: rgba(15, 39, 68, 0.45);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: border-color 0.2s, transform 0.2s;
}

.corridor-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-2px);
}

.corridor-card__flags {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.15em;
}

.corridor-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--gold-400);
}

.corridor-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.page-header .globe-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* About section — 3D motion intro cinema */
.about-intro-cinema {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-950);
  border: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

#about-intro {
  position: absolute;
  inset: 0;
}

.about-intro__stage {
  position: absolute;
  inset: 0;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.about-intro__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--navy-950);
}

.about-intro__slide {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.12) translate3d(6%, 0, -120px) rotateY(-8deg) rotateX(3deg);
  filter: brightness(0.65) saturate(1.05);
  transition: opacity 0.85s ease, transform 3.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.85s ease;
  will-change: transform, opacity;
}

.about-intro__slide.is-active {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0) rotateY(0deg) rotateX(0deg);
  filter: brightness(0.92) saturate(1.12);
  animation: aboutIntroSlide3d 3.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.about-intro__slide.is-exiting {
  opacity: 0;
  transform: scale(1.08) translate3d(-8%, 0, 80px) rotateY(10deg) rotateX(-2deg);
  filter: brightness(0.5);
}

@keyframes aboutIntroSlide3d {
  0% { transform: scale(1.08) translate3d(5%, 0, -60px) rotateY(-4deg); }
  100% { transform: scale(1) translate3d(-2%, 0, 20px) rotateY(2deg); }
}

.about-intro__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.15) 0%, rgba(5, 10, 18, 0.35) 55%, rgba(5, 10, 18, 0.82) 100%);
  pointer-events: none;
  z-index: 1;
}

.about-intro__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px 18px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.about-intro__progress {
  flex: 1 1 140px;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
}

.about-intro__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 999px;
  transition: width 0.35s ease;
}

.about-intro__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 39, 68, 0.82);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  backdrop-filter: blur(4px);
}

.about-intro__btn:hover {
  border-color: var(--gold-400);
}

.about-intro__replay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 10, 18, 0.55);
  border: none;
  cursor: pointer;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  gap: 10px;
}

.about-intro__replay[hidden] {
  display: none;
}

@media (max-width: 640px) {
  .about-intro__btn span {
    display: none;
  }

  .about-intro__btn {
    padding: 8px 11px;
  }
}

/* Office gallery — corporate grid */
.office-gallery {
  margin-top: 2rem;
}

.office-gallery__title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-400);
}

.office-gallery__sub {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.6;
}

.office-gallery__hint {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.office-gallery__panel {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: 14px;
  background: rgba(15, 39, 68, 0.45);
  border: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.office-gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.office-gallery__thumb {
  position: relative;
  margin: 0;
  min-height: 220px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.18);
  background: rgba(10, 22, 40, 0.65);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.office-gallery__thumb:nth-child(1) { grid-column: 1 / 3; }
.office-gallery__thumb:nth-child(2) { grid-column: 3 / 5; }
.office-gallery__thumb:nth-child(3) { grid-column: 5 / 7; }
.office-gallery__thumb:nth-child(4) { grid-column: 2 / 4; }
.office-gallery__thumb:nth-child(5) { grid-column: 4 / 6; }

.office-gallery__thumb:hover,
.office-gallery__thumb:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  border-color: rgba(201, 162, 39, 0.45);
  outline: none;
}

.office-gallery__thumb::after {
  content: "Click to enlarge";
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.82);
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.office-gallery__thumb:hover::after,
.office-gallery__thumb:focus-visible::after {
  opacity: 1;
}

.office-gallery__thumb img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.office-gallery__thumb:hover img {
  transform: scale(1.02);
}

/* Lightbox */
body.office-lightbox-open {
  overflow: hidden;
}

.office-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(5, 10, 18, 0.92);
  backdrop-filter: blur(6px);
}

.office-lightbox[hidden] {
  display: none;
}

.office-lightbox__dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: calc(100vh - 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.office-lightbox__img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: #0a1628;
}

.office-lightbox__caption {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.office-lightbox__close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 50%;
  background: rgba(15, 39, 68, 0.9);
  color: var(--gold-400);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.office-lightbox__close:hover {
  background: var(--gold-500);
  color: var(--navy-950);
}

@media (max-width: 900px) {
  .office-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .office-gallery__thumb:nth-child(n) {
    grid-column: auto;
  }

  .office-gallery__thumb {
    min-height: 180px;
  }

  .office-gallery__thumb img {
    max-height: 220px;
  }
}

@media (max-width: 540px) {
  .office-gallery__panel {
    padding: 0.75rem;
  }

  .office-gallery__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .office-gallery__thumb {
    min-height: 200px;
  }

  .office-gallery__thumb img {
    max-height: 260px;
  }

  .office-gallery__thumb::after {
    opacity: 1;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1.1fr;
}

.contact-card {
  padding: 1.5rem;
  background: rgba(15, 39, 68, 0.45);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.18);
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--gold-400);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card-actions {
  margin-top: 0.75rem;
}

.contact-card a {
  color: var(--white);
  font-weight: 600;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: rgba(5, 10, 18, 0.6);
  color: var(--white);
  font: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.2);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.2);
  min-height: 320px;
  background: var(--navy-800);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  padding-block: 3rem 2rem;
  background: var(--navy-950);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 1fr 1fr;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-brand .brand-logo {
  width: 52px;
  max-height: 52px;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  text-decoration: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(5, 10, 18, 0.98);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 320px;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  }

  .site-nav a[aria-current="page"] {
    border-bottom-color: rgba(148, 163, 184, 0.15);
    border-left: 3px solid var(--gold-500);
    padding-left: 0.5rem;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* ========== Routes page — premium corridor design ========== */
.routes-page {
  --routes-blue: #0a2342;
  --routes-gold: #f5b642;
}

.routes-page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: linear-gradient(160deg, #061528 0%, var(--routes-blue) 42%, #0d3560 78%, #061528 100%);
  border-bottom: 1px solid rgba(245, 182, 66, 0.2);
  overflow: hidden;
}

.routes-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(245, 182, 66, 0.14) 0%, transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(56, 120, 200, 0.16) 0%, transparent 42%);
  pointer-events: none;
}

.routes-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(245, 182, 66, 0.06) 0%, transparent 40%);
  background-size: 28px 28px, 100% 100%;
  pointer-events: none;
}

.routes-page-hero .container {
  position: relative;
  z-index: 2;
}

.routes-page-hero__world-map {
  position: absolute;
  inset: -8% -4%;
  width: 108%;
  height: 116%;
  z-index: 0;
  color: rgba(245, 182, 66, 0.35);
  opacity: 0.22;
  pointer-events: none;
}

.routes-page-hero__network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.45;
  pointer-events: none;
}

.routes-page-hero__network line {
  stroke: rgba(245, 182, 66, 0.3);
  stroke-width: 1.5;
  stroke-dasharray: 8 10;
  animation: routesLineFlow 4s linear infinite;
}

.routes-page-hero__network circle {
  fill: var(--routes-gold);
  opacity: 0.65;
}

@keyframes routesLineFlow {
  to { stroke-dashoffset: -36; }
}

.routes-page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(245, 182, 66, 0.12);
  border: 1px solid rgba(245, 182, 66, 0.35);
  color: var(--routes-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.routes-page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  letter-spacing: -0.02em;
  max-width: 18ch;
  color: var(--white);
}

.routes-page-hero__lead {
  margin: 0;
  max-width: 58ch;
  color: rgba(248, 250, 252, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.routes-page-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.routes-page-hero__stat {
  text-align: center;
  padding: 1.35rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.routes-page-hero__stat:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 182, 66, 0.35);
}

.routes-page-hero__stat-icon {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.routes-page-hero__stat strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--routes-gold);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.routes-page-hero__stat span {
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.68);
  line-height: 1.4;
}

.routes-corridors {
  position: relative;
  padding: 4.5rem 0;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--routes-blue) 50%, var(--navy-950) 100%);
  overflow: hidden;
}

.routes-corridors::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cg fill='none' stroke='%23f5b642' stroke-width='1' opacity='0.35'%3E%3Cpath d='M158 142c22-18 48-28 76-28 38 0 72 18 94 46 14 18 22 40 22 64 0 28-12 54-32 72-18 16-42 26-68 26-32 0-60-14-80-36-16-18-24-42-24-66 0-28 12-54 12-78z'/%3E%3Cpath d='M248 248c38-8 72-4 102 12 24 14 42 36 50 62 6 20 4 42-6 60-12 22-34 38-58 44-28 8-58 2-82-14-22-14-38-38-42-64-4-28 8-56 36-100z'/%3E%3Cpath d='M420 118c28-6 58-2 82 14 20 14 34 36 38 60 4 24-4 48-22 64-16 14-38 22-60 22-26 0-50-12-66-32-14-18-20-42-16-64 4-24 18-46 44-64z'/%3E%3Cpath d='M500 198c32-14 68-16 100-4 26 10 48 30 58 56 8 22 6 46-6 66-12 22-34 38-58 44-30 8-62 0-86-22-22-20-34-50-30-78 4-30 22-56 22-62z'/%3E%3Cpath d='M620 148c24-10 52-12 76-2 22 10 38 30 44 54 6 24 0 50-16 68-14 16-36 26-58 26-24 0-46-12-60-30-12-16-18-38-14-58 4-22 16-42 28-58z'/%3E%3Cpath d='M720 108c18-8 40-10 58-2 16 8 28 24 32 42 4 18 0 38-12 52-12 14-30 22-48 22-20 0-38-10-50-26-10-14-14-32-10-48 4-18 16-32 30-40z'/%3E%3Cpath d='M780 228c14-6 32-6 46 2 12 8 20 22 22 38 2 14-2 28-12 38-10 10-24 16-38 16-16 0-30-8-40-20-8-10-12-24-10-36 2-14 12-26 32-38z'/%3E%3Cpath d='M820 168c12-4 26-4 36 4 10 8 16 20 16 32 0 14-6 26-16 34-10 8-22 12-34 12-14 0-26-6-34-16-6-8-10-18-8-28 2-12 10-22 40-38z'/%3E%3C/g%3E%3C/svg%3E") center 40% / min(1200px, 95vw) auto no-repeat,
    radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: min(1200px, 95vw) auto, 32px 32px;
  opacity: 0.55;
  pointer-events: none;
}

.routes-corridors .container {
  position: relative;
  z-index: 1;
}

.routes-corridors__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.routes-corridors__head .section-title {
  color: var(--white);
  margin-bottom: 0.85rem;
}

.routes-corridors__head .section-intro {
  color: rgba(248, 250, 252, 0.72);
  margin: 0 auto;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.4rem;
}

.route-card {
  grid-column: span 4;
  position: relative;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(245, 182, 66, 0.35), rgba(255, 255, 255, 0.08) 40%, rgba(245, 182, 66, 0.12));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.route-card__inner {
  position: relative;
  height: 100%;
  border-radius: 21px;
  padding: 1.5rem 1.4rem 1.35rem;
  background: rgba(10, 35, 66, 0.58);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.route-card__map {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  filter: saturate(0.6) brightness(0.5);
  pointer-events: none;
}

.route-card__map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(6, 21, 40, 0.88), rgba(10, 35, 66, 0.72));
}

.route-card__route-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--routes-gold), transparent);
  opacity: 0.45;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.55s ease, opacity 0.45s ease;
}

.route-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.route-card:hover .route-card__inner {
  border-color: rgba(245, 182, 66, 0.5);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32), 0 0 28px rgba(245, 182, 66, 0.1);
}

.route-card:hover .route-card__map { opacity: 0.22; }
.route-card:hover .route-card__route-line {
  transform: scaleX(1);
  opacity: 1;
}

.route-card--hero { grid-column: span 12; }

.route-card--hero .route-card__inner {
  padding: 2rem 2rem 1.75rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.75rem 2rem;
  align-items: start;
}

.route-card--hero .route-card__top { grid-column: 1; }
.route-card--hero .route-card__metrics { grid-column: 2; grid-row: 1 / span 4; align-self: center; }
.route-card--hero .route-card__desc { grid-column: 1; }
.route-card--hero .route-card__hubs { grid-column: 1; }
.route-card--hero .route-card__tags { grid-column: 1 / -1; }

.route-card__content { position: relative; z-index: 1; }

.route-card__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--routes-gold);
}

.route-card__flags {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.25rem 0;
}

.route-card__flags img {
  width: 40px;
  height: 27px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.route-card--hero .route-card__flags img {
  width: 54px;
  height: 36px;
}

.route-card__flags img.route-card__flag-round {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.route-card__arrow {
  color: var(--routes-gold);
  font-size: 0.85rem;
  opacity: 0.85;
}

.route-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.route-card--hero h3 { font-size: 1.75rem; }

.route-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(245, 182, 66, 0.15);
  border: 1px solid rgba(245, 182, 66, 0.35);
  color: var(--routes-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.route-card__desc {
  margin: 0;
  color: rgba(248, 250, 252, 0.75);
  font-size: 0.92rem;
  line-height: 1.65;
}

.route-card__hubs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.route-card__hubs li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: rgba(248, 250, 252, 0.68);
  line-height: 1.5;
}

.route-card__hubs li i {
  color: var(--routes-gold);
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.route-card__metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.route-card__metrics li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.route-card__metrics li i {
  grid-row: span 2;
  color: var(--routes-gold);
  font-size: 0.9rem;
}

.route-card__metrics strong {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
}

.route-card__metrics span {
  font-size: 0.68rem;
  color: rgba(248, 250, 252, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.route-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.route-card__tag {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
}

.routes-support {
  padding: 4rem 0 5rem;
  background: var(--navy-950);
  border-top: 1px solid rgba(245, 182, 66, 0.15);
}

.routes-support .section-title {
  color: var(--white);
  text-align: center;
}

.routes-support .section-intro {
  text-align: center;
  margin-inline: auto;
  color: var(--muted);
}

.routes-support__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.routes-support__card {
  padding: 1.75rem 1.5rem;
  border-radius: 18px;
  background: rgba(15, 39, 68, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 39, 0.22);
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.routes-support__card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 182, 66, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.routes-support__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(245, 182, 66, 0.12);
  border: 1px solid rgba(245, 182, 66, 0.3);
  color: var(--routes-gold);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.routes-support__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--white);
}

.routes-support__card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.routes-cta-panel {
  margin-top: 2.5rem;
  padding: 2rem 2.25rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 182, 66, 0.1), rgba(10, 35, 66, 0.6));
  border: 1px solid rgba(245, 182, 66, 0.28);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.routes-cta-panel__text h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: var(--white);
}

.routes-cta-panel__text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 48ch;
}

.routes-cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 1100px) {
  .routes-page-hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-card { grid-column: span 6; }

  .route-card--hero .route-card__inner {
    grid-template-columns: 1fr;
  }

  .route-card--hero .route-card__metrics {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .routes-grid { grid-template-columns: 1fr; }
  .route-card, .route-card--hero { grid-column: span 1; }
  .routes-support__grid { grid-template-columns: 1fr; }
  .routes-cta-panel { flex-direction: column; text-align: center; }
  .routes-cta-panel__actions { justify-content: center; width: 100%; }
}

@media (max-width: 480px) {
  .routes-page-hero__stats { grid-template-columns: 1fr; }
}
