/* ==========================================================================
   Niagara Limousine — Hero Slider Styles
   ========================================================================== */

:root {
  --site-background: #ECF7FB;
  --color-navy: #073B57;
  --color-white: #FFFFFF;

  --font-family: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --hero-height-mobile: 500px;
  --hero-height-tablet: 600px;
  --hero-height-desktop: 800px;

  --transition-slide: opacity 1.2s ease;

  --top-announcement-height: 38px;
  --announcement-height: 38px;
  --main-header-height: 86px;
  --site-header-stack-offset: calc(
    var(--main-header-height) + 18px
  );
  --hero-header-clearance: calc(
    var(--announcement-height) + var(--main-header-height) + 45px
  );

  --color-aqua: #20BFC6;
  --color-text-muted: #526873;
  --color-niagara-blue: #087EAF;
  --color-orange: #FF7043;
  --color-orange-hover: #ff8259;
  --color-mist: #F4FAFC;
  --fleet-transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 800ms ease,
    filter 800ms ease;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
  background-color: var(--site-background);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  margin-top: 0;
}

html,
body,
main,
section,
.fleet-section,
.services-section,
#fleet,
#services,
.about-section,
.reviews-section,
.faq-section,
.contact-section,
.testimonial-section,
.cta-section {
  background: var(--site-background);
}

.container,
.section-container,
.fleet-section__header,
.fleet-carousel-fullwidth,
.services-container,
.services-header,
.services-grid {
  background: transparent;
}

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

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

/* --------------------------------------------------------------------------
   Site Header Stack
   -------------------------------------------------------------------------- */

.site-header-stack {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: transparent;
}

.site-header-stack:not(.is-compact) .top-announcement,
.site-header-stack:not(.is-compact) .site-header {
  background: rgba(7, 59, 87, 0.16);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.site-header-stack:not(.is-compact) .top-announcement,
.site-header-stack:not(.is-compact) .top-announcement__container,
.site-header-stack:not(.is-compact) .top-announcement__actions,
.site-header-stack:not(.is-compact) .top-announcement__social {
  overflow: visible;
}

.site-header-stack.is-compact .site-header {
  background: rgba(7, 59, 87, 0.84);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(3, 24, 36, 0.18);
}

.top-announcement,
.top-announcement a,
.site-header .site-nav a {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Top Announcement Bar
   -------------------------------------------------------------------------- */

.top-announcement {
  z-index: auto;
  width: 100%;
  max-height: 38px;
  min-height: 38px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition:
    max-height 280ms ease,
    min-height 280ms ease,
    opacity 220ms ease,
    transform 280ms ease,
    border-color 220ms ease;
}

.site-header-stack.is-compact .top-announcement {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  transform: translateY(-100%);
  border-bottom-color: transparent;
  pointer-events: none;
}

.top-announcement__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(100%, 1540px);
  min-height: 38px;
  margin: 0 auto;
  padding: 6px clamp(24px, 4vw, 60px);
  transition:
    min-height 280ms ease,
    padding 280ms ease;
}

.site-header-stack.is-compact .top-announcement__container {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.top-announcement__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 19px;
}

.top-announcement__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.top-announcement__phone:hover,
.top-announcement__phone:focus-visible {
  color: #8ed8f8;
}

.top-announcement__phone-icon {
  display: inline-grid;
  place-items: center;
}

.top-announcement__phone-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.top-announcement__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  overflow: visible;
}

.top-announcement__social a,
.top-announcement__maple {
  position: relative;
  flex-shrink: 0;
}

.top-announcement__social a {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: #ffffff;
  text-decoration: none;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.top-announcement__social a:hover,
.top-announcement__social a:focus-visible {
  color: #8ed8f8;
  transform: translateY(-2px);
}

.top-announcement__social svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.top-announcement__maple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  margin: 0;
  padding: 1px;
  color: #E31837;
  line-height: 0;
  overflow: visible;
  vertical-align: middle;
  transition: transform 220ms ease;
}

.top-announcement__maple:hover {
  transform: scale(1.06);
}

.top-announcement__maple svg {
  display: block;
  width: 21px;
  height: 21px;
  max-width: none;
  max-height: none;
  overflow: visible;
  fill: currentColor;
  stroke: none;
  transform: none;
  transform-origin: center;
}

@media (max-width: 767px) {
  :root {
    --top-announcement-height: 34px;
    --announcement-height: 34px;
    --main-header-height: 82px;
    --site-header-stack-offset: calc(
      var(--main-header-height) + 18px
    );
    --hero-header-clearance: calc(
      var(--announcement-height) + var(--main-header-height) + 45px
    );
  }

  .site-header-stack:not(.is-compact) .top-announcement,
  .site-header-stack:not(.is-compact) .site-header {
    background: rgba(7, 59, 87, 0.16);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }

  .site-header-stack.is-compact .site-header {
    background: rgba(7, 59, 87, 0.84);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 28px rgba(3, 24, 36, 0.18);
  }

  .top-announcement {
    max-height: 34px;
    min-height: 34px;
  }

  .top-announcement__container {
    justify-content: center;
    min-height: 34px;
    padding: 5px 10px;
  }

  .site-header-stack.is-compact .top-announcement {
    max-height: 0;
    min-height: 0;
  }

  .site-header-stack.is-compact .top-announcement__container {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .top-announcement__actions {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .top-announcement__phone {
    font-size: 0.78rem;
  }

  .top-announcement__social {
    gap: 9px;
  }

  .top-announcement__social a {
    width: 21px;
    height: 21px;
  }

  .top-announcement__maple {
    flex-basis: 21px;
    width: 21px;
    height: 21px;
    min-width: 21px;
    min-height: 21px;
    padding: 1px;
  }

  .top-announcement__maple svg {
    width: 18px;
    height: 18px;
  }

  .top-announcement__social svg {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 369px) {
  .top-announcement__actions {
    gap: 8px;
  }

  .top-announcement__social {
    gap: 7px;
  }

  .top-announcement__phone {
    font-size: 0.72rem;
  }
}

/* --------------------------------------------------------------------------
   Site Header
   -------------------------------------------------------------------------- */

.site-header {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: auto;
  width: 100%;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
  transition:
    min-height 260ms ease,
    padding 260ms ease,
    background-color 280ms ease,
    box-shadow 280ms ease,
    backdrop-filter 280ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  pointer-events: none;
}

.site-header__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(100%, 1440px);
  margin: 0 auto;
  transition:
    min-height 260ms ease,
    padding 260ms ease,
    gap 260ms ease;
}

.site-header__nav-group {
  display: contents;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.site-header__logo img {
  display: block;
  width: auto;
  height: 58px;
  max-width: 275px;
  object-fit: contain;
  object-position: left center;
  transition:
    width 260ms ease,
    max-width 260ms ease,
    max-height 260ms ease,
    height 260ms ease;
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(17px, 1.65vw, 31px);
  margin: 0;
  padding: 0;
  list-style: none;
  transition: gap 260ms ease;
}

.site-nav a,
.site-nav__dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  text-shadow: 0 2px 12px rgba(4, 28, 43, 0.38);
  transition:
    opacity 250ms ease,
    transform 250ms ease,
    font-size 260ms ease,
    line-height 260ms ease;
}

.site-nav__dropdown-toggle {
  gap: 0;
  padding: 9px 4px;
  white-space: nowrap;
}

.site-nav__dropdown-icon,
.dropdown-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  font-size: 0.72rem;
  transform: translateY(1px);
}

.site-nav a::after,
.site-nav__services-link::after,
.site-nav__dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: width 300ms ease;
}

.site-nav a:hover::after,
.site-nav__services-link:hover::after,
.site-nav__services-link:focus-visible::after,
.site-nav__dropdown-toggle:hover::after,
.site-nav a:focus-visible::after,
.site-nav__dropdown-toggle:focus-visible::after {
  width: 100%;
}

.site-nav__dropdown-toggle::after {
  display: none;
}

.site-nav a:hover,
.site-nav__services-link:hover,
.site-nav__dropdown-toggle:hover {
  transform: translateY(-1px);
}

.site-nav a:focus-visible,
.site-nav__dropdown-toggle:focus-visible,
.site-header__cta:focus-visible,
.site-header__menu-toggle:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.site-nav__item--dropdown {
  position: relative;
}

.site-nav__services-control {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.site-nav__services-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 0;
  color: #ffffff;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 650;
  text-decoration: none;
  text-shadow: 0 2px 12px rgba(4, 28, 43, 0.38);
  transition:
    opacity 250ms ease,
    transform 250ms ease,
    font-size 260ms ease,
    line-height 260ms ease;
}

.site-nav__services-link:hover,
.site-nav__services-link:focus-visible {
  transform: translateY(-1px);
}

.site-nav__dropdown-toggle svg {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 260ms ease;
}

.site-nav__item--dropdown.is-open .site-nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 20;
  width: max-content;
  min-width: 360px;
  max-width: 430px;
  max-height: none;
  margin: 0;
  padding: 12px;
  overflow: visible;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(4, 45, 67, 0.98);
  box-shadow: 0 24px 60px rgba(3, 28, 42, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition:
    opacity 250ms ease,
    visibility 250ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav__item--dropdown:hover .site-nav__dropdown,
.site-nav__item--dropdown:focus-within .site-nav__dropdown,
.site-nav__item--dropdown.is-open .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 1101px) {
  .site-nav__item--dropdown {
    z-index: 1001;
  }

  .site-nav__item--dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    right: -22px;
    left: -22px;
    z-index: 998;
    height: 22px;
    background: transparent;
    pointer-events: auto;
  }

  .site-nav__dropdown {
    z-index: 1002;
    transform: translateX(-50%) translateY(8px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 220ms ease;
  }

  .site-nav__item--dropdown:hover .site-nav__dropdown,
  .site-nav__item--dropdown:focus-within .site-nav__dropdown,
  .site-nav__item--dropdown.is-open .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

.site-nav__dropdown li {
  width: 100%;
  margin: 0;
}

.site-nav__dropdown li a {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border-radius: 9px;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.35;
  white-space: normal;
  text-shadow: none;
}

.site-nav__dropdown li a::after {
  display: none;
}

.site-nav__dropdown li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: none;
}

.site-nav__dropdown li a:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

@media (min-width: 1101px) {
  .site-nav a,
  .site-nav__services-link,
  .site-nav__dropdown-toggle {
    white-space: nowrap;
  }
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  background: #ffffff;
  color: #073b57;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  transition:
    background-color 300ms ease,
    color 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease,
    min-height 260ms ease,
    padding 260ms ease,
    font-size 260ms ease;
}

.site-header__cta:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(4, 28, 43, 0.23);
}

.site-header__cta span {
  transition: transform 300ms ease;
}

.site-header__cta:hover span {
  transform: translateX(5px);
}

.site-header__cta.is-active,
.site-header__cta[aria-current="page"] {
  background: transparent;
  color: #ffffff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.95);
}

.site-header__cta.is-active:hover,
.site-header__cta[aria-current="page"]:hover {
  background: #ffffff;
  color: #073b57;
  box-shadow: 0 13px 30px rgba(4, 28, 43, 0.23);
}

/* --------------------------------------------------------------------------
   Compact header state (scrolled)
   -------------------------------------------------------------------------- */

@media (min-width: 1101px) {
  .site-header-stack.is-compact .site-header {
    min-height: 70px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-header-stack.is-compact .site-header__container {
    min-height: 70px;
  }

  .site-header-stack.is-compact .site-header__logo img {
    width: auto;
    height: auto;
    max-width: 165px;
    max-height: 52px;
  }

  .site-header-stack.is-compact .site-nav__list {
    gap: clamp(18px, 1.35vw, 25px);
  }

  .site-header-stack.is-compact .site-nav a,
  .site-header-stack.is-compact .site-nav__services-link,
  .site-header-stack.is-compact .site-nav__dropdown-toggle {
    font-size: 0.92rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .site-header-stack.is-compact .site-header__cta {
    min-height: 48px;
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .site-header-stack.is-compact .site-header__cta span {
    font-size: 0.95em;
  }

  .site-header-stack.is-compact .site-nav__dropdown:not(.site-nav__dropdown--mega) {
    top: calc(100% + 6px);
  }
}

@media (min-width: 1100px) and (max-width: 1400px) {
  .site-header-stack.is-compact .site-nav__list {
    gap: 16px;
  }

  .site-header-stack.is-compact .site-nav a,
  .site-header-stack.is-compact .site-nav__services-link,
  .site-header-stack.is-compact .site-nav__dropdown-toggle {
    font-size: 0.88rem;
  }

  .site-header-stack.is-compact .site-header__logo img {
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 48px;
  }

  .site-header-stack.is-compact .site-header__cta {
    min-height: 46px;
    padding: 11px 21px;
    font-size: 0.9rem;
  }
}

.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.site-header__menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 300ms ease, opacity 300ms ease;
}

.site-header.is-menu-open .site-header__menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .site-header__menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .site-header__menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

article[id^="service-"],
section[id],
[id="reservation-booking"],
[id="area-booking"] {
  scroll-margin-top: calc(
    var(--main-header-height, 96px)
    + 18px
  );
}

@media (max-width: 1100px) {
  .site-header {
    padding: 11px 12px;
    position: relative;
  }

  .site-header__container {
    min-width: 0;
    position: static;
    justify-content: flex-start;
    gap: 12px;
  }

  .site-header__logo {
    flex: 0 0 auto;
    min-width: 0;
    max-width: calc(100% - 56px);
    overflow: hidden;
  }

  .site-header__logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: calc(100vw - 64px);
    max-height: 112px;
    margin: 0;
    margin-left: -36px;
    flex-shrink: 0;
    object-fit: contain;
    object-position: left center;
  }

  .site-header__nav-group {
    display: none;
  }

  .site-header__menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-nav {
    position: static;
    left: auto;
    right: auto;
    transform: none !important;
  }

  .site-header-stack:has(.site-header.is-menu-open) .site-header__nav-group {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    width: auto;
    max-width: none;
    max-height: calc(100svh - var(--main-header-height, 96px) - 16px);
    margin: 0;
    padding: 0 12px 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(4, 45, 67, 0.98);
    box-shadow: 0 22px 50px rgba(4, 28, 43, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .site-header-stack:not(.is-compact):has(.site-header.is-menu-open) .site-header__nav-group {
    max-height: calc(
      100svh
      - var(--main-header-height, 96px)
      - var(--announcement-height, 38px)
      - 16px
    );
  }

  .site-header.is-menu-open .site-nav {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none !important;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    max-height: none;
    margin: 0;
    padding: 12px 0 0;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav__list,
  .site-nav__list > li,
  .site-nav__item--dropdown {
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .site-nav__services-control {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .site-nav__services-link {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    color: #ffffff;
    text-decoration: none;
  }

  .site-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 0;
    list-style: none;
  }

  .site-nav a:not(.site-nav__services-link) {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 12px 16px;
    text-align: left;
    white-space: normal;
  }

  .site-nav__dropdown-toggle {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
  }

  .site-nav__dropdown-toggle svg {
    width: 18px;
    height: 18px;
  }

  .site-nav__dropdown-toggle::after {
    display: none;
  }

  .site-nav__item--dropdown {
    position: static;
    width: 100%;
  }

  .site-nav__item--dropdown.is-open .site-nav__dropdown-toggle svg {
    transform: rotate(180deg);
    transition: transform 300ms ease;
  }

  .site-nav__item--dropdown:hover .site-nav__dropdown,
  .site-nav__item--dropdown.is-open .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: none !important;
  }

  .site-nav__item--dropdown:hover .site-nav__dropdown {
    max-height: 0;
    margin-top: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .site-nav__dropdown {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    max-height: 0;
    margin: 0 !important;
    padding: 0 8px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    transition:
      max-height 400ms cubic-bezier(0.22, 1, 0.36, 1),
      padding 300ms ease,
      margin 300ms ease;
  }

  .site-nav__item--dropdown.is-open .site-nav__dropdown {
    max-height: 650px;
    padding-top: 7px;
    padding-bottom: 9px;
  }

  .site-nav__dropdown li {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .site-nav__dropdown li a {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 11px 14px;
    overflow: visible;
    color: rgba(255, 255, 255, 0.90);
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
    white-space: normal;
    overflow-wrap: break-word;
    border-radius: 8px;
  }

  .site-nav__dropdown li a:hover,
  .site-nav__dropdown li a:focus-visible {
    background: rgba(255, 255, 255, 0.10);
    color: #FFFFFF;
    transform: none;
  }

  .site-header.is-menu-open .site-header__cta {
    display: flex;
    width: 100%;
    margin: 14px 0 0;
    flex-shrink: 0;
  }

  .site-header-stack.is-compact .site-header {
    min-height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-header-stack.is-compact .site-header__container {
    min-height: 64px;
  }

  .site-header-stack.is-compact .site-header__logo img {
    width: auto;
    height: auto;
    max-width: calc(100vw - 64px);
    max-height: 68px;
    margin-left: -24px;
    flex-shrink: 0;
  }

  .site-header-stack.is-compact .site-header__menu-toggle {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding-left: 8px;
    padding-right: 10px;
  }

  .site-header__logo img {
    max-height: 104px;
    margin-left: -32px;
  }

  .site-header-stack.is-compact .site-header__logo img {
    max-height: 64px;
    margin-left: -20px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-left: 6px;
    padding-right: 8px;
  }

  .site-header__logo img {
    max-height: 96px;
    margin-left: -28px;
  }

  .site-header-stack.is-compact .site-header__logo img {
    max-height: 58px;
    margin-left: -18px;
  }
}

@media (max-width: 1100px) {
  body:has(.site-header.is-menu-open) {
    overflow-x: hidden;
  }
}

/* --------------------------------------------------------------------------
   Floating WhatsApp
   -------------------------------------------------------------------------- */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
  transition:
    transform 300ms ease,
    background-color 300ms ease,
    box-shadow 300ms ease;
}

.floating-whatsapp:hover {
  background: #1ebd59;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid #073b57;
  outline-offset: 4px;
}

.floating-whatsapp__text {
  display: none !important;
}

.floating-whatsapp__icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
}

.floating-whatsapp__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.floating-whatsapp__pulse {
  position: absolute;
  inset: -6px;
  z-index: -1;
  border: 2px solid rgba(37, 211, 102, 0.38);
  border-radius: 50%;
  animation: whatsappPulse 2.2s ease-out infinite;
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.92);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (max-width: 767px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    min-height: 56px;
  }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: visible;
  width: 100%;
  background-color: #111;
}

/* --------------------------------------------------------------------------
   Slides (crossfade)
   -------------------------------------------------------------------------- */

.hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slide);
  z-index: 0;
}

.hero__slide--active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero__picture,
.hero__image {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

@media (min-width: 1025px) {
  .hero {
    height: 800px;
    min-height: 650px;
  }

  .hero__image {
    object-position: center center;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    position: relative;
    height: auto;
    min-height: 950px;
    overflow: hidden;
  }

  .hero__slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero__image {
    object-position: center center;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-booking-area {
    margin-top: calc(var(--hero-header-clearance) + 70px);
  }

  .hero-booking-widget .glm-booking-embed-root {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-booking-widget iframe {
    display: block;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-booking-area {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-bottom: 35px;
    transform: none;
  }

  .hero-booking-widget {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }

  .hero-booking-area {
    position: relative;
    width: 100%;
    margin: calc(var(--hero-header-clearance) + 85px) 0 30px;
    z-index: 20;
  }

  .hero-booking-widget {
    position: relative;
    width: 100%;
    margin: 0;
    transform: none;
  }

  .hero {
    height: auto;
    min-height: 1220px;
    overflow: hidden;
  }

  .hero__slides,
  .hero__slide,
  .hero__picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 420px) {
  .hero-booking-area {
    margin-top: calc(var(--hero-header-clearance) + 95px);
  }

  .hero {
    min-height: 1260px;
  }

  .hero__image {
    object-position: center 18%;
  }
}

/* --------------------------------------------------------------------------
   Hero booking area
   -------------------------------------------------------------------------- */

.hero-booking-area {
  position: absolute;
  left: 50%;
  bottom: 5px;
  z-index: 20;
  width: calc(100% - 48px);
  max-width: 1200px;
  margin-top: 0;
  transform: translateX(-50%);
}

.hero-booking-widget {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  transform: none;
  display: block;
  visibility: visible;
  opacity: 1;
}

.hero-booking-widget .glm-booking-embed-root {
  display: block;
  width: 100%;
  position: relative;
}

.hero-booking-widget iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 12px;
  background: transparent;
}

/* --------------------------------------------------------------------------
   Areas We Serve ticker
   -------------------------------------------------------------------------- */

.area-ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #073c59;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(7, 60, 89, 0.2);
}

.area-ticker__viewport {
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
}

.area-ticker__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: areaTickerMove 120s linear infinite;
}

.area-ticker__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0;
}

.area-ticker:hover .area-ticker__track {
  animation-play-state: paused;
}

@keyframes areaTickerMove {
  from {
    transform: translateX(0);
  }

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

.area-ticker__item {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  padding: 6px clamp(16px, 2vw, 24px);
  color: #ffffff;
  font-size: clamp(0.84rem, 1.05vw, 0.98rem);
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}

.area-ticker__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%);
  pointer-events: none;
}

.area-ticker__icon {
  display: grid;
  place-items: center;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #20bfc6;
}

.area-ticker__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.area-ticker__label {
  flex: 0 1 auto;
}

@media (max-width: 1024px) {
  .area-ticker__viewport {
    padding: 10px 0;
  }

  .area-ticker__track {
    animation-duration: 100s;
  }

  .area-ticker__item {
    padding: 6px 16px;
  }

  .area-ticker__item:not(:last-child)::after {
    height: 24px;
  }
}

@media (max-width: 767px) {
  .area-ticker__viewport {
    padding: 8px 0;
  }

  .area-ticker__track {
    animation-duration: 85s;
  }

  .area-ticker__item {
    gap: 6px;
    padding: 6px 14px;
    font-size: 0.82rem;
  }

  .area-ticker__item:not(:last-child)::after {
    height: 22px;
  }

  .area-ticker__icon,
  .area-ticker__icon svg {
    width: 16px;
    height: 16px;
  }
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */

.about-section {
  position: relative;
  padding: 100px 24px;
  background: #ecf7fb;
  overflow-x: clip;
}

.about-section__container {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(48px, 6vw, 90px);
  width: min(100%, 1440px);
  margin: 0 auto;
}

.about-section__visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(7, 59, 87, 0.16);
  opacity: 0;
  transform: translateX(-40px);
}

.about-section__visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(to top, rgba(7, 59, 87, 0.24), transparent);
  pointer-events: none;
  z-index: 1;
}

.about-section__visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-section__visual:hover img {
  transform: scale(1.04);
}

.about-section__content {
  align-self: center;
  opacity: 0;
  transform: translateX(40px);
}

.about-section__content h2 {
  max-width: 720px;
  margin: 0;
  color: #073b57;
  font-size: clamp(2.1rem, 3vw, 3.25rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.about-section__content > p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #526873;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.about-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  margin-top: 28px;
  padding: 14px 27px;
  border: 2px solid #073b57;
  border-radius: 14px;
  background: transparent;
  color: #073b57;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 300ms ease,
    color 300ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms ease;
}

.about-section__button:hover {
  background: #073b57;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(7, 59, 87, 0.22);
}

.about-section__button span {
  transition: transform 300ms ease;
}

.about-section__button:hover span {
  transform: translateX(5px);
}

.about-section__button:focus-visible {
  outline: 3px solid #087eaf;
  outline-offset: 4px;
}

.about-section.is-visible .about-section__visual,
.about-section.is-visible .about-section__content {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 850ms ease,
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-section.is-visible .about-section__content {
  transition-delay: 120ms;
}

@media (max-width: 1024px) {
  .about-section {
    padding: 80px 20px;
  }

  .about-section__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-section__visual {
    min-height: 520px;
  }

  .about-section__visual img {
    min-height: 520px;
  }

  .about-section__content {
    max-width: 850px;
    margin: 0 auto;
  }

  .about-section__content h2 {
    font-size: clamp(2rem, 4.8vw, 2.9rem);
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 65px 16px;
  }

  .about-section__container {
    gap: 28px;
  }

  .about-section__visual {
    min-height: 440px;
    border-radius: 22px;
  }

  .about-section__visual img {
    min-height: 440px;
    object-position: center;
  }

  .about-section__content h2 {
    max-width: 100%;
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    word-break: normal;
    overflow-wrap: normal;
  }

  .about-section__button {
    width: 100%;
    margin-top: 28px;
  }

  .about-section__visual,
  .about-section__content {
    transform: translateY(30px);
  }

  .about-section.is-visible .about-section__visual,
  .about-section.is-visible .about-section__content {
    transform: translateY(0);
  }
}

@media (max-width: 380px) {
  .about-section__content h2 {
    font-size: 1.65rem;
  }
}

/* --------------------------------------------------------------------------
   Why Choose Us — scroll-driven
   -------------------------------------------------------------------------- */

.why-scroll {
  position: relative;
  background: #ecf7fb;
  padding-top: 90px;
  overflow-x: clip;
}

.why-scroll__header {
  width: min(calc(100% - 48px), 1000px);
  margin: 0 auto 45px;
  text-align: center;
}

.why-scroll__story {
  position: relative;
  height: 400vh;
}

.why-scroll__sticky {
  position: sticky;
  top: 18px;
  width: 100%;
  height: calc(100vh - 36px);
  min-height: 680px;
  overflow: hidden;
  padding: 0 24px 22px;
  background: #ecf7fb;
}

.why-scroll__header h2 {
  margin: 0;
  color: #073b57;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.why-scroll__header p {
  max-width: 760px;
  margin: 14px auto 0;
  color: #526873;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.65;
}

.why-scroll__stage {
  position: relative;
  width: min(100%, 1640px);
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 65px rgba(7, 59, 87, 0.17);
  background: #073b57;
}

.why-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(55px) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 800ms;
}

.why-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.why-slide.is-before {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-55px) scale(0.985);
}

.why-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.why-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.035);
  transition: transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.why-slide.is-active .why-slide__image img {
  transform: scale(1);
}

.why-slide__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 22, 35, 0.08) 20%,
      rgba(3, 22, 35, 0.2) 52%,
      rgba(3, 22, 35, 0.78) 100%
    );
  pointer-events: none;
}

.why-slide__panel {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 2;
  padding: 20px 26px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 20px;
  background: rgba(4, 28, 43, 0.54);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.why-slide__number {
  display: inline-block;
  margin-bottom: 7px;
  color: #7ce5ea;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.why-slide__panel h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.1vw, 2.3rem);
  line-height: 1.15;
  font-weight: 750;
}

.why-slide__panel p {
  max-width: 820px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .why-scroll {
    padding-top: 75px;
  }

  .why-scroll__header {
    width: min(calc(100% - 40px), 850px);
    margin-bottom: 35px;
  }

  .why-scroll__story {
    height: 400vh;
  }

  .why-scroll__sticky {
    top: 12px;
    height: calc(100svh - 24px);
    min-height: 650px;
    padding: 0 20px 18px;
  }

  .why-scroll__stage {
    border-radius: 23px;
  }

  .why-slide__panel {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 22px 24px;
  }
}

@media (max-width: 767px) {
  .why-scroll {
    padding-top: 60px;
  }

  .why-scroll__header {
    width: calc(100% - 32px);
    margin-bottom: 28px;
  }

  .why-scroll__header h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .why-scroll__header p {
    font-size: 0.95rem;
  }

  .why-scroll__story {
    height: 360vh;
  }

  .why-scroll__sticky {
    top: 8px;
    height: calc(100svh - 16px);
    min-height: 600px;
    padding: 0 12px 12px;
  }

  .why-scroll__stage {
    border-radius: 20px;
  }

  .why-slide__image img {
    object-position: center center;
  }

  .why-slide__panel {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 17px 16px;
    border-radius: 16px;
  }

  .why-slide__panel h3 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .why-slide__panel p {
    font-size: 0.88rem;
    line-height: 1.5;
  }
}

@supports not (position: sticky) {
  .why-scroll {
    padding: 65px 16px;
  }

  .why-scroll__story {
    height: auto;
  }

  .why-scroll__sticky {
    position: relative;
    height: auto;
    overflow: visible;
    padding: 0;
  }

  .why-scroll__stage {
    display: grid;
    gap: 20px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .why-slide {
    position: relative;
    inset: auto;
    min-height: 540px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-scroll {
    padding: 80px 20px;
  }

  .why-scroll__story {
    height: auto;
  }

  .why-scroll__sticky {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 0;
  }

  .why-scroll__stage {
    display: grid;
    gap: 24px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .why-slide {
    position: relative;
    inset: auto;
    min-height: 560px;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .why-slide__image img,
  .why-slide.is-active .why-slide__image img {
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Fleet Section
   -------------------------------------------------------------------------- */

.fleet-section {
  padding-top: 70px;
  padding-bottom: 70px;
  overflow-x: clip;
  overflow-y: visible;
}

.fleet-section__header {
  max-width: 1280px;
  margin: 0 auto 45px;
  padding: 0 1.5rem;
  text-align: center;
}

.fleet__heading {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.fleet__description {
  margin: 0 auto;
  max-width: 640px;
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  line-height: 1.75;
  color: var(--color-text-muted);
}

.fleet-carousel-fullwidth {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 0;
  padding-bottom: 70px;
  overflow-x: clip;
  overflow-y: visible;
}

.fleet-section-reveal {
  opacity: 0;
  transform: translateY(55px);
}

.fleet-section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 900ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Fleet carousel */
.fleet-carousel {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}

.fleet-carousel__viewport {
  position: relative;
  width: 100%;
  height: 470px;
  padding-top: 10px;
  margin-top: 0;
  overflow: visible;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.fleet-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.fleet-carousel__track {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0 auto;
}

.fleet-carousel__card {
  position: absolute;
  top: 10px;
  left: 50%;
  width: clamp(245px, 20vw, 350px);
  margin: 0;
  transform-origin: center center;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 700ms ease;
  will-change: transform, opacity;
  pointer-events: none;
}

.fleet-carousel__card.is-active {
  transform: translateX(-50%) translateY(0) scale(1.05);
  opacity: 1;
  z-index: 5;
}

.fleet-carousel__card.is-prev {
  transform: translateX(calc(-50% - 92%)) translateY(22px) scale(0.94);
  opacity: 0.92;
  z-index: 4;
}

.fleet-carousel__card.is-next {
  transform: translateX(calc(-50% + 92%)) translateY(22px) scale(0.94);
  opacity: 0.92;
  z-index: 4;
}

.fleet-carousel__card.is-far-prev {
  transform: translateX(calc(-50% - 178%)) translateY(70px) scale(0.82);
  opacity: 0.62;
  z-index: 2;
}

.fleet-carousel__card.is-far-next {
  transform: translateX(calc(-50% + 178%)) translateY(70px) scale(0.82);
  opacity: 0.62;
  z-index: 2;
}

.fleet-carousel__card.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(100px) scale(0.7);
  z-index: 1;
}

.fleet-carousel__card.is-active .fleet-card__frame {
  box-shadow: 0 22px 48px rgba(7, 59, 87, 0.22);
}

.fleet-card__frame {
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 14px 36px rgba(7, 59, 87, 0.12);
  transition: box-shadow 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fleet-card__frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* Tablet */
@media (max-width: 1024px) {
  .fleet-carousel-fullwidth {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fleet-carousel__viewport {
    height: 440px;
  }

  .fleet-carousel__card {
    width: clamp(230px, 29vw, 300px);
  }

  .fleet-carousel__card.is-prev {
    transform: translateX(calc(-50% - 88%)) translateY(28px) scale(0.9);
  }

  .fleet-carousel__card.is-next {
    transform: translateX(calc(-50% + 88%)) translateY(28px) scale(0.9);
  }

  .fleet-carousel__card.is-far-prev,
  .fleet-carousel__card.is-far-next {
    opacity: 0;
    visibility: hidden;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .fleet-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .fleet-section__header {
    margin-bottom: 40px;
  }

  .fleet-carousel-fullwidth {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 50px;
  }

  .fleet-carousel__viewport {
    height: 400px;
    padding-top: 10px;
    margin-top: 0;
    overflow: visible;
  }

  .fleet-carousel__card {
    top: 10px;
    width: min(76vw, 310px);
  }

  .fleet-carousel__card.is-active {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .fleet-carousel__card.is-prev {
    transform: translateX(calc(-50% - 82%)) translateY(35px) scale(0.82);
    opacity: 0.45;
  }

  .fleet-carousel__card.is-next {
    transform: translateX(calc(-50% + 82%)) translateY(35px) scale(0.82);
    opacity: 0.45;
  }

  .fleet-carousel__card.is-far-prev,
  .fleet-carousel__card.is-far-next {
    opacity: 0;
    visibility: hidden;
  }
}

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */

.services-section,
#services {
  padding: 70px 24px 0;
  overflow-x: clip;
  margin-top: 0;
}

.services-section__inner,
.services-container,
.services-section__header,
.services-header,
.services-grid,
.service-section-wrapper {
  background: transparent;
}

.services-section__heading {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.services-section__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.services-section__header {
  text-align: center;
  margin-bottom: 50px;
}

.services-section__description {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  line-height: 1.75;
  color: var(--color-text-muted);
}

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

.service-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 440px;
  height: 100%;
  box-shadow: 0 16px 42px rgba(7, 59, 87, 0.13);
  transition:
    transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 400ms ease;
}

.service-card:hover,
.service-card.is-mobile-open {
  transform: translateY(-6px);
  box-shadow: 0 25px 58px rgba(7, 59, 87, 0.20);
}

.service-card__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  overflow: hidden;
}

.service-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__media img,
.service-card.is-mobile-open .service-card__media img {
  transform: scale(1.05);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 59, 87, 0.02) 25%,
      rgba(7, 59, 87, 0.18) 55%,
      rgba(4, 28, 43, 0.88) 100%
    );
  transition: background 450ms ease;
  pointer-events: none;
}

.service-card:hover .service-card__overlay,
.service-card.is-mobile-open .service-card__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(7, 59, 87, 0.18) 5%,
      rgba(7, 59, 87, 0.64) 55%,
      rgba(4, 28, 43, 0.96) 100%
    );
}

.service-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 30px;
  color: #FFFFFF;
  transform: translateY(0);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card__title {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
  line-height: 1.25;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__title,
.service-card.is-mobile-open .service-card__title {
  transform: translateY(-12px);
}

.service-card__reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    max-height 500ms ease,
    opacity 350ms ease,
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 350ms;
}

.service-card:hover .service-card__reveal,
.service-card.is-mobile-open .service-card__reveal {
  max-height: 260px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}

.service-card::after,
.service-card__media::after,
.service-card__content::after {
  display: none !important;
  content: none !important;
}

.service-card__toggle,
.service-card__touch-hint,
.service-card__plus,
.service-card__expand-icon {
  display: none !important;
}

@media (hover: none), (pointer: coarse) {
  .service-card {
    cursor: pointer;
  }
}

@media (max-width: 767px), (hover: none) {
  .service-card:hover .service-card__title,
  .service-card:focus-within .service-card__title {
    transform: none;
  }

  .service-card:hover .service-card__overlay,
  .service-card:focus-within .service-card__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(7, 59, 87, 0.08) 0%,
        rgba(7, 59, 87, 0.42) 52%,
        rgba(4, 28, 43, 0.88) 100%
      );
  }

  .service-card:hover .service-card__reveal,
  .service-card:focus-within .service-card__reveal {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;
  }

  .service-card.is-mobile-open .service-card__title {
    transform: translateY(-12px);
  }

  .service-card.is-mobile-open .service-card__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(7, 59, 87, 0.18) 5%,
        rgba(7, 59, 87, 0.64) 55%,
        rgba(4, 28, 43, 0.96) 100%
      );
  }

  .service-card.is-mobile-open .service-card__reveal {
    max-height: 260px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.service-card__description {
  margin: 4px 0 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.65;
}

.service-card__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 24px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition:
    background-color 300ms ease,
    color 300ms ease,
    border-color 300ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms ease;
}

.service-card__button:hover {
  background: #ffffff;
  color: #073B57;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.service-card__button span {
  display: inline-block;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card__button:hover span {
  transform: translateX(5px);
}

.service-card__button:active {
  transform: translateY(0) scale(0.97);
}

.service-card__button:focus-visible {
  outline: 3px solid #20BFC6;
  outline-offset: 4px;
}

/* Services scroll reveal */
.services-reveal-item {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-section-reveal.is-visible .services-reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.services-section-reveal.is-visible .services-section__heading {
  transition-delay: 0.05s;
}

.services-section-reveal.is-visible .services-section__description {
  transition-delay: 0.12s;
}

.services-section-reveal.is-visible .services-grid .service-card:nth-child(1) { transition-delay: 0.18s; }
.services-section-reveal.is-visible .services-grid .service-card:nth-child(2) { transition-delay: 0.22s; }
.services-section-reveal.is-visible .services-grid .service-card:nth-child(3) { transition-delay: 0.26s; }
.services-section-reveal.is-visible .services-grid .service-card:nth-child(4) { transition-delay: 0.30s; }
.services-section-reveal.is-visible .services-grid .service-card:nth-child(5) { transition-delay: 0.34s; }
.services-section-reveal.is-visible .services-grid .service-card:nth-child(6) { transition-delay: 0.38s; }
.services-section-reveal.is-visible .services-grid .service-card:nth-child(7) { transition-delay: 0.42s; }
.services-section-reveal.is-visible .services-grid .service-card:nth-child(8) { transition-delay: 0.46s; }
.services-section-reveal.is-visible .services-grid .service-card:nth-child(9) { transition-delay: 0.50s; }
.services-section-reveal.is-visible .services-grid .service-card:nth-child(10) { transition-delay: 0.54s; }

.services-grid .service-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

@media (max-width: 1099px) {
  .services-section,
  #services {
    padding: 70px 20px 0;
  }

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

  .services-grid .service-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .services-grid .service-card:last-child:nth-child(2n + 1) {
    grid-column: 1 / -1;
    max-width: calc(50% - 13px);
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .services-section,
  #services {
    padding: 65px 16px 0;
  }

  .services-section__header {
    margin-bottom: 45px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:last-child:nth-child(2n + 1) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .service-card,
  .service-card__media {
    min-height: 460px;
  }
}

/* --------------------------------------------------------------------------
   Private Niagara Tours
   -------------------------------------------------------------------------- */

.tour-experience {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 100px 24px;
  overflow-x: clip;
  opacity: 0;
  transform: translateY(35px);
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 28, 43, 0.94) 0%,
      rgba(7, 59, 87, 0.80) 48%,
      rgba(7, 59, 87, 0.32) 100%
    ),
    url("../images/services/private-niagara-limo-tours.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tour-experience.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 900ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tour-experience__container {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.tour-experience__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 760px);
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  background: rgba(4, 28, 43, 0.34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.22);
}

.tour-experience__content h2 {
  margin: 0 0 1.25rem;
  margin-top: 0;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.tour-experience__description,
.tour-experience__content > p {
  margin: 0 0 1.75rem;
  max-width: 620px;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.tour-experience__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 12px;
  margin-top: 28px;
}

.tour-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #ffffff;
  transition: transform 250ms ease;
}

.tour-benefit:hover {
  transform: translateX(5px);
  border-color: transparent;
  box-shadow: none;
  background: transparent;
}

.tour-benefit__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #20BFC6;
  color: #073B57;
  font-weight: 800;
}

.tour-experience__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  margin-top: 28px;
  padding: 14px 25px;
  border: 2px solid #ffffff;
  border-radius: 14px;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 300ms ease,
    color 300ms ease,
    border-color 300ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms ease;
}

.tour-experience__button:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #073b57;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.tour-experience__button span {
  transition: transform 300ms ease;
}

.tour-experience__button:hover span {
  transform: translateX(5px);
}

.tour-experience__button:active {
  transform: translateY(0) scale(0.97);
}

.tour-experience__button:focus-visible {
  outline: 3px solid var(--color-aqua);
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .tour-experience {
    min-height: 700px;
    padding: 80px 20px;
    background-position: 58% center;
  }

  .tour-experience__content {
    width: min(100%, 680px);
  }
}

@media (max-width: 767px) {
  .tour-experience {
    min-height: auto;
    padding: 70px 16px;
    background-position: 62% center;
    background-image:
      linear-gradient(
        180deg,
        rgba(4, 28, 43, 0.70) 0%,
        rgba(4, 28, 43, 0.92) 55%,
        rgba(4, 28, 43, 0.98) 100%
      ),
      url("../images/services/private-niagara-limo-tours.webp");
  }

  .tour-experience__content {
    padding: 30px 22px;
  }

  .tour-experience__benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* --------------------------------------------------------------------------
   How It Works
   -------------------------------------------------------------------------- */

.how-it-works {
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  background: #ecf7fb;
}

.how-it-works__container {
  width: min(100%, 1400px);
  margin: 0 auto;
}

.how-it-works__header {
  max-width: 820px;
  margin: 0 auto 68px;
  text-align: center;
}

.how-it-works__header h2 {
  margin: 0;
  color: #073b57;
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  line-height: 1.08;
  font-weight: 800;
}

.how-it-works__header p {
  max-width: 760px;
  margin: 22px auto 0;
  color: #526873;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.how-it-works__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.how-it-works__steps::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(32, 191, 198, 0.12),
    #20bfc6,
    rgba(32, 191, 198, 0.12)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.how-it-works.is-visible .how-it-works__steps::before {
  transform: scaleX(1);
}

.how-step {
  position: relative;
  z-index: 1;
  min-height: 330px;
  padding: 84px 30px 32px;
  border: 1px solid rgba(8, 126, 175, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(7, 59, 87, 0.09);
  text-align: center;
  transition:
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 350ms ease,
    border-color 350ms ease;
}

.how-step:hover {
  transform: translateY(-8px);
  border-color: rgba(32, 191, 198, 0.42);
  box-shadow: 0 24px 56px rgba(7, 59, 87, 0.15);
}

.how-step__icon {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 8px solid #ecf7fb;
  border-radius: 50%;
  background: #073b57;
  color: #ffffff;
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 30px rgba(7, 59, 87, 0.22);
  transition:
    background 300ms ease,
    box-shadow 300ms ease,
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.how-step:hover .how-step__icon {
  background: #087eaf;
  color: #ffffff;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 16px 34px rgba(8, 126, 175, 0.28);
}

.how-step__icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
}

.how-step__number {
  display: inline-block;
  margin-bottom: 14px;
  color: #087eaf;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.how-step h3 {
  margin: 0;
  color: #073b57;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.25;
}

.how-step p {
  margin: 18px 0 0;
  color: #526873;
  font-size: 1rem;
  line-height: 1.7;
}

.how-it-works__action {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

.how-it-works__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 14px 28px;
  border: 2px solid #073b57;
  border-radius: 14px;
  background: transparent;
  color: #073b57;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 300ms ease,
    color 300ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms ease;
}

.how-it-works__button:hover {
  background: #073b57;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(7, 59, 87, 0.22);
}

.how-it-works__button span {
  transition: transform 300ms ease;
}

.how-it-works__button:hover span {
  transform: translateX(5px);
}

.how-it-works__button:focus-visible {
  outline: 3px solid #20bfc6;
  outline-offset: 4px;
}

.how-it-works__header,
.how-step,
.how-it-works__action {
  opacity: 0;
  transform: translateY(30px);
}

.how-it-works.is-visible .how-it-works__header,
.how-it-works.is-visible .how-step,
.how-it-works.is-visible .how-it-works__action {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.how-it-works.is-visible .how-step:nth-child(1) {
  transition-delay: 150ms;
}

.how-it-works.is-visible .how-step:nth-child(2) {
  transition-delay: 260ms;
}

.how-it-works.is-visible .how-step:nth-child(3) {
  transition-delay: 370ms;
}

.how-it-works.is-visible .how-it-works__action {
  transition-delay: 480ms;
}

@media (max-width: 980px) {
  .how-it-works {
    padding: 80px 20px;
  }

  .how-it-works__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 72px;
  }

  .how-step:last-child {
    grid-column: 1 / -1;
    width: min(100%, 520px);
    justify-self: center;
  }

  .how-it-works__steps::before {
    display: none;
  }
}

@media (max-width: 650px) {
  .how-it-works {
    padding: 65px 16px;
  }

  .how-it-works__header {
    margin-bottom: 58px;
  }

  .how-it-works__steps {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .how-step:last-child {
    grid-column: auto;
    width: 100%;
  }

  .how-step {
    min-height: auto;
    padding: 75px 22px 28px;
  }

  .how-step__icon {
    width: 78px;
    height: 78px;
  }

  .how-it-works__button {
    width: 100%;
    max-width: 360px;
  }
}

/* --------------------------------------------------------------------------
   Customer Reviews
   -------------------------------------------------------------------------- */

.reviews-section {
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  background: #ecf7fb;
}

.reviews-section__container {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.reviews-section__header {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.reviews-section__header h2 {
  margin: 0;
  color: #073b57;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.reviews-section__header p {
  max-width: 760px;
  margin: 20px auto 0;
  color: #526873;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.reviews-carousel {
  position: relative;
}

.reviews-carousel:focus {
  outline: none;
}

.reviews-carousel:focus-visible {
  outline: 3px solid #087eaf;
  outline-offset: 6px;
  border-radius: 8px;
}

.reviews-carousel__viewport {
  width: 100%;
  overflow: hidden;
  padding: 16px 4px 30px;
  touch-action: pan-y;
}

.reviews-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.reviews-carousel__track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
}

.review-card {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(8, 126, 175, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 38px rgba(7, 59, 87, 0.09);
  transition:
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 350ms ease,
    border-color 350ms ease;
}

.review-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(8, 126, 175, 0.07);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-7px);
  border-color: rgba(8, 126, 175, 0.34);
  box-shadow: 0 24px 52px rgba(7, 59, 87, 0.14);
}

.review-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-card__avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #073b57;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 9px 20px rgba(7, 59, 87, 0.18);
}

.review-card h3 {
  margin: 0;
  color: #073b57;
  font-size: 1.08rem;
}

.review-card__top div > span {
  display: block;
  margin-top: 3px;
  color: #526873;
  font-size: 0.88rem;
}

.review-card__quote {
  margin-left: auto;
  color: rgba(8, 126, 175, 0.2);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 0.7;
}

.review-card__stars {
  position: relative;
  z-index: 1;
  margin-top: 25px;
  color: #087eaf;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: #526873;
  font-size: 1rem;
  line-height: 1.75;
  font-style: normal;
}

.reviews-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(7, 59, 87, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #073b57;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(7, 59, 87, 0.13);
  transform: translateY(-50%);
  transition:
    background 300ms ease,
    color 300ms ease,
    transform 300ms ease;
}

.reviews-carousel__arrow:hover {
  background: #073b57;
  color: #ffffff;
}

.reviews-carousel__arrow--prev {
  left: -22px;
}

.reviews-carousel__arrow--next {
  right: -22px;
}

.reviews-carousel__arrow:focus-visible {
  outline: 3px solid #087eaf;
  outline-offset: 4px;
}

.reviews-section__header,
.reviews-carousel {
  opacity: 0;
  transform: translateY(28px);
}

.reviews-section.is-visible .reviews-section__header,
.reviews-section.is-visible .reviews-carousel {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 750ms ease,
    transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews-section.is-visible .reviews-carousel {
  transition-delay: 140ms;
}

@media (max-width: 1024px) {
  .reviews-section {
    padding: 80px 20px;
  }

  .review-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .reviews-carousel__track {
    gap: 22px;
  }

  .reviews-carousel__arrow--prev {
    left: -10px;
  }

  .reviews-carousel__arrow--next {
    right: -10px;
  }
}

@media (max-width: 767px) {
  .reviews-section {
    padding: 65px 16px;
  }

  .reviews-section__header {
    margin-bottom: 40px;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 310px;
    padding: 25px 22px;
  }

  .reviews-carousel__track {
    gap: 16px;
  }

  .reviews-carousel__arrow {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */

.faq-section {
  position: relative;
  padding: 100px 24px;
  background: #ecf7fb;
}

.faq-section__container {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(55px, 7vw, 110px);
  width: min(100%, 1400px);
  margin: 0 auto;
}

.faq-section__intro {
  position: sticky;
  top: 120px;
}

.faq-section__intro h2 {
  margin: 0;
  color: #073b57;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.faq-section__intro > p {
  max-width: 540px;
  margin: 22px 0 0;
  color: #526873;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.faq-section__help {
  margin-top: 34px;
}

.faq-section__help > span {
  display: block;
  margin-bottom: 15px;
  color: #526873;
  font-size: 0.96rem;
}

.faq-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 13px 24px;
  border: 2px solid #073b57;
  border-radius: 14px;
  background: transparent;
  color: #073b57;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 300ms ease,
    color 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}

.faq-section__button:hover {
  background: #073b57;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(7, 59, 87, 0.21);
}

.faq-section__button span {
  transition: transform 300ms ease;
}

.faq-section__button:hover span {
  transform: translateX(5px);
}

.faq-section__button:focus-visible {
  outline: 3px solid #087eaf;
  outline-offset: 4px;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(8, 126, 175, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(7, 59, 87, 0.06);
  transition:
    border-color 300ms ease,
    box-shadow 300ms ease,
    background-color 300ms ease;
}

.faq-item.is-open {
  border-color: rgba(8, 126, 175, 0.42);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(7, 59, 87, 0.11);
}

.faq-item h3 {
  margin: 0;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 23px 25px;
  border: 0;
  background: transparent;
  color: #073b57;
  font: inherit;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item__question:hover {
  color: #087eaf;
}

.faq-item__question:focus-visible {
  outline: 3px solid #087eaf;
  outline-offset: -3px;
}

.faq-item__icon {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(7, 59, 87, 0.18);
  border-radius: 50%;
  background: transparent;
  transition:
    background-color 300ms ease,
    border-color 300ms ease,
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: #073b57;
  transform: translate(-50%, -50%);
  transition:
    transform 300ms ease,
    background-color 300ms ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon {
  border-color: #087eaf;
  background: #087eaf;
  transform: rotate(180deg);
}

.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after {
  background: #ffffff;
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__answer {
  height: 0;
  overflow: hidden;
  transition: height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item__answer-inner {
  padding: 0 25px 24px;
}

.faq-item__answer p {
  margin: 0;
  color: #526873;
  font-size: 0.98rem;
  line-height: 1.75;
}

.faq-section__intro,
.faq-accordion {
  opacity: 0;
  transform: translateY(28px);
}

.faq-section.is-visible .faq-section__intro,
.faq-section.is-visible .faq-accordion {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 750ms ease,
    transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-section.is-visible .faq-accordion {
  transition-delay: 130ms;
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 80px 20px;
  }

  .faq-section__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-section__intro {
    position: static;
    max-width: 820px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 65px 16px;
  }

  .faq-section__container {
    gap: 38px;
  }

  .faq-section__intro h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .faq-item__question {
    gap: 15px;
    padding: 20px 18px;
    font-size: 0.98rem;
  }

  .faq-item__answer-inner {
    padding: 0 18px 20px;
  }

  .faq-section__button {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */

.contact-section {
  padding: 100px 24px;
  background: #ecf7fb;
}

.contact-section__container {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(45px, 6vw, 80px);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at top left,
      rgba(8, 126, 175, 0.22),
      transparent 42%
    ),
    #073b57;
  box-shadow: 0 28px 75px rgba(7, 59, 87, 0.2);
}

.contact-section__intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 4.3vw, 4.5rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.contact-section__intro > p {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.contact-socials {
  margin-top: 30px;
}

.contact-socials__label {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
}

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

.contact-socials__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: default;
  transition:
    background-color 300ms ease,
    color 300ms ease,
    transform 300ms ease,
    border-color 300ms ease;
}

.contact-socials__icon:hover {
  background: #ffffff;
  color: #073b57;
  border-color: #ffffff;
  transform: translateY(-3px);
}

.contact-socials__icon svg {
  width: 21px;
  height: 21px;
}

.contact-socials__icon svg path,
.contact-socials__icon svg polygon {
  fill: currentColor;
  stroke: none;
}

.contact-socials__icon svg rect,
.contact-socials__icon svg line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-section__options {
  display: grid;
  gap: 0;
}

.contact-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  text-decoration: none;
  transition: transform 300ms ease;
}

.contact-option:last-child {
  border-bottom: 0;
}

.contact-option:hover {
  background: transparent;
  box-shadow: none;
  transform: translateX(6px);
}

.contact-option__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  transition:
    background-color 300ms ease,
    color 300ms ease;
}

.contact-option:hover .contact-option__icon {
  background: #ffffff;
  color: #073b57;
}

.contact-option__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-option--whatsapp .contact-option__icon svg {
  fill: currentColor;
  stroke: none;
}

.contact-option__content {
  min-width: 0;
}

.contact-option__label {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-option__content strong {
  display: block;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.4;
}

.contact-option__note {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-option__arrow {
  color: #ffffff;
  font-size: 1.25rem;
  transition: transform 300ms ease;
}

.contact-option:hover .contact-option__arrow {
  transform: translateX(6px);
}

.contact-option:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.contact-section__intro,
.contact-option {
  opacity: 0;
  transform: translateY(28px);
}

.contact-section.is-visible .contact-section__intro,
.contact-section.is-visible .contact-option {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-section.is-visible .contact-option:nth-child(1) {
  transition-delay: 120ms;
}

.contact-section.is-visible .contact-option:nth-child(2) {
  transition-delay: 220ms;
}

.contact-section.is-visible .contact-option:nth-child(3) {
  transition-delay: 320ms;
}

@media (max-width: 1024px) {
  .contact-section {
    padding: 80px 20px;
  }

  .contact-section__container {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 55px 40px;
  }

  .contact-section__intro {
    max-width: 780px;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 65px 16px;
  }

  .contact-section__container {
    padding: 38px 20px;
    border-radius: 23px;
  }

  .contact-section__intro h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .contact-option {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 18px 0;
  }

  .contact-option__arrow {
    display: none;
  }

  .contact-option__icon {
    width: 46px;
    height: 46px;
  }

  .contact-option__content strong {
    font-size: 0.98rem;
  }

  .contact-option__note {
    font-size: 0.84rem;
  }
}

/* --------------------------------------------------------------------------
   Site Footer
   -------------------------------------------------------------------------- */

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  background: #073b57;
  color: #ffffff;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(8, 126, 175, 0.16);
  pointer-events: none;
}

.site-footer__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(280px, 1.1fr)
    minmax(180px, 0.7fr)
    minmax(300px, 1fr)
    minmax(300px, 1fr);
  align-items: start;
  gap: clamp(36px, 4vw, 70px);
  width: min(100%, 1550px);
  margin: 0 auto;
  padding: 80px clamp(24px, 4vw, 72px) 65px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  margin: 0;
  text-decoration: none;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.site-footer__logo img {
  display: block;
  width: auto;
  height: 76px;
  max-width: 340px;
  margin: 0;
  object-fit: contain;
  object-position: left center;
}

.site-footer__brand p {
  max-width: 440px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.75;
}

.site-footer__trust {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 650;
}

.site-footer__column h2 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 750;
}

.site-footer__column h2::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: #087eaf;
}

.site-footer__column ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__column li {
  margin: 0;
}

.site-footer__column li a {
  display: inline-flex;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.94rem;
  line-height: 1.45;
  transition:
    color 250ms ease,
    transform 250ms ease;
}

.site-footer__column li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 300ms ease;
}

.site-footer__column li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.site-footer__column li a:hover::before {
  width: 100%;
}

.footer-services__list {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-services__list li {
  margin: 0;
  padding: 0;
}

.footer-services__list a {
  display: inline-block;
  position: relative;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.footer-services__list a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 300ms ease;
}

.footer-services__list a:hover,
.footer-services__list a:focus-visible {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-services__list a:hover::before,
.footer-services__list a:focus-visible::before {
  width: 100%;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
}

.site-footer__contact > a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 300ms ease,
    opacity 300ms ease;
}

.site-footer__contact > a:last-child {
  margin-bottom: 0;
}

.site-footer__contact > a:hover {
  transform: translateX(5px);
}

.site-footer__contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition:
    background-color 300ms ease,
    color 300ms ease;
}

.site-footer__contact > a:hover .site-footer__contact-icon {
  background: #ffffff;
  color: #073b57;
}

.site-footer__contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__contact small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer__contact strong {
  display: block;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 650;
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #052d43;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 21px 24px;
}

.site-footer__copyright {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}

.site-footer__credit {
  display: inline;
}

.site-footer__credit a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 200ms ease,
    opacity 200ms ease;
}

.site-footer__credit a:hover,
.site-footer__credit a:focus-visible {
  color: #4ec3f1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__top-button {
  position: fixed;
  right: 27px;
  bottom: 94px;
  z-index: 1490;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: #073b57;
  color: #ffffff;
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 300ms ease,
    visibility 300ms ease,
    transform 300ms ease,
    background-color 300ms ease,
    color 300ms ease;
}

.site-footer__top-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer__top-button:hover {
  background: #ffffff;
  color: #073b57;
  transform: translateY(-4px);
}

.site-footer__top-button.is-visible:hover {
  transform: translateY(-4px);
}

.site-footer__top-button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .site-footer__top-button {
    right: 18px;
    bottom: 84px;
    width: 46px;
    height: 46px;
  }
}

.site-footer a:focus-visible,
.site-footer button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.site-footer__brand,
.site-footer__column {
  opacity: 0;
  transform: translateY(28px);
}

.site-footer.is-visible .site-footer__brand,
.site-footer.is-visible .site-footer__column {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer.is-visible .site-footer__column:nth-child(2) {
  transition-delay: 100ms;
}

.site-footer.is-visible .site-footer__column:nth-child(3) {
  transition-delay: 180ms;
}

.site-footer.is-visible .site-footer__column:nth-child(4) {
  transition-delay: 260ms;
}

@media (max-width: 1100px) {
  .site-footer {
    margin-top: 65px;
  }

  .site-footer__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 55px;
    padding: 70px clamp(20px, 4vw, 48px) 55px;
  }

  .footer-services__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .site-footer {
    margin-top: 50px;
  }

  .site-footer__container {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 60px 18px 45px;
  }

  .footer-services__list {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .site-footer__brand,
  .site-footer__logo {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__logo img {
    height: 62px;
    max-width: 290px;
    margin-left: 0;
    margin-right: 0;
    object-position: left center;
  }

  .site-footer__brand p {
    margin-top: 20px;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px;
  }

  .site-footer__copyright {
    display: block;
    text-align: left;
    font-size: 0.86rem;
  }

  .site-footer__credit {
    display: block;
    margin-top: 5px;
  }
}

@media (max-width: 380px) {
  .site-footer__logo img {
    height: 54px;
    max-width: 250px;
  }

  .footer-services__list a {
    font-size: 0.86rem;
  }
}

/* --------------------------------------------------------------------------
   Areas We Serve
   -------------------------------------------------------------------------- */

.service-areas {
  padding:
    clamp(78px, 7vw, 110px)
    clamp(18px, 4vw, 60px);
  background: #ECF7FB;
}

.service-areas__container {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.service-areas__header {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.service-areas__header h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.35rem, 4vw, 4.1rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.service-areas__header p {
  max-width: 700px;
  margin: 17px auto 0;
  color: #526873;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.65;
}

.service-areas__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(17px, 1.6vw, 25px);
  width: 100%;
}

.service-area-card {
  position: relative;
  min-width: 0;
  height: 285px;
  overflow: hidden;
  border-radius: 23px;
  background: #073B57;
  isolation: isolate;
  box-shadow: 0 16px 40px rgba(7, 59, 87, 0.13);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease;
}

.service-area-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 55px rgba(7, 59, 87, 0.22);
}

.service-area-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-area-card:hover .service-area-card__image {
  transform: scale(1.05);
}

.service-area-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.02) 20%,
      rgba(3, 24, 36, 0.18) 48%,
      rgba(3, 24, 36, 0.88) 100%
    );
  transition: background 300ms ease;
}

.service-area-card:hover .service-area-card__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.08) 10%,
      rgba(3, 24, 36, 0.32) 48%,
      rgba(3, 24, 36, 0.94) 100%
    );
}

.service-area-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 23px 21px;
  color: #FFFFFF;
}

.service-area-card__icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  backdrop-filter: blur(7px);
}

.service-area-card__icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-area-card h3 {
  min-width: 0;
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(1.05rem, 1.15vw, 1.28rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.015em;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.72);
}

.service-area-card--additional {
  display: none;
}

.service-areas.is-expanded .service-area-card--additional {
  display: block;
  animation: serviceAreaReveal 450ms ease both;
}

@keyframes serviceAreaReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-areas__toggle-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 43px;
}

.service-areas__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 55px;
  padding: 14px 29px;
  border: 0;
  border-radius: 999px;
  background: #073B57;
  color: #FFFFFF;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 13px 30px rgba(7, 59, 87, 0.17);
  transition:
    transform 250ms ease,
    background 250ms ease,
    box-shadow 250ms ease;
}

.service-areas__toggle:hover,
.service-areas__toggle:focus-visible {
  transform: translateY(-3px);
  background: #087EAF;
  box-shadow: 0 18px 40px rgba(7, 59, 87, 0.24);
}

.service-areas__toggle-icon {
  display: inline-block;
  transition: transform 260ms ease;
}

.service-areas.is-expanded .service-areas__toggle-icon {
  transform: rotate(180deg);
}

@media (min-width: 768px) and (max-width: 1100px) {
  .service-areas__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .service-area-card {
    height: 290px;
  }
}

@media (max-width: 767px) {
  .service-areas {
    padding: 62px 16px;
  }

  .service-areas__header {
    margin-bottom: 34px;
  }

  .service-areas__header h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .service-areas__grid {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .service-area-card {
    height: 260px;
    border-radius: 21px;
  }

  .service-area-card__content {
    padding: 21px 19px;
  }

  .service-area-card h3 {
    font-size: 1.22rem;
  }

  .service-areas__toggle {
    width: 100%;
    max-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-area-card,
  .service-area-card__image,
  .service-areas__toggle,
  .service-areas__toggle-icon {
    transition: none;
  }

  .service-areas.is-expanded .service-area-card--additional {
    animation: none;
  }

  .service-area-card:hover,
  .service-areas__toggle:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-slide: none;
    --fleet-transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .hero__slide {
    transition: none;
  }

  .fleet-section-reveal {
    opacity: 1;
    transform: none;
  }

  .fleet-section-reveal.is-visible,
  .fleet-carousel__card {
    transition: none;
  }

  .fleet-carousel__card.is-active {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .fleet-carousel__card.is-prev {
    transform: translateX(calc(-50% - 88%)) translateY(22px) scale(0.92);
    opacity: 0.85;
  }

  .fleet-carousel__card.is-next {
    transform: translateX(calc(-50% + 88%)) translateY(22px) scale(0.92);
    opacity: 0.85;
  }

  .fleet-carousel__card.is-far-prev,
  .fleet-carousel__card.is-far-next {
    transform: translateX(-50%) translateY(40px) scale(0.85);
    opacity: 0.7;
    visibility: visible;
  }

  .services-reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card {
    transition: none;
  }

  .service-card:hover,
  .service-card.is-mobile-open {
    transform: none;
  }

  .service-card__media img,
  .service-card:hover .service-card__media img,
  .service-card.is-mobile-open .service-card__media img {
    transform: none;
    transition: none;
  }

  .service-card__overlay,
  .service-card:hover .service-card__overlay,
  .service-card.is-mobile-open .service-card__overlay {
    transition: none;
  }

  .service-card__title,
  .service-card:hover .service-card__title,
  .service-card.is-mobile-open .service-card__title {
    transition: none;
  }

  .service-card__reveal,
  .service-card.is-mobile-open .service-card__reveal {
    transition: none;
  }

  .service-card__button,
  .service-card__button span {
    transition: none;
  }

  .service-card__button:hover,
  .service-card__button:active {
    transform: none;
  }

  .tour-experience {
    opacity: 1;
    transform: none;
  }

  .tour-experience.is-visible {
    transition: none;
  }

  .tour-benefit,
  .tour-benefit:hover {
    transform: none;
    transition: none;
  }

  .tour-experience__button,
  .tour-experience__button span {
    transition: none;
  }

  .tour-experience__button:hover,
  .tour-experience__button:active {
    transform: none;
  }

  .how-it-works__header,
  .how-step,
  .how-it-works__action {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .how-it-works.is-visible .how-step:nth-child(1),
  .how-it-works.is-visible .how-step:nth-child(2),
  .how-it-works.is-visible .how-step:nth-child(3),
  .how-it-works.is-visible .how-it-works__action {
    transition-delay: 0ms;
  }

  .how-it-works__steps::before,
  .how-it-works.is-visible .how-it-works__steps::before {
    transform: scaleX(1);
    transition: none;
  }

  .how-step,
  .how-step:hover {
    transform: none;
    transition: none;
  }

  .how-step__icon,
  .how-step:hover .how-step__icon {
    transform: translate(-50%, -50%);
    transition: none;
  }

  .how-it-works__button,
  .how-it-works__button span {
    transition: none;
  }

  .how-it-works__button:hover,
  .how-it-works__button:active {
    transform: none;
  }

  .about-section__visual,
  .about-section__content {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-section.is-visible .about-section__content {
    transition-delay: 0ms;
  }

  .about-section__visual img,
  .about-section__visual:hover img {
    transform: none;
    transition: none;
  }

  .about-section__button,
  .about-section__button span {
    transition: none;
  }

  .about-section__button:hover,
  .about-section__button:active {
    transform: none;
  }

  .reviews-section__header,
  .reviews-carousel {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reviews-section.is-visible .reviews-carousel {
    transition-delay: 0ms;
  }

  .reviews-carousel__viewport {
    overflow: visible;
    padding-bottom: 0;
  }

  .reviews-carousel__track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }

  .review-card {
    flex-basis: auto;
    min-height: 0;
  }

  .review-card:hover {
    transform: none;
  }

  .reviews-carousel__arrow {
    display: none;
  }

  .faq-section__intro,
  .faq-accordion {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-section.is-visible .faq-accordion {
    transition-delay: 0ms;
  }

  .faq-item__answer {
    transition: none;
  }

  .faq-section__button,
  .faq-section__button span {
    transition: none;
  }

  .faq-section__button:hover,
  .faq-section__button:active {
    transform: none;
  }

  .contact-section__intro,
  .contact-option {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .contact-section.is-visible .contact-option:nth-child(1),
  .contact-section.is-visible .contact-option:nth-child(2),
  .contact-section.is-visible .contact-option:nth-child(3) {
    transition-delay: 0ms;
  }

  .contact-option,
  .contact-option:hover {
    transform: none;
    transition: none;
  }

  .contact-option__icon,
  .contact-option:hover .contact-option__icon {
    transform: none;
    transition: none;
  }

  .contact-option__arrow,
  .contact-option:hover .contact-option__arrow {
    transform: none;
    transition: none;
  }

  .contact-socials__icon,
  .contact-socials__icon:hover {
    transform: none;
    transition: none;
  }

  .site-footer__brand,
  .site-footer__column {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-footer.is-visible .site-footer__column:nth-child(2),
  .site-footer.is-visible .site-footer__column:nth-child(3),
  .site-footer.is-visible .site-footer__column:nth-child(4) {
    transition-delay: 0ms;
  }

  .site-footer__column li a,
  .site-footer__column li a:hover {
    transform: none;
    transition: none;
  }

  .site-footer__contact > a,
  .site-footer__contact > a:hover {
    transform: none;
    transition: none;
  }

  .site-footer__top-button,
  .site-footer__top-button.is-visible,
  .site-footer__top-button:hover,
  .site-footer__top-button:active {
    transform: none;
    transition: none;
  }

  .site-header-stack,
  .site-header-stack.is-compact,
  .top-announcement,
  .top-announcement__container,
  .site-header,
  .site-header__container,
  .site-header__logo img,
  .site-nav__list,
  .site-nav a,
  .site-nav__services-link,
  .site-nav__dropdown-toggle,
  .site-header__cta {
    transition: none;
  }

  .site-nav a,
  .site-nav__dropdown-toggle,
  .site-nav a:hover,
  .site-nav__dropdown-toggle:hover,
  .site-header__cta,
  .site-header__cta:hover,
  .site-header__cta span,
  .site-header__cta:hover span {
    transform: none;
    transition: none;
  }

  .site-nav a::after,
  .site-nav__dropdown-toggle::after {
    transition: none;
  }

  .site-nav__dropdown {
    transition: none;
  }

  .floating-whatsapp,
  .floating-whatsapp:hover {
    transform: none;
    transition: none;
  }

  .floating-whatsapp__pulse {
    animation: none;
    opacity: 0;
  }

  .area-ticker__track {
    animation: none;
    transform: none;
    width: 100%;
  }

  .area-ticker__group[aria-hidden="true"] {
    display: none;
  }

  .area-ticker__viewport {
    overflow-x: auto;
  }
}

/* --------------------------------------------------------------------------
   Static service pages
   -------------------------------------------------------------------------- */

.service-page-hero {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  background: #073B57;
}

.service-page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(2, 18, 28, 0.50) 0%,
      rgba(2, 22, 34, 0.43) 38%,
      rgba(2, 22, 34, 0.62) 100%
    );
}

.service-page-hero__media picture,
.service-page-hero__image {
  display: block;
  width: 100%;
  height: 100%;
}

.service-page-hero__image {
  object-fit: cover;
  object-position: center;
}

.service-page-hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(100% - 48px, 1440px);
  min-height: 980px;
  margin: 0 auto;
  padding:
    max(150px, var(--hero-header-clearance))
    0
    45px;
}

.service-hero__content,
.service-page-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
  text-align: center;
}

.service-hero__content h1,
.service-page-hero__content h1 {
  max-width: 1120px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: clamp(2.9rem, 4.4vw, 4.65rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.043em;
  text-align: center;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  text-shadow:
    0 4px 18px rgba(0, 0, 0, 0.55),
    0 10px 38px rgba(0, 0, 0, 0.35);
}

.service-hero__content p,
.service-page-hero__content p {
  max-width: 850px;
  margin: 21px auto 0;
  color: rgba(255, 255, 255, 0.96);
  text-align: center;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.62;
  text-wrap: balance;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.65);
}

.service-page-hero__booking {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: 15px;
}

.service-page-hero__booking iframe {
  display: block;
  width: 100% !important;
  max-width: none !important;
}

@media (min-width: 1441px) {
  .services-hub-hero__content h1 {
    font-size: 4.9rem;
  }

  .service-hero__content h1,
  .service-page-hero__content h1 {
    font-size: 4.65rem;
  }
}

@media (min-width: 1101px) and (max-width: 1440px) {
  .services-hub-hero__content h1 {
    max-width: 900px;
    font-size: clamp(3.3rem, 4.6vw, 4.35rem);
  }

  .service-hero__content h1,
  .service-page-hero__content h1 {
    max-width: 1020px;
    font-size: clamp(3.05rem, 4.25vw, 4.1rem);
  }
}

.service-single__content {
  padding: 90px 24px;
  background: #ECF7FB;
}

.service-single__content-container {
  width: min(100%, 1100px);
  margin: 0 auto;
  color: #526873;
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-single__content h2,
.service-single__content h3 {
  color: #073B57;
}

body.single-service {
  overflow-x: hidden;
  background: #ECF7FB;
}

.service-section__container {
  width: min(100%, 1380px);
  margin: 0 auto;
  padding: 0 24px;
}

.service-section__header {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.service-section__header h2 {
  margin: 0 0 12px;
  color: #073B57;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.service-section__header p {
  margin: 0;
  color: #526873;
  font-size: 1.02rem;
  line-height: 1.7;
}

.service-trust-marquee {
  position: relative;
  z-index: 6;
  width: 100%;
  margin-top: -46px;
  margin-bottom: 10px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: none;
}

.service-trust-marquee__viewport {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #073c59;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(7, 60, 89, 0.2);
}

.service-trust-marquee__track {
  display: flex;
  width: max-content;
  animation: service-trust-scroll 28s linear infinite;
  will-change: transform;
}

.service-trust-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  padding: 0;
}

.service-trust-marquee__item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: clamp(190px, 20vw, 260px);
  gap: 8px;
  padding: 10px clamp(12px, 1.4vw, 20px);
  color: #ffffff;
  font-size: clamp(0.74rem, 0.9vw, 0.88rem);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
}

.service-trust-marquee__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%);
  pointer-events: none;
}

.service-trust-marquee__item:nth-child(1) .service-trust-marquee__icon {
  background: #E3F2FA;
  color: #073B57;
}

.service-trust-marquee__item:nth-child(2) .service-trust-marquee__icon {
  background: #E3F2FA;
  color: #073B57;
}

.service-trust-marquee__item:nth-child(3) .service-trust-marquee__icon {
  background: #E0F7F8;
  color: #20BFC6;
}

.service-trust-marquee__item:nth-child(4) .service-trust-marquee__icon {
  background: #FFF8E6;
  color: #C9920A;
}

.service-trust-marquee__item:nth-child(5) .service-trust-marquee__icon {
  background: #E3F2FA;
  color: #073B57;
}

.service-trust-marquee__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: none;
  border-radius: 50%;
  background: #E3F2FA;
  color: #073B57;
}

.service-trust-marquee__item > span:not(.service-trust-marquee__icon) {
  flex: 1 1 auto;
  min-width: 0;
}

.service-trust-marquee__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  color: inherit;
  stroke: currentColor;
}

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

@keyframes service-trust-scroll {
  from {
    transform: translateX(0);
  }

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

.service-introduction {
  padding: clamp(80px, 8vw, 125px) 24px;
  background: #ECF7FB;
}

.service-introduction__container {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(48px, 6vw, 95px);
  width: min(100%, 1450px);
  margin: 0 auto;
}

.service-introduction--reverse .service-introduction__container {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.service-introduction--reverse .service-introduction__content {
  order: 2;
}

.service-introduction--reverse .service-introduction__media {
  order: 1;
}

.service-introduction__content {
  max-width: 680px;
}

.service-introduction__content h2 {
  margin: 0 0 24px;
  color: #073B57;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.service-introduction__content p {
  margin: 0;
  color: #526873;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.85;
}

.service-introduction__content p + p {
  margin-top: 22px;
}

.service-introduction__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 65px rgba(7, 59, 87, 0.17);
}

.service-introduction__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.service-included {
  padding:
    clamp(72px, 7vw, 105px)
    clamp(18px, 4vw, 55px);
  background: #FFFFFF;
}

.service-included__container {
  width: min(100%, 1400px);
  margin: 0 auto;
}

.service-included__header {
  max-width: 780px;
  margin: 0 auto 45px;
  text-align: center;
}

.service-included__header h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.3rem, 3.7vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.service-included__header p {
  max-width: 680px;
  margin: 16px auto 0;
  color: #526873;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.65;
}

.service-included__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 27px;
}

.service-included-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 59, 87, 0.10);
  border-radius: 25px;
  background: #FFFFFF;
  box-shadow: 0 17px 45px rgba(7, 59, 87, 0.09);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease,
    border-color 320ms ease;
}

.service-included-card:hover {
  transform: translateY(-7px);
  border-color: rgba(8, 126, 175, 0.24);
  box-shadow: 0 27px 60px rgba(7, 59, 87, 0.16);
}

.service-included-card__media {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #DCECF3;
}

.service-included-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.01) 48%,
      rgba(3, 24, 36, 0.22) 100%
    );
}

.service-included-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-included-card:hover .service-included-card__media img {
  transform: scale(1.045);
}

.service-included-card__number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 47px;
  height: 47px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  background: rgba(7, 59, 87, 0.82);
  color: #FFFFFF;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.service-included-card__content {
  position: relative;
  min-height: 170px;
  padding: 25px 26px 29px;
}

.service-included-card__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: #087EAF;
}

.service-included-card__content h3 {
  margin: 7px 0 0;
  color: #073B57;
  font-size: clamp(1.2rem, 1.35vw, 1.48rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.service-included-card__content p {
  margin: 13px 0 0;
  color: #526873;
  font-size: 0.98rem;
  line-height: 1.67;
}

@media (min-width: 1400px) {
  .service-introduction__media,
  .service-introduction__media img {
    min-height: 610px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .service-introduction__container {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .service-introduction--reverse .service-introduction__container {
    grid-template-columns: 1fr 1fr;
  }

  .service-introduction__media,
  .service-introduction__media img {
    min-height: 470px;
  }

  .service-introduction__content h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.75rem);
    line-height: 1.13;
  }

  .service-included__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .service-included-card__media {
    height: 255px;
  }

  .service-included-card__content {
    min-height: 165px;
  }

  .service-locations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .service-location-card {
    height: 275px;
  }
}

.service-locations,
.service-vehicles,
.service-reviews {
  padding: 72px 0;
}

.service-benefits {
  padding:
    clamp(65px, 6vw, 90px)
    clamp(20px, 4vw, 55px);
  background: #ECF7FB;
}

.service-benefits__container {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.service-benefits__header {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.service-benefits__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 13px;
  color: #087EAF;
}

.service-benefits__ornament span {
  width: 64px;
  height: 1px;
  background: rgba(8, 126, 175, 0.55);
}

.service-benefits__ornament svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-benefits__header h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.2rem, 3.5vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.service-benefits__header p {
  max-width: 690px;
  margin: 14px auto 0;
  color: #526873;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.55;
}

.service-benefits__layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);
  align-items: stretch;
  gap: clamp(35px, 4vw, 58px);
}

.service-benefits__visual {
  position: relative;
  min-height: 480px;
}

.service-benefits__visual > img {
  display: block;
  width: calc(100% - 25px);
  height: 480px;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
  box-shadow: 0 28px 65px rgba(7, 59, 87, 0.16);
}

.service-benefits__image-note {
  position: absolute;
  right: 0;
  bottom: -12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 75px;
  align-items: center;
  gap: 14px;
  width: min(62%, 315px);
  min-height: 118px;
  padding: 20px 21px;
  border-radius: 19px;
  background:
    linear-gradient(
      135deg,
      #073B57,
      #052F47
    );
  color: #FFFFFF;
  box-shadow: 0 25px 55px rgba(7, 59, 87, 0.32);
}

.service-benefits__image-note p {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(0.92rem, 1.05vw, 1.03rem);
  font-weight: 650;
  line-height: 1.45;
}

.service-benefits__route {
  min-height: 75px;
  color: #FFFFFF;
}

.service-benefits__route svg {
  display: block;
  width: 100%;
  height: 100%;
}

.service-benefits__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: stretch;
}

.service-benefit-item {
  position: relative;
  min-width: 0;
  padding: 19px 27px 23px;
  transition:
    background 280ms ease,
    transform 280ms ease;
}

.service-benefit-item:nth-child(odd) {
  border-right: 1px solid rgba(8, 126, 175, 0.22);
}

.service-benefit-item:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(8, 126, 175, 0.22);
}

.service-benefit-item:hover {
  background: rgba(255, 255, 255, 0.42);
}

.service-benefit-item__number {
  display: block;
  color: #087EAF;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1;
}

.service-benefit-item__number-line {
  display: block;
  width: 25px;
  height: 2px;
  margin-top: 7px;
  background: #087EAF;
}

.service-benefit-item__icon {
  display: grid;
  place-items: center;
  width: 57px;
  height: 57px;
  margin: 11px 0 13px;
  color: #073B57;
  transition:
    color 280ms ease,
    transform 280ms ease;
}

.service-benefit-item:hover .service-benefit-item__icon {
  color: #087EAF;
  transform: translateY(-3px);
}

.service-benefit-item__icon svg {
  display: block;
  width: 51px;
  height: 51px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-benefit-item h3 {
  max-width: 260px;
  margin: 0;
  color: #073B57;
  font-size: clamp(1.3rem, 1.45vw, 1.65rem);
  line-height: 1.13;
  letter-spacing: -0.025em;
}

.service-benefit-item p {
  max-width: 285px;
  margin: 11px 0 0;
  color: #526873;
  font-size: 0.94rem;
  line-height: 1.55;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .service-benefits__container {
    width: min(100%, 900px);
  }

  .service-benefits__layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .service-benefits__visual {
    min-height: 460px;
  }

  .service-benefits__visual > img {
    width: calc(100% - 25px);
    height: 460px;
  }

  .service-benefits__items {
    max-width: 850px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .service-benefits {
    padding: 58px 16px 70px;
  }

  .service-benefits__header {
    margin-bottom: 31px;
  }

  .service-benefits__header h2 {
    font-size: clamp(1.95rem, 9vw, 2.65rem);
  }

  .service-benefits__layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .service-benefits__visual {
    min-height: auto;
    padding-bottom: 62px;
  }

  .service-benefits__visual > img {
    width: 100%;
    height: 350px;
    min-height: 0;
    border-radius: 21px;
  }

  .service-benefits__image-note {
    right: 12px;
    bottom: 0;
    grid-template-columns: minmax(0, 1fr) 80px;
    width: calc(100% - 24px);
    min-height: 108px;
    padding: 18px;
    border-radius: 19px;
  }

  .service-benefits__items {
    grid-template-columns: 1fr;
  }

  .service-benefit-item {
    padding: 24px 5px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(8, 126, 175, 0.22);
  }

  .service-benefit-item:last-child {
    border-bottom: 0;
  }

  .service-benefit-item__icon {
    width: 52px;
    height: 52px;
  }

  .service-benefit-item__icon svg {
    width: 46px;
    height: 46px;
  }
}

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

.service-location-card {
  position: relative;
  min-width: 0;
  height: 285px;
  overflow: hidden;
  border-radius: 24px;
  background: #073B57;
  box-shadow: 0 18px 45px rgba(7, 59, 87, 0.14);
  isolation: isolate;
  transition:
    transform 320ms ease,
    box-shadow 320ms ease;
}

.service-location-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 27px 60px rgba(7, 59, 87, 0.22);
}

.service-location-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
}

.service-location-card:hover .service-location-card__image {
  transform: scale(1.07);
}

.service-location-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(3, 25, 38, 0.04) 15%,
      rgba(3, 25, 38, 0.28) 52%,
      rgba(3, 25, 38, 0.90) 100%
    );
}

.service-location-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 25px 24px;
  color: #FFFFFF;
}

.service-location-card__icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border: 1px solid rgba(255, 255, 255, 0.40);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}

.service-location-card__icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
}

.service-location-card h3 {
  min-width: 0;
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.70);
}

.service-vehicles__container {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 0 24px;
}

.service-vehicles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
  width: 100%;
}

.service-vehicle-card {
  position: relative;
  width: 100%;
  min-width: 0;
  height: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 25px;
  background: transparent;
  isolation: isolate;
  box-shadow: 0 18px 45px rgba(7, 59, 87, 0.15);
  transition:
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 350ms ease;
}

.service-vehicle-card:hover,
.service-vehicle-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 29px 65px rgba(7, 59, 87, 0.24);
}

.service-vehicle-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: transparent;
  transform: scale(1);
  transition:
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-vehicle-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.03) 35%,
      rgba(3, 24, 36, 0.44) 67%,
      rgba(3, 24, 36, 0.94) 100%
    );
}

.service-vehicle-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 30px;
  color: #FFFFFF;
}

.service-vehicle-card__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(0);
  transition: transform 300ms ease;
}

.service-vehicle-card__heading h3 {
  flex: 1;
  min-width: 0;
}

.service-vehicle-card__vehicle-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.13);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}

.service-vehicle-card__vehicle-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
}

.service-vehicle-card h3 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(1.35rem, 1.65vw, 1.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.75);
}

.service-vehicle-card__details {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 260ms ease,
    visibility 260ms ease,
    max-height 340ms ease,
    margin 300ms ease,
    transform 300ms ease;
}

.service-vehicle-card__specs {
  display: grid;
  gap: 9px;
}

.service-vehicle-card__specs span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.35;
}

.service-vehicle-card__specs svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}

.service-vehicle-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  margin-top: 20px;
  padding: 12px 21px;
  border-radius: 13px;
  background: #FFFFFF;
  color: #073B57;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 250ms ease,
    background 250ms ease;
}

.service-vehicle-card__button:hover,
.service-vehicle-card__button:focus-visible {
  transform: translateY(-2px);
  background: #ECF7FB;
}

.service-vehicle-card__button:focus-visible {
  outline: 3px solid rgba(8, 126, 175, 0.45);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .service-vehicle-card:hover .service-vehicle-card__heading,
  .service-vehicle-card:focus-within .service-vehicle-card__heading {
    transform: translateY(-12px);
  }

  .service-vehicle-card:hover .service-vehicle-card__details,
  .service-vehicle-card:focus-within .service-vehicle-card__details {
    opacity: 1;
    visibility: visible;
    max-height: 180px;
    transform: translateY(0);
    pointer-events: auto;
    margin-bottom: 17px;
  }

  .service-vehicle-card:hover .service-vehicle-card__image,
  .service-vehicle-card:focus-within .service-vehicle-card__image {
    transform: scale(1.035);
  }
}

.service-vehicle-card--additional {
  display: none;
}

.service-vehicles.is-expanded .service-vehicle-card--additional {
  display: block;
  animation: serviceVehicleReveal 450ms ease both;
}

@keyframes serviceVehicleReveal {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-vehicles__toggle-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.service-vehicles__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 55px;
  margin: 45px auto 0;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: #073B57;
  color: #FFFFFF;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 250ms ease,
    background 250ms ease;
}

.service-vehicles__toggle:hover,
.service-vehicles__toggle:focus-visible {
  transform: translateY(-3px);
  background: #087EAF;
}

.service-vehicles__toggle:focus-visible {
  outline: 3px solid rgba(8, 126, 175, 0.45);
  outline-offset: 4px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .service-vehicles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-vehicle-card {
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 767px) {
  .service-vehicles__grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .service-vehicle-card {
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
  }

  .service-vehicle-card__image {
    padding: 0;
    object-fit: cover;
  }

  .service-vehicles__toggle {
    width: 100%;
    max-width: 330px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-vehicle-card,
  .service-vehicle-card__image,
  .service-vehicle-card__content,
  .service-vehicle-card__details,
  .service-vehicle-card__button,
  .service-vehicles__toggle {
    transition: none;
  }

  .service-vehicles.is-expanded .service-vehicle-card--additional {
    animation: none;
  }

  .service-vehicle-card:hover,
  .service-vehicle-card:focus-within {
    transform: none;
  }
}

.service-process {
  padding:
    clamp(70px, 7vw, 105px)
    clamp(18px, 4vw, 55px);
  background: #ECF7FB;
}

.service-process__container {
  width: min(100%, 1380px);
  margin: 0 auto;
}

.service-process__header {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.service-process__header h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.25rem, 3.8vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.service-process__header p {
  max-width: 680px;
  margin: 16px auto 0;
  color: #526873;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.65;
}

.service-process__journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  padding: 58px 45px 50px;
  border: 1px solid rgba(7, 59, 87, 0.10);
  border-radius: 30px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98),
      rgba(245, 251, 253, 0.98)
    );
  box-shadow: 0 24px 65px rgba(7, 59, 87, 0.12);
}

.service-process__journey::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(8, 126, 175, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.service-process__route {
  position: absolute;
  z-index: 1;
  top: 102px;
  right: 16%;
  left: 16%;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      rgba(8, 126, 175, 0.25),
      #087EAF,
      rgba(8, 126, 175, 0.25)
    );
}

.service-process__route::after {
  content: "";
  position: absolute;
  inset: -4px 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.9) 18px 25px
    );
}

.service-process-step {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 0 clamp(24px, 3vw, 48px);
  text-align: center;
}

.service-process-step + .service-process-step {
  border-left: 1px solid rgba(7, 59, 87, 0.09);
}

.service-process-step__marker {
  position: relative;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 27px;
  border: 8px solid #FFFFFF;
  border-radius: 50%;
  background: #073B57;
  color: #FFFFFF;
  box-shadow:
    0 16px 35px rgba(7, 59, 87, 0.22),
    0 0 0 1px rgba(8, 126, 175, 0.12);
  transition:
    transform 280ms ease,
    background 280ms ease;
}

.service-process-step:hover .service-process-step__marker {
  transform: translateY(-6px);
  background: #087EAF;
}

.service-process-step__number {
  position: absolute;
  top: -17px;
  right: -15px;
  display: grid;
  place-items: center;
  min-width: 39px;
  height: 39px;
  padding: 0 8px;
  border: 4px solid #FFFFFF;
  border-radius: 999px;
  background: #087EAF;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
}

.service-process-step__icon {
  display: grid;
  place-items: center;
}

.service-process-step__icon svg {
  display: block;
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-process-step__content {
  max-width: 320px;
  margin: 0 auto;
}

.service-process-step__content h3 {
  margin: 0;
  color: #073B57;
  font-size: clamp(1.25rem, 1.55vw, 1.65rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.service-process-step__content p {
  margin: 14px 0 0;
  color: #526873;
  font-size: 0.97rem;
  line-height: 1.68;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .service-process__journey {
    padding: 50px 25px 45px;
  }

  .service-process-step {
    padding: 0 20px;
  }

  .service-process-step__marker {
    width: 84px;
    height: 84px;
  }

  .service-process-step__icon svg {
    width: 34px;
    height: 34px;
  }

  .service-process__route {
    top: 93px;
  }
}

@media (max-width: 767px) {
  .service-process {
    padding: 60px 16px;
  }

  .service-process__header {
    margin-bottom: 34px;
  }

  .service-process__header h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .service-process__journey {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 31px 21px;
    border-radius: 24px;
  }

  .service-process__route {
    top: 55px;
    bottom: 55px;
    left: 61px;
    width: 2px;
    height: auto;
    background: #087EAF;
  }

  .service-process__route::after {
    display: none;
  }

  .service-process-step {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: start;
    gap: 17px;
    padding: 24px 0;
    text-align: left;
    border-left: 0 !important;
  }

  .service-process-step + .service-process-step {
    border-top: 1px solid rgba(7, 59, 87, 0.08);
  }

  .service-process-step__marker {
    width: 72px;
    height: 72px;
    margin: 0;
    border-width: 6px;
  }

  .service-process-step__number {
    top: -11px;
    right: -10px;
    min-width: 34px;
    height: 34px;
    font-size: 0.74rem;
  }

  .service-process-step__icon svg {
    width: 29px;
    height: 29px;
  }

  .service-process-step__content {
    max-width: none;
    margin: 5px 0 0;
  }

  .service-process-step__content h3 {
    font-size: 1.27rem;
  }

  .service-process-step__content p {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-process-step__marker {
    transition: none;
  }

  .service-process-step:hover .service-process-step__marker {
    transform: none;
  }
}

.service-reviews {
  padding-bottom: 72px;
}

.service-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-reviews__card {
  height: 100%;
}

.service-faqs {
  padding: clamp(80px, 8vw, 120px) 24px;
  background: #ECF7FB;
}

.service-faqs__container {
  display: grid;
  grid-template-columns:
    minmax(0, 0.75fr)
    minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(55px, 7vw, 110px);
  width: min(100%, 1400px);
  margin: 0 auto;
}

.service-faqs__header {
  position: sticky;
  top: 130px;
  max-width: 500px;
}

.service-faqs__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #087EAF;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-faqs__header h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.1rem, 3.4vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.service-faqs__header p {
  margin: 22px 0 0;
  color: #526873;
  font-size: 1.05rem;
  line-height: 1.75;
}

.service-faqs__accordion {
  display: grid;
  gap: 15px;
}

.service-faq-item {
  overflow: hidden;
  border: 1px solid rgba(7, 59, 87, 0.11);
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(7, 59, 87, 0.07);
}

.service-faq-item__heading {
  margin: 0;
}

.service-faq-item__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  width: 100%;
  padding: 24px 25px;
  border: 0;
  background: transparent;
  color: #073B57;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.service-faq-item__button:hover {
  background: rgba(8, 126, 175, 0.05);
}

.service-faq-item__button:focus-visible {
  outline: 3px solid rgba(8, 126, 175, 0.35);
  outline-offset: -3px;
}

.service-faq-item__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: #ECF7FB;
  color: #087EAF;
  transition:
    transform 260ms ease,
    background 260ms ease,
    color 260ms ease;
}

.service-faq-item__icon svg {
  width: 19px;
  height: 19px;
}

.service-faq-item__button[aria-expanded="true"] .service-faq-item__icon {
  transform: rotate(180deg);
  background: #087EAF;
  color: #FFFFFF;
}

.service-faq-item__panel {
  border-top: 1px solid rgba(7, 59, 87, 0.08);
}

.service-faq-item__answer {
  padding: 22px 25px 26px;
}

.service-faq-item__answer p {
  margin: 0;
  color: #526873;
  font-size: 1rem;
  line-height: 1.75;
}

.service-contact {
  padding: clamp(80px, 8vw, 125px) 24px;
  background: #ECF7FB;
}

.service-contact__container {
  display: grid;
  grid-template-columns:
    minmax(0, 0.86fr)
    minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(55px, 7vw, 105px);
  width: min(100%, 1450px);
  margin: 0 auto;
  padding: clamp(55px, 6vw, 90px);
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at top left,
      rgba(8, 126, 175, 0.25),
      transparent 42%
    ),
    #073B57;
  box-shadow: 0 28px 75px rgba(7, 59, 87, 0.20);
}

.service-contact__intro {
  max-width: 590px;
}

.service-contact__intro h2 {
  margin: 0;
  max-width: 620px;
  color: #FFFFFF;
  font-size: clamp(2.35rem, 3.8vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.service-contact__intro > p {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.3vw, 1.17rem);
  line-height: 1.85;
}

.service-contact__socials {
  margin-top: 35px;
}

.service-contact__socials h3 {
  margin: 0 0 16px;
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.4;
}

.service-contact__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-contact__social-links a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  transition:
    transform 250ms ease,
    background 250ms ease,
    color 250ms ease;
}

.service-contact__social-links a:hover,
.service-contact__social-links a:focus-visible {
  transform: translateY(-4px);
  background: #FFFFFF;
  color: #073B57;
}

.service-contact__social-links svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.service-contact__social-links svg rect,
.service-contact__social-links svg line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.service-contact__methods {
  display: grid;
}

.service-contact-method {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  text-decoration: none;
  transition: transform 260ms ease;
}

.service-contact-method:last-child {
  border-bottom: 0;
}

.service-contact-method:hover {
  transform: translateX(7px);
}

.service-contact-method:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.45);
  outline-offset: 4px;
}

.service-contact-method__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  background: transparent;
  color: #FFFFFF;
  transition:
    background 250ms ease,
    color 250ms ease;
}

.service-contact-method:hover .service-contact-method__icon {
  background: #FFFFFF;
  color: #073B57;
}

.service-contact-method__icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-contact-method--whatsapp .service-contact-method__icon svg {
  fill: currentColor;
  stroke: none;
}

.service-contact-method__label {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-contact-method__body {
  min-width: 0;
}

.service-contact-method__body strong {
  display: block;
  overflow-wrap: anywhere;
  color: #FFFFFF;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.4;
}

.service-contact-method__note {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.5;
}

.service-contact-method__arrow {
  color: #FFFFFF;
  font-size: 1.35rem;
  transition: transform 250ms ease;
}

.service-contact-method:hover .service-contact-method__arrow {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .service-contact__container {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 58px 42px;
  }

  .service-contact__intro {
    max-width: 760px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .service-contact__intro h2 {
    max-width: 700px;
    font-size: clamp(2.2rem, 5vw, 3.35rem);
    line-height: 1.1;
  }
}

@media (max-width: 767px) {
  .service-contact {
    padding: 65px 16px;
  }

  .service-contact__container {
    gap: 36px;
    padding: 40px 21px;
    border-radius: 24px;
  }

  .service-contact__intro h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
  }

  .service-contact__intro > p {
    margin-top: 23px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .service-contact-method {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 15px;
    padding: 21px 0;
  }

  .service-contact-method__arrow {
    display: none;
  }

  .service-contact-method__icon {
    width: 47px;
    height: 47px;
    flex-basis: 47px;
  }

  .service-contact-method__body strong {
    font-size: 1rem;
  }

  .service-contact-method__note {
    font-size: 0.86rem;
  }
}

@media (max-width: 1024px) {
  .service-faqs__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-faqs__header {
    position: static;
    max-width: 750px;
  }

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

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

@media (max-width: 767px) {
  .service-trust-marquee {
    margin-top: -34px;
    padding: 0;
  }

  .service-trust-marquee__viewport {
    padding: 0;
    border-radius: 0;
  }

  .service-trust-marquee__track {
    animation-duration: 22s;
  }

  .service-trust-marquee__group {
    padding: 0;
  }

  .service-trust-marquee__item {
    min-width: 155px;
    padding: 8px 12px;
    font-size: 0.74rem;
  }

  .service-trust-marquee__item:not(:last-child)::before {
    height: 32px;
  }

  .service-trust-marquee__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .service-trust-marquee__icon svg {
    width: 16px;
    height: 16px;
  }

  .service-introduction {
    padding: 65px 18px;
  }

  .service-introduction__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-introduction--reverse .service-introduction__content,
  .service-introduction--reverse .service-introduction__media,
  .service-introduction__content,
  .service-introduction__media {
    order: unset;
  }

  .service-introduction__content {
    max-width: none;
  }

  .service-introduction__content h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1.16;
    letter-spacing: -0.025em;
  }

  .service-introduction__content p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .service-introduction__media,
  .service-introduction__media img {
    min-height: 390px;
  }

  .service-introduction__media {
    border-radius: 22px;
  }

  .service-included {
    padding: 62px 17px;
  }

  .service-included__header {
    margin-bottom: 34px;
  }

  .service-included__header h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .service-included__grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .service-locations,
  .service-vehicles,
  .service-reviews {
    padding: 52px 0;
  }

  .service-faqs {
    padding: 65px 18px;
  }

  .service-faqs__header h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .service-faq-item__button {
    gap: 15px;
    padding: 20px 18px;
    font-size: 1rem;
  }

  .service-faq-item__answer {
    padding: 19px 18px 22px;
  }

  .service-faq-item__icon {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .service-section__container {
    padding: 0 16px;
  }

  .service-vehicles__grid,
  .service-reviews__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-locations__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-location-card {
    height: 245px;
    border-radius: 20px;
  }

  .service-location-card__content {
    padding: 21px 19px;
  }

  .service-location-card__icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .service-location-card h3 {
    font-size: 1.05rem;
  }

  .service-included-card {
    border-radius: 21px;
  }

  .service-included-card__media {
    height: 235px;
  }

  .service-included-card__content {
    min-height: 0;
    padding: 23px 21px 26px;
  }

  .service-included-card__number {
    top: 15px;
    left: 15px;
    min-width: 43px;
    height: 43px;
  }
}

@media (min-width: 520px) and (max-width: 767px) {
  .service-locations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-location-card {
    height: 225px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-trust-marquee__track {
    animation: none;
    transform: none;
    width: 100%;
  }

  .service-trust-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .service-trust-marquee__viewport {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .service-trust-marquee__viewport::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 390px) {
  .service-introduction__media,
  .service-introduction__media img {
    min-height: 320px;
  }
}

.service-related {
  width: 100%;
  padding: clamp(75px, 7vw, 115px) clamp(22px, 4vw, 70px);
  background: #ECF7FB;
}

.service-related__container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.service-related__header {
  width: 100%;
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}

.service-related__header h2,
.service-related__title {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-align: center;
}

.service-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.5vw, 38px);
  width: 100%;
  margin: 0;
}

.service-related-card {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  height: clamp(400px, 29vw, 470px);
  overflow: hidden;
  border-radius: 28px;
  background: #073B57;
  color: #FFFFFF;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 18px 48px rgba(7, 59, 87, 0.15);
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms ease;
}

.service-related-card:hover,
.service-related-card:focus-visible {
  transform: translateY(-9px);
  box-shadow: 0 30px 70px rgba(7, 59, 87, 0.26);
}

.service-related-card:focus-visible {
  outline: 4px solid rgba(8, 126, 175, 0.38);
  outline-offset: 5px;
}

.service-related-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 450ms ease;
}

.service-related-card:hover .service-related-card__image,
.service-related-card:focus-visible .service-related-card__image {
  transform: scale(1.075);
  filter: saturate(1.05);
}

.service-related-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.04) 5%,
      rgba(3, 24, 36, 0.18) 38%,
      rgba(3, 24, 36, 0.84) 78%,
      rgba(3, 24, 36, 0.96) 100%
    );
  transition: background 400ms ease;
}

.service-related-card:hover .service-related-card__overlay,
.service-related-card:focus-visible .service-related-card__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.12) 0%,
      rgba(3, 24, 36, 0.38) 38%,
      rgba(3, 24, 36, 0.92) 75%,
      rgba(3, 24, 36, 0.98) 100%
    );
}

.service-related-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px 27px;
  color: #FFFFFF;
  transform: translateY(110px);
  transition:
    transform 430ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-related-card:hover .service-related-card__content,
.service-related-card:focus-visible .service-related-card__content {
  transform: translateY(0);
}

.service-related-card__title {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(1.35rem, 1.7vw, 1.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.70);
}

.service-related-card__description {
  max-width: 390px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 300ms ease 70ms,
    transform 360ms ease 70ms;
}

.service-related-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 47px;
  margin-top: 17px;
  padding: 11px 19px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition:
    opacity 300ms ease 120ms,
    transform 360ms ease 120ms,
    background 250ms ease,
    color 250ms ease;
}

.service-related-card__cta svg {
  width: 18px;
  height: 18px;
  transition: transform 250ms ease;
}

.service-related-card:hover .service-related-card__description,
.service-related-card:focus-visible .service-related-card__description,
.service-related-card:hover .service-related-card__cta,
.service-related-card:focus-visible .service-related-card__cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.service-related-card:hover .service-related-card__cta,
.service-related-card:focus-visible .service-related-card__cta {
  background: #FFFFFF;
  color: #073B57;
}

.service-related-card:hover .service-related-card__cta svg,
.service-related-card:focus-visible .service-related-card__cta svg {
  transform: translateX(4px);
}

@media (min-width: 1500px) {
  .service-related {
    padding-right: 70px;
    padding-left: 70px;
  }

  .service-related__grid {
    gap: 38px;
  }

  .service-related-card {
    height: 470px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .service-related {
    padding-right: 28px;
    padding-left: 28px;
  }

  .service-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }

  .service-related-card {
    height: 430px;
  }

  .service-related-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 600px);
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .service-related {
    padding: 65px 16px;
  }

  .service-related__header {
    margin-bottom: 34px;
  }

  .service-related__header h2,
  .service-related__title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .service-related__grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .service-related-card {
    height: 380px;
    border-radius: 23px;
  }

  .service-related-card__content {
    padding: 24px 21px;
    transform: none;
  }

  .service-related-card__description,
  .service-related-card__cta {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .service-related-card__title {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .service-related-card__description {
    font-size: 0.96rem;
  }
}

@media (max-width: 390px) {
  .service-related-card {
    height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-related-card,
  .service-related-card__image,
  .service-related-card__content,
  .service-related-card__description,
  .service-related-card__cta,
  .service-related-card__cta svg {
    transition: none;
  }

  .service-related-card:hover,
  .service-related-card:focus-visible {
    transform: none;
  }
}

.services-hub-hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  background: #073B57;
  isolation: isolate;
}

.services-hub-hero__media,
.services-hub-hero__media picture,
.services-hub-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.services-hub-hero__media img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.services-hub-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.58) 0%,
      rgba(3, 24, 36, 0.34) 38%,
      rgba(3, 24, 36, 0.68) 100%
    );
}

.services-hub-hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(100%, 1520px);
  min-height: 880px;
  margin: 0 auto;
  padding:
    max(clamp(120px, 12vw, 180px), var(--hero-header-clearance))
    clamp(20px, 4vw, 65px)
    65px;
}

.services-hub-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 1040px);
  margin: 0 auto 38px;
  text-align: center;
  color: #FFFFFF;
}

.services-hub-hero__content h1 {
  max-width: 1000px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: clamp(3rem, 4.7vw, 4.9rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.045em;
  text-align: center;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  text-shadow: 0 8px 35px rgba(0, 0, 0, 0.45);
}

.services-hub-hero__content p {
  max-width: 820px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.62;
  text-wrap: balance;
}

.services-hub-hero__support {
  display: block;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.services-hub-hero__booking {
  width: min(100%, 1420px);
  margin: 0 auto;
}

.services-hub-hero__booking .hero-booking-widget {
  width: 100%;
}

.services-hub-hero__booking iframe {
  display: block;
  width: 100% !important;
  max-width: none !important;
}

.services-category-nav {
  position: relative;
  z-index: 4;
  padding: 22px;
  background: #FFFFFF;
  box-shadow: 0 12px 35px rgba(7, 59, 87, 0.08);
}

.services-category-nav__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  width: min(100%, 1250px);
  margin: 0 auto;
}

.services-category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 19px;
  border: 1px solid rgba(7, 59, 87, 0.14);
  border-radius: 999px;
  background: #ECF7FB;
  color: #073B57;
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 240ms ease,
    background 240ms ease,
    color 240ms ease;
}

.services-category-nav a:hover,
.services-category-nav a:focus-visible {
  transform: translateY(-2px);
  background: #073B57;
  color: #FFFFFF;
}

.services-hub-list {
  padding:
    clamp(85px, 8vw, 125px)
    clamp(20px, 4vw, 65px);
  background: #ECF7FB;
}

.services-hub-list__container {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.services-hub-list__header {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.services-hub-list__header h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.5rem, 4.3vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.services-hub-list__header p {
  max-width: 720px;
  margin: 18px auto 0;
  color: #526873;
  font-size: 1.06rem;
  line-height: 1.7;
}

.services-hub-list__anchor {
  display: block;
  height: 0;
  scroll-margin-top: calc(
    var(--main-header-height, 96px)
    + 18px
  );
}

.services-hub-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 29px;
}

.services-hub-card {
  position: relative;
  display: block;
  min-width: 0;
  height: 510px;
  overflow: hidden;
  border-radius: 28px;
  background: #073B57;
  color: #FFFFFF;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 19px 50px rgba(7, 59, 87, 0.15);
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms ease;
}

.services-hub-card:hover,
.services-hub-card:focus-visible {
  transform: translateY(-9px);
  box-shadow: 0 31px 72px rgba(7, 59, 87, 0.25);
}

.services-hub-card.is-highlighted {
  box-shadow:
    0 31px 72px rgba(7, 59, 87, 0.25),
    0 0 0 3px rgba(8, 126, 175, 0.55);
}

.services-hub-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.services-hub-card:hover .services-hub-card__image,
.services-hub-card:focus-visible .services-hub-card__image {
  transform: scale(1.055);
}

.services-hub-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.04) 5%,
      rgba(3, 24, 36, 0.22) 45%,
      rgba(3, 24, 36, 0.94) 100%
    );
}

.services-hub-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 31px 29px;
  transform: translateY(105px);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.services-hub-card:hover .services-hub-card__content,
.services-hub-card:focus-visible .services-hub-card__content {
  transform: translateY(0);
}

.services-hub-card h3 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(1.45rem, 1.8vw, 1.95rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.services-hub-card p,
.services-hub-card__cta {
  opacity: 0;
  transform: translateY(17px);
  transition:
    opacity 300ms ease,
    transform 340ms ease;
}

.services-hub-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.97rem;
  line-height: 1.62;
}

.services-hub-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 49px;
  margin-top: 20px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.94rem;
  font-weight: 800;
}

.services-hub-card:hover p,
.services-hub-card:focus-visible p,
.services-hub-card:hover .services-hub-card__cta,
.services-hub-card:focus-visible .services-hub-card__cta {
  opacity: 1;
  transform: translateY(0);
}

.services-selector {
  padding:
    clamp(80px, 7vw, 110px)
    clamp(20px, 4vw, 60px);
  background: #FFFFFF;
}

.services-selector__container {
  width: min(100%, 1250px);
  margin: 0 auto;
}

.services-selector__header {
  max-width: 850px;
  margin: 0 auto 45px;
  text-align: center;
}

.services-selector__header h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.services-selector__header p {
  max-width: 720px;
  margin: 16px auto 0;
  color: #526873;
  font-size: 1.05rem;
  line-height: 1.7;
}

.services-selector__panel {
  overflow: hidden;
  border: 1px solid rgba(7, 59, 87, 0.1);
  border-radius: 28px;
  background: #ECF7FB;
  box-shadow: 0 22px 55px rgba(7, 59, 87, 0.1);
}

.services-selector__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 25px;
  min-height: 85px;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(7, 59, 87, 0.09);
}

.services-selector__row:last-child {
  border-bottom: 0;
}

.services-selector__need {
  color: #526873;
  font-weight: 650;
}

.services-selector__arrow {
  color: #087EAF;
  font-size: 1.35rem;
}

.services-selector__row a {
  color: #073B57;
  font-weight: 800;
  text-decoration: none;
}

.services-selector__row a:hover {
  color: #087EAF;
}

.services-hub-fleet {
  padding:
    clamp(80px, 7vw, 110px)
    clamp(20px, 4vw, 60px);
  background: #FFFFFF;
}

.services-hub-fleet__container {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.services-hub-fleet__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.services-hub-fleet__action {
  margin-top: 38px;
  text-align: center;
}

.services-hub-fleet__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid rgba(7, 59, 87, 0.14);
  border-radius: 14px;
  background: #ECF7FB;
  color: #073B57;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 240ms ease,
    background 240ms ease,
    color 240ms ease;
}

.services-hub-fleet__link:hover,
.services-hub-fleet__link:focus-visible {
  transform: translateY(-2px);
  background: #073B57;
  color: #FFFFFF;
}

.site-nav__services-link[aria-current="page"]::after {
  width: 100%;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .services-hub-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .services-hub-hero__container {
    min-height: 760px;
  }

  .services-hub-hero__content,
  .service-hero__content,
  .service-page-hero__content {
    width: min(100%, 850px);
    padding-right: 24px;
    padding-left: 24px;
  }

  .services-hub-hero__content h1 {
    max-width: 780px;
    font-size: clamp(2.8rem, 6vw, 3.8rem);
    line-height: 1.05;
  }

  .service-hero__content h1,
  .service-page-hero__content h1 {
    max-width: 820px;
    font-size: clamp(2.65rem, 5.6vw, 3.55rem);
    line-height: 1.06;
  }
}

@media (max-width: 767px) {
  .services-hub-hero {
    min-height: auto;
  }

  .services-hub-hero__container {
    min-height: 0;
    padding:
      max(105px, var(--hero-header-clearance))
      16px
      45px;
  }

  .services-hub-hero__content,
  .service-hero__content,
  .service-page-hero__content {
    width: 100%;
    max-width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .services-hub-hero__content h1 {
    max-width: 470px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.35rem, 10vw, 3.15rem);
    line-height: 1.06;
    letter-spacing: -0.038em;
  }

  .services-hub-hero__content p,
  .service-hero__content p,
  .service-page-hero__content p {
    max-width: 440px;
    margin-top: 17px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .services-category-nav {
    padding: 18px 16px;
    overflow-x: auto;
  }

  .services-category-nav__container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    max-width: none;
    margin: 0;
    padding-bottom: 2px;
  }

  .services-hub-list__grid {
    grid-template-columns: 1fr;
  }

  .services-hub-card {
    height: 430px;
  }

  .services-hub-card__content {
    transform: none;
  }

  .services-hub-card p,
  .services-hub-card__cta {
    opacity: 1;
    transform: none;
  }

  .services-selector__row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }

  .services-selector__arrow {
    transform: rotate(90deg);
  }

  .services-hub-fleet__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-hub-card,
  .services-hub-card__image,
  .services-hub-card__content,
  .services-hub-card p,
  .services-hub-card__cta,
  .services-category-nav a,
  .services-hub-fleet__link {
    transition: none;
  }

  .services-hub-card:hover,
  .services-hub-card:focus-visible {
    transform: none;
  }

  .services-hub-card:hover .services-hub-card__image,
  .services-hub-card:focus-visible .services-hub-card__image {
    transform: none;
  }

  .services-hub-card:hover .services-hub-card__content,
  .services-hub-card:focus-visible .services-hub-card__content {
    transform: none;
  }
}

.service-card__media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card__title a {
  color: inherit;
  text-decoration: none;
}

a.service-card__button {
  text-decoration: none;
}

@media (max-width: 767px) {
  .service-page-hero {
    min-height: 1350px;
    height: auto;
  }

  .service-page-hero__image {
    object-position: center 20%;
  }

  .service-page-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 18, 28, 0.54) 0%,
        rgba(2, 22, 34, 0.48) 40%,
        rgba(2, 22, 34, 0.70) 100%
      );
  }

  .service-page-hero__container {
    width: 100%;
    min-height: 1350px;
    padding:
      max(105px, var(--hero-header-clearance))
      0
      28px;
    justify-content: flex-end;
  }

  .service-hero__content h1,
  .service-page-hero__content h1 {
    max-width: 470px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.15rem, 9.2vw, 2.95rem);
    line-height: 1.07;
    letter-spacing: -0.035em;
    text-align: center;
  }

  .service-page-hero__content p {
    max-width: 440px;
    margin-top: 17px;
    font-size: 0.98rem;
    line-height: 1.55;
    text-align: center;
  }

  .service-page-hero__booking {
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .service-page-hero__booking iframe {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0;
  }

  .service-single__content {
    padding: 65px 18px;
  }
}

@media (max-width: 390px) {
  .services-hub-hero__content h1 {
    font-size: clamp(2.15rem, 10vw, 2.65rem);
  }

  .service-hero__content h1,
  .service-page-hero__content h1 {
    font-size: clamp(2rem, 9.4vw, 2.5rem);
  }

  .service-page-hero {
    min-height: 1420px;
  }

  .service-page-hero__container {
    min-height: 1420px;
  }
}

.service-breadcrumb {
  padding:
    var(--hero-header-clearance)
    24px
    0;
  background: transparent;
}

.service-breadcrumb__inner {
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
}

.service-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.service-breadcrumb a {
  color: #FFFFFF;
  text-decoration: none;
}

.service-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  opacity: 0.65;
}

.service-page-hero--with-breadcrumb .service-page-hero__container {
  padding-top: 24px;
}

/* --------------------------------------------------------------------------
   Fleet page
   -------------------------------------------------------------------------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.site-nav .current-menu-item > a::after,
.site-nav .current_page_item > a::after {
  width: 100%;
}

.fleet-hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  background: #073B57;
  isolation: isolate;
}

.fleet-hero__media,
.fleet-hero__media picture,
.fleet-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fleet-hero__media img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.fleet-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.62) 0%,
      rgba(3, 24, 36, 0.32) 38%,
      rgba(3, 24, 36, 0.72) 100%
    );
}

.fleet-hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(100%, 1520px);
  min-height: 880px;
  margin: 0 auto;
  padding:
    max(clamp(125px, 12vw, 180px), var(--hero-header-clearance))
    clamp(20px, 4vw, 65px)
    60px;
}

.fleet-hero__content {
  max-width: 1050px;
  margin: 0 auto 38px;
  color: #FFFFFF;
  text-align: center;
}

.fleet-hero__content h1 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-shadow: 0 8px 35px rgba(0, 0, 0, 0.48);
}

.fleet-hero__content p {
  max-width: 880px;
  margin: 25px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.5vw, 1.26rem);
  line-height: 1.7;
}

.fleet-hero__support {
  display: block;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

.fleet-hero__booking {
  width: min(100%, 1420px);
  margin: 0 auto;
}

.fleet-filter {
  position: relative;
  z-index: 4;
  padding: 22px;
  background: #FFFFFF;
  box-shadow: 0 12px 35px rgba(7, 59, 87, 0.08);
}

.fleet-filter__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  width: min(100%, 1250px);
  margin: 0 auto;
}

.fleet-filter__button {
  min-height: 46px;
  padding: 11px 19px;
  border: 1px solid rgba(7, 59, 87, 0.14);
  border-radius: 999px;
  background: #ECF7FB;
  color: #073B57;
  font: inherit;
  font-size: 0.91rem;
  font-weight: 750;
  cursor: pointer;
  transition:
    transform 240ms ease,
    background 240ms ease,
    color 240ms ease;
}

.fleet-filter__button:hover,
.fleet-filter__button:focus-visible,
.fleet-filter__button.is-active {
  transform: translateY(-2px);
  background: #073B57;
  color: #FFFFFF;
}

.fleet-showcase {
  padding:
    clamp(82px, 8vw, 120px)
    clamp(20px, 4vw, 65px);
  background: #ECF7FB;
}

.fleet-showcase__container {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.fleet-showcase__header {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.fleet-showcase__header h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.fleet-showcase__header p {
  max-width: 720px;
  margin: 18px auto 0;
  color: #526873;
  font-size: 1.06rem;
  line-height: 1.7;
}

.fleet-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.fleet-showcase .fleet-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 26px;
  background: #073B57;
  isolation: isolate;
  box-shadow: 0 18px 48px rgba(7, 59, 87, 0.15);
  transition:
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 350ms ease;
  scroll-margin-top: var(--site-header-stack-offset);
}

.fleet-showcase .fleet-card:hover,
.fleet-showcase .fleet-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 29px 65px rgba(7, 59, 87, 0.24);
}

.fleet-showcase .fleet-card[hidden] {
  display: none;
}

.fleet-showcase .fleet-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fleet-showcase .fleet-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.03) 35%,
      rgba(3, 24, 36, 0.44) 67%,
      rgba(3, 24, 36, 0.94) 100%
    );
}

.fleet-showcase .fleet-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 30px;
  color: #FFFFFF;
}

.fleet-showcase .fleet-card__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(0);
  transition: transform 300ms ease;
}

.fleet-showcase .fleet-card__heading > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.fleet-showcase .fleet-card__icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.13);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}

.fleet-showcase .fleet-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
}

.fleet-showcase .fleet-card h3 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(1.35rem, 1.65vw, 1.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-shadow: 0 4px 17px rgba(0, 0, 0, 0.72);
}

.fleet-showcase .fleet-card__type,
.fleet-showcase .fleet-card__details {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 260ms ease,
    visibility 260ms ease,
    max-height 340ms ease,
    margin 300ms ease,
    transform 300ms ease;
}

.fleet-showcase .fleet-card__type {
  align-self: flex-start;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.fleet-showcase .fleet-card__specs {
  display: grid;
  gap: 9px;
}

.fleet-showcase .fleet-card__specs span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.35;
}

.fleet-showcase .fleet-card__specs svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.fleet-showcase .fleet-card__details p {
  display: none;
}

.fleet-showcase .fleet-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 19px;
  padding: 12px 20px;
  border-radius: 13px;
  background: #FFFFFF;
  color: #073B57;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 250ms ease,
    background 250ms ease;
}

.fleet-showcase .fleet-card__button:hover,
.fleet-showcase .fleet-card__button:focus-visible {
  transform: translateY(-2px);
  background: #ECF7FB;
}

@media (hover: hover) and (pointer: fine) {
  .fleet-showcase .fleet-card:hover .fleet-card__heading,
  .fleet-showcase .fleet-card:focus-within .fleet-card__heading {
    transform: translateY(-12px);
  }

  .fleet-showcase .fleet-card:hover .fleet-card__type,
  .fleet-showcase .fleet-card:hover .fleet-card__details,
  .fleet-showcase .fleet-card:focus-within .fleet-card__type,
  .fleet-showcase .fleet-card:focus-within .fleet-card__details {
    opacity: 1;
    visibility: visible;
    max-height: 180px;
    transform: translateY(0);
    pointer-events: auto;
  }

  .fleet-showcase .fleet-card:hover .fleet-card__type,
  .fleet-showcase .fleet-card:focus-within .fleet-card__type {
    margin-top: 3px;
    margin-bottom: 12px;
  }

  .fleet-showcase .fleet-card:hover .fleet-card__details,
  .fleet-showcase .fleet-card:focus-within .fleet-card__details {
    margin-bottom: 17px;
  }

  .fleet-showcase .fleet-card:hover .fleet-card__image,
  .fleet-showcase .fleet-card:focus-within .fleet-card__image {
    transform: scale(1.035);
  }
}

.fleet-comparison {
  padding:
    clamp(78px, 7vw, 105px)
    clamp(18px, 4vw, 60px);
  background: #FFFFFF;
}

.fleet-comparison__container {
  width: min(100%, 1350px);
  margin: 0 auto;
}

.fleet-comparison__header {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.fleet-comparison__header h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.fleet-comparison__header p {
  margin: 16px auto 0;
  color: #526873;
  font-size: 1.05rem;
  line-height: 1.7;
}

.fleet-comparison__scroll-hint {
  display: none;
  margin: 0 0 14px;
  color: #526873;
  font-size: 0.92rem;
  font-weight: 650;
  text-align: center;
}

.fleet-comparison__table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(7, 59, 87, 0.1);
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 20px 52px rgba(7, 59, 87, 0.1);
}

.fleet-comparison table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.fleet-comparison th,
.fleet-comparison td {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(7, 59, 87, 0.09);
  text-align: left;
}

.fleet-comparison th {
  background: #073B57;
  color: #FFFFFF;
  font-size: 0.9rem;
}

.fleet-comparison tbody tr:hover {
  background: #ECF7FB;
}

.fleet-comparison tbody th {
  background: transparent;
  color: #073B57;
  font-weight: 800;
}

.fleet-guide {
  padding:
    clamp(78px, 7vw, 105px)
    clamp(18px, 4vw, 60px);
  background: #ECF7FB;
}

.fleet-guide__container {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.fleet-guide__header {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.fleet-guide__header h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.fleet-guide__header p {
  margin: 16px auto 0;
  color: #526873;
  font-size: 1.05rem;
  line-height: 1.7;
}

.fleet-guide__panel {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(7, 59, 87, 0.1);
  border-radius: 28px;
  background: #FFFFFF;
  box-shadow: 0 22px 55px rgba(7, 59, 87, 0.1);
}

.fleet-guide__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.4fr);
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(7, 59, 87, 0.08);
}

.fleet-guide__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fleet-guide__row:first-child {
  padding-top: 0;
}

.fleet-guide__label {
  color: #073B57;
  font-size: 1rem;
  font-weight: 800;
}

.fleet-guide__arrow {
  color: #087EAF;
  font-size: 1.2rem;
  font-weight: 700;
}

.fleet-guide__vehicles {
  color: #526873;
  font-size: 0.98rem;
  line-height: 1.55;
}

.fleet-guide__vehicles a {
  color: #073B57;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fleet-features {
  background: #FFFFFF;
}

.fleet-process {
  background: #ECF7FB;
}

.fleet-services {
  padding:
    clamp(82px, 8vw, 120px)
    clamp(20px, 4vw, 65px);
  background: #FFFFFF;
}

.fleet-services__container {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.fleet-services__header {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.fleet-services__header h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.fleet-services__header p {
  max-width: 720px;
  margin: 16px auto 0;
  color: #526873;
  font-size: 1.05rem;
  line-height: 1.7;
}

.fleet-services__grid {
  gap: 28px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .fleet-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .fleet-comparison__scroll-hint {
    display: block;
  }
}

@media (max-width: 767px) {
  .fleet-hero {
    min-height: auto;
  }

  .fleet-hero__container {
    min-height: 0;
    padding:
      max(125px, var(--hero-header-clearance))
      16px
      45px;
  }

  .fleet-hero__content h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
    line-height: 1;
  }

  .fleet-filter__container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .fleet-filter__button {
    flex: 0 0 auto;
  }

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

  .fleet-showcase .fleet-card {
    aspect-ratio: 4 / 5;
  }

  .fleet-showcase,
  .fleet-services {
    padding-bottom: calc(clamp(82px, 8vw, 120px) + 92px);
  }

  .fleet-comparison__scroll-hint {
    display: block;
  }

  .fleet-guide__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fleet-guide__arrow {
    display: none;
  }

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

@media (max-width: 767px) {
  .fleet-showcase .fleet-card__content,
  .service-vehicle-card__content {
    padding: 22px 22px 26px;
  }

  .fleet-showcase .fleet-card__heading,
  .service-vehicle-card__heading {
    gap: 11px;
  }

  .fleet-showcase .fleet-card h3,
  .service-vehicle-card h3 {
    font-size: clamp(1.25rem, 6vw, 1.65rem);
  }
}

@media (max-width: 767px), (hover: none) {
  .fleet-showcase .fleet-card:hover .fleet-card__heading,
  .fleet-showcase .fleet-card:focus-within .fleet-card__heading,
  .service-vehicle-card:hover .service-vehicle-card__heading,
  .service-vehicle-card:focus-within .service-vehicle-card__heading {
    transform: translateY(0);
  }

  .fleet-showcase .fleet-card:hover .fleet-card__type,
  .fleet-showcase .fleet-card:hover .fleet-card__details,
  .fleet-showcase .fleet-card:focus-within .fleet-card__type,
  .fleet-showcase .fleet-card:focus-within .fleet-card__details,
  .service-vehicle-card:hover .service-vehicle-card__details,
  .service-vehicle-card:focus-within .service-vehicle-card__details {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    margin: 0;
    transform: translateY(16px);
    pointer-events: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .fleet-showcase .fleet-card.is-active .fleet-card__heading,
  .service-vehicle-card.is-active .service-vehicle-card__heading {
    transform: translateY(-12px);
  }

  .fleet-showcase .fleet-card.is-active .fleet-card__type,
  .fleet-showcase .fleet-card.is-active .fleet-card__details,
  .service-vehicle-card.is-active .service-vehicle-card__details {
    opacity: 1;
    visibility: visible;
    max-height: 180px;
    transform: translateY(0);
    pointer-events: auto;
  }

  .fleet-showcase .fleet-card.is-active .fleet-card__type {
    margin-top: 3px;
    margin-bottom: 11px;
  }

  .fleet-showcase .fleet-card.is-active .fleet-card__details,
  .service-vehicle-card.is-active .service-vehicle-card__details {
    margin-bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fleet-showcase .fleet-card,
  .fleet-showcase .fleet-card__image,
  .fleet-showcase .fleet-card__content,
  .fleet-showcase .fleet-card__heading,
  .fleet-showcase .fleet-card__type,
  .fleet-showcase .fleet-card__details,
  .fleet-filter__button,
  .fleet-showcase .fleet-card__button,
  .service-vehicle-card,
  .service-vehicle-card__image,
  .service-vehicle-card__content,
  .service-vehicle-card__heading,
  .service-vehicle-card__details,
  .service-vehicle-card__button,
  .service-card__content,
  .service-card__reveal,
  .service-card__title {
    transition: none;
  }

  .fleet-showcase .fleet-card:hover,
  .fleet-showcase .fleet-card:focus-within,
  .fleet-filter__button:hover,
  .fleet-showcase .fleet-card__button:hover {
    transform: none;
  }
}

/* ==========================================================================
   Reservation page
   ========================================================================== */

.reservation-hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  background: #073B57;
  isolation: isolate;
}

.reservation-hero__media,
.reservation-hero__media picture,
.reservation-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.reservation-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.62) 0%,
      rgba(3, 24, 36, 0.48) 38%,
      rgba(3, 24, 36, 0.72) 100%
    );
}

.reservation-hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(100%, 1540px);
  min-height: 880px;
  margin: 0 auto;
  padding:
    max(125px, var(--hero-header-clearance))
    clamp(18px, 3.5vw, 58px)
    70px;
}

.reservation-hero__content {
  width: min(100%, 940px);
  margin: 0 auto 32px;
  text-align: center;
  color: #FFFFFF;
}

.reservation-hero__content h1 {
  max-width: 900px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.reservation-hero__content p {
  max-width: 790px;
  margin: 21px auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.reservation-hero__support {
  display: block;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  font-weight: 750;
}

.reservation-booking {
  position: relative;
  z-index: 3;
  width: min(100%, 1460px);
  margin: 0 auto;
  padding: 0;
  background: transparent;
}

.reservation-booking__container {
  width: min(100%, 1460px);
  margin: 0 auto;
  padding: 0;
  background: transparent;
}

.reservation-booking__panel {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reservation-booking__iframe-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.reservation-booking iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.reservation-hero + .service-trust-marquee {
  position: relative;
  z-index: 6;
}

.reservation-support {
  padding:
    25px
    clamp(18px, 4vw, 55px);
  background: #073B57;
  color: #FFFFFF;
}

.reservation-support__container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1350px);
  margin: 0 auto;
}

.reservation-support__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 65px;
  padding: 14px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.reservation-support__item:last-child {
  border-right: 0;
}

.reservation-support__item svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 1.8;
}

.reservation-support__item span {
  color: #FFFFFF;
  font-size: 0.94rem;
  font-weight: 750;
}

.reservation-details {
  padding:
    clamp(72px, 7vw, 105px)
    clamp(18px, 4vw, 55px);
  background: #FFFFFF;
}

.reservation-details__container {
  width: min(100%, 1250px);
  margin: 0 auto;
}

.reservation-details__header {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.reservation-details__header h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.3rem, 3.8vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.reservation-details__header p {
  max-width: 680px;
  margin: 16px auto 0;
  color: #526873;
  font-size: 1.05rem;
  line-height: 1.65;
}

.reservation-details__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(7, 59, 87, 0.1);
  border-radius: 27px;
  background: #ECF7FB;
  box-shadow: 0 20px 55px rgba(7, 59, 87, 0.1);
}

.reservation-detail-item {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  min-height: 95px;
  padding: 21px 26px;
  border-bottom: 1px solid rgba(7, 59, 87, 0.09);
}

.reservation-detail-item:nth-child(odd) {
  border-right: 1px solid rgba(7, 59, 87, 0.09);
}

.reservation-detail-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.reservation-detail-item__number {
  color: #087EAF;
  font-size: 0.82rem;
  font-weight: 850;
}

.reservation-detail-item__icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 13px;
  background: #FFFFFF;
  color: #073B57;
}

.reservation-detail-item__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.reservation-detail-item > span:last-child {
  color: #073B57;
  font-size: 1rem;
  font-weight: 750;
}

.reservation-vehicles {
  padding-bottom: clamp(72px, 7vw, 105px);
}

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

.reservation-vehicles__actions {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.reservation-vehicles__fleet-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 50px;
  background: #073B57;
  color: #FFFFFF;
  font-weight: 700;
  transition:
    background-color 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}

.reservation-vehicles__fleet-link:hover,
.reservation-vehicles__fleet-link:focus-visible {
  background: #087EAF;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(7, 59, 87, 0.22);
}

.reservation-services {
  background: #FFFFFF;
}

.reservation-services-grid .service-card:last-child:nth-child(3n + 1) {
  grid-column: auto;
}

.reservation-faqs {
  background: #FFFFFF;
}

.reservation-help {
  padding-bottom: calc(clamp(80px, 8vw, 125px) + 92px);
}

.reservation-page .reservation-booking__panel .hero-booking-widget,
.reservation-page .reservation-booking__panel .glm-booking-embed-root {
  position: static;
  left: auto;
  bottom: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  transform: none;
  min-height: 0;
  background: transparent;
}

.reservation-page .reservation-booking__panel .hero-booking-widget iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .reservation-hero {
    min-height: 860px;
  }

  .reservation-hero__container {
    min-height: 860px;
    padding:
      max(115px, var(--hero-header-clearance))
      24px
      60px;
  }

  .reservation-hero__content {
    margin-bottom: 34px;
  }

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

  .reservation-support__item:nth-child(2) {
    border-right: 0;
  }

  .reservation-support__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .reservation-support__item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

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

@media (max-width: 767px) {
  .reservation-hero {
    min-height: auto;
    overflow: hidden;
  }

  .reservation-hero__media img {
    object-position: center;
  }

  .reservation-hero__container {
    min-height: 0;
    padding:
      max(105px, var(--hero-header-clearance))
      8px
      48px;
  }

  .reservation-hero__content {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .reservation-hero__content h1 {
    max-width: 440px;
    font-size: clamp(2.5rem, 11vw, 3.55rem);
    line-height: 1.02;
  }

  .reservation-hero__content p {
    max-width: 420px;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .reservation-hero__support {
    max-width: 370px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .reservation-booking,
  .reservation-booking__container,
  .reservation-booking__panel,
  .reservation-booking__iframe-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .reservation-booking iframe {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .reservation-support__container {
    grid-template-columns: 1fr;
  }

  .reservation-support__item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .reservation-support__item:last-child {
    border-bottom: 0;
  }

  .reservation-details__panel {
    grid-template-columns: 1fr;
  }

  .reservation-detail-item {
    border-right: 0 !important;
    border-bottom:
      1px solid rgba(7, 59, 87, 0.09) !important;
  }

  .reservation-detail-item:last-child {
    border-bottom: 0 !important;
  }

  .reservation-vehicle-grid,
  .reservation-services-grid {
    grid-template-columns: 1fr;
  }

  .reservation-vehicles,
  .reservation-services,
  .reservation-help {
    padding-bottom: calc(clamp(72px, 7vw, 105px) + 92px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reservation-vehicles__fleet-link {
    transition: none;
  }

  .reservation-vehicles__fleet-link:hover,
  .reservation-vehicles__fleet-link:focus-visible {
    transform: none;
  }
}

/* ==========================================================================
   Areas We Serve page
   ========================================================================== */

a.service-areas__toggle {
  text-decoration: none;
}

.areas-page-hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  background: #073b57;
  isolation: isolate;
}

.areas-page-hero__media,
.areas-page-hero__media picture,
.areas-page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.areas-page-hero__media img {
  display: block;
  object-fit: cover;
  object-position: center 38%;
}

@media (max-width: 767px) {
  .areas-page-hero__media img {
    object-position: center 28%;
  }
}

.areas-page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.58) 0%,
      rgba(3, 24, 36, 0.47) 38%,
      rgba(3, 24, 36, 0.76) 100%
    );
}

.areas-page-hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(100%, 1540px);
  min-height: 880px;
  margin: 0 auto;
  padding:
    calc(
      var(--announcement-height, 38px)
      + var(--main-header-height, 96px)
      + 48px
    )
    clamp(16px, 3.5vw, 58px)
    65px;
}

.areas-page-hero__content {
  width: min(100%, 1040px);
  margin: 0 auto 34px;
  text-align: center;
  color: #ffffff;
}

.areas-page-hero__content h1 {
  max-width: 1000px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(3rem, 4.7vw, 4.8rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.045em;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.44);
}

.areas-page-hero__content p {
  max-width: 850px;
  margin: 21px auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
  text-wrap: balance;
}

.areas-page-hero__support {
  display: block;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.5;
}

.areas-page-booking {
  position: relative;
  z-index: 3;
  width: min(100%, 1460px);
  margin: 0 auto;
  padding: 0;
  background: transparent;
}

.areas-page-booking iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

#area-booking {
  scroll-margin-top: calc(
    var(--main-header-height, 96px)
    + 18px
  );
}

.areas-page .main-service-areas,
.areas-page .coverage-region,
.areas-page .popular-locations,
.areas-page .available-services,
.areas-page .areas-airport {
  padding:
    clamp(70px, 7vw, 105px)
    clamp(18px, 4vw, 55px);
}

.areas-page .main-service-areas {
  background: #ffffff;
}

.areas-page .coverage-region,
.areas-page .available-services {
  background: #ecf7fb;
}

.areas-page .popular-locations {
  background: #ffffff;
}

.areas-page .areas-airport {
  background: #ecf7fb;
}

.main-service-areas__container,
.coverage-region__container,
.popular-locations__container,
.available-services__container,
.areas-airport__container {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.main-service-areas__header,
.coverage-region__header,
.popular-locations__header,
.available-services__header {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.main-service-areas__header h2,
.coverage-region__header h2,
.popular-locations__header h2,
.available-services__header h2,
.areas-airport__content h2 {
  margin: 0;
  color: #073b57;
  font-size: clamp(2.25rem, 3.8vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.main-service-areas__header p,
.coverage-region__header p,
.popular-locations__header p,
.available-services__header p,
.areas-airport__content p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #526873;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.65;
}

.main-area-grid,
.available-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.main-area-grid .main-area-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.main-area-card {
  position: relative;
  display: block;
  min-height: 440px;
  overflow: hidden;
  border-radius: 22px;
  background: #073b57;
  box-shadow: 0 18px 48px rgba(7, 59, 87, 0.16);
  cursor: default;
}

.main-area-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.main-area-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.08) 0%,
      rgba(3, 24, 36, 0.18) 34%,
      rgba(3, 24, 36, 0.82) 100%
    );
  transition: opacity 300ms ease;
}

.main-area-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px 26px;
  color: #ffffff;
}

.main-area-card__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: #8ed8f8;
}

.main-area-card__icon svg {
  width: 100%;
  height: 100%;
}

.main-area-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 300ms ease;
}

.main-area-card__reveal {
  display: grid;
  gap: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition:
    max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease,
    transform 320ms ease;
}

.main-area-card__reveal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  line-height: 1.55;
}

.main-area-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #073b57;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.main-area-card__button:hover,
.main-area-card__button:focus-visible {
  transform: translateY(-2px);
  background: #087eaf;
  color: #ffffff;
}

.main-area-card:hover .main-area-card__image,
.main-area-card.is-mobile-open .main-area-card__image {
  transform: scale(1.06);
}

.main-area-card:hover .main-area-card__overlay,
.main-area-card.is-mobile-open .main-area-card__overlay {
  opacity: 0.96;
}

.main-area-card:hover h3,
.main-area-card.is-mobile-open h3 {
  transform: translateY(-4px);
}

.main-area-card:hover .main-area-card__reveal,
.main-area-card.is-mobile-open .main-area-card__reveal {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
}

.coverage-region-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 59, 87, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98),
      rgba(245, 251, 253, 0.98)
    );
  box-shadow: 0 24px 65px rgba(7, 59, 87, 0.12);
}

.coverage-region-column {
  padding: 34px 30px 36px;
  border-right: 1px solid rgba(7, 59, 87, 0.08);
}

.coverage-region-column:last-child {
  border-right: 0;
}

.coverage-region-column__number {
  display: block;
  margin-bottom: 14px;
  color: #087eaf;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.coverage-region-column__icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: #073b57;
}

.coverage-region-column__icon svg {
  width: 100%;
  height: 100%;
}

.coverage-region-column h3 {
  margin: 0 0 12px;
  color: #073b57;
  font-size: 1.35rem;
  font-weight: 800;
}

.coverage-region-column p {
  margin: 0;
  color: #526873;
  font-size: 0.98rem;
  line-height: 1.65;
}

.popular-location-filters {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.popular-location-filter {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(7, 59, 87, 0.14);
  border-radius: 999px;
  background: #ecf7fb;
  color: #073b57;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.popular-location-filter.is-active,
.popular-location-filter[aria-pressed="true"] {
  border-color: #073b57;
  background: #073b57;
  color: #ffffff;
}

.popular-location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.popular-location-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 18px;
  background: #073b57;
  box-shadow: 0 12px 30px rgba(7, 59, 87, 0.12);
}

.popular-location-card.is-filter-hidden,
.popular-location-card.is-location-hidden {
  display: none;
}

.popular-location-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.popular-location-card:hover .popular-location-card__image {
  transform: scale(1.05);
}

.popular-location-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.04) 0%,
      rgba(3, 24, 36, 0.24) 42%,
      rgba(3, 24, 36, 0.82) 100%
    );
}

.popular-location-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 14px;
  color: #ffffff;
}

.popular-location-card__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #8ed8f8;
}

.popular-location-card__icon svg {
  width: 100%;
  height: 100%;
}

.popular-location-card h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.popular-locations__toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.popular-locations__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 26px;
  border: 0;
  border-radius: 999px;
  background: #073b57;
  color: #ffffff;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 13px 30px rgba(7, 59, 87, 0.17);
  transition:
    transform 250ms ease,
    background 250ms ease;
}

.popular-locations__toggle:hover,
.popular-locations__toggle:focus-visible {
  transform: translateY(-2px);
  background: #087eaf;
}

.popular-locations__toggle[hidden] {
  display: none;
}

.areas-airport__container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.areas-airport__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 22px 55px rgba(7, 59, 87, 0.16);
}

.areas-airport__checklist {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.areas-airport__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #073b57;
  font-weight: 700;
}

.areas-airport__checklist li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #087eaf;
  flex-shrink: 0;
}

.areas-airport__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 999px;
  background: #073b57;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 13px 30px rgba(7, 59, 87, 0.17);
  transition:
    transform 250ms ease,
    background 250ms ease;
}

.areas-airport__cta:hover,
.areas-airport__cta:focus-visible {
  transform: translateY(-2px);
  background: #087eaf;
}

.areas-page .service-contact {
  padding-bottom: calc(clamp(80px, 8vw, 125px) + 92px);
}

@media (max-width: 1100px) {
  .main-area-grid,
  .available-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-area-grid .main-area-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .main-area-grid .main-area-card:last-child:nth-child(2n + 1) {
    grid-column: 1 / -1;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }

  .coverage-region-panel {
    grid-template-columns: 1fr;
  }

  .coverage-region-column {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 59, 87, 0.08);
  }

  .coverage-region-column:last-child {
    border-bottom: 0;
  }

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

  .areas-airport__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .areas-page-hero {
    min-height: auto;
  }

  .areas-page-hero__container {
    min-height: 0;
    padding:
      calc(
        var(--announcement-height, 34px)
        + var(--main-header-height, 82px)
        + 34px
      )
      8px
      45px;
  }

  .areas-page-hero__content {
    width: 100%;
    margin-bottom: 28px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .areas-page-hero__content h1 {
    max-width: 470px;
    font-size: clamp(2.25rem, 9.6vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.037em;
  }

  .areas-page-hero__content p {
    max-width: 430px;
    margin-top: 17px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .areas-page-hero__support {
    max-width: 390px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.82rem;
  }

  .areas-page-booking {
    width: 100%;
  }

  .main-area-grid,
  .available-services-grid {
    grid-template-columns: 1fr;
  }

  .main-area-card {
    min-height: 420px;
  }

  .main-area-grid .main-area-card:last-child:nth-child(2n + 1) {
    grid-column: auto;
    max-width: none;
  }

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

  .main-area-card:hover .main-area-card__reveal,
  .main-area-card:focus-within .main-area-card__reveal {
    max-height: 0;
    opacity: 0;
    transform: translateY(12px);
  }

  .main-area-card.is-mobile-open .main-area-card__reveal {
    max-height: 180px;
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 460px) {
  .popular-location-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-area-card__image,
  .main-area-card__reveal,
  .popular-location-card__image,
  .popular-locations__toggle,
  .areas-airport__cta {
    transition: none;
  }

  .main-area-card:hover .main-area-card__image,
  .main-area-card.is-mobile-open .main-area-card__image,
  .popular-location-card:hover .popular-location-card__image {
    transform: none;
  }
}

/* ==========================================================================
   About page
   ========================================================================== */

.about-page-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #073b57;
  isolation: isolate;
}

.about-page-hero__media,
.about-page-hero__media picture,
.about-page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-page-hero__media img {
  display: block;
  object-fit: cover;
  object-position: center 38%;
}

.about-page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.48) 0%,
      rgba(3, 24, 36, 0.38) 42%,
      rgba(3, 24, 36, 0.7) 100%
    );
}

.about-page-hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(100%, 1500px);
  min-height: 680px;
  margin: 0 auto;
  padding:
    calc(
      var(--announcement-height, 38px)
      + var(--main-header-height, 96px)
      + 42px
    )
    clamp(18px, 4vw, 60px)
    70px;
}

.about-page-hero__content {
  width: min(100%, 1020px);
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.about-page-hero__content h1 {
  max-width: 970px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(3rem, 4.7vw, 4.8rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.045em;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.44);
}

.about-page-hero__content p {
  max-width: 820px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
  text-wrap: balance;
}

.about-page-hero__support {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.5;
}

.about-story {
  padding:
    clamp(70px, 8vw, 120px)
    clamp(18px, 4vw, 60px);
  background: #ecf7fb;
}

.about-story__inner {
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  width: min(100%, 1480px);
  margin: 0 auto;
}

.about-story__content h2 {
  max-width: 650px;
  margin: 0;
  color: #073b57;
  font-size: clamp(2.25rem, 3.5vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.038em;
}

.about-story__content p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #536a78;
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-story__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  min-height: 52px;
  padding: 13px 26px;
  border: 0;
  border-radius: 999px;
  background: #073b57;
  color: #ffffff;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 13px 30px rgba(7, 59, 87, 0.17);
  transition:
    transform 250ms ease,
    background 250ms ease;
}

.about-story__cta:hover,
.about-story__cta:focus-visible {
  transform: translateY(-2px);
  background: #087eaf;
}

.about-story__image img {
  display: block;
  width: 100%;
  min-height: 520px;
  border-radius: 30px;
  object-fit: cover;
}

.about-page .coverage-region {
  padding:
    clamp(70px, 7vw, 105px)
    clamp(18px, 4vw, 55px);
  background: #ffffff;
}

.coverage-region__actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.coverage-region__cta,
.about-fleet-preview__link,
.about-services-preview__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 26px;
  border: 0;
  border-radius: 999px;
  background: #073b57;
  color: #ffffff;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 13px 30px rgba(7, 59, 87, 0.17);
  transition:
    transform 250ms ease,
    background 250ms ease;
}

.coverage-region__cta:hover,
.coverage-region__cta:focus-visible,
.about-fleet-preview__link:hover,
.about-fleet-preview__link:focus-visible,
.about-services-preview__link:hover,
.about-services-preview__link:focus-visible,
.about-services-preview__cta:hover,
.about-services-preview__cta:focus-visible {
  transform: translateY(-2px);
  background: #087eaf;
}

.about-fleet-preview .fleet-showcase__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-fleet-preview__actions,
.about-services-preview__actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.about-page .about-services-preview {
  background: #ecf7fb;
}

.about-page .about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.about-page .service-contact,
.about-page .contact-section {
  padding-bottom: calc(clamp(80px, 8vw, 125px) + 92px);
}

@media (max-width: 1100px) {
  .about-fleet-preview .fleet-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .about-page-hero {
    min-height: 600px;
  }

  .about-page-hero__media img {
    object-position: center 28%;
  }

  .about-page-hero__container {
    min-height: 600px;
    padding:
      calc(
        var(--announcement-height, 34px)
        + var(--main-header-height, 82px)
        + 34px
      )
      18px
      60px;
  }

  .about-page-hero__content h1 {
    max-width: 470px;
    font-size: clamp(2.3rem, 9.8vw, 3.1rem);
    line-height: 1.06;
    letter-spacing: -0.037em;
  }

  .about-page-hero__content p {
    max-width: 430px;
    margin-top: 17px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .about-page-hero__support {
    max-width: 380px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.82rem;
  }

  .about-story__inner {
    grid-template-columns: 1fr;
  }

  .about-story__image img {
    min-height: 360px;
  }

  .about-page .about-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .about-fleet-preview .fleet-showcase__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-page-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #073B57;
  isolation: isolate;
}

.contact-page-hero__media,
.contact-page-hero__media picture,
.contact-page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-page-hero__media img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.contact-page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 24, 36, 0.48) 0%,
      rgba(3, 24, 36, 0.42) 42%,
      rgba(3, 24, 36, 0.72) 100%
    );
}

.contact-page-hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(100%, 1500px);
  min-height: 620px;
  margin: 0 auto;
  padding:
    calc(
      var(--announcement-height, 38px)
      + var(--main-header-height, 96px)
      + 38px
    )
    clamp(18px, 4vw, 60px)
    65px;
}

.contact-page-hero__content {
  width: min(100%, 950px);
  margin: 0 auto;
  color: #FFFFFF;
  text-align: center;
}

.contact-page-hero__content h1 {
  max-width: 900px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: clamp(3rem, 4.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.045em;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.44);
}

.contact-page-hero__content p {
  max-width: 780px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.62;
  text-wrap: balance;
}

.contact-page-hero__support {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.5;
}

.contact-methods {
  padding: clamp(78px, 8vw, 120px) clamp(18px, 4vw, 55px);
  background: #ECF7FB;
}

.contact-methods__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(55px, 7vw, 105px);
  width: min(100%, 1450px);
  margin: 0 auto;
  padding: clamp(55px, 6vw, 90px);
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at top left,
      rgba(8, 126, 175, 0.25),
      transparent 42%
    ),
    #073B57;
  box-shadow: 0 28px 75px rgba(7, 59, 87, 0.20);
}

.contact-methods__intro {
  max-width: 590px;
}

.contact-methods__intro h2 {
  margin: 0;
  max-width: 620px;
  color: #FFFFFF;
  font-size: clamp(2.35rem, 3.8vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.contact-methods__intro > p {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.3vw, 1.17rem);
  line-height: 1.85;
}

.contact-methods__list {
  display: grid;
}

.contact-method-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  text-decoration: none;
  transition: transform 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-method-row:last-child {
  border-bottom: 0;
}

.contact-method-row:hover,
.contact-method-row:focus-visible {
  transform: translateX(6px);
}

.contact-method-row:focus-visible {
  outline: 3px solid rgba(142, 216, 248, 0.55);
  outline-offset: 4px;
}

.contact-method-row__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transition: background 260ms ease;
}

.contact-method-row:hover .contact-method-row__icon {
  background: rgba(255, 255, 255, 0.16);
}

.contact-method-row__icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.contact-method-row:not(.contact-method-row--whatsapp) .contact-method-row__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-method-row--whatsapp .contact-method-row__icon svg {
  fill: currentColor;
  stroke: none;
}

.contact-method-row__label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-method-row__body strong {
  display: block;
  color: #FFFFFF;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 800;
  line-height: 1.35;
}

.contact-method-row__note {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-method-row__arrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.25rem;
  transition: transform 260ms ease;
}

.contact-method-row:hover .contact-method-row__arrow {
  transform: translateX(4px);
}

.contact-journey {
  padding: clamp(78px, 8vw, 120px) clamp(18px, 4vw, 55px);
  background: #FFFFFF;
}

.contact-journey__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  width: min(100%, 1350px);
  margin: 0 auto;
}

.contact-journey__content h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.contact-journey__content > p {
  margin: 20px 0 0;
  color: #526873;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

.contact-journey-list {
  margin: 32px 0 0;
  padding: 28px 26px;
  list-style: none;
  border: 1px solid rgba(7, 59, 87, 0.1);
  border-radius: 22px;
  background: #ECF7FB;
}

.contact-journey-list__item {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(7, 59, 87, 0.1);
}

.contact-journey-list__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-journey-list__item:first-child {
  padding-top: 0;
}

.contact-journey-list__number {
  color: #087EAF;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.contact-journey-list__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(8, 126, 175, 0.12);
  color: #087EAF;
}

.contact-journey-list__icon svg {
  width: 16px;
  height: 16px;
}

.contact-journey-list__label {
  color: #073B57;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.contact-journey__image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(7, 59, 87, 0.14);
}

.contact-reserve-cta {
  padding: clamp(70px, 7vw, 100px) clamp(18px, 4vw, 55px);
  background: #ECF7FB;
}

.contact-reserve-cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 60px);
  width: min(100%, 1350px);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 68px);
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at top right,
      rgba(8, 126, 175, 0.22),
      transparent 45%
    ),
    #073B57;
  box-shadow: 0 24px 65px rgba(7, 59, 87, 0.18);
}

.contact-reserve-cta__route {
  position: absolute;
  right: 8%;
  bottom: 18%;
  width: min(42%, 400px);
  height: auto;
  pointer-events: none;
}

.contact-reserve-cta__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.contact-reserve-cta__content h2 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.contact-reserve-cta__content p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

.contact-reserve-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

.contact-reserve-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 250ms ease,
    background 250ms ease,
    border-color 250ms ease;
}

.contact-reserve-cta__button--primary {
  border: 0;
  background: #FFFFFF;
  color: #073B57;
}

.contact-reserve-cta__button--primary:hover,
.contact-reserve-cta__button--primary:focus-visible {
  transform: translateY(-2px);
  background: #ECF7FB;
}

.contact-reserve-cta__button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #FFFFFF;
}

.contact-reserve-cta__button--secondary:hover,
.contact-reserve-cta__button--secondary:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.contact-reserve-cta__button:focus-visible {
  outline: 3px solid rgba(142, 216, 248, 0.55);
  outline-offset: 3px;
}

.contact-services {
  padding: clamp(78px, 8vw, 120px) clamp(18px, 4vw, 55px);
  background: #FFFFFF;
}

.contact-services__container {
  width: min(100%, 1350px);
  margin: 0 auto;
}

.contact-services__header {
  max-width: 760px;
  margin-bottom: 38px;
}

.contact-services__header h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.contact-services__header p {
  margin: 18px 0 0;
  color: #526873;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

.contact-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(7, 59, 87, 0.1);
  border-radius: 22px;
  overflow: hidden;
  background: #FFFFFF;
}

.contact-service-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  min-width: 0;
  padding: 24px 22px;
  border-right: 1px solid rgba(7, 59, 87, 0.1);
  border-bottom: 1px solid rgba(7, 59, 87, 0.1);
  color: inherit;
  text-decoration: none;
  transition:
    transform 260ms ease,
    background 260ms ease;
}

.contact-service-link:nth-child(3n) {
  border-right: 0;
}

.contact-service-link:nth-last-child(-n+3) {
  border-bottom: 0;
}

.contact-service-link:hover,
.contact-service-link:focus-visible {
  transform: translateY(-3px);
  background: #ECF7FB;
}

.contact-service-link:focus-visible {
  outline: 3px solid rgba(8, 126, 175, 0.45);
  outline-offset: -3px;
}

.contact-service-link__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(8, 126, 175, 0.1);
  color: #087EAF;
}

.contact-service-link__icon svg {
  width: 20px;
  height: 20px;
}

.contact-service-link__body h3 {
  margin: 0;
  color: #073B57;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-service-link__body p {
  margin: 8px 0 0;
  color: #526873;
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-service-link__arrow {
  color: #087EAF;
  font-size: 1.1rem;
  transition: transform 260ms ease;
}

.contact-service-link:hover .contact-service-link__arrow {
  transform: translateX(4px);
}

.contact-coverage {
  padding: clamp(78px, 8vw, 120px) clamp(18px, 4vw, 55px);
  background: #ECF7FB;
}

.contact-coverage__container {
  width: min(100%, 1350px);
  margin: 0 auto;
}

.contact-coverage__header {
  max-width: 820px;
  margin-bottom: 36px;
}

.contact-coverage__header h2 {
  margin: 0;
  color: #073B57;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.contact-coverage__header p {
  margin: 18px 0 0;
  color: #526873;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

.contact-coverage-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 59, 87, 0.1);
  border-radius: 26px;
  background: #FFFFFF;
  box-shadow: 0 20px 52px rgba(7, 59, 87, 0.08);
}

.contact-coverage-panel__column {
  padding: clamp(28px, 4vw, 42px);
  border-right: 1px solid rgba(7, 59, 87, 0.1);
}

.contact-coverage-panel__column:last-of-type {
  border-right: 0;
}

.contact-coverage-panel__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(8, 126, 175, 0.1);
  color: #087EAF;
}

.contact-coverage-panel__icon svg {
  width: 22px;
  height: 22px;
}

.contact-coverage-panel__column h3 {
  margin: 0;
  color: #073B57;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
}

.contact-coverage-panel__column p {
  margin: 12px 0 0;
  color: #526873;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-coverage-panel__footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 26px 22px 30px;
  border-top: 1px solid rgba(7, 59, 87, 0.1);
  background: rgba(236, 247, 251, 0.55);
}

.contact-coverage-panel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #073B57;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 250ms ease,
    background 250ms ease;
}

.contact-coverage-panel__cta:hover,
.contact-coverage-panel__cta:focus-visible {
  transform: translateY(-2px);
  background: #087EAF;
}

.contact-coverage-panel__cta:focus-visible {
  outline: 3px solid rgba(8, 126, 175, 0.45);
  outline-offset: 3px;
}

.contact-page .contact-page-final {
  padding-bottom: calc(clamp(80px, 8vw, 125px) + 92px);
}

.contact-page .contact-page-final a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1100px) {
  .contact-methods__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-journey__image {
    order: 2;
  }

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

  .contact-service-link:nth-child(3n) {
    border-right: 1px solid rgba(7, 59, 87, 0.1);
  }

  .contact-service-link:nth-child(2n) {
    border-right: 0;
  }

  .contact-service-link:nth-last-child(-n+3) {
    border-bottom: 1px solid rgba(7, 59, 87, 0.1);
  }

  .contact-service-link:nth-last-child(-n+2) {
    border-bottom: 0;
  }

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

  .contact-coverage-panel__column {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 59, 87, 0.1);
  }

  .contact-coverage-panel__column:last-of-type {
    border-bottom: 0;
  }

  .contact-reserve-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-reserve-cta__actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .contact-page-hero {
    min-height: 570px;
  }

  .contact-page-hero__container {
    min-height: 570px;
    padding:
      calc(
        var(--announcement-height, 34px)
        + var(--main-header-height, 82px)
        + 32px
      )
      18px
      58px;
  }

  .contact-page-hero__content h1 {
    max-width: 460px;
    font-size: clamp(2.35rem, 10vw, 3.15rem);
    line-height: 1.06;
    letter-spacing: -0.037em;
  }

  .contact-page-hero__content p {
    max-width: 430px;
    margin-top: 17px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .contact-page-hero__support {
    font-size: 0.84rem;
  }

  .contact-methods__inner {
    padding: 36px 22px;
  }

  .contact-method-row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }

  .contact-method-row__arrow {
    display: none;
  }

  .contact-journey__image img {
    min-height: 300px;
  }

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

  .contact-service-link {
    border-right: 0 !important;
  }

  .contact-service-link:not(:last-child) {
    border-bottom: 1px solid rgba(7, 59, 87, 0.1) !important;
  }

  .contact-reserve-cta__actions {
    flex-direction: column;
  }

  .contact-reserve-cta__button {
    width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  .contact-method-row,
  .contact-method-row__arrow,
  .contact-service-link,
  .contact-service-link__arrow,
  .contact-reserve-cta__button,
  .contact-coverage-panel__cta {
    transition: none;
  }

  .contact-method-row:hover,
  .contact-service-link:hover,
  .contact-reserve-cta__button:hover,
  .contact-coverage-panel__cta:hover {
    transform: none;
  }
}

/* Areas We Serve mega menu */
@media (min-width: 1101px) {
  .site-header-stack,
  .site-header,
  .site-header__container,
  .site-nav {
    overflow: visible;
  }

  .site-nav {
    left: 0;
    right: 0;
    width: auto;
    transform: none;
    display: flex;
    justify-content: center;
    pointer-events: none;
  }

  .site-nav__list {
    pointer-events: auto;
  }

  .site-nav__item--mega {
    position: static;
  }

  .site-nav__item--mega::after {
    display: none;
  }

  .site-nav__item--mega .site-nav__dropdown--mega {
    position: fixed;
    top: var(--mega-menu-top);
    left: 50%;
    right: auto;
    z-index: 10001;
    width: min(1420px, calc(100vw - 48px));
    min-width: min(1420px, calc(100vw - 48px));
    max-width: min(1420px, calc(100vw - 48px));
    margin: 0;
    padding: 38px 44px 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background:
      linear-gradient(
        165deg,
        rgba(5, 52, 76, 0.98) 0%,
        rgba(3, 38, 56, 0.99) 100%
      );
    box-shadow:
      0 2px 4px rgba(0, 0, 0, 0.04),
      0 18px 40px rgba(3, 28, 42, 0.28),
      0 40px 80px rgba(3, 28, 42, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: visible;
    box-sizing: border-box;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease;
  }

  .site-nav__item--mega .site-nav__dropdown--mega::before {
    content: "";
    position: absolute;
    top: -16px;
    right: 0;
    left: 0;
    height: 16px;
  }

  .site-nav__item--mega:hover .site-nav__dropdown--mega,
  .site-nav__item--mega:focus-within .site-nav__dropdown--mega,
  .site-nav__item--mega.is-open .site-nav__dropdown--mega {
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav__item--dropdown.site-nav__item--mega .site-nav__dropdown--mega,
  .site-nav__item--dropdown.site-nav__item--mega:hover .site-nav__dropdown--mega,
  .site-nav__item--dropdown.site-nav__item--mega:focus-within .site-nav__dropdown--mega,
  .site-nav__item--dropdown.site-nav__item--mega.is-open .site-nav__dropdown--mega {
    top: var(--mega-menu-top);
    margin-top: 0;
    transform: translateX(-50%);
  }

  .site-nav__mega-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0 16px;
    width: 100%;
  }

  .site-nav__mega-column {
    position: relative;
    min-width: 0;
    padding: 4px 12px;
    overflow: hidden;
  }

  .site-nav__mega-column:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 6px;
    right: -10px;
    bottom: 6px;
    width: 1px;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(255, 255, 255, 0.16) 18%,
      rgba(255, 255, 255, 0.16) 82%,
      transparent
    );
  }

  .site-nav__mega-heading {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
    padding: 0 4px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.35;
    text-transform: uppercase;
    overflow-wrap: anywhere;
  }

  .site-nav__mega-heading::before {
    content: "";
    display: block;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    opacity: 0.92;
    background-color: rgba(32, 191, 198, 0.95);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
  }

  .site-nav__mega-column:nth-child(1) .site-nav__mega-heading::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 22s7-5.5 7-12a7 7 0 1 0-14 0c0 6.5 7 12 7 12Z' stroke='black' stroke-width='1.8'/%3E%3Ccircle cx='12' cy='10' r='2.5' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 22s7-5.5 7-12a7 7 0 1 0-14 0c0 6.5 7 12 7 12Z' stroke='black' stroke-width='1.8'/%3E%3Ccircle cx='12' cy='10' r='2.5' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
  }

  .site-nav__mega-column:nth-child(2) .site-nav__mega-heading::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 20V9l8-5 8 5v11' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9 20v-6h6v6' stroke='black' stroke-width='1.8'/%3E%3Cpath d='M8 11h8' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 20V9l8-5 8 5v11' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9 20v-6h6v6' stroke='black' stroke-width='1.8'/%3E%3Cpath d='M8 11h8' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
  }

  .site-nav__mega-column:nth-child(3) .site-nav__mega-heading::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M3 12h3l2.5-7L12 14l3.5-9L18 12h3' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 19h16' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M3 12h3l2.5-7L12 14l3.5-9L18 12h3' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 19h16' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .site-nav__mega-column:nth-child(4) .site-nav__mega-heading::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12h16' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M8 8V4M16 8V4M8 16v4M16 16v4' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3Crect x='6' y='10' width='12' height='4' rx='1' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12h16' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M8 8V4M16 8V4M8 16v4M16 16v4' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3Crect x='6' y='10' width='12' height='4' rx='1' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
  }

  .site-nav__mega-column:nth-child(5) .site-nav__mega-heading::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 3l2.4 5.8 6.3.5-4.8 4.1 1.5 6.1L12 16.8 6.6 19.5l1.5-6.1-4.8-4.1 6.3-.5L12 3Z' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 3l2.4 5.8 6.3.5-4.8 4.1 1.5 6.1L12 16.8 6.6 19.5l1.5-6.1-4.8-4.1 6.3-.5L12 3Z' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .site-nav__mega-column:nth-child(6) .site-nav__mega-heading::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 19V9l8-5 8 5v10' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9 19v-6h6v6' stroke='black' stroke-width='1.8'/%3E%3Cpath d='M8 11h8' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 19V9l8-5 8 5v10' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9 19v-6h6v6' stroke='black' stroke-width='1.8'/%3E%3Cpath d='M8 11h8' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
  }

  .site-nav__mega-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-nav__mega-column li + li {
    margin-top: 2px;
  }

  .site-nav__mega-column ul,
  .site-nav__mega-column li,
  .site-nav__mega-panel {
    min-width: 0;
  }

  .site-nav__mega-column li a {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 9px 12px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: normal;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    transition:
      color 220ms ease,
      background-color 220ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header-stack.is-compact .site-nav__mega-column li a {
    white-space: normal;
  }

  .site-nav__mega-column li a:hover,
  .site-nav__mega-column li a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(4px);
    outline: none;
  }

  .site-nav__mega-toggle {
    display: none;
  }

  .site-nav__mega-panel {
    display: block;
  }

  .site-nav__mega-panel[hidden] {
    display: block !important;
  }
}

@media (min-width: 1101px) and (max-width: 1480px) {
  .site-nav__item--mega .site-nav__dropdown--mega {
    width: min(1350px, calc(100vw - 40px));
    min-width: min(1350px, calc(100vw - 40px));
    max-width: min(1350px, calc(100vw - 40px));
    padding: 32px 28px 36px;
  }

  .site-nav__mega-grid {
    gap: 0 14px;
  }

  .site-nav__mega-column {
    padding: 4px 8px;
  }

  .site-nav__mega-column:not(:last-child)::after {
    right: -7px;
  }

  .site-nav__mega-heading {
    margin-bottom: 14px;
    padding-bottom: 12px;
    font-size: 0.78rem;
  }

  .site-nav__mega-column li a {
    padding: 8px 10px;
    font-size: 0.86rem;
  }
}

@media (max-width: 1100px) {
  .site-nav__item--mega.is-open .site-nav__dropdown--mega {
    max-height: 2400px;
    padding-top: 7px;
    padding-bottom: 9px;
  }

  .site-nav__mega-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .site-nav__mega-column {
    width: 100%;
  }

  .site-nav__mega-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 11px 14px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.95);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
  }

  .site-nav__mega-toggle svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    transition: transform 300ms ease;
  }

  .site-nav__mega-column.is-open .site-nav__mega-toggle svg {
    transform: rotate(180deg);
  }

  .site-nav__mega-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav__mega-column.is-open .site-nav__mega-panel {
    max-height: 900px;
  }

  .site-nav__mega-panel[hidden] {
    display: block;
    max-height: 0;
  }

  .site-nav__mega-column.is-open .site-nav__mega-panel[hidden] {
    max-height: 900px;
  }

  .site-nav__mega-column ul {
    margin: 0;
    padding: 4px 0 8px;
    list-style: none;
  }

  .site-nav__mega-heading {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav__mega-column li a {
    transition: none;
  }

  .site-nav__mega-column li a:hover,
  .site-nav__mega-column li a:focus-visible {
    transform: none;
  }
}

.location-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 991px) {
  .location-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

a.service-area-card,
a.popular-location-card,
a.service-location-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

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

/* --------------------------------------------------------------------------
   Location Attractions — premium destination cards (location pages)
   -------------------------------------------------------------------------- */

.location-attractions {
  padding: clamp(56px, 6vw, 84px) clamp(20px, 4vw, 56px);
  background: var(--color-white, #ffffff);
}

.location-attractions__container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.location-attractions__header {
  max-width: 680px;
  margin: 0 auto clamp(32px, 4vw, 44px);
  text-align: center;
}

.location-attractions__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-niagara-blue, #087eaf);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.location-attractions__header h2 {
  margin: 0 0 12px;
  color: var(--color-navy, #073b57);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.location-attractions__intro {
  margin: 0 auto;
  color: var(--color-text-muted, #526873);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.65;
}

.location-attractions__divider {
  display: block;
  width: 40px;
  height: 2px;
  margin: 20px auto 0;
  border-radius: 1px;
  background: var(--color-niagara-blue, #087eaf);
  opacity: 0.45;
}

.location-attractions__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
}

.location-attraction-card {
  display: block;
  margin: 0;
  cursor: default;
}

.location-attraction-card:focus {
  outline: none;
}

.location-attraction-card:focus-visible {
  outline: 2px solid rgba(8, 126, 175, 0.45);
  outline-offset: 4px;
  border-radius: 6px;
}

.location-attraction-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background: #eef4f7;
  isolation: isolate;
}

.location-attraction-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.location-attraction-card__caption {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.location-attraction-card__caption-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 35, 52, 0.78) 0%,
    rgba(7, 35, 52, 0.42) 38%,
    rgba(7, 35, 52, 0.08) 68%,
    transparent 100%
  );
}

.location-attraction-card__title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(14px, 2vw, 20px) clamp(14px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.86rem, 1.05vw, 0.96rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.location-attraction-card__panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: clamp(18px, 2.2vw, 24px);
  background: rgba(7, 35, 52, 0.88);
  color: #ffffff;
  transform: translateX(-101%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.location-attraction-card__panel-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.location-attraction-card__description {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.78rem, 0.95vw, 0.86rem);
  line-height: 1.6;
}

@media (hover: hover) and (pointer: fine) {
  .location-attraction-card:hover .location-attraction-card__panel,
  .location-attraction-card:focus-within .location-attraction-card__panel {
    transform: translateX(0);
  }

  .location-attraction-card:hover .location-attraction-card__caption,
  .location-attraction-card:focus-within .location-attraction-card__caption {
    opacity: 0;
  }
}

.location-attraction-card.is-active .location-attraction-card__panel {
  transform: translateX(0);
}

.location-attraction-card.is-active .location-attraction-card__caption {
  opacity: 0;
}

.location-attractions .location-attraction-card {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.location-attractions.is-visible .location-attraction-card {
  opacity: 1;
  transform: translateY(0);
}

.location-attractions.is-visible .location-attraction-card:nth-child(1) {
  transition-delay: 60ms;
}

.location-attractions.is-visible .location-attraction-card:nth-child(2) {
  transition-delay: 110ms;
}

.location-attractions.is-visible .location-attraction-card:nth-child(3) {
  transition-delay: 160ms;
}

.location-attractions.is-visible .location-attraction-card:nth-child(4) {
  transition-delay: 210ms;
}

.location-attractions.is-visible .location-attraction-card:nth-child(5) {
  transition-delay: 260ms;
}

@media (max-width: 1199px) {
  .location-attractions__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .location-attractions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .location-attraction-card__media {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 640px) {
  .location-attractions {
    padding: 52px clamp(18px, 5vw, 24px);
  }

  .location-attractions__header {
    margin-bottom: 28px;
    text-align: left;
  }

  .location-attractions__divider {
    margin-left: 0;
  }

  .location-attractions__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .location-attraction-card__media {
    aspect-ratio: 16 / 10;
  }

  .location-attraction-card {
    cursor: pointer;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-attraction-card__panel,
  .location-attraction-card__caption,
  .location-attractions .location-attraction-card {
    transition: none;
  }

  .location-attractions .location-attraction-card {
    opacity: 1;
    transform: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .location-attraction-card:hover .location-attraction-card__panel,
    .location-attraction-card:focus-within .location-attraction-card__panel,
    .location-attraction-card.is-active .location-attraction-card__panel {
      transform: translateX(0);
    }
  }
}

/* --------------------------------------------------------------------------
   Location pages — booking process (4-step), destination guide, routes,
   specialist info, use cases, mid-page CTA
   -------------------------------------------------------------------------- */

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

.service-process__journey--four .service-process__route {
  right: 10%;
  left: 10%;
}

.location-booking-process {
  background: var(--color-white, #ffffff);
}

.location-destination-guide {
  padding: clamp(48px, 6vw, 80px) 24px;
  background: var(--color-white, #ffffff);
}

.location-destination-guide__container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.location-destination-guide--full-width {
  padding-left: clamp(24px, 4vw, 56px);
  padding-right: clamp(24px, 4vw, 56px);
}

.location-destination-guide--full-width .location-destination-guide__container {
  width: 100%;
  max-width: none;
}

.location-destination-guide--full-width .location-destination-guide__block {
  gap: clamp(32px, 4vw, 72px);
}

.location-destination-guide__block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 80px);
  padding: clamp(48px, 6vw, 72px) 0;
}

.location-destination-guide__block + .location-destination-guide__block {
  border-top: 1px solid rgba(7, 59, 87, 0.08);
}

.location-destination-guide__block--media-right .location-destination-guide__media {
  order: 2;
}

.location-destination-guide__block--media-right .location-destination-guide__copy {
  order: 1;
}

.location-destination-guide__media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(7, 59, 87, 0.16);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.location-destination-guide__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.location-destination-guide__copy {
  min-width: 0;
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) 140ms,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1) 140ms;
}

.location-destination-guide__block--media-right .location-destination-guide__copy {
  transform: translateX(-28px);
}

.location-destination-guide__block.is-visible .location-destination-guide__media,
.location-destination-guide__block.is-visible .location-destination-guide__copy {
  opacity: 1;
  transform: none;
}

.location-destination-guide__header {
  max-width: none;
  margin: 0 0 28px;
  text-align: left;
}

.location-destination-guide__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-niagara-blue, #087eaf);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.location-destination-guide__header h2 {
  margin: 0 0 16px;
  color: var(--color-navy, #073b57);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.location-destination-guide__header p {
  margin: 0;
  color: var(--color-text-muted, #526873);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.75;
}

.location-destination-guide__body h3 {
  margin: 32px 0 12px;
  color: var(--color-navy, #073b57);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.location-destination-guide__body h3:first-child {
  margin-top: 0;
}

.location-destination-guide__body p {
  margin: 0 0 16px;
  color: var(--color-text-muted, #526873);
  font-size: 1rem;
  line-height: 1.78;
}

.location-routes {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 108px) clamp(20px, 3vw, 36px);
  background: linear-gradient(165deg, #f8fcfe 0%, #eef6fa 48%, #f4fafc 100%);
}

.location-routes::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 22%, rgba(8, 126, 175, 0.07) 0%, transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(32, 191, 198, 0.06) 0%, transparent 38%);
}

.location-routes::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1080px, 100%);
  height: 220px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-6deg);
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 36px,
      rgba(8, 126, 175, 0.05) 36px,
      rgba(8, 126, 175, 0.05) 38px
    );
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

@media (min-width: 768px) {
  .location-routes::after {
    opacity: 0.45;
  }
}

.location-routes__container {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-width: 1080px;
  margin: 0 auto;
}

.location-routes__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.location-routes__header h2 {
  margin: 0 0 16px;
  color: var(--color-navy, #073b57);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.location-routes__header p {
  margin: 0;
  color: var(--color-text-muted, #526873);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.75;
}

.location-routes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.location-route-card {
  --route-reveal-delay: 0ms;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  padding: 18px 18px 16px;
  border: 1px solid rgba(7, 59, 87, 0.09);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(7, 59, 87, 0.07);
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--route-reveal-delay),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--route-reveal-delay),
    box-shadow 400ms ease,
    border-color 400ms ease;
}

.location-route-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  pointer-events: none;
  background: linear-gradient(
    225deg,
    transparent 48%,
    rgba(8, 126, 175, 0.14) 48%,
    rgba(8, 126, 175, 0.24) 100%
  );
  border-bottom-right-radius: 12px;
  transition: opacity 400ms ease;
}

.location-route-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.location-route-card:nth-child(1) { --route-reveal-delay: 0ms; }
.location-route-card:nth-child(2) { --route-reveal-delay: 60ms; }
.location-route-card:nth-child(3) { --route-reveal-delay: 120ms; }
.location-route-card:nth-child(4) { --route-reveal-delay: 180ms; }
.location-route-card:nth-child(5) { --route-reveal-delay: 240ms; }
.location-route-card:nth-child(6) { --route-reveal-delay: 300ms; }

.location-route-card:hover {
  border-color: rgba(8, 126, 175, 0.2);
  box-shadow: 0 14px 36px rgba(7, 59, 87, 0.11);
}

.location-route-card.is-visible:hover {
  transform: translateY(-3px);
}

.location-route-card:hover::after {
  opacity: 1;
  background: linear-gradient(
    225deg,
    transparent 48%,
    rgba(8, 126, 175, 0.18) 48%,
    rgba(8, 126, 175, 0.32) 100%
  );
}

.location-route-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  padding: 4px 10px;
  border: 1px solid rgba(8, 126, 175, 0.14);
  border-radius: 999px;
  background: rgba(8, 126, 175, 0.08);
  color: var(--color-niagara-blue, #087eaf);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.location-route-card__badge::before {
  content: "★";
  font-size: 0.52rem;
  line-height: 1;
}

.location-route-card__journey {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.location-route-card__timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
}

.location-route-card__timeline-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(8, 126, 175, 0.16);
  color: var(--color-niagara-blue, #087eaf);
  box-shadow: 0 4px 10px rgba(7, 59, 87, 0.06);
  transform: scale(0.88);
  opacity: 0;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--route-reveal-delay) + 100ms),
    opacity 520ms ease calc(var(--route-reveal-delay) + 100ms);
}

.location-route-card.is-visible .location-route-card__timeline-marker {
  transform: scale(1);
  opacity: 1;
}

.location-route-card__timeline-marker svg {
  width: 13px;
  height: 13px;
}

.location-route-card__timeline-marker--destination {
  color: var(--color-navy, #073b57);
}

.location-route-card__timeline-line {
  flex: 1 1 auto;
  width: 0;
  min-height: 22px;
  margin: 5px 0;
  border-left: 2px dashed rgba(8, 126, 175, 0.32);
  background: none;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--route-reveal-delay) + 160ms);
}

.location-route-card.is-visible .location-route-card__timeline-line {
  transform: scaleY(1);
}

.location-route-card__points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.location-route-card__point {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.location-route-card__point-label {
  color: var(--color-niagara-blue, #087eaf);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.location-route-card__origin,
.location-route-card__destination {
  color: var(--color-navy, #073b57);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.location-route-card__origin {
  font-size: 0.84rem;
  font-weight: 600;
}

.location-route-card__destination {
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.location-route-card__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(8, 126, 175, 0.1);
  color: var(--color-niagara-blue, #087eaf);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.3;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.location-route-card:hover .location-route-card__time {
  transform: translateX(2px);
}

.location-route-card__time svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.location-route-card__description {
  flex: 1 1 auto;
  margin: 0;
  color: var(--color-text-muted, #526873);
  font-size: 0.8rem;
  line-height: 1.55;
}

.location-route-card__button.how-it-works__button {
  align-self: stretch;
  width: 100%;
  margin-top: auto;
  min-height: 40px;
  padding: 9px 16px;
  border: none;
  border-radius: 999px;
  background: var(--color-navy, #073b57);
  color: #ffffff;
  font-size: 0.82rem;
  gap: 8px;
}

.location-route-card__button.how-it-works__button:hover {
  background: #052e44;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7, 59, 87, 0.2);
}

.location-route-card__button span {
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.location-route-card__button:hover span {
  transform: translateX(3px);
}

.location-specialist {
  padding: clamp(72px, 8vw, 108px) 24px;
  background: var(--color-white, #ffffff);
}

.location-specialist__container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.location-specialist__header {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.location-specialist__header h2 {
  margin: 0 0 16px;
  color: var(--color-navy, #073b57);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.location-specialist__header p {
  margin: 0;
  color: var(--color-text-muted, #526873);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.75;
}

.location-specialist__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.location-specialist-card {
  padding: 28px 28px 26px;
  border: 1px solid rgba(7, 59, 87, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(244, 250, 252, 0.98)
    );
  box-shadow: 0 14px 40px rgba(7, 59, 87, 0.06);
}

.location-specialist-card h3 {
  margin: 0 0 12px;
  color: var(--color-navy, #073b57);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
}

.location-specialist-card p {
  margin: 0;
  color: var(--color-text-muted, #526873);
  font-size: 0.95rem;
  line-height: 1.68;
}

.location-mid-cta {
  padding: clamp(56px, 7vw, 84px) 24px;
  background: linear-gradient(
    135deg,
    rgba(7, 59, 87, 0.97),
    rgba(8, 126, 175, 0.94)
  );
}

.location-mid-cta__container {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.location-mid-cta__container h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.location-mid-cta__container p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Location pages — full-width section wrappers
   Section backgrounds span the full viewport; inner containers expand to
   the section width with comfortable horizontal padding.
   -------------------------------------------------------------------------- */

.location-page {
  width: 100%;
  max-width: none;
}

.location-page > section {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.location-page .service-introduction,
.location-page .service-included,
.location-page .service-vehicles,
.location-page .service-benefits,
.location-page .service-process,
.location-page .service-faqs,
.location-page .service-contact,
.location-page .service-reviews,
.location-page .location-destination-guide,
.location-page .location-routes,
.location-page .location-attractions,
.location-page .location-specialist,
.location-page .service-related {
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}

.location-page .service-introduction__container,
.location-page .service-included__container,
.location-page .service-vehicles__container,
.location-page .service-benefits__container,
.location-page .service-process__container,
.location-page .service-faqs__container,
.location-page .service-contact__container,
.location-page .service-section__container,
.location-page .service-related__container,
.location-page .location-destination-guide__container,
.location-page .location-attractions__container,
.location-page .location-specialist__container {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.location-page .location-routes__container {
  width: min(1080px, 100%);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.location-page .service-vehicles__container,
.location-page .service-section__container {
  padding-left: 0;
  padding-right: 0;
}

.location-page .areas-page-hero__container {
  width: 100%;
  max-width: none;
}

.location-page .location-destination-guide__block {
  gap: clamp(32px, 4vw, 72px);
}

.location-page .service-related__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 768px) and (max-width: 1024px) {
  .service-process__journey--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-process__journey--four .service-process__route {
    display: none;
  }

  .location-routes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .location-page .service-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-page .service-related-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(100%, 600px);
    justify-self: center;
  }
}

@media (max-width: 991px) {
  .location-destination-guide__block {
    gap: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-destination-guide__media,
  .location-destination-guide__copy {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 767px) {
  .service-process__journey--four {
    grid-template-columns: 1fr;
  }

  .location-destination-guide,
  .location-routes,
  .location-specialist {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .location-page .location-destination-guide,
  .location-page .location-routes,
  .location-page .location-attractions,
  .location-page .location-specialist,
  .location-page .service-introduction,
  .location-page .service-included,
  .location-page .service-vehicles,
  .location-page .service-benefits,
  .location-page .service-process,
  .location-page .service-faqs,
  .location-page .service-contact,
  .location-page .service-reviews,
  .location-page .service-related {
    padding-left: clamp(16px, 5vw, 24px);
    padding-right: clamp(16px, 5vw, 24px);
  }

  .location-destination-guide--full-width {
    padding-left: 16px;
    padding-right: 16px;
  }

  .location-destination-guide__header,
  .location-routes__header,
  .location-specialist__header {
    text-align: left;
  }

  .location-destination-guide__block {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }

  .location-destination-guide__block--media-right .location-destination-guide__media,
  .location-destination-guide__block--media-right .location-destination-guide__copy {
    order: unset;
  }

  .location-routes__grid,
  .location-specialist__grid,
  .location-page .service-related__grid {
    grid-template-columns: 1fr;
  }

  .location-route-card {
    padding: 18px 16px 16px;
  }

  .location-route-card__journey {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
  }

  .location-route-card__points {
    gap: 12px;
  }

  .location-route-card__destination {
    font-size: clamp(0.92rem, 4.2vw, 1.02rem);
  }

  .location-route-card__button.how-it-works__button {
    min-height: 44px;
    font-size: 0.84rem;
  }

  .location-mid-cta {
    padding: 56px 16px;
  }

  .location-mid-cta__container {
    text-align: left;
  }

  .location-mid-cta__container p {
    margin-left: 0;
  }

  .location-page .service-related-card:last-child {
    grid-column: auto;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-route-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .location-route-card:hover,
  .location-route-card.is-visible:hover {
    transform: none;
  }

  .location-route-card__timeline-marker,
  .location-route-card__timeline-line {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .location-route-card:hover .location-route-card__time,
  .location-route-card__button:hover span,
  .location-route-card__button.how-it-works__button:hover {
    transform: none;
  }
}
