@import url("brand-colors.css");

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-ink-on-light);
  background: #f6f8f6;
}

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

a {
  color: var(--color-forest-green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-leaf-green);
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.container--narrow {
  width: min(720px, 100% - 2rem);
}

.site-main {
  min-height: 50vh;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  /* Avoid backdrop-filter here: it creates a containing block and breaks position:fixed mobile nav. */
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-border-subtle);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  min-height: 3.25rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.site-logo__mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50% 40% 50% 40%;
  background: linear-gradient(135deg, var(--color-leaf-green), var(--color-forest-green));
  flex-shrink: 0;
}

.site-logo__img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* Bigger logo in header without growing header bar */
.site-header .site-logo__img {
  width: 3.35rem;
  height: 3.35rem;
  margin-block: -0.28rem;
}

@media (min-width: 768px) {
  .site-header .site-logo__img {
    width: 3.6rem;
    height: 3.6rem;
    margin-block: -0.32rem;
  }
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-logo__name {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.site-logo__sub {
  font-size: 0.75rem;
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border-subtle);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 1.25rem;
  margin-inline: auto;
  background: var(--color-forest-green);
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-leaf-green);
  outline-offset: 2px;
}

.site-nav__drawer-head {
  display: none;
}

.site-nav__ico {
  display: none;
  flex-shrink: 0;
  color: rgba(27, 67, 50, 0.55);
}

.site-nav__ico svg {
  display: block;
}

.site-nav__ico--on-dark {
  color: rgba(255, 255, 255, 0.92);
}

.site-nav__item--divider {
  display: none;
  height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item--divider--loose {
  display: none;
}

.site-nav__auth-row {
  list-style: none;
}

.site-nav__auth-label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(27, 67, 50, 0.55);
}

.site-nav__auth-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.site-nav__auth-btn {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 0.95rem;
  border-radius: 10px;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.site-nav__auth-btn--ghost {
  flex: 1;
  min-width: 7rem;
  border: 1px solid rgba(27, 67, 50, 0.22);
  background: #fff;
  color: var(--color-forest-green);
}

.site-nav__auth-btn--ghost:hover {
  background: rgba(27, 67, 50, 0.06);
  border-color: rgba(27, 67, 50, 0.35);
  color: #143728;
}

.site-nav__auth-btn--solid {
  flex: 1;
  min-width: 7rem;
  border: 1px solid transparent;
  background: var(--color-forest-green);
  color: var(--color-text-on-forest) !important;
  box-shadow: 0 2px 12px rgba(27, 67, 50, 0.2);
}

.site-nav__auth-btn--solid:hover {
  background: #143728;
  color: var(--color-text-on-forest) !important;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  align-items: center;
}

.site-nav__link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0.25rem;
  border-radius: 6px;
}

.site-nav__link--cta {
  background: var(--color-forest-green);
  color: var(--color-text-on-forest) !important;
  padding: 0.45rem 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.site-nav__link--cta:hover {
  background: #143728;
}

.site-nav__muted {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-forest-green);
  opacity: 0.88;
  padding: 0.35rem 0.25rem;
}

.site-nav__logout-form {
  margin: 0;
  padding: 0;
}

.site-nav__link--btn {
  font: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
  color: inherit;
  width: 100%;
  text-align: left;
}

.site-nav__link--pill {
  border: 1px solid rgba(27, 67, 50, 0.28);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1002;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .nav-toggle:hover {
    border-color: rgba(27, 67, 50, 0.35);
    box-shadow: 0 2px 10px rgba(27, 67, 50, 0.08);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(27, 67, 50, 0.46);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav__drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-shrink: 0;
    margin: -0.15rem -0.15rem 0.9rem;
    padding: 0.45rem 0.15rem 0.85rem;
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
    background: linear-gradient(165deg, #ecf6e8 0%, #fff 72%);
    border-radius: 14px 0 0 0;
  }

  .site-nav__drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
  }

  .site-nav__drawer-mark {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50% 38% 50% 40%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-leaf-green), var(--color-forest-green));
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.2);
  }

  .site-nav__drawer-img {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
  }

  .site-nav__drawer-titles {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    min-width: 0;
  }

  .site-nav__drawer-kicker {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-leaf-green);
  }

  .site-nav__drawer-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--color-forest-green);
    line-height: 1.15;
  }

  .site-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
    border: 1px solid rgba(27, 67, 50, 0.16);
    border-radius: 12px;
    background: #fff;
    color: var(--color-forest-green);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  }

  .site-nav__close:hover {
    background: rgba(27, 67, 50, 0.06);
    border-color: rgba(27, 67, 50, 0.28);
  }

  .site-nav__close:active {
    transform: scale(0.96);
  }

  .site-nav__close:focus-visible {
    outline: 2px solid var(--color-leaf-green);
    outline-offset: 2px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 90vw);
    margin: 0;
    padding: max(0.85rem, env(safe-area-inset-top, 0px)) 0.95rem max(1.15rem, env(safe-area-inset-bottom, 0px)) 1rem;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--color-border-subtle);
    border-right: none;
    border-radius: 20px 0 0 20px;
    box-shadow: -16px 0 56px rgba(27, 67, 50, 0.24);
    z-index: 1001;
    transform: translate3d(102%, 0, 0);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s;
  }

  .site-nav.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 0.15rem;
  }

  .site-nav__item--divider {
    display: block;
    height: 1px;
    margin: 0.4rem 0.4rem;
    padding: 0;
    background: linear-gradient(90deg, transparent, rgba(27, 67, 50, 0.12), transparent);
    border-radius: 1px;
    pointer-events: none;
  }

  .site-nav__item--divider--loose {
    margin-top: 0.55rem;
    margin-bottom: 0.35rem;
  }

  .site-nav__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 10px;
    background: rgba(27, 67, 50, 0.06);
  }

  .site-nav__ico--on-dark {
    background: rgba(255, 255, 255, 0.18);
  }

  .site-nav__list > li {
    border-radius: 12px;
  }

  .site-nav__link {
    padding: 0.68rem 0.6rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.18s ease, color 0.18s ease;
  }

  .site-nav__link:not(.site-nav__link--cta):hover,
  .site-nav__link:not(.site-nav__link--cta):focus-visible {
    background: rgba(27, 67, 50, 0.07);
    outline: none;
  }

  .site-nav__item--cta {
    margin-top: 0.15rem;
  }

  .site-nav__item--cta .site-nav__link--cta {
    width: 100%;
    justify-content: center;
    padding: 0.78rem 1rem;
    font-weight: 700;
    box-shadow: 0 5px 18px rgba(27, 67, 50, 0.2);
  }

  .site-nav__link--cta:hover,
  .site-nav__link--cta:focus-visible {
    background: #143728;
    color: var(--color-text-on-forest) !important;
  }

  .site-nav__auth-row {
    margin-top: 0.1rem;
    padding: 0.15rem 0.1rem 0;
  }

  .site-nav__auth-label {
    margin-left: 0.15rem;
  }

  .site-nav__auth-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .site-nav__auth-btn {
    min-width: 0;
    padding: 0.62rem 0.65rem;
  }

  .site-nav__muted {
    display: block;
    padding: 0.65rem 0.65rem 0.35rem;
    font-size: 0.82rem;
  }

  .site-nav__link--btn {
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-align: left;
  }

  .site-nav__link--danger-ghost:hover,
  .site-nav__link--danger-ghost:focus-visible {
    background: rgba(27, 67, 50, 0.07);
    outline: none;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 860px) and (prefers-reduced-motion: reduce) {
  .nav-backdrop,
  .site-nav {
    transition-duration: 0.01ms;
  }

  .nav-toggle__bar {
    transition-duration: 0.01ms;
  }
}

@media (min-width: 861px) {
  .site-nav__auth-label {
    display: none;
  }

  .site-nav__auth-pair {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .site-nav__auth-btn {
    flex: 0 0 auto;
    min-width: unset;
    padding: 0.42rem 0.9rem;
    font-size: 0.88rem;
  }

  .site-nav__auth-row {
    width: auto;
    padding: 0;
    margin: 0;
  }

  .site-nav__logout-form .site-nav__link--btn {
    width: auto;
    text-align: left;
  }

  .site-nav__link--cta {
    padding-inline: 0.95rem;
  }
}

/* Footer */
.site-footer {
  background: var(--color-forest-green);
  color: var(--color-text-on-forest);
  margin-top: 3rem;
}

.site-footer a {
  color: #e8f5e9;
}

.site-footer__grid {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0 1.5rem;
}

@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1.1fr 1fr 1fr 1.15fr;
  }
}

.site-footer__brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.site-footer__logo-img {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.site-footer__logo-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50% 40% 50% 40%;
  background: linear-gradient(135deg, var(--color-leaf-green), #8bc34a);
}

.site-footer__brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}

.site-footer__tagline {
  margin: 0;
  opacity: 0.9;
}

.site-footer__heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.35rem;
  opacity: 0.85;
}

.site-footer__heading--spaced {
  margin-top: 1.15rem;
}

.site-footer__social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
}

.site-footer__social a {
  font-weight: 600;
  text-decoration: none;
}

.site-footer__social a:hover {
  text-decoration: underline;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__address {
  margin: 0.5rem 0 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.site-footer__copy {
  margin: 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.site-footer__links a {
  color: #e8f5e9;
  text-decoration: none;
  font-weight: 600;
}

.site-footer__links a:hover {
  text-decoration: underline;
}

.site-footer__links span[aria-hidden="true"] {
  opacity: 0.5;
}

.site-footer__legal {
  scroll-margin-top: 5rem;
}

#footer-privacy,
#footer-terms {
  scroll-margin-top: 5rem;
}

/* Typography helpers */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-leaf-green);
  margin: 0 0 0.5rem;
}

/* Hero */
.hero {
  background: radial-gradient(120% 120% at 10% 10%, #e9f5e3 0%, #f6f8f6 45%, #eef5f0 100%);
  border-bottom: 1px solid var(--color-border-subtle);
}

.hero__inner {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0 2.25rem;
}

@media (min-width: 900px) {
  .hero__inner {
    gap: 1.75rem;
    padding: 2.5rem 0 2.75rem;
  }
}

.hero__top {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .hero__top {
    grid-template-columns: 1.25fr 0.85fr;
    align-items: center;
  }
}

.hero__inner > .ride-card {
  grid-column: 1 / -1;
}

.hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.hero__lead {
  margin: 0 0 1.25rem;
  max-width: 46ch;
  font-size: 1.05rem;
}

.hero__actions {
  display: none;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (min-width: 900px) {
  .hero__actions {
    display: flex;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Home ride request (hero): booking card */
.home-ride-widget.ride-card {
  margin-top: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 899px) {
  .home-ride-widget.ride-card {
    margin-bottom: 0.35rem;
  }
}

.ride-card__shell {
  position: relative;
  overflow: visible;
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem 1.25rem 0;
  box-shadow: 0 14px 40px rgba(15, 40, 30, 0.1);
  border: 1px solid rgba(27, 67, 50, 0.1);
}

.ride-card__head {
  margin-bottom: 1rem;
}

.ride-card__title {
  margin: 0 0 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-forest-green);
  line-height: 1.2;
}

.ride-card__subtitle {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #5a6f62;
}

.ride-card__form {
  overflow: visible;
}

.ride-card__auth {
  background: linear-gradient(135deg, #eef6ea 0%, #e8f0eb 100%);
  border: 1px solid rgba(118, 184, 42, 0.35);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.9rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #2d4a3e;
}

.ride-card__auth p {
  margin: 0 0 0.55rem;
}

.ride-card__auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ride-card__flash {
  margin-bottom: 0.85rem;
}

.ride-card__form {
  margin: 0;
}

.ride-card__tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.35rem;
  background: #f0f4f1;
  border-radius: 12px;
}

@media (min-width: 520px) {
  .ride-card__tabs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ride-card__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.55rem 0.5rem;
  border-radius: 9px;
  border: 1px solid transparent;
  background: transparent;
  color: #4a6356;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.ride-card__tab:hover {
  border-color: rgba(27, 67, 50, 0.35);
  color: var(--color-forest-green);
}

.ride-card__tab.is-active {
  background: #fff;
  border-color: rgba(27, 67, 50, 0.12);
  color: var(--color-forest-green);
  box-shadow: 0 2px 8px rgba(27, 67, 50, 0.1);
}

.ride-card__tab-icon {
  display: inline-flex;
  line-height: 0;
}

.ride-card__grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: visible;
}

.ride-card__locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  align-items: end;
}

.ride-card__distance {
  grid-column: 1 / -1;
  margin: 0.15rem 0 0;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0f9f4 0%, #fff 100%);
  border: 1px solid rgba(27, 67, 50, 0.14);
}

.ride-card__distance-main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ride-card__distance-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.ride-card__distance-text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-forest-green);
}

.ride-card__distance-note {
  margin: 0.25rem 0 0 1.65rem;
  font-size: 0.72rem;
  color: #6b8579;
  line-height: 1.35;
}

.ride-card__schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

@media (min-width: 768px) {
  .ride-card__grid {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(27, 67, 50, 0.12);
    border-radius: 14px;
    background: #fafcfb;
    overflow: visible;
  }

  .ride-card__distance {
    flex: 1 1 100%;
    margin: 0;
    border-radius: 0;
    border-top: 1px solid rgba(27, 67, 50, 0.1);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  }

  .ride-card__locations {
    flex: 1.35;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
  }

  .ride-card__schedule {
    flex: 0.85;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-left: 1px solid rgba(27, 67, 50, 0.1);
  }

  .ride-card__cell {
    padding: 0.7rem 0.8rem;
    border-right: 1px solid rgba(27, 67, 50, 0.08);
  }

  .ride-card__schedule .ride-card__cell:last-child {
    border-right: none;
  }

  .ride-card__locations .ride-card__cell:last-of-type {
    border-right: none;
  }

  .ride-card__swap {
    align-self: center;
    margin: 0;
    border-right: 1px solid rgba(27, 67, 50, 0.08);
    border-radius: 0;
    width: 2.75rem;
    height: 2.75rem;
  }
}

.ride-card__cell {
  min-width: 0;
}

.ride-card__field--autocomplete {
  position: relative;
  z-index: 4;
}

.ride-card__field--autocomplete:focus-within {
  z-index: 50;
}

.ride-card__label {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a6f62;
}

.ride-card__control {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.ride-card__icon {
  flex-shrink: 0;
  color: var(--color-forest-green);
  opacity: 0.85;
  line-height: 0;
}

.ride-card__input,
.ride-card__select,
.ride-card__textarea {
  font: inherit;
  font-size: 0.92rem;
  width: 100%;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--color-ink-on-light);
  padding: 0.15rem 0;
}

.ride-card__input::placeholder {
  color: #8a9d92;
}

.ride-card__input:focus,
.ride-card__select:focus,
.ride-card__textarea:focus {
  outline: none;
}

.ride-card__control {
  padding: 0.5rem 0.6rem;
  border: 1px solid rgba(27, 67, 50, 0.14);
  border-radius: 10px;
  background: #fff;
}

.ride-card__input:focus,
.ride-card__select:focus,
.ride-card__textarea:focus {
  box-shadow: 0 0 0 3px rgba(118, 184, 42, 0.16);
}

@media (min-width: 768px) {
  .ride-card__grid .ride-card__control {
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0.15rem 0;
  }

  .ride-card__grid .ride-card__input:focus {
    box-shadow: none;
  }
}

.ride-card__swap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(27, 67, 50, 0.2);
  background: #fff;
  color: var(--color-forest-green);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.2s ease;
}

.ride-card__swap:hover {
  background: #eef4ef;
  transform: rotate(180deg);
}

.ride-card__suggest {
  top: calc(100% + 4px);
}

.ride-card__details {
  margin-top: 1rem;
  border: 1px solid rgba(27, 67, 50, 0.12);
  border-radius: 12px;
  background: #fafcfb;
}

.ride-card__details-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-forest-green);
  cursor: pointer;
  list-style: none;
}

.ride-card__details-summary::-webkit-details-marker {
  display: none;
}

.ride-card__details-chevron {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--color-forest-green);
  border-bottom: 2px solid var(--color-forest-green);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.ride-card__details[open] .ride-card__details-chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

.ride-card__details-body {
  padding: 0 0.85rem 0.85rem;
}

.ride-card__extras {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

@media (min-width: 640px) {
  .ride-card__extras {
    grid-template-columns: 1fr 1.4fr;
  }
}

.ride-card__extra-field--wide {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .ride-card__extra-field--wide {
    grid-column: auto;
  }
}

.ride-card__select,
.ride-card__textarea {
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(27, 67, 50, 0.16);
  border-radius: 10px;
  background: #fff;
}

.ride-card__textarea {
  resize: vertical;
  min-height: 3rem;
}

.ride-card__footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  margin: 1.1rem -1.25rem 0;
  padding: 1rem 1.25rem 1.15rem;
  border-top: 1px solid rgba(27, 67, 50, 0.1);
  background: linear-gradient(180deg, #f8fbf9 0%, #f2f6f3 100%);
  border-radius: 0 0 18px 18px;
}

@media (min-width: 560px) {
  .ride-card__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.ride-card__footer-note {
  margin: 0;
  font-size: 0.8rem;
  color: #5a6f62;
  line-height: 1.35;
}

.ride-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.25rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--color-forest-green);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(27, 67, 50, 0.22);
  transition: background 0.18s ease, transform 0.15s ease;
}

@media (min-width: 560px) {
  .ride-card__cta {
    width: auto;
    min-width: 10.5rem;
  }
}

.ride-card__cta:hover {
  background: #143728;
  transform: translateY(-1px);
}

.ride-card__cta:active {
  transform: translateY(0);
}

.home-ride-widget__suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  margin: 0;
  padding: 0.25rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(27, 67, 50, 0.18);
  max-height: 16rem;
  overflow-y: auto;
  z-index: 200;
}

.home-ride-widget__suggest[hidden] {
  display: none !important;
}

.home-ride-widget__suggest-item {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  line-height: 1.35;
  cursor: pointer;
  color: #1b2e26;
}

.home-ride-widget__suggest-item:hover,
.home-ride-widget__suggest-item:focus {
  background: #eef4ef;
}

.home-ride-widget__suggest-item--status {
  cursor: default;
  color: #5a6f62;
  font-size: 0.82rem;
}

.home-ride-widget__suggest-item--status:hover {
  background: transparent;
}

.home-ride-widget__map-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 720px) {
  .home-ride-widget__map-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.home-ride-widget__map-hint {
  font-size: 0.82rem;
  color: #4a6356;
  line-height: 1.35;
}

.home-ride-widget__map-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.home-ride-widget__mode {
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 67, 50, 0.22);
  background: #f4f7f5;
  color: var(--color-forest-green);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.home-ride-widget__mode.is-active {
  background: var(--color-forest-green);
  color: #f4f9f6;
  border-color: var(--color-forest-green);
  box-shadow: 0 2px 10px rgba(27, 67, 50, 0.2);
}

.home-ride-widget__mode:focus-visible {
  outline: 2px solid var(--color-leaf-green);
  outline-offset: 2px;
}

.home-ride-widget__map {
  height: min(52vw, 280px);
  min-height: 220px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(27, 67, 50, 0.15);
  margin-bottom: 1rem;
  z-index: 1;
}

@media (min-width: 900px) {
  .home-ride-widget__map {
    height: 300px;
  }
}

.home-ride-widget__map .leaflet-container {
  font-family: inherit;
  background: #dfe8e3;
}

.home-ride-widget__fineprint {
  font-size: 0.78rem;
  color: #5a6f62;
  margin: 0 0 1rem;
  line-height: 1.45;
}

.home-ride-widget__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.ride-map-marker-wrap {
  background: transparent !important;
  border: none !important;
}

.ride-map-pin {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  margin: 5px auto 0;
}

.ride-map-pin--pickup {
  background: linear-gradient(145deg, #76b82a, #4a8a1a);
}

.ride-map-pin--drop {
  background: linear-gradient(145deg, #e85d4c, #c62828);
}

.hero__panel {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  padding: 0.85rem;
  box-shadow: 0 10px 30px rgba(27, 67, 50, 0.06);
}

@media (min-width: 900px) {
  .hero__panel {
    padding: 1rem;
  }
}

.hero__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero__highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  min-height: 100%;
  padding: 0.75rem 0.4rem 0.85rem;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(165deg, #f4faf2 0%, #fff 55%);
  border: 1px solid rgba(27, 67, 50, 0.1);
}

.hero__highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: rgba(27, 67, 50, 0.08);
  color: var(--color-forest-green);
  flex-shrink: 0;
}

.hero__highlight-icon svg {
  display: block;
}

.hero__highlight-value {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-forest-green);
}

.hero__highlight-label {
  font-size: clamp(0.68rem, 1.8vw, 0.78rem);
  line-height: 1.35;
  font-weight: 600;
  color: #4a6358;
  padding-inline: 0.15rem;
}

.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 12px 36px rgba(27, 67, 50, 0.1);
  aspect-ratio: 16 / 10;
  background: #e8ece9;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sections */
.section {
  padding: 2.75rem 0;
}

.section--muted {
  background: #eef4ef;
  border-block: 1px solid var(--color-border-subtle);
}

.section--center {
  padding: 4rem 0;
}

.section__head {
  max-width: 60ch;
  margin-bottom: 1.75rem;
}

.section__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.section__intro {
  margin: 0;
  opacity: 0.9;
}

.section__head--center {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section--service-area .map-embed {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  background: #fff;
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 2.25rem 0 2rem;
}

.page-hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.page-hero__lead {
  margin: 0;
  max-width: 60ch;
  opacity: 0.92;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.25rem;
}

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

@media (min-width: 720px) {
  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

@media (min-width: 720px) {
  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (min-width: 640px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
}

.card__title {
  margin: 0;
  font-size: 1.15rem;
}

.card__text {
  margin: 0;
  flex: 1;
  opacity: 0.92;
}

.card__meta {
  margin: 0;
  font-size: 0.9rem;
  color: #3d5a4f;
}

.card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.card--category {
  padding: 0;
  overflow: hidden;
}

.card--category .card__body {
  padding: 1.15rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.card__photo {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e3efe0, #dfe8e4);
  overflow: hidden;
}

.card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Cab type cards (home + fleet page) */
.cab-type-grid {
  align-items: stretch;
}

.cab-type-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(27, 67, 50, 0.08);
  min-height: 100%;
}

.cab-type-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e3efe0, #dfe8e4);
  overflow: hidden;
}

.cab-type-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cab-type-card__media--placeholder {
  min-height: 160px;
}

.cab-type-card__ribbon {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--color-leaf-green);
  color: #0f1f18;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.cab-type-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
  padding: 1.15rem 1.25rem 1.3rem;
}

.cab-type-card__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: var(--color-forest-green);
}

.cab-type-card__desc {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #3d5a4f;
}

.cab-type-card__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cab-type-card__features li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  color: #3d5a4f;
  line-height: 1.4;
}

.cab-type-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-leaf-green);
  font-weight: 800;
}

.cab-type-card__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 0.75rem;
  margin: 0;
  padding: 0.65rem 0.75rem;
  background: #f4f8f5;
  border-radius: 10px;
  border: 1px solid rgba(27, 67, 50, 0.08);
}

.cab-type-card__fact {
  margin: 0;
}

.cab-type-card__fact--wide {
  grid-column: 1 / -1;
}

.cab-type-card__fact dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b8579;
}

.cab-type-card__fact dd {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-forest-green);
  line-height: 1.35;
}

.cab-type-card__ideal {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #3d5a4f;
}

.cab-type-card__ideal span {
  font-weight: 800;
  color: var(--color-forest-green);
}

.cab-type-card__count {
  margin: 0;
  font-size: 0.88rem;
  color: #6b8579;
}

.cab-type-card__count strong {
  color: var(--color-forest-green);
}

.cab-type-card__count a {
  color: var(--color-forest-green);
  font-weight: 700;
}

.cab-type-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

@media (max-width: 520px) {
  .cab-type-card__actions {
    grid-template-columns: 1fr;
  }
}

.section__head--compact {
  margin-bottom: 1rem;
}

.section__head--compact .section__title {
  font-size: 1.35rem;
}

.section--ride-widget {
  padding-top: 0.5rem;
  padding-bottom: 2.25rem;
}

.container--ride-widget {
  max-width: 920px;
}

.home-ride-widget.ride-card--focus,
.ride-card.ride-card--focus {
  outline: 3px solid rgba(118, 184, 42, 0.55);
  outline-offset: 4px;
  border-radius: 18px;
  transition: outline-color 0.25s ease;
}

/* Chips */
.chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Features */
.feature {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
}

.feature__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.feature__text {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* CTA band */
.cta-band {
  background: var(--color-forest-green);
  color: var(--color-text-on-forest);
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 2rem;
}

.cta-band__title {
  margin: 0 0 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.cta-band__text {
  margin: 0;
  max-width: 52ch;
  opacity: 0.92;
}

.cta-band a {
  color: inherit;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1.2;
}

.btn--sm {
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  border-radius: 8px;
}

.btn--primary {
  background: var(--color-forest-green);
  color: var(--color-text-on-forest) !important;
  text-decoration: none;
}

.btn--primary:hover {
  background: #143728;
}

.btn--accent {
  background: var(--color-leaf-green);
  color: #0f1f18 !important;
  text-decoration: none;
}

.btn--accent:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  background: #fff;
  border-color: var(--color-border-subtle);
  color: var(--color-forest-green) !important;
  text-decoration: none;
}

.btn--ghost:hover {
  border-color: rgba(27, 67, 50, 0.35);
}

.btn--link {
  background: transparent;
  border-color: transparent;
  color: var(--color-forest-green) !important;
  text-decoration: underline;
  font-weight: 600;
}

.btn--outline {
  background: #fff;
  border: 1.5px solid var(--color-forest-green);
  color: var(--color-forest-green) !important;
  text-decoration: none;
}

.btn--outline:hover {
  background: #f0f7f2;
  border-color: #143728;
}

.btn--block {
  width: 100%;
  text-align: center;
}

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-bar__item {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-subtle);
  background: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-forest-green) !important;
}

.filter-bar__item:hover {
  border-color: rgba(27, 67, 50, 0.35);
}

.filter-bar__item.is-active {
  background: var(--color-forest-green);
  border-color: var(--color-forest-green);
  color: var(--color-text-on-forest) !important;
}

/* Taxi cards */
.taxi-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

.taxi-card {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  overflow: hidden;
  min-height: 100%;
}

@media (min-width: 640px) {
  .taxi-card {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.taxi-card__visual {
  min-height: 180px;
  background: linear-gradient(135deg, #e3efe0, #dfe8e4);
}

.taxi-card__visual:has(img) {
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
}

.taxi-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.taxi-card__visual--placeholder {
  background:
    radial-gradient(circle at 30% 30%, rgba(118, 184, 42, 0.35), transparent 55%),
    linear-gradient(135deg, #dfece0, #cfdad4);
}

.taxi-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.taxi-card__badge {
  margin: 0;
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: rgba(118, 184, 42, 0.2);
  color: #1b4332;
}

.taxi-card__title {
  margin: 0;
  font-size: 1.2rem;
}

.taxi-card__text {
  margin: 0;
  opacity: 0.92;
}

.taxi-card__meta {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}

.taxi-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
}

/* Forms */
.form-card {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: 0 8px 28px rgba(27, 67, 50, 0.05);
}

@media (min-width: 640px) {
  .form-card {
    padding: 1.75rem 1.75rem 2rem;
  }
}

.form-fieldset {
  border: 0;
  margin: 0 0 1.25rem;
  padding: 0;
}

.form-legend {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  padding: 0;
  margin: 0 0 0.75rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row--2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-row--inline {
  margin-bottom: 0.5rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #2d4a3e;
  cursor: pointer;
}

.form-check input {
  margin-top: 0.2rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.optional {
  font-weight: 500;
  opacity: 0.75;
}

.form-hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #5a6f62;
}

.form-input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(27, 67, 50, 0.2);
  font: inherit;
  background: #fff;
}

.form-input:focus {
  outline: 2px solid rgba(118, 184, 42, 0.55);
  outline-offset: 1px;
  border-color: rgba(27, 67, 50, 0.35);
}

.form-input--textarea {
  resize: vertical;
  min-height: 96px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}

.alert {
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.alert--error {
  background: #fdecea;
  border: 1px solid #f5c2c0;
  color: #842029;
}

.alert--success {
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #1b4332;
}

.alert__title {
  margin: 0 0 0.35rem;
  font-weight: 800;
}

.alert__text {
  margin: 0;
}

.alert__list {
  margin: 0;
  padding-left: 1.1rem;
}

.empty-state {
  background: #fff;
  border: 1px dashed rgba(27, 67, 50, 0.25);
  border-radius: 14px;
  padding: 1.5rem;
}

.two-col {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.contact-aside {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
}

.contact-aside__title {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.contact-aside__list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-weight: 600;
}

.contact-aside__label {
  margin: 0.75rem 0 0.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.prose {
  max-width: 70ch;
  font-size: 1.05rem;
}

.prose p {
  margin: 0 0 1rem;
}

.success-card {
  text-align: center;
}

.success-card__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
}

.success-card__text {
  margin: 0 auto 1.25rem;
  max-width: 52ch;
}

.success-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* --- Home enhancements --- */
.section--tight {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 720px) {
  .section--tight {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.intro-block {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .intro-block {
    grid-template-columns: 1.35fr 1fr;
    gap: 2.5rem;
  }
}

.intro-block__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 0.65rem;
}

.intro-block__lead {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  max-width: 62ch;
}

.intro-block__note {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.88;
  max-width: 55ch;
}

.trust-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-pills__item {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-forest-green);
}

.card__hint {
  margin: 0;
  font-size: 0.88rem;
  color: #3d5a4f;
  font-weight: 600;
}

.service-detail-grid {
  align-items: stretch;
}

.service-card {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  height: 100%;
}

.service-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--color-forest-green);
}

.service-card__summary {
  margin: 0 0 0.75rem;
  opacity: 0.92;
}

.service-card__list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

.service-card__list li {
  margin-bottom: 0.35rem;
}

.spot-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

.spot-card {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
}

.spot-card__title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.spot-card__text {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.booking-types-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

.booking-type-card {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  height: 100%;
}

.booking-type-card__title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--color-forest-green);
}

.booking-type-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #2d4a3e;
}

/* Guest reviews slider */
.reviews-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.reviews-section__title-wrap {
  flex: 1 1 16rem;
  max-width: 42rem;
}

.reviews-section__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-leaf-green);
}

.reviews-section__rating-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.06);
}

.reviews-section__rating-stars {
  display: inline-flex;
  gap: 0.1rem;
  color: #f4b400;
}

.reviews-section__rating-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #3d5a4f;
}

.reviews-section__google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.reviews-section__google-link:hover {
  text-decoration: underline;
}

.reviews-slider {
  margin-top: 0.25rem;
}

.reviews-slider__viewport {
  overflow: hidden;
  margin: 0 -0.15rem;
  padding: 0.15rem;
}

.reviews-slider__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-card {
  box-sizing: border-box;
  margin: 0;
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  box-shadow: 0 10px 28px rgba(27, 67, 50, 0.07);
}

.review-card__header {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.review-card__avatar {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-forest-green);
  background: linear-gradient(145deg, #e8f5e3, #d4ead0);
  border: 1px solid rgba(27, 67, 50, 0.12);
}

.review-card__identity {
  flex: 1;
  min-width: 0;
}

.review-card__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
}

.review-card__meta {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #5a7268;
}

.review-card__dot {
  margin-inline: 0.15rem;
}

.review-card__google {
  flex-shrink: 0;
  opacity: 0.9;
}

.review-card__stars {
  display: inline-flex;
  gap: 0.12rem;
}

.review-star {
  display: block;
}

.review-star.is-filled {
  color: #f4b400;
}

.review-star.is-empty {
  color: #d8dde0;
}

.review-star--lg {
  width: 1.15rem;
  height: 1.15rem;
}

.review-card__quote {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #2d4038;
}

.review-card__when {
  margin: 0;
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7a8f86;
}

.reviews-slider__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
}

.reviews-slider__nav {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.reviews-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-subtle);
  background: #fff;
  color: var(--color-forest-green);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.reviews-slider__btn:hover:not(:disabled) {
  background: #eef5ef;
  border-color: rgba(27, 67, 50, 0.2);
}

.reviews-slider__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.reviews-slider__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.reviews-slider__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #c5d4cc;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.reviews-slider__dot.is-active,
.reviews-slider__dot[aria-selected="true"] {
  width: 1.35rem;
  background: var(--color-forest-green);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  padding: 0.15rem 0.85rem;
}

.faq-item__q {
  font-weight: 800;
  cursor: pointer;
  padding: 0.65rem 0;
  list-style: none;
}

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

.faq-item__q::after {
  content: "+";
  float: right;
  font-weight: 900;
  opacity: 0.45;
}

.faq-item[open] .faq-item__q::after {
  content: "–";
}

.faq-item__a {
  padding: 0 0 0.85rem;
  border-top: 1px solid var(--color-border-subtle);
}

.faq-item__a p {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  opacity: 0.92;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  background: #e8ece9;
  aspect-ratio: 16 / 9;
  max-height: 420px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.section--legal {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #f0f4f1;
  border-block: 1px solid var(--color-border-subtle);
  scroll-margin-top: 5rem;
}

#privacy,
#terms {
  scroll-margin-top: 5rem;
}

.legal-section__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  margin: 0 0 1rem;
}

.legal-details {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}

.legal-details summary {
  font-weight: 800;
  cursor: pointer;
}

.legal-details p {
  margin: 0.5rem 0 0.35rem;
  font-size: 0.92rem;
  opacity: 0.92;
}

/* Footer legal — must follow .legal-details (same elements, darker theme) */
.site-footer__legal .site-footer__legal-details {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 0.55rem 0.9rem;
  margin-bottom: 0.5rem;
  color: #e8f5e9;
}

.site-footer__legal .site-footer__legal-details summary {
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.site-footer__legal .site-footer__legal-details summary::-webkit-details-marker {
  display: none;
}

.site-footer__legal .site-footer__legal-details summary::after {
  content: " +";
  float: right;
  font-weight: 700;
  opacity: 0.75;
}

.site-footer__legal .site-footer__legal-details[open] summary::after {
  content: " −";
}

.site-footer__legal .site-footer__legal-details p {
  margin: 0.55rem 0 0.2rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(232, 245, 233, 0.95);
  opacity: 1;
}

.taxi-card__hint {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3d5a4f;
}

/* Sticky contact bar: Call · Book now · WhatsApp */
.has-sticky-contact {
  padding-bottom: calc(4.85rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 960px) {
  .has-sticky-contact {
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }
}

.sticky-contact {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}

.sticky-contact__inner {
  pointer-events: auto;
  display: flex;
  align-items: stretch;
  gap: 0.45rem;
  width: 100%;
  max-width: 100%;
  padding: 0.4rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(27, 67, 50, 0.12);
  box-shadow:
    0 -6px 24px rgba(27, 67, 50, 0.1),
    0 12px 40px rgba(27, 67, 50, 0.14);
}

@media (min-width: 960px) {
  .sticky-contact {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(580px, calc(100% - 2.5rem));
    bottom: 1.35rem;
    padding: 0;
  }

  .sticky-contact__inner {
    gap: 0.55rem;
    padding: 0.45rem;
    border-radius: 999px;
    box-shadow:
      0 4px 6px rgba(27, 67, 50, 0.06),
      0 18px 48px rgba(27, 67, 50, 0.18);
  }
}

.sticky-contact__btn {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  padding: 0.72rem 0.5rem;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1.1;
  white-space: nowrap;
  transform: translateY(0);
  transition:
    transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.2s ease,
    filter 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

@media (min-width: 380px) {
  .sticky-contact__btn {
    font-size: 0.9rem;
    padding: 0.78rem 0.65rem;
  }
}

@media (min-width: 960px) {
  .sticky-contact__btn {
    flex: 1;
    font-size: 0.92rem;
    padding: 0.72rem 1rem;
    border-radius: 999px;
  }

  .sticky-contact__btn--book {
    flex: 1.35;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
}

.sticky-contact__icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

@media (min-width: 960px) {
  .sticky-contact__icon {
    width: 1.15rem;
    height: 1.15rem;
  }
}

.sticky-contact__icon--call {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M6.6 10.8a15.5 15.5 0 006.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.7 3.5.7.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.3 21 3 13.7 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.3 2.4.7 3.5.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M6.6 10.8a15.5 15.5 0 006.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.7 3.5.7.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.3 21 3 13.7 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.3 2.4.7 3.5.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
}

.sticky-contact__icon--book {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V6a2 2 0 00-2-2zm0 16H5V10h14v10zM5 8V6h14v2H5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V6a2 2 0 00-2-2zm0 16H5V10h14v10zM5 8V6h14v2H5z'/%3E%3C/svg%3E");
}

.sticky-contact__icon--wa {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M17.5 14.4c-.3-.1-1.6-.8-1.8-.9-.3-.1-.5-.1-.7.1-.2.3-.8 1-.9 1.2-.2.2-.3.2-.6.1-1.6-.8-2.7-1.4-3.8-3.1-.3-.4 0-.4.2-.7.2-.2.3-.5.4-.7.1-.2 0-.5 0-.7-.1-.2-.7-1.7-1-2.3-.3-.6-.6-.5-.7-.5h-.6c-.2 0-.5.1-.7.3-.2.3-.9.9-.9 2.2 0 1.3.9 2.6 1.1 2.8.2.2 1.8 2.8 4.4 3.9.6.3 1.1.4 1.5.6.6.2 1.2.2 1.6.1.5-.1 1.6-.7 1.8-1.3.2-.6.2-1.1.1-1.2-.1-.1-.3-.2-.6-.3z'/%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.5 1.3 5L2 22l5.2-1.4A9.9 9.9 0 0012 22c5.5 0 10-4.5 10-10S17.5 2 12 2zm0 18.2a8 8 0 01-4.1-1.1l-.3-.2-3 .8.8-2.9-.2-.3a8 8 0 1110.8 3.7z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M17.5 14.4c-.3-.1-1.6-.8-1.8-.9-.3-.1-.5-.1-.7.1-.2.3-.8 1-.9 1.2-.2.2-.3.2-.6.1-1.6-.8-2.7-1.4-3.8-3.1-.3-.4 0-.4.2-.7.2-.2.3-.5.4-.7.1-.2 0-.5 0-.7-.1-.2-.7-1.7-1-2.3-.3-.6-.6-.5-.7-.5h-.6c-.2 0-.5.1-.7.3-.2.3-.9.9-.9 2.2 0 1.3.9 2.6 1.1 2.8.2.2 1.8 2.8 4.4 3.9.6.3 1.1.4 1.5.6.6.2 1.2.2 1.6.1.5-.1 1.6-.7 1.8-1.3.2-.6.2-1.1.1-1.2-.1-.1-.3-.2-.6-.3z'/%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.5 1.3 5L2 22l5.2-1.4A9.9 9.9 0 0012 22c5.5 0 10-4.5 10-10S17.5 2 12 2zm0 18.2a8 8 0 01-4.1-1.1l-.3-.2-3 .8.8-2.9-.2-.3a8 8 0 1110.8 3.7z'/%3E%3C/svg%3E");
}

.sticky-contact__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-contact__btn:hover {
  transform: translateY(-2px);
}

.sticky-contact__btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.08s;
}

.sticky-contact__btn:focus-visible {
  outline: 2px solid var(--color-leaf-green);
  outline-offset: 2px;
}

.sticky-contact__btn--call {
  background: #fff;
  border-color: rgba(27, 67, 50, 0.18);
  color: var(--color-forest-green) !important;
  box-shadow: 0 1px 4px rgba(27, 67, 50, 0.06);
}

.sticky-contact__btn--call:hover {
  background: #f4f9f6;
  border-color: rgba(27, 67, 50, 0.28);
  box-shadow: 0 6px 16px rgba(27, 67, 50, 0.1);
}

.sticky-contact__btn--book {
  background: linear-gradient(165deg, #2d6a4f 0%, var(--color-forest-green) 50%, #1b4332 100%);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 4px 14px rgba(27, 67, 50, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.sticky-contact__btn--book:hover {
  filter: brightness(1.06);
  box-shadow:
    0 8px 22px rgba(27, 67, 50, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sticky-contact__btn--book:focus-visible {
  filter: brightness(1.05);
}

@media (prefers-reduced-motion: no-preference) {
  .sticky-contact__btn--book {
    animation: sticky-contact-book-glow 2.8s ease-in-out infinite;
  }

  .sticky-contact__btn--book:hover,
  .sticky-contact__btn--book:focus-visible {
    animation: none;
  }
}

@keyframes sticky-contact-book-glow {
  0%,
  100% {
    box-shadow:
      0 4px 14px rgba(27, 67, 50, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.15),
      0 0 0 0 rgba(118, 184, 42, 0.25);
  }

  50% {
    box-shadow:
      0 6px 20px rgba(27, 67, 50, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 0 0 5px rgba(118, 184, 42, 0);
  }
}

.sticky-contact__btn--wa {
  background: linear-gradient(165deg, #2fd46a 0%, #25d366 55%, #1da851 100%);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35);
}

.sticky-contact__btn--wa:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

@media (min-width: 960px) {
  .sticky-contact__btn--wa .sticky-contact__icon--wa {
    background: #fff;
  }
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Ride auth modal (guest booking) */
body.ride-auth-modal-open {
  overflow: hidden;
}

.ride-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.ride-auth-modal[hidden] {
  display: none !important;
}

.ride-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 24, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.ride-auth-modal__dialog {
  position: relative;
  width: min(100%, 400px);
  max-height: min(92vh, 640px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: 0 24px 60px rgba(15, 40, 30, 0.28);
  border: 1px solid rgba(27, 67, 50, 0.12);
}

.ride-auth-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: #5a6f62;
  cursor: pointer;
  border-radius: 8px;
}

.ride-auth-modal__close:hover {
  background: #f0f4f1;
  color: var(--color-forest-green);
}

.ride-auth-modal__title {
  margin: 0 2rem 0.35rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: var(--color-forest-green);
}

.ride-auth-modal__intro {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #5a6f62;
  line-height: 1.45;
}

.ride-auth-modal__hint {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: #4a6356;
  line-height: 1.45;
}

.ride-auth-modal__step .form-label {
  margin-top: 0.5rem;
}

.ride-auth-modal__step .form-label:first-child {
  margin-top: 0;
}

.ride-auth-modal__btn {
  margin-top: 1rem;
}

.ride-auth-modal__back {
  margin-top: 0.75rem;
  padding-left: 0;
  padding-right: 0;
}

.ride-auth-modal__error {
  margin-bottom: 0.85rem;
}

.ride-auth-modal__step--success {
  text-align: center;
}

.ride-auth-modal__success {
  margin: 0;
}

.ride-auth-modal__error[hidden] {
  display: none !important;
}
