/* ==========================================================================
   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;

  --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;
}

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
   -------------------------------------------------------------------------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  padding: 14px 24px;
  background: rgba(7, 59, 87, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 8px 30px rgba(4, 28, 43, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    background-color 300ms ease,
    box-shadow 300ms ease,
    padding 300ms 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.is-scrolled {
  position: fixed;
  background: rgba(7, 59, 87, 0.88);
  box-shadow: 0 12px 35px rgba(4, 28, 43, 0.22);
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.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,
.site-header__logo .custom-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: 275px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.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;
}

.site-nav__dropdown-toggle {
  gap: 6px;
  white-space: nowrap;
}

.site-nav__dropdown-label {
  display: inline-block;
  line-height: 1.2;
}

.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__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__dropdown-toggle:hover::after,
.site-nav a:focus-visible::after,
.site-nav__dropdown-toggle:focus-visible::after {
  width: 100%;
}

.site-nav a: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__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 20;
  min-width: 300px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(4, 45, 67, 0.96);
  box-shadow: 0 22px 50px rgba(4, 28, 43, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  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.is-open .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-nav__dropdown li a {
  display: flex;
  width: 100%;
  padding: 11px 13px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  white-space: nowrap;
  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;
}

.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;
}

.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__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-"] {
  scroll-margin-top: 100px;
}

@media (max-width: 1100px) {
  .site-header {
    padding: 11px 18px;
  }

  .site-header__container {
    min-width: 0;
  }

  .site-header__logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .site-header__logo img {
    width: auto;
    height: 58px;
    max-width: 270px;
    margin: 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: 12px;
  }

  .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 - 90px);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    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.is-menu-open .site-nav {
    position: static;
    left: auto;
    transform: none;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    max-height: none;
    margin: 0;
    padding: 16px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
  }

  .site-nav__list > li {
    width: 100%;
    min-width: 0;
  }

  .site-nav a,
  .site-nav__dropdown-toggle {
    width: 100%;
    min-width: 0;
    padding: 12px 10px;
    justify-content: space-between;
    text-align: left;
    white-space: normal;
  }

  .site-nav__dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .site-nav__dropdown-toggle .dropdown-arrow {
    flex: 0 0 auto;
    line-height: 1;
    transform: none;
    transition: transform 300ms ease;
  }

  .site-nav__item--dropdown.is-open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .site-header.is-menu-open .site-header__cta {
    display: flex;
    flex-shrink: 0;
    width: calc(100% - 32px);
    margin: 0 16px 16px;
  }

  .site-nav__item--dropdown {
    position: relative;
    width: 100%;
  }

  .site-nav__item--dropdown:hover .site-nav__dropdown {
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    transform: none;
  }

  .site-nav__dropdown {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 8px;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    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: 520px;
    margin-top: 5px;
    padding-top: 8px;
    padding-bottom: 8px;
    overflow-y: auto;
  }

  .site-nav__dropdown li {
    display: block;
    width: 100%;
  }

  .site-nav__dropdown li a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    overflow-wrap: anywhere;
    white-space: normal;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    line-height: 1.4;
    border-radius: 8px;
  }

  .site-nav__dropdown li a:hover,
  .site-nav__dropdown li a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: none;
  }
}

@media (max-width: 767px) {
  .site-header__logo img {
    height: 54px;
    max-width: 245px;
  }
}

@media (max-width: 420px) {
  .site-header__logo img {
    height: 50px;
    max-width: 220px;
  }
}

@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: 140px;
  }

  .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 {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 1080px;
    overflow: hidden;
    background: #073b57;
  }

  .hero__slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 1080px;
    overflow: hidden;
  }

  .hero__slide,
  .hero__picture,
  .hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero__image {
    object-fit: cover;
    object-position: center center;
  }

  .hero-booking-area {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-bottom: 25px;
    transform: none;
  }

  .hero-booking-widget {
    width: 100%;
    margin: 0;
  }

  .hero-booking-widget iframe {
    min-height: 720px;
    border: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 1120px;
  }

  .hero__slides {
    min-height: 1120px;
  }
}

/* --------------------------------------------------------------------------
   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: #073b57;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.area-ticker__viewport {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.area-ticker__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: areaTickerMove 36s linear infinite;
}

.area-ticker__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.area-ticker__item {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 600;
  white-space: nowrap;
}

.area-ticker__icon {
  color: #20bfc6;
  font-size: 1.15em;
}

.area-ticker:hover .area-ticker__track {
  animation-play-state: paused;
}

@keyframes areaTickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .area-ticker__viewport {
    padding: 18px 0;
  }

  .area-ticker__track {
    animation-duration: 31s;
  }

  .area-ticker__group {
    gap: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  .area-ticker__viewport {
    padding: 16px 0;
  }

  .area-ticker__track {
    animation-duration: 26s;
  }

  .area-ticker__group {
    gap: 20px;
    padding-right: 20px;
  }

  .area-ticker__item {
    font-size: 0.95rem;
  }
}

/* --------------------------------------------------------------------------
   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-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-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-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-open .service-card__title {
  transform: translateY(-12px);
}

.service-card__reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(18px);
  transition:
    max-height 500ms ease,
    opacity 350ms ease,
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__reveal,
.service-card.is-open .service-card__reveal {
  max-height: 260px;
  opacity: 1;
  transform: translateY(0);
}

.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;
  }
}

.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(0, 1.45fr)
    minmax(160px, 0.75fr)
    minmax(190px, 0.85fr)
    minmax(260px, 1fr);
  gap: clamp(38px, 5vw, 80px);
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 80px 24px 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%;
}

.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__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
  line-height: 1.5;
}

.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 20px 55px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    margin-top: 50px;
  }

  .site-footer__container {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 60px 18px 45px;
  }

  .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;
  }
}

@media (max-width: 380px) {
  .site-footer__logo img {
    height: 54px;
    max-width: 250px;
  }
}

/* --------------------------------------------------------------------------
   Areas We Serve
   -------------------------------------------------------------------------- */

.service-areas {
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  background: #ecf7fb;
}

.service-areas::before {
  content: "";
  position: absolute;
  top: 160px;
  left: 50%;
  width: min(90vw, 1300px);
  height: 440px;
  transform: translateX(-50%);
  opacity: 0.22;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(8, 126, 175, 0.3) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );
}

.service-areas__container {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.service-areas__header {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.service-areas__header h2 {
  margin: 0;
  color: #073b57;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.service-areas__header p {
  max-width: 760px;
  margin: 20px auto 0;
  color: #526873;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.service-areas__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.service-area-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 235px;
  padding: 26px 24px;
  overflow: hidden;
  border: 1px solid rgba(8, 126, 175, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 32px rgba(7, 59, 87, 0.07);
  transition:
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 350ms ease,
    box-shadow 350ms ease,
    background-color 350ms ease;
}

.service-area-card::before {
  content: "";
  position: absolute;
  top: -55px;
  right: -55px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(8, 126, 175, 0.07);
  transition:
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 350ms ease;
}

.service-area-card:hover {
  transform: translateY(-7px);
  border-color: rgba(8, 126, 175, 0.38);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 48px rgba(7, 59, 87, 0.13);
}

.service-area-card:hover::before {
  transform: scale(1.25);
  background: rgba(8, 126, 175, 0.11);
}

.service-area-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #073b57;
  color: #ffffff;
  box-shadow: 0 9px 20px rgba(7, 59, 87, 0.2);
  transition:
    background-color 300ms ease,
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-area-card:hover .service-area-card__icon {
  background: #087eaf;
  transform: scale(1.07);
}

.service-area-card__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.service-area-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #073b57;
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 700;
}

.service-area-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #526873;
  font-size: 0.94rem;
  line-height: 1.62;
}

.service-area-card__arrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  align-self: flex-end;
  margin-top: auto;
  padding-top: 18px;
  color: #087eaf;
  font-size: 1.25rem;
  transition: transform 300ms ease;
}

.service-area-card:hover .service-area-card__arrow {
  transform: translateX(6px);
}

.service-areas__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  padding: 26px 30px;
  border: 1px solid rgba(8, 126, 175, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
}

.service-areas__action p {
  margin: 0;
  color: #073b57;
  font-size: 1.05rem;
  font-weight: 600;
}

.service-areas__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 13px 23px;
  border: 2px solid #073b57;
  border-radius: 13px;
  background: transparent;
  color: #073b57;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 300ms ease,
    color 300ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms ease;
}

.service-areas__button:hover {
  background: #073b57;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 13px 28px rgba(7, 59, 87, 0.2);
}

.service-areas__button span {
  transition: transform 300ms ease;
}

.service-areas__button:hover span {
  transform: translateX(5px);
}

.service-areas__button:focus-visible {
  outline: 3px solid #087eaf;
  outline-offset: 4px;
}

.service-areas__header,
.service-area-card,
.service-areas__action {
  opacity: 0;
  transform: translateY(28px);
}

.service-areas.is-visible .service-areas__header,
.service-areas.is-visible .service-area-card,
.service-areas.is-visible .service-areas__action {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-areas.is-visible .service-area-card:nth-child(1) { transition-delay: 80ms; }
.service-areas.is-visible .service-area-card:nth-child(2) { transition-delay: 120ms; }
.service-areas.is-visible .service-area-card:nth-child(3) { transition-delay: 160ms; }
.service-areas.is-visible .service-area-card:nth-child(4) { transition-delay: 200ms; }
.service-areas.is-visible .service-area-card:nth-child(5) { transition-delay: 240ms; }
.service-areas.is-visible .service-area-card:nth-child(6) { transition-delay: 280ms; }
.service-areas.is-visible .service-area-card:nth-child(7) { transition-delay: 320ms; }
.service-areas.is-visible .service-area-card:nth-child(8) { transition-delay: 360ms; }
.service-areas.is-visible .service-area-card:nth-child(9) { transition-delay: 400ms; }
.service-areas.is-visible .service-area-card:nth-child(10) { transition-delay: 440ms; }
.service-areas.is-visible .service-areas__action { transition-delay: 500ms; }

@media (max-width: 1099px) {
  .service-areas__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .service-areas {
    padding: 80px 20px;
  }
}

@media (max-width: 767px) {
  .service-areas {
    padding: 65px 16px;
  }

  .service-areas__header {
    margin-bottom: 40px;
  }

  .service-areas__grid {
    grid-template-columns: 1fr;
  }

  .service-area-card {
    min-height: auto;
  }

  .service-areas__action {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px 20px;
  }

  .service-areas__button {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   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-open {
    transform: none;
  }

  .service-card__media img,
  .service-card:hover .service-card__media img,
  .service-card.is-open .service-card__media img {
    transform: none;
    transition: none;
  }

  .service-card__overlay,
  .service-card:hover .service-card__overlay,
  .service-card.is-open .service-card__overlay {
    transition: none;
  }

  .service-card__title,
  .service-card:hover .service-card__title,
  .service-card.is-open .service-card__title {
    transform: none;
    transition: none;
  }

  .service-card__reveal,
  .service-card:hover .service-card__reveal,
  .service-card.is-open .service-card__reveal {
    max-height: 260px;
    opacity: 1;
    transform: none;
    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 {
    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;
  }

  .service-areas__header,
  .service-area-card,
  .service-areas__action {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-areas.is-visible .service-area-card:nth-child(1),
  .service-areas.is-visible .service-area-card:nth-child(2),
  .service-areas.is-visible .service-area-card:nth-child(3),
  .service-areas.is-visible .service-area-card:nth-child(4),
  .service-areas.is-visible .service-area-card:nth-child(5),
  .service-areas.is-visible .service-area-card:nth-child(6),
  .service-areas.is-visible .service-area-card:nth-child(7),
  .service-areas.is-visible .service-area-card:nth-child(8),
  .service-areas.is-visible .service-area-card:nth-child(9),
  .service-areas.is-visible .service-area-card:nth-child(10),
  .service-areas.is-visible .service-areas__action {
    transition-delay: 0ms;
  }

  .service-area-card,
  .service-area-card:hover {
    transform: none;
    transition: none;
  }

  .service-area-card:hover::before {
    transform: none;
    transition: none;
  }

  .service-area-card__icon,
  .service-area-card:hover .service-area-card__icon {
    transform: none;
    transition: none;
  }

  .service-area-card:hover .service-area-card__arrow {
    transform: none;
    transition: none;
  }

  .service-areas__button,
  .service-areas__button span {
    transition: none;
  }

  .service-areas__button:hover,
  .service-areas__button:active {
    transform: none;
  }

  .area-ticker__track {
    animation-play-state: paused;
  }

  .area-ticker__viewport {
    overflow-x: auto;
  }
}
