:root {
  --navy: #0d2238;
  --navy-deep: #081625;
  --navy-soft: #183a59;
  --blue: #2a6da3;
  --white: #ffffff;
  --mist: #f3f6f9;
  --mist-deep: #e6edf4;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: #ffffff;
  --text: #1f3144;
  --muted: #617488;
  --line: rgba(13, 34, 56, 0.12);
  --line-strong: rgba(13, 34, 56, 0.2);
  --shadow-soft: 0 14px 32px rgba(8, 22, 37, 0.06);
  --shadow: 0 20px 46px rgba(8, 22, 37, 0.08);
  --shadow-strong: 0 38px 86px rgba(8, 22, 37, 0.16);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --whatsapp: #1f8f5f;
  --whatsapp-dark: #176a46;
  --container: min(1180px, calc(100vw - 2rem));
  --font-heading: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Lato", "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(42, 109, 163, 0.09), transparent 22%),
    radial-gradient(circle at top right, rgba(24, 58, 89, 0.06), transparent 20%),
    linear-gradient(180deg, #fbfcfd 0%, #ffffff 28%);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-top-anchor {
  display: block;
  height: 0;
}

.section {
  padding: 6.2rem 0;
}

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

.section-heading-narrow {
  max-width: 760px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2,
.hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--navy);
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(2.85rem, 6vw, 5.3rem);
  color: var(--white);
  max-width: 13ch;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.section-heading p,
.hero-text,
.about-copy p,
.contact-copy p,
.benefit-card p,
.service-card p,
.fleet-content p,
.process-step p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.72;
}

.section-heading p {
  max-width: 42rem;
  margin: 1rem 0 0;
}

.section-heading .eyebrow,
.section-heading .section-chip {
  margin: 0 0 1.05rem;
  color: var(--blue);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow::before {
  content: "";
  width: 2.9rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.95rem;
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  background: rgba(42, 109, 163, 0.08);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button:focus-visible {
  outline: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: var(--white);
  box-shadow: 0 18px 38px rgba(31, 143, 95, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(8, 22, 37, 0.14);
}

@media (hover: hover) {
  .button:hover {
    transform: translateY(-2px);
  }

  .button-primary:hover {
    box-shadow: 0 22px 42px rgba(31, 143, 95, 0.32);
  }

  .button-secondary:hover {
    background: rgba(255, 255, 255, 0.17);
  }
}

.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.topbar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.3rem;
  font-size: 0.9rem;
}

.topbar-meta a,
.topbar-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar-meta a {
  color: var(--white);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.topbar-social a {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 180ms ease, transform 180ms ease;
}

.topbar-social svg {
  width: 15px;
  height: 15px;
  color: var(--white);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
}

.topbar-social a:last-child svg {
  fill: currentColor;
  stroke: none;
}

@media (hover: hover) {
  .topbar-social a:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13, 34, 56, 0.08);
  box-shadow: 0 10px 30px rgba(8, 22, 37, 0.04);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: clamp(156px, 16vw, 214px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.nav-cta {
  white-space: nowrap;
}

.site-nav a:not(.nav-cta) {
  padding: 0.62rem 0.92rem;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.24rem;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: left center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav a:not(.nav-cta):focus-visible,
.site-nav a:not(.nav-cta):active {
  outline: none;
  color: var(--blue);
  background: rgba(42, 109, 163, 0.08);
}

.site-nav a:not(.nav-cta):focus-visible::after,
.site-nav a:not(.nav-cta):active::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (hover: hover) {
  .site-nav a:not(.nav-cta):hover {
    color: var(--blue);
    background: rgba(42, 109, 163, 0.08);
  }

  .site-nav a:not(.nav-cta):hover::after {
    opacity: 1;
    transform: scaleX(1);
  }
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 0;
  border-radius: 14px;
  background: var(--mist);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.28rem 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 6.6rem 0 10.2rem;
  background:
    linear-gradient(94deg, rgba(7, 19, 33, 0.9) 0%, rgba(8, 22, 37, 0.7) 34%, rgba(8, 22, 37, 0.38) 67%, rgba(7, 19, 33, 0.8) 100%),
    url("./assets/hero-main.png") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(42, 109, 163, 0.22), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(42, 109, 163, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(9, 23, 38, 0.05), rgba(9, 23, 38, 0.3));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: clamp(35rem, 76vh, 47rem);
}

.hero-copy {
  max-width: min(46rem, 100%);
  color: var(--white);
  text-shadow: 0 16px 32px rgba(5, 14, 24, 0.28);
}

.hero-copy .eyebrow {
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-text {
  max-width: 38rem;
  margin: 1.45rem 0 0;
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2.15rem;
}

.hero-actions .button {
  min-width: 12.25rem;
}

.quick-facts {
  position: relative;
  z-index: 2;
  margin-top: -4.8rem;
  padding-bottom: 0.35rem;
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.6rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.fact-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 254, 0.7));
  border: 1px solid rgba(13, 34, 56, 0.06);
  box-shadow: none;
  display: grid;
  align-content: start;
  gap: 0.4rem;
}

.fact-card::before {
  content: "";
  position: absolute;
  inset: 0.95rem auto auto 1.2rem;
  width: 2.5rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), rgba(42, 109, 163, 0.18));
}

.fact-card span {
  display: block;
  margin-bottom: 0;
  padding-top: 0.78rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6a8095;
}

.fact-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.04rem;
  line-height: 1.38;
  color: var(--navy);
}

.difference {
  padding-top: 4.8rem;
  background:
    linear-gradient(180deg, rgba(243, 246, 249, 0.72), rgba(255, 255, 255, 0.98) 30%, rgba(255, 255, 255, 1)),
    linear-gradient(90deg, rgba(42, 109, 163, 0.04), transparent 38%);
}

.difference-heading {
  margin-bottom: 2.35rem;
}

.benefits-grid,
.services-grid,
.process-grid,
.footer-grid {
  display: grid;
  gap: 1.35rem;
}

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

.benefit-card,
.service-card,
.process-step,
.contact-card,
.contact-form,
.faq-list details,
.info-card,
.fleet-card {
  background: var(--panel-strong);
  border: 1px solid rgba(13, 34, 56, 0.08);
  box-shadow: var(--shadow);
}

.benefit-card {
  position: relative;
  padding: 1.75rem 1.6rem;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  gap: 0.9rem;
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), rgba(42, 109, 163, 0.12));
}

.icon-badge {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0;
  border-radius: 18px;
  border: 1px solid rgba(42, 109, 163, 0.12);
  background: linear-gradient(180deg, rgba(42, 109, 163, 0.14), rgba(42, 109, 163, 0.06));
  color: var(--blue);
}

.icon-badge svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  margin-bottom: 0;
  border-radius: 18px;
  border: 1px solid rgba(42, 109, 163, 0.12);
  background: linear-gradient(180deg, rgba(42, 109, 163, 0.14), rgba(42, 109, 163, 0.06));
  color: var(--blue);
  font-weight: 800;
}

.benefit-card h3,
.service-card h3,
.fleet-content h3,
.process-step h3,
.contact-card strong,
.contact-card a,
.footer-links h3 {
  margin: 0;
  color: var(--navy);
}

.benefit-card h3,
.service-card h3,
.fleet-content h3,
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1.3;
}

.benefit-card p,
.service-card p,
.process-step p {
  margin: 0;
}

.services {
  background: linear-gradient(180deg, rgba(243, 246, 249, 0.9), #ffffff 34%, rgba(243, 246, 249, 0.42));
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.service-priority-label {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.service-priority-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.7rem;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 34, 56, 0.08);
  box-shadow: var(--shadow-soft);
}

.service-priority-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(13, 34, 56, 0.04), rgba(13, 34, 56, 0.06));
  border: 1px solid rgba(13, 34, 56, 0.06);
  color: var(--navy);
  font-weight: 800;
}

.service-card {
  position: relative;
  padding: 1.55rem 1.45rem 1.75rem;
  border-radius: 26px;
  overflow: hidden;
  display: grid;
  gap: 0.85rem;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 109, 163, 0.02), transparent 44%);
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 1.45rem 1.1rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.service-card-secondary {
  background: linear-gradient(180deg, #fbfcfd, #f4f8fb);
  border-color: rgba(13, 34, 56, 0.07);
  box-shadow: 0 16px 32px rgba(8, 22, 37, 0.05);
}

.service-card-secondary::after {
  opacity: 0.5;
}

.fleet-grid,
.about-layout,
.contact-layout {
  display: grid;
  gap: 1.6rem;
}

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

.fleet-card {
  display: grid;
  gap: 0;
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.fleet-media {
  padding: 1.1rem;
  background: linear-gradient(180deg, #f7fafc, #eaf1f6);
  border-bottom: 1px solid rgba(13, 34, 56, 0.06);
}

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

.fleet-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #dbe7f0;
  box-shadow:
    inset 0 0 0 1px rgba(13, 34, 56, 0.06),
    0 16px 34px rgba(13, 34, 56, 0.08);
}

.fleet-shot-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.fleet-shot img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.fleet-shot-chip {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.44rem 0.76rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 22, 37, 0.68);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(8, 22, 37, 0.2);
  pointer-events: none;
  transition: transform 220ms ease, background-color 220ms ease;
}

.fleet-shot-trigger:focus-visible {
  outline: 3px solid rgba(42, 109, 163, 0.42);
  outline-offset: -3px;
}

@media (hover: hover) {
  .fleet-shot-trigger:hover img {
    transform: scale(1.03);
    filter: saturate(1.03);
  }

  .fleet-shot-trigger:hover .fleet-shot-chip {
    transform: translateY(-2px);
    background: rgba(8, 22, 37, 0.84);
  }
}

.fleet-shot-bus-exterior img {
  object-position: center 44%;
}

.fleet-shot-bus-interior img {
  object-position: center 42%;
}

.fleet-shot-sprinter-front img {
  object-position: 40% center;
}

.fleet-shot-sprinter-interior-rear img {
  object-position: center 46%;
}

.fleet-content {
  padding: 1.7rem 1.65rem 1.8rem;
  display: grid;
  gap: 0.85rem;
}

.fleet-tag {
  display: inline-flex;
  margin: 0;
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  background: rgba(42, 109, 163, 0.09);
  color: var(--blue);
  font-weight: 800;
}

.fleet-content p {
  margin: 0;
}

.fleet-content ul {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 0.2rem 0 0;
  list-style: none;
}

.fleet-content li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.55;
}

.fleet-content li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.fleet-gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  margin-top: 0.35rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(13, 34, 56, 0.12);
  border-radius: 999px;
  background: rgba(13, 34, 56, 0.04);
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.fleet-gallery-link:hover,
.fleet-gallery-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
  background: rgba(42, 109, 163, 0.08);
  border-color: rgba(42, 109, 163, 0.22);
}

.fleet-helper {
  max-width: 54rem;
  margin: 1.6rem auto 0;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(13, 34, 56, 0.07);
  background: rgba(13, 34, 56, 0.04);
  color: var(--navy-soft);
  line-height: 1.72;
  text-align: center;
}

.about {
  background: linear-gradient(180deg, #ffffff 0%, rgba(243, 246, 249, 0.92) 100%);
}

.about-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
}

.about-copy {
  max-width: 48rem;
  padding-right: 0.75rem;
}

.about-copy p {
  margin: 1rem 0 0;
  max-width: 41rem;
}

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

.info-card,
.contact-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.45rem 1.3rem 1.3rem;
  border-radius: var(--radius-md);
  display: grid;
  align-content: start;
  gap: 0.35rem;
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.info-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(42, 109, 163, 0.12));
}

.info-card span,
.contact-card span,
.form-note {
  color: var(--muted);
}

.info-card span,
.contact-card span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-card strong,
.contact-card strong,
.contact-card a {
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.45;
}

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

.process-step {
  padding: 1.55rem 1.45rem;
  border-radius: 26px;
  display: grid;
  gap: 0.85rem;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.faq {
  background: linear-gradient(180deg, rgba(243, 246, 249, 0.88), rgba(243, 246, 249, 0.42));
}

.faq-shell {
  max-width: 940px;
}

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

.faq-list details {
  padding: 1.28rem 1.35rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(42, 109, 163, 0.24);
  box-shadow: 0 20px 38px rgba(8, 22, 37, 0.07);
}

.faq-list summary {
  position: relative;
  padding-right: 2rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.42;
  color: var(--navy);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: -0.1rem;
  right: 0;
  color: var(--blue);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0.8rem 0 0;
}

.contact {
  background: linear-gradient(180deg, rgba(243, 246, 249, 0.68), rgba(255, 255, 255, 0));
  padding-bottom: 6.3rem;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.contact-copy {
  padding: 1.2rem 0 0.2rem;
}

.contact-copy p {
  margin: 1rem 0 0;
}

.contact-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.65rem;
}

.contact-guidance {
  margin-top: 1.1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(13, 34, 56, 0.07);
  background: rgba(13, 34, 56, 0.04);
  color: var(--navy);
  font-weight: 700;
}

.contact-form {
  position: relative;
  padding: 2.15rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8fbfe);
  box-shadow: 0 28px 58px rgba(8, 22, 37, 0.1);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: inherit inherit 0 0;
  background: linear-gradient(90deg, var(--blue), var(--whatsapp));
}

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

.contact-form label {
  display: grid;
  gap: 0.52rem;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--navy);
}

.field-full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(13, 34, 56, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a9eb0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(42, 109, 163, 0.42);
  box-shadow: 0 0 0 4px rgba(42, 109, 163, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 8.5rem;
}

.form-submit {
  width: 100%;
  min-height: 3.75rem;
  margin-top: 1.25rem;
}

.form-note {
  margin: 0.9rem 0 0;
  text-align: center;
  font-size: 0.92rem;
}

.privacy-brief {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.privacy-brief a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.2rem 0;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.privacy-consent {
  display: flex;
  justify-content: center;
  margin-top: 0.55rem;
}

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  width: min(100%, 35rem);
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(13, 34, 56, 0.1);
  background: rgba(13, 34, 56, 0.045);
  color: var(--navy);
  font-size: 0.94rem;
  line-height: 1.6;
}

.privacy-checkbox input[type="checkbox"] {
  width: 1.12rem;
  min-width: 1.12rem;
  height: 1.12rem;
  margin: 0.18rem 0 0;
  padding: 0;
  border-radius: 4px;
  border: 1px solid rgba(13, 34, 56, 0.24);
  background: var(--white);
  accent-color: var(--blue);
  box-shadow: none;
  flex-shrink: 0;
}

.privacy-checkbox input[type="checkbox"]:focus {
  box-shadow: 0 0 0 4px rgba(42, 109, 163, 0.12);
}

.privacy-checkbox span {
  flex: 1;
}

.privacy-checkbox a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 37, 0.82);
  backdrop-filter: blur(8px);
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 1.4rem));
  padding: 1rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(7, 19, 33, 0.8), rgba(7, 19, 33, 0.94));
  box-shadow: 0 34px 80px rgba(8, 22, 37, 0.32);
}

.image-lightbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-right: 6rem;
}

.image-lightbox-eyebrow {
  margin: 0 0 0.28rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.image-lightbox-title {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  line-height: 1.2;
}

.image-lightbox-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.image-lightbox-count {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.image-lightbox-nav {
  min-height: auto;
  min-width: 7rem;
  padding: 0.65rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.image-lightbox-nav:hover,
.image-lightbox-nav:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.image-lightbox-nav:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.image-lightbox-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 32px 70px rgba(8, 22, 37, 0.42);
}

.image-lightbox-figure img {
  display: block;
  width: 100%;
  max-height: min(78vh, 840px);
  object-fit: contain;
  background: var(--navy-deep);
}

.image-lightbox-figure figcaption {
  padding: 0.9rem 1rem 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.55;
  background: linear-gradient(180deg, rgba(8, 22, 37, 0.9), rgba(8, 22, 37, 0.98));
}

.image-lightbox-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.image-lightbox-thumb {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.image-lightbox-thumb img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  display: block;
}

.image-lightbox-thumb.is-active {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.image-lightbox-thumb:hover,
.image-lightbox-thumb:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.image-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  min-height: auto;
  padding: 0.65rem 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.image-lightbox-close:focus-visible {
  outline: 3px solid rgba(42, 109, 163, 0.42);
  outline-offset: 2px;
}

body.lightbox-open {
  overflow: hidden;
}

.site-footer {
  padding: 3.6rem 0 0;
  background: linear-gradient(180deg, #0b1b2d 0%, #081625 100%);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .footer-brand img {
  width: 186px;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.footer-brand p {
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(0, 0.82fr) minmax(0, 0.88fr);
  align-items: start;
  gap: 1.6rem;
}

.footer-links {
  display: grid;
  gap: 0.8rem;
}

.footer-links h3 {
  font-size: 1rem;
  color: var(--white);
}

.footer-links p {
  margin: 0;
  display: grid;
  gap: 0.2rem;
}

.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer strong {
  color: var(--white);
  font-weight: 700;
}

.footer-links a {
  transition: color 180ms ease;
}

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

.footer-social {
  align-content: start;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  flex-shrink: 0;
}

.social-link:last-of-type svg {
  fill: currentColor;
  stroke: none;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.footer-bottom {
  padding: 1.45rem 0 1.7rem;
  margin-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
}

.legal-page {
  background:
    radial-gradient(circle at top left, rgba(42, 109, 163, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfcfd 0%, #ffffff 32%);
}

.legal-hero {
  padding: 4.9rem 0 3.4rem;
  background:
    linear-gradient(180deg, rgba(243, 246, 249, 0.78), rgba(255, 255, 255, 0.96)),
    linear-gradient(90deg, rgba(42, 109, 163, 0.04), transparent 42%);
  border-bottom: 1px solid rgba(13, 34, 56, 0.08);
}

.legal-hero-shell {
  max-width: 54rem;
}

.legal-hero h1 {
  max-width: 15ch;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--navy);
  text-wrap: balance;
}

.legal-hero p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-page .site-header {
  position: sticky;
}

.legal-content {
  padding: 3.4rem 0 6.2rem;
}

.legal-shell {
  max-width: 54rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(13, 34, 56, 0.08);
  box-shadow: var(--shadow);
}

.legal-updated {
  margin: 0 0 1.7rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(13, 34, 56, 0.08);
  color: var(--muted);
  font-size: 0.98rem;
}

.legal-section {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(13, 34, 56, 0.08);
}

.legal-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-section h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.25;
  color: var(--navy);
  scroll-margin-top: 8rem;
}

.legal-section p {
  margin: 0.85rem 0 0;
  color: var(--text);
  line-height: 1.78;
}

.legal-section strong {
  color: var(--navy);
}

.legal-section ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--text);
}

.legal-section li {
  margin-top: 0.55rem;
  line-height: 1.74;
}

.legal-contact-lines {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.legal-contact-lines p {
  margin: 0;
}

.legal-contact-lines a,
.legal-section a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.legal-note {
  margin-top: 1.1rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(13, 34, 56, 0.04);
  border: 1px solid rgba(13, 34, 56, 0.08);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 24;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(31, 143, 95, 0.28);
}

@media (max-width: 1120px) {
  .quick-facts-grid,
  .benefits-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .fleet-grid,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding: 0;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 4.8rem 0;
  }

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

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

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-strong);
    margin-left: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.nav-cta) {
    padding: 0.85rem 0.9rem;
  }

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

  .hero {
    padding: 5.4rem 0 8.8rem;
    background-position: 62% center;
  }

  .image-lightbox-top {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
  }

  .image-lightbox-controls {
    width: 100%;
    justify-content: space-between;
  }

  .image-lightbox-nav {
    flex: 1 1 0;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100vw - 1.25rem), 100%);
  }

  .section {
    padding: 4.15rem 0;
  }

  .topbar-inner,
  .topbar-meta {
    gap: 0.6rem;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .benefits-grid,
  .services-grid,
  .process-grid,
  .about-meta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .service-priority-label {
    margin-bottom: 0.75rem;
  }

  .service-priority-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .service-priority-strip span {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 4.9rem 0 7.8rem;
    background-position: 64% center;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    margin-top: -3.5rem;
  }

  .fleet-gallery {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    padding: 1.4rem;
  }

  .legal-shell {
    padding: 1.45rem;
  }

  .floating-whatsapp {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.82rem 1rem;
  }
}

@media (max-width: 460px) {
  .quick-facts-grid,
  .service-priority-strip {
    grid-template-columns: 1fr;
  }

  .image-lightbox-dialog {
    padding: 0.85rem;
  }

  .image-lightbox-count {
    width: 100%;
    justify-content: center;
  }

  .legal-hero {
    padding: 4.2rem 0 3rem;
  }

  .legal-content {
    padding: 2.7rem 0 5rem;
  }
}
