:root {
  --nav-height: 64px;
  --navy: #082442;
  --navy-2: #0d3157;
  --ink: #071b33;
  --text: #23364d;
  --muted: #617084;
  --line: #dfe5ed;
  --panel: #ffffff;
  --paper: #f7f8fa;
  --gold: #dfb92f;
  --gold-2: #c9a01f;
  --whatsapp: #20c967;
  --radius: 10px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  font-family:
    "Aptos",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
iframe,
canvas {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

.page-shell {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding-inline: 1.55rem;
  font-weight: 800;
  transition:
    transform 160ms var(--ease-out),
    background-color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.btn:active {
  transform: scale(0.97);
}

.btn-gold {
  border: 1px solid rgba(125, 98, 14, 0.12);
  background: var(--gold);
  color: #06172b;
  box-shadow: 0 10px 22px rgba(126, 99, 13, 0.18);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: #eac642;
  color: #06172b;
  box-shadow: 0 14px 28px rgba(126, 99, 13, 0.24);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  color: #ffffff;
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.navbar {
  min-height: var(--nav-height);
  padding-block: 0.3rem;
  background: rgba(248, 249, 251, 0.96);
  border-bottom: 1px solid rgba(8, 36, 66, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar > .page-shell,
.navbar-collapse {
  align-items: center;
}

.navbar-brand {
  width: 112px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.navbar-brand img {
  width: auto;
  max-width: 100%;
  max-height: 48px;
  height: auto;
  object-fit: contain;
  transform: none;
}

.navbar-nav {
  align-items: center;
  gap: clamp(0.45rem, 1.1vw, 1.2rem);
}

.nav-link {
  color: #06172b;
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.2;
  padding-block: 0.5rem !important;
  padding-inline: 0.72rem !important;
  transition:
    color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus-visible,
.navbar .nav-link.active,
.navbar .nav-link.show {
  color: var(--gold-2);
}

.nav-cta {
  min-height: 38px;
  padding: 0.48rem 1.1rem;
  font-size: 0.88rem;
  line-height: 1;
  white-space: nowrap;
}

.navbar-toggler {
  padding: 0.25rem 0.5rem;
  border-color: rgba(8, 36, 66, 0.16);
  border-radius: var(--radius);
  line-height: 1;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(223, 185, 47, 0.25);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  background:
    linear-gradient(90deg, rgba(8, 36, 66, 0.92) 0%, rgba(8, 36, 66, 0.78) 45%, rgba(8, 36, 66, 0.35) 100%),
    url("../img/bg-hero.png") center right / cover no-repeat;
  background-color: var(--navy);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 36, 66, 0.08), rgba(8, 36, 66, 0.64)),
    radial-gradient(circle at 86% 80%, rgba(223, 185, 47, 0.16), transparent 32%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.45rem;
  padding-block: clamp(6rem, 12vh, 9rem) clamp(3.2rem, 6vh, 4rem);
}

.hero-content h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.05;
  font-weight: 900;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.65vw, 1.28rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
}

.hero-feature-bar {
  width: min(100%, 740px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: clamp(2.2rem, 8vh, 5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-feature-bar span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-feature-bar i {
  color: var(--gold);
  font-size: 1.2rem;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.compact-heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading h2,
.faq-copy h2,
.final-cta h2 {
  max-width: 760px;
  font-size: clamp(2.05rem, 4vw, 3.1rem);
  line-height: 1.08;
  font-weight: 900;
}

.section-heading p {
  max-width: 610px;
  font-size: 1.04rem;
}

.services-section {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100dvh - var(--nav-height));
  display: flex;
  align-items: center;
  padding-block: clamp(3.4rem, 6vh, 4.8rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 252, 253, 0.84), rgba(251, 252, 253, 0.6)),
    url("../img/servicios.png") center / cover no-repeat;
  background-color: var(--paper);
}

.services-section .page-shell,
.routes-section .page-shell {
  position: relative;
  z-index: 1;
}

.services-section .section-heading {
  margin-bottom: clamp(1.7rem, 3vh, 2.4rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

.service-grid-detailed {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card {
  min-height: 320px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 1.05rem;
  padding: clamp(1.5rem, 2.2vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.service-grid-detailed .service-card {
  min-height: 292px;
  gap: 0.75rem;
  padding: 1.05rem;
}

.service-icon,
.trust-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #faf6e8;
  color: var(--navy);
  font-size: 1.25rem;
}

.service-card h3,
.trust-item h3 {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.15;
  font-weight: 900;
}

.service-card p,
.trust-item p {
  color: var(--text);
  font-size: 0.98rem;
}

.service-grid-detailed .service-card p {
  font-size: 0.84rem;
  line-height: 1.42;
}

.service-quote-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.2rem;
  border: 1px solid rgba(8, 36, 66, 0.18);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition:
    transform 180ms var(--ease-out),
    border-color 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.service-quote-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.materials-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.materials-strip div {
  display: grid;
  gap: 0.35rem;
  min-height: 82px;
  padding: 0.95rem 1.15rem;
  background: #ffffff;
}

.materials-strip strong {
  color: var(--ink);
  font-weight: 900;
}

.materials-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.coverage-section {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100dvh - var(--nav-height));
  display: flex;
  align-items: center;
  padding-block: clamp(3.4rem, 6vh, 4.8rem);
  overflow: hidden;
  background: var(--navy);
}

.section-media,
.section-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-media {
  inset: -12% -4% -18%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate3d(0, var(--parallax-shift, 0px), 0) scale(1.06);
  transform-origin: center;
  will-change: transform;
}

.coverage-section .page-shell,
.location-section .page-shell {
  position: relative;
  z-index: 2;
}

.coverage-media {
  background-image: url("../img/bg-cobertura.png");
  filter: saturate(0.95) contrast(1.03);
}

.coverage-tint {
  background:
    linear-gradient(90deg, rgba(8, 36, 66, 0.9) 0%, rgba(8, 36, 66, 0.76) 54%, rgba(8, 36, 66, 0.58) 100%),
    linear-gradient(180deg, rgba(8, 36, 66, 0.14), rgba(8, 36, 66, 0.58));
}

.section-heading.dark h2 {
  color: #ffffff;
}

.section-heading.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.coverage-section .section-heading {
  margin-bottom: clamp(2rem, 4vh, 3rem);
}

.coverage-section .section-heading p {
  max-width: 720px;
  letter-spacing: 0.012em;
  line-height: 1.75;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
}

.coverage-pillar {
  position: relative;
  min-height: clamp(152px, 19vh, 185px);
  display: grid;
  align-content: end;
  gap: 0.45rem;
  overflow: hidden;
  padding: clamp(1rem, 1.5vw, 1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(6, 23, 43, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 40px rgba(0, 0, 0, 0.18);
  text-align: left;
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.coverage-pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(223, 185, 47, 0.9), transparent);
  opacity: 0.28;
  transform: scaleX(0.44);
  transform-origin: left;
  transition:
    opacity 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.coverage-pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(223, 185, 47, 0.12), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--ease-out);
}

.pillar-mark,
.pillar-number {
  position: absolute;
  top: 1rem;
}

.pillar-mark {
  left: 1rem;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(223, 185, 47, 0.34);
  border-radius: 4px;
  background: rgba(8, 36, 66, 0.42);
  color: var(--gold);
  font-size: 1.15rem;
}

.pillar-number {
  right: 1rem;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.coverage-pillar strong,
.coverage-pillar span:not(.pillar-mark, .pillar-number) {
  position: relative;
  z-index: 1;
}

.coverage-pillar strong {
  color: #ffffff;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.1;
  font-weight: 900;
}

.coverage-pillar span:not(.pillar-mark, .pillar-number) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 750;
}

.coverage-network {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: clamp(1.4rem, 3vh, 2rem);
  padding-top: 1.45rem;
}

.coverage-network::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(223, 185, 47, 0.56), rgba(255, 255, 255, 0.22), rgba(223, 185, 47, 0.56), transparent);
}

.coverage-network span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.52rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  font-weight: 850;
  letter-spacing: 0.02em;
  text-align: center;
  transition:
    color 220ms var(--ease-out),
    transform 220ms var(--ease-out),
    text-shadow 220ms var(--ease-out);
}

.coverage-network span::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid rgba(223, 185, 47, 0.8);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 5px rgba(223, 185, 47, 0.08);
}

.routes-section,
.trust-section,
.location-section {
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100dvh - var(--nav-height));
  display: flex;
  align-items: center;
  padding-block: clamp(4.8rem, 8vw, 6.5rem);
  background: #ffffff;
}

.routes-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 252, 253, 0.86), rgba(251, 252, 253, 0.62)),
    url("../img/itinerario.png") center / cover no-repeat;
  background-color: var(--paper);
}

.location-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 36, 66, 0.08), rgba(8, 36, 66, 0.08)),
    url("../img/ubicacionbg.png") center / cover no-repeat;
  background-color: var(--paper);
}

.location-media {
  background-image: url("../img/ubicacionbg.png");
  background-position: center;
  filter: saturate(0.92) contrast(1.05);
}

.location-tint {
  background:
    linear-gradient(90deg, rgba(247, 248, 250, 0.72) 0%, rgba(247, 248, 250, 0.5) 48%, rgba(247, 248, 250, 0.2) 100%),
    linear-gradient(180deg, rgba(247, 248, 250, 0.68), rgba(247, 248, 250, 0.5));
}

.trust-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(8, 36, 66, 0.12);
  background:
    linear-gradient(90deg, rgba(8, 36, 66, 0.92) 0%, rgba(8, 36, 66, 0.78) 52%, rgba(8, 36, 66, 0.5) 100%),
    url("../img/nosotros.png") center right / cover no-repeat;
  background-color: var(--navy);
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 36, 66, 0.08), rgba(8, 36, 66, 0.58)),
    linear-gradient(135deg, rgba(223, 185, 47, 0.16), transparent 44%);
  pointer-events: none;
}

.trust-section::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), rgba(223, 185, 47, 0));
  pointer-events: none;
}

.trust-section .page-shell {
  position: relative;
  z-index: 2;
}

.trust-section .section-heading h2 {
  color: #ffffff;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.availability-grid article {
  min-height: 166px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  transition:
    opacity 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.route-date {
  display: grid;
  place-items: center;
  align-content: center;
  grid-template-columns: auto auto;
  gap: 0.16rem;
  min-height: auto;
  padding: 0.72rem 0.6rem;
  background: #415229;
  color: #ffffff;
  text-align: center;
  transition: background-color 220ms var(--ease-out);
}

.route-date span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.route-date strong {
  color: #ffffff;
  font-size: 2rem;
  line-height: 0.95;
  font-weight: 900;
}

.route-date small {
  align-self: end;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
}

.route-info {
  display: grid;
  align-content: center;
  gap: 0.48rem;
  padding: 0.88rem 0.95rem;
}

.route-info span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.route-info strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.2;
}

.route-info .status-badge {
  width: fit-content;
  border: 1px solid rgba(118, 88, 12, 0.18);
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  background: #faf6e8;
  color: #7a5f0c;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    border-color 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    color 220ms var(--ease-out);
}

.route-finished {
  opacity: 0.72;
}

.route-finished .route-date {
  background: #6a7158;
}

.route-finished .status-badge {
  border-color: rgba(80, 92, 72, 0.2);
  background: #eef0eb;
  color: #59634f;
}

.route-available .route-date {
  background: var(--navy);
}

.route-available .status-badge {
  border-color: rgba(32, 201, 103, 0.22);
  background: rgba(32, 201, 103, 0.1);
  color: #137c42;
}

.about-location-section {
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
  background: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(3rem, 6vw, 4.8rem);
  text-align: center;
}

.trust-section .trust-grid {
  margin-bottom: 0;
}

.trust-item {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.trust-section .trust-item {
  min-height: 255px;
  align-content: center;
  padding: clamp(1.45rem, 2.4vw, 2.1rem);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(7, 27, 51, 0.18);
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #ffffff;
}

.location-heading {
  margin-bottom: 1.6rem;
}

.map-wrap {
  position: relative;
  width: min(100%, 820px);
  min-height: 335px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(7, 27, 51, 0.08);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 335px;
  display: block;
  border: 0;
}

.map-info {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.22rem;
  padding: 1rem 1.25rem;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(7, 27, 51, 0.12);
}

.map-info strong {
  color: var(--ink);
}

.map-info span,
.map-info small {
  color: var(--muted);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.location-layout .map-wrap {
  width: 100%;
}

.location-details {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(7, 27, 51, 0.06);
}

.location-details h3 {
  font-size: 1.25rem;
  font-weight: 900;
}

.location-details dl {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.location-details dl div {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.location-details dt {
  color: var(--ink);
  font-weight: 900;
}

.location-details dd {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100dvh - var(--nav-height));
  display: flex;
  align-items: center;
  padding-block: clamp(5rem, 8vw, 6.5rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 248, 250, 0.76), rgba(247, 248, 250, 0.2)),
    url("../img/preguntas.png") center / cover no-repeat;
  background-color: var(--paper);
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 248, 250, 0.24), rgba(247, 248, 250, 0.08));
  pointer-events: none;
}

.faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.faq-copy {
  display: grid;
  gap: 1.2rem;
  padding-top: 0.3rem;
}

.faq-copy h2 {
  color: var(--navy);
}

.faq-copy p {
  color: var(--navy-2);
}

.faq-list {
  display: grid;
  gap: 1.25rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(8, 36, 66, 0.94);
  box-shadow: 0 16px 34px rgba(7, 27, 51, 0.2);
}

.faq-question {
  width: 100%;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.25rem 2rem;
  border: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 900;
  text-align: left;
}

.faq-question i {
  flex: 0 0 auto;
  color: var(--gold);
  transition: transform 200ms var(--ease-out);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  color: rgba(255, 255, 255, 0.84);
  transition:
    max-height 220ms var(--ease-out),
    padding-bottom 220ms var(--ease-out);
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.84);
}

.faq-item.is-open .faq-question i {
  transform: rotate(180deg);
}

.faq-item.is-open .faq-answer {
  padding-bottom: 1.25rem;
}

.final-cta {
  position: relative;
  min-height: 480px;
  min-height: clamp(480px, 72dvh, 560px);
  display: flex;
  align-items: center;
  padding-block: clamp(4.6rem, 8vw, 6.3rem);
  overflow: hidden;
  background: var(--navy);
}

.cta-mountain,
.cta-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-mountain {
  inset: -12% -4% -18%;
  background: url("../img/finalcta.png") center 50% / cover no-repeat;
  filter: saturate(0.9) contrast(1.06);
  transform: translate3d(0, var(--parallax-shift, 0px), 0) scale(1.06);
  transform-origin: center;
  will-change: transform;
}

.cta-shade {
  background:
    linear-gradient(90deg, rgba(8, 36, 66, 0.94) 0%, rgba(8, 36, 66, 0.82) 52%, rgba(8, 36, 66, 0.68) 100%),
    linear-gradient(180deg, rgba(8, 36, 66, 0.18), rgba(8, 36, 66, 0.62));
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 1.6rem;
  text-align: center;
}

.final-cta h2 {
  color: #ffffff;
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  font-weight: 700;
}

.site-footer {
  background: #06172b;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1.15fr;
  gap: clamp(1.8rem, 5vw, 5rem);
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.footer-grid h2 {
  margin-bottom: 1.15rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
}

.footer-grid a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.9;
  transition: color 180ms var(--ease-out);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold);
}

.footer-grid a i {
  color: var(--gold);
}

.footer-brand {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.footer-brand img {
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.footer-credit-link {
  color: inherit;
  text-decoration: none;
  transition:
    color 180ms var(--ease-out),
    opacity 180ms var(--ease-out);
}

.footer-credit-link:hover,
.footer-credit-link:focus-visible {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-bottom p:last-child {
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 2vw, 1.6rem);
  bottom: clamp(1rem, 2vw, 1.6rem);
  z-index: 1040;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #ffffff;
  font-size: 1.75rem;
  box-shadow: 0 0 0 9px rgba(32, 201, 103, 0.18);
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(32, 201, 103, 0.36);
  animation: whatsappPulse 2.4s var(--ease-out) infinite;
}

.whatsapp-float:active {
  transform: scale(0.94);
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.9;
    transform: scale(0.86);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    transform: translateY(-1px);
  }

  .service-card:hover,
  .coverage-pillar:hover,
  .trust-section .trust-item:hover {
    transform: translateY(-4px);
  }

  .service-card,
  .coverage-pillar,
  .trust-section .trust-item {
    transition:
      transform 180ms var(--ease-out),
      border-color 180ms var(--ease-out),
      box-shadow 180ms var(--ease-out);
  }

  .service-card:hover,
  .trust-section .trust-item:hover {
    box-shadow: 0 16px 36px rgba(7, 27, 51, 0.08);
  }

  .service-quote-link:hover,
  .service-quote-link:focus-visible {
    border-color: rgba(201, 160, 31, 0.56);
    background: var(--gold);
    color: #06172b;
    box-shadow: 0 10px 22px rgba(126, 99, 13, 0.18);
    transform: translateY(-1px);
  }

  .coverage-pillar:hover {
    border-color: rgba(223, 185, 47, 0.52);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.06)),
      rgba(6, 23, 43, 0.68);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 22px 48px rgba(0, 0, 0, 0.24);
  }

  .coverage-pillar:hover::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .coverage-pillar:hover::after {
    opacity: 1;
  }

  .coverage-network span:hover {
    color: #ffffff;
    text-shadow: 0 0 18px rgba(223, 185, 47, 0.32);
    transform: translateY(-2px);
  }

  .whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 11px rgba(32, 201, 103, 0.2);
  }
}

@media (min-width: 992px) and (max-height: 820px) {
  :root {
    --nav-height: 60px;
  }

  .hero-content {
    padding-block: 4.8rem 2.6rem;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 5.3vw, 4.8rem);
  }

  .hero-feature-bar {
    margin-top: 2.4rem;
    padding-top: 1.45rem;
  }

  .services-section,
  .coverage-section,
  .routes-section,
  .trust-section,
  .location-section,
  .faq-section {
    padding-block: 4.2rem;
  }

  .section-heading {
    margin-bottom: 2.6rem;
  }

  .service-card {
    min-height: 276px;
    padding: 1.35rem;
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .service-grid-detailed .service-card {
    min-height: 250px;
    padding: 0.85rem;
  }

  .service-grid-detailed .service-card p {
    font-size: 0.78rem;
    line-height: 1.34;
  }

  .service-quote-link {
    min-height: 36px;
    padding-block: 0.58rem;
    font-size: 0.78rem;
  }

  .materials-strip div {
    min-height: 72px;
    padding: 0.75rem 0.9rem;
  }

  .availability-grid article {
    min-height: 108px;
    padding: 0.9rem;
  }

  .availability-grid article {
    padding: 0;
  }

  .about-location-section {
    padding-block: 2.8rem;
  }

  .trust-grid {
    gap: 2.8rem;
    margin-bottom: 1.8rem;
  }

  .trust-item {
    gap: 0.65rem;
  }

  .trust-icon {
    width: 48px;
    height: 48px;
  }

  .location-heading {
    margin-bottom: 1rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 285px;
  }

  .faq-question {
    min-height: 76px;
  }
}

@media (max-width: 1199.98px) {
  .service-grid,
  .availability-grid,
  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .availability-grid article {
    min-height: 118px;
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .route-date {
    grid-template-columns: 1fr;
    min-height: 100%;
  }

  .route-date span,
  .route-date small {
    grid-column: auto;
  }

  .route-info strong {
    font-size: 1.03rem;
  }

  .materials-strip {
    grid-template-columns: 1fr;
  }

  .coverage-network {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.05rem;
  }

  .coverage-network::before {
    display: none;
  }
}

@media (max-width: 991.98px) {
  :root {
    --nav-height: 60px;
  }

  .navbar-collapse {
    margin-top: 0.5rem;
    padding: 0.8rem;
    border: 1px solid rgba(8, 36, 66, 0.1);
    border-radius: var(--radius);
    background: #ffffff;
  }

  .navbar-nav {
    align-items: stretch;
  }

  .nav-link {
    padding-block: 0.58rem !important;
  }

  .nav-cta {
    width: 100%;
    margin-top: 0.75rem;
  }

  .hero-section {
    min-height: 100dvh;
    background-position: 64% center;
  }

  .cta-mountain {
    background-position: 60% center;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 11vw, 5.2rem);
  }

  .hero-feature-bar,
  .trust-grid,
  .faq-layout,
  .location-layout,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .coverage-section .section-heading p {
    line-height: 1.62;
  }

  .coverage-pillar {
    min-height: 142px;
  }

  .trust-grid {
    gap: 2.2rem;
  }

  .faq-copy {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom p,
  .footer-bottom p:last-child {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  :root {
    --nav-height: 56px;
  }

  .page-shell {
    padding-inline: 1rem;
  }

  .navbar-brand {
    width: 92px;
    height: 40px;
  }

  .navbar-brand img {
    width: auto;
    max-height: 40px;
    transform: none;
  }

  .hero-section {
    background-position: 68% center;
  }

  .cta-mountain {
    background-position: 64% center;
  }

  .hero-content {
    gap: 1rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .final-cta .btn {
    width: 100%;
  }

  .hero-feature-bar,
  .service-grid,
  .availability-grid,
  .coverage-network {
    grid-template-columns: 1fr;
  }

  .coverage-network {
    gap: 0.65rem;
    padding-top: 0;
  }

  .coverage-network span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.65rem;
    min-height: 42px;
    padding: 0.68rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: rgba(8, 36, 66, 0.36);
    text-align: left;
  }

  .availability-grid article {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .route-date strong {
    font-size: 1.9rem;
  }

  .route-info {
    padding: 0.9rem;
  }

  .services-section,
  .coverage-section,
  .about-location-section,
  .routes-section,
  .trust-section,
  .location-section,
  .faq-section {
    min-height: auto;
    padding-block: 4.5rem;
  }

  .service-card {
    min-height: auto;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 320px;
  }

  .map-info {
    right: 1rem;
  }

  .faq-question {
    min-height: 76px;
    padding: 1rem 1.15rem;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding-inline: 1.15rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1rem;
    padding-block: 2.4rem 2rem;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid h2 {
    margin-bottom: 0.7rem;
  }

  .footer-grid a {
    line-height: 1.72;
    font-size: 0.92rem;
  }

  .footer-brand {
    gap: 0.75rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    gap: 0.45rem;
    padding-block: 0.85rem 1.05rem;
  }

  .footer-bottom p {
    font-size: 0.76rem;
  }

  .services-section,
  .routes-section {
    padding-block: 2.55rem;
  }

  .services-section .section-heading,
  .routes-section .section-heading {
    gap: 0.55rem;
    margin-bottom: 1.35rem;
  }

  .services-section .section-heading h2,
  .routes-section .section-heading h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .services-section .section-heading p,
  .routes-section .section-heading p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .service-grid-detailed {
    gap: 0.75rem;
  }

  .service-grid-detailed .service-card {
    min-height: auto;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 0.8rem;
    row-gap: 0.48rem;
    padding: 0.88rem;
  }

  .service-grid-detailed .service-icon {
    grid-row: 1 / 3;
    width: 38px;
    height: 38px;
  }

  .service-grid-detailed .service-card h3 {
    font-size: 1.02rem;
  }

  .service-grid-detailed .service-card p {
    font-size: 0.82rem;
    line-height: 1.34;
  }

  .service-grid-detailed .service-quote-link {
    grid-column: 1 / -1;
    min-height: 36px;
    padding-block: 0.56rem;
  }

  .materials-strip {
    margin-top: 0.75rem;
  }

  .materials-strip div {
    min-height: auto;
    padding: 0.75rem 0.9rem;
  }

  .routes-section .availability-grid {
    gap: 0.62rem;
  }

  .availability-grid article {
    min-height: 92px;
  }

  .route-date {
    padding: 0.65rem 0.45rem;
  }

  .route-date span,
  .route-date small {
    font-size: 0.64rem;
  }

  .route-date strong {
    font-size: 1.65rem;
  }

  .route-info {
    gap: 0.36rem;
    padding: 0.68rem 0.75rem;
  }

  .route-info span,
  .route-info em {
    font-size: 0.66rem;
  }

  .route-info strong {
    font-size: 0.88rem;
  }

  .coverage-section,
  .trust-section,
  .location-section {
    min-height: calc(100vh - var(--nav-height));
    min-height: calc(100svh - var(--nav-height));
    padding-block: 1.45rem;
  }

  .coverage-section .section-heading,
  .trust-section .section-heading,
  .location-section .section-heading {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .coverage-section .section-heading h2,
  .trust-section .section-heading h2,
  .location-section .section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
    line-height: 1.06;
  }

  .coverage-section .section-heading p,
  .location-section .section-heading p {
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .coverage-pillar {
    min-height: 104px;
    gap: 0.26rem;
    padding: 0.7rem;
  }

  .pillar-mark {
    top: 0.62rem;
    left: 0.62rem;
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .pillar-number {
    top: 0.68rem;
    right: 0.7rem;
    font-size: 0.68rem;
  }

  .coverage-pillar strong {
    font-size: 0.88rem;
  }

  .coverage-pillar span:not(.pillar-mark, .pillar-number) {
    font-size: 0.74rem;
  }

  .coverage-network {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 0.8rem;
    padding-top: 0;
  }

  .coverage-network span {
    min-height: 34px;
    padding: 0.48rem 0.62rem;
    font-size: 0.72rem;
  }

  .coverage-network span::before {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 3px rgba(223, 185, 47, 0.08);
  }

  .trust-grid {
    gap: 0.9rem;
  }

  .trust-section .trust-item {
    min-height: 132px;
    grid-template-columns: 52px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    column-gap: 0.95rem;
    row-gap: 0.32rem;
    padding: 1.08rem;
    text-align: left;
  }

  .trust-section .trust-icon {
    grid-row: 1 / 3;
    width: 52px;
    height: 52px;
  }

  .trust-section .trust-item h3 {
    font-size: 1.08rem;
  }

  .trust-section .trust-item p {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .location-layout {
    gap: 0.75rem;
  }

  .location-details {
    gap: 0.65rem;
    padding: 0.95rem;
  }

  .location-details h3 {
    font-size: 1.03rem;
  }

  .location-details dl {
    gap: 0.42rem;
  }

  .location-details dl div {
    gap: 0.08rem;
    padding-bottom: 0.42rem;
  }

  .location-details dt,
  .location-details dd {
    font-size: 0.82rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 230px;
  }

  .map-info {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.72rem 0.85rem;
  }

  .map-info small {
    display: none;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 1.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
