/**
 * Main Stylesheet for Corfu Taxi Minibus Theme
 *
 * @package Corfu_Elite_Transfer
 * @since 1.0.0
 */

 body {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0E1A2B;
  --beige: #F7F3EE;
  --gold: #D4AF37;
  --white: #FFFFFF;
  --navy-light: #1a2942;
  --gold-light: #e5c158;
  --fleet-accent: var(--gold);
  --section-base-bg: var(--beige);
  --card-surface: var(--white);
  --header-height: 80px;
  --header-min-height: 60px;
  --logo-max-size: 60px;
  --logo-mobile-size: 40px;
}

html {
  width: 100%;
  /* overflow-x: hidden removed - can cause double scrollbar issues */
}

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--beige);
  scroll-behavior: smooth;
}

body {
  width: 100%;
  position: relative;
  /* overflow-x: hidden removed - was causing double scrollbar */
  /* If horizontal overflow occurs, fix the root cause (elements with width > 100%) */
}

.serif {
  font-family: 'DM Serif Display', serif;
}

.mono {
  font-family: 'Space Grotesk', monospace;
}

/* Header - target only site header, not all header elements */
#masthead.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(14, 26, 43, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 2rem;
  padding-top: max(1rem, env(safe-area-inset-top));
  padding-left: max(2rem, env(safe-area-inset-left));
  padding-right: max(2rem, env(safe-area-inset-right));
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  min-height: 80px;
  max-height: 100px;
  overflow: visible;
  display: flex;
  align-items: center;
}

.header-content {
  max-width: 100%;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  min-height: 48px;
  flex-direction: row;
  align-items: center;
}

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .header-content {
      gap: 1.5rem;
      padding: 10px 20px;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .header-content {
      gap: 1rem;
      padding: 10px 15px;
      flex-wrap: wrap;
      justify-content: space-between;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .header-content {
      gap: 0.75rem;
      padding: 10px 12px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  max-height: 60px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* Site Logo - Common class for all headers */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  max-height: 60px;
}

/* Force logo size for all custom logos in headers - Responsive */
.site-logo .custom-logo,
.site-logo img,
.navbar-logo .custom-logo,
.navbar-logo img,
.logo.site-logo .custom-logo,
.logo.site-logo img,
header .custom-logo,
header .site-logo img,
header img.custom-logo,
.navbar-flowbite .custom-logo,
.navbar-flowbite img.custom-logo,
.site-header .custom-logo,
.site-header img.custom-logo {
  width: clamp(150px, 25vw, 300px);
  height: auto;
  max-width: 100%;
  max-height: 60px;
  min-width: 0;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* Custom logo size restrictions - Legacy support */
.logo .custom-logo,
.logo img {
  max-width: var(--logo-max-size);
  max-height: var(--logo-max-size);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.2;
  flex-shrink: 1;
  min-width: 0;
}

.logo-text .logo-title {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-text .logo-tagline,
.logo-text p {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

nav a:hover {
  color: var(--gold);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  position: relative;
}

.lang-switch__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: auto;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.lang-switch__current {
  font-size: 0.95rem;
  font-weight: 700;
}

.lang-switch__icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-left: 0.25rem;
}

.lang-switch.is-open .lang-switch__icon {
  transform: rotate(225deg);
}

.lang-switch__options {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-switch__options a {
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.lang-switch__options a.active {
  background: var(--gold);
  color: var(--navy);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
  padding: 0.5rem;
}

.mobile-menu-btn:hover,
.mobile-menu-btn[aria-expanded="true"] {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
}

.mobile-menu-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.mobile-menu-btn__bar {
  display: block;
  width: 12px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 3px auto;
}

.mobile-menu-btn[aria-expanded="true"] .mobile-menu-btn__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .mobile-menu-btn__bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .mobile-menu-btn__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* CRITICAL: Force logo dimensions - Highest priority - Override all */
header img.custom-logo,
header a img.custom-logo,
.navbar-flowbite img.custom-logo,
.navbar-flowbite a img.custom-logo,
.site-header img.custom-logo,
.site-header a img.custom-logo,
img.custom-logo[src*="logo"] {
  width: clamp(150px, 25vw, 300px);
  height: auto;
  max-width: 100%;
  max-height: 60px;
  min-width: 0;
  object-fit: contain;
  display: block;
}

/* Flowbite-style Navbar */
.navbar-flowbite {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(14, 26, 43, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-container .navbar-mobile-toggle {
  order: 1;
}

.navbar-container .navbar-logo {
  order: 2;
  flex: 1;
  justify-content: center;
}

.navbar-container .navbar-lang-switch {
  order: 3;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.navbar-logo img {
  width: clamp(150px, 25vw, 300px);
  height: auto;
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.navbar-logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

/* Mobile Menu Toggle Button - Same style as language switcher */
.navbar-mobile-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.navbar-mobile-toggle:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
}

.navbar-mobile-toggle-text {
  display: inline-block;
}

.navbar-mobile-toggle-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.navbar-mobile-toggle[aria-expanded="true"] .navbar-mobile-toggle-icon {
  transform: rotate(90deg);
}

/* Legacy support */
.navbar-toggle {
  display: none;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}


.navbar-menu-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu-list .menu-item {
  position: relative;
}

.navbar-menu-list a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-menu-list a:hover,
.navbar-menu-list a.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.navbar-menu-list .menu-item-has-children {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.dropdown-toggle:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: rgba(14, 26, 43, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  padding: 0.5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dropdown-toggle[aria-expanded="true"] + .dropdown-menu,
.menu-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

.navbar-lang-switch {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.navbar-lang-toggle:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
}

.navbar-lang-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.navbar-lang-switch[data-lang-switch].is-open .navbar-lang-icon {
  transform: rotate(180deg);
}

.navbar-lang-options {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 120px;
  background: rgba(14, 26, 43, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.navbar-lang-switch[data-lang-switch].is-open .navbar-lang-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-lang-options a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-lang-options a:hover,
.navbar-lang-options a.active {
  background: var(--gold);
  color: var(--navy);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Mobile Menu Close Button */
.navbar-menu-close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.navbar-menu-close:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.navbar-menu-close svg {
  width: auto;
  height: auto;
}

/* Mobile styles for Flowbite navbar */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .navbar-mobile-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 26, 43, 0.98);
    backdrop-filter: blur(10px);
    padding: 4rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    max-height: 100vh;
    overflow-y: auto;
  }

  .navbar-menu.is-open {
    display: flex;
    transform: translateX(0);
  }

  .navbar-menu-close {
    display: flex;
  }

  .navbar-menu-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
  }

  .navbar-menu-list a,
  .dropdown-toggle {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0.5rem;
    margin-left: 1rem;
    box-shadow: none;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: block;
  }

  .dropdown-toggle[aria-expanded="true"] + .dropdown-menu,
  .menu-item:hover .dropdown-menu {
    display: block;
  }

  .navbar-lang-switch {
    width: 100%;
  }

  .navbar-lang-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .navbar-lang-options {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
  }

  .navbar-lang-switch[data-lang-switch].is-open .navbar-lang-options {
    display: flex;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
  --hero-overlay-color: rgba(14, 26, 43, 0.75);
  --hero-overlay-opacity: 0.65;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay-color);
  opacity: var(--hero-overlay-opacity);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2942 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  z-index: 0;
}

.hero-pattern--diagonal-gold {
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 35px, var(--gold) 35px, var(--gold) 36px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--gold) 35px, var(--gold) 36px);
}

.hero-pattern--dots-navy {
  background-image: radial-gradient(circle, rgba(14, 26, 43, 0.35) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-pattern--grid-light {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero--background-image .hero-pattern {
  opacity: 0.25;
}

.hero--background-pattern .hero-bg {
  background: none;
}

.hero--background-gradient .hero-pattern {
  opacity: 0.12;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h2 {
  font-size: clamp(1.75rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  color: var(--beige);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: center;
  align-items: normal;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon svg {
  width: auto;
  height: auto;
  fill: currentColor;
}

.btn-icon--left {
  order: -1;
}

.btn-icon--right {
  order: 1;
}

.btn-text {
  display: inline-block;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.card-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.card-actions .btn {
  flex: 1 1 160px;
  justify-content: center;
}

.archive-hero {
  background: var(--beige);
  padding: 4rem 0 3rem;
  text-align: left;
}

.archive-hero--tours {
  background: var(--section-base-bg);
  color: var(--navy);
}

.archive-hero--testimonials {
  background: linear-gradient(135deg, rgba(6, 24, 43, 0.94), rgba(15, 53, 77, 0.85));
  color: var(--white);
}

.archive-hero .serif {
  margin-bottom: 1rem;
}

.archive-hero p {
  margin: 0;
  font-size: 1.1rem;
  max-width: 720px;
}

.services-hero .archive-hero {
  text-align: center;
}

.services-hero .archive-hero p,
.services-hero .archive-hero__subtitle,
.services-hero .archive-hero__intro,
.services-hero .archive-hero h1,
.services-hero .archive-hero .serif {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-hero .archive-hero p {
  max-width: 720px;
}

.archive-content {
  padding: 4rem 0 5rem;
}

.archive-grid {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Archive grids use both classes (e.g., "routes-grid archive-grid")
 * They inherit grid styles from the base class (routes-grid, tours-slider, etc.)
 * This ensures archive pages are also responsive
 */

.archive-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 1rem;
}

.archive-pagination .navigation.pagination {
  display: flex;
  justify-content: center;
  width: 100%;
}

.archive-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 50%;
  margin: 0;
  background: #f1f1f1;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.archive-pagination .page-numbers.prev,
.archive-pagination .page-numbers.next {
  padding: 0 16px;
  border-radius: 22px;
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  background: var(--gold);
  color: var(--navy);
}

.archive-pagination .page-numbers.dots {
  background: transparent;
  cursor: default;
  pointer-events: none;
}

.archive-pagination .nav-prev-text,
.archive-pagination .nav-next-text {
  display: inline-block;
}

/* Support for paginate_links() with type='list' - ul.page-numbers container */
.archive-pagination ul.page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.archive-pagination ul.page-numbers li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.archive-pagination ul.page-numbers li a,
.archive-pagination ul.page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 50%;
  margin: 0;
  background: #f1f1f1;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.archive-pagination ul.page-numbers li a.prev,
.archive-pagination ul.page-numbers li a.next {
  padding: 0 16px;
  border-radius: 22px;
}

.archive-pagination ul.page-numbers li span.current,
.archive-pagination ul.page-numbers li a:hover {
  background: var(--gold);
  color: var(--navy);
}

.archive-pagination ul.page-numbers li span.dots {
  background: transparent;
  cursor: default;
  pointer-events: none;
}

.fleet-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #666;
}

.fleet-title-link,
.route-title-link,
.tour-title-link {
  color: inherit;
  text-decoration: none;
}

.fleet-title-link:hover,
.route-title-link:hover,
.tour-title-link:hover {
  color: var(--gold);
}

/* Booking Form */
.booking-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.booking-form h3 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.booking-form__intro {
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.25rem);
  margin-bottom: 1rem;
  grid-auto-flow: row dense;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-grid > .form-group:last-child:not(.full-width) {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 0;
  padding: 0.875rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

#flightNumberGroup {
  display: none;
}

.form-submit {
  width: 100%;
  padding: 1.125rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 26, 43, 0.3);
}

.form-submit .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-submit .btn-icon svg {
  width: auto;
  height: auto;
  fill: currentColor;
}

.form-submit .btn-icon--left {
  order: -1;
}

.form-submit .btn-icon--right {
  order: 1;
}

.form-submit .btn-text {
  display: inline-block;
}

/* Benefits Section */
.benefits {
  padding: 5rem 2rem;
  background: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #666;
}

/* Archive Controls Section */
.archive-controls {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, rgba(247, 243, 238, 0.6) 0%, rgba(255, 255, 255, 0.8) 100%);
  border-bottom: 1px solid rgba(14, 26, 43, 0.08);
  margin-bottom: 3rem;
}

.archive-controls .container {
  max-width: 1200px;
}

/* Section Controls & Review Filters */
.section-controls,
.review-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(14, 26, 43, 0.08);
  border: 1px solid rgba(14, 26, 43, 0.06);
  transition: box-shadow 0.3s ease;
}

.section-controls:hover,
.review-filters:hover {
  box-shadow: 0 6px 28px rgba(14, 26, 43, 0.12);
}

.section-controls label,
.review-filters label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--navy);
  min-width: 240px;
  flex: 1;
  position: relative;
}

.section-controls__label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(14, 26, 43, 0.65);
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-controls__label::before {
  content: '';
  width: 3px;
  height: 14px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px;
  display: inline-block;
}

/* Search Input Styling */
.section-controls__input {
  padding: 1rem 1.25rem 1rem 3rem;
  border-radius: 12px;
  border: 2px solid rgba(14, 26, 43, 0.12);
  background: var(--white);
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--navy);
  width: 100%;
  position: relative;
  box-shadow: 0 2px 8px rgba(14, 26, 43, 0.04);
}

.section-controls__input::placeholder {
  color: rgba(14, 26, 43, 0.45);
  font-style: italic;
}

.section-controls__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), 0 4px 12px rgba(14, 26, 43, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.section-controls__input:hover:not(:focus) {
  border-color: rgba(14, 26, 43, 0.2);
  box-shadow: 0 2px 12px rgba(14, 26, 43, 0.06);
}

/* Search icon for input */
.section-controls__input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230E1A2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.5'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 1.125rem center;
  background-size: 18px 18px;
}

.section-controls__input:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
}

/* Select Dropdown Styling */
.review-filters select {
  padding: 1rem 1.25rem 1rem 1.25rem;
  border-radius: 12px;
  border: 2px solid rgba(14, 26, 43, 0.12);
  background: var(--white);
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--navy);
  width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230E1A2B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
  padding-right: 3rem;
  box-shadow: 0 2px 8px rgba(14, 26, 43, 0.04);
  font-weight: 500;
}

.review-filters select:hover {
  border-color: rgba(14, 26, 43, 0.2);
  box-shadow: 0 2px 12px rgba(14, 26, 43, 0.06);
}

.review-filters select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), 0 4px 12px rgba(14, 26, 43, 0.1);
  outline: none;
  transform: translateY(-1px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.review-filters select option {
  padding: 0.75rem;
  background: var(--white);
  color: var(--navy);
}

/* Single search input layout (tours/routes) - when only one label exists */
.section-controls:not(.review-filters) {
  max-width: 700px;
  margin: 0 auto;
}

.section-controls:not(.review-filters) label {
  min-width: 100%;
  width: 100%;
  flex: none;
}

.routes-search__empty,
[data-search-empty],
[data-review-empty] {
  text-align: center;
  margin-top: 2rem;
  color: rgba(14, 26, 43, 0.7);
  font-weight: 500;
}

.routes-load-more {
  text-align: center;
  margin-top: 2.5rem;
}

.routes-load-more .btn {
  min-width: 220px;
}

.transfer-overview {
  padding: 4rem 0;
  background: var(--white);
}

.transfer-overview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.transfer-overview__card {
  background: var(--section-base-bg);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 12px 24px rgba(14, 26, 43, 0.08);
}

.transfer-overview__kpi {
  display: block;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.transfer-overview__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.transfer-pill {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 26, 43, 0.2);
  background: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}

.transfer-overview__highlights ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.transfer-overview__highlights li {
  position: relative;
  max-width: 320px;
  padding-left: 1.5rem;
  color: #3d4a5f;
  font-size: 0.95rem;
}

.transfer-overview__highlights li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  top: -0.1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 4vw, 2rem);
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  background: var(--beige);
  border-radius: 16px;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-8px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Fleet Section */
.fleet {
  padding: 5rem 2rem;
  background: var(--section-base-bg);
}

.fleet-carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 4vw, 2rem);
  margin-top: 3rem;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .fleet-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .fleet-carousel {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.fleet-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  --fleet-accent: var(--gold);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.fleet-image {
  /* Prevent CLS by setting aspect ratio */
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 200px;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.92) 0%, rgba(10, 25, 47, 0.65) 100%);
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fleet-image svg {
  width: auto;
  height: auto;
  opacity: 0.3;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fleet-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--fleet-accent);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.fleet-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fleet-info h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.fleet-info .fleet-description {
  margin: 0;
  line-height: 1.6;
  color: #3d4a5f;
  font-size: 0.95rem;
  flex-grow: 1;
}

.fleet-info .price {
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(14, 26, 43, 0.1);
  border-bottom: 1px solid rgba(14, 26, 43, 0.1);
}

.fleet-title-link {
  color: inherit;
  text-decoration: none;
}

.fleet-title-link:hover {
  color: var(--gold);
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--fleet-accent);
}

.fleet-specs .spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fleet-accent);
}

.fleet-specs .spec-icon svg {
  width: auto;
  height: auto;
  display: block;
  fill: currentColor;
}

.fleet-specs .spec-label {
  display: inline-block;
}

.spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.spec svg {
  width: auto;
  height: auto;
  fill: var(--fleet-accent);
}

/* Routes Section */
.routes {
  padding: 5rem 2rem;
  background: var(--section-base-bg);
}

.routes-search {
  margin: 0.75rem auto 0;
  max-width: 420px;
}

.routes-search__input {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(6, 20, 45, 0.14);
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 35, 52, 0.08);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.routes-search__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(18, 35, 52, 0.12);
}

.routes-search__empty {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: rgba(6, 20, 45, 0.7);
  text-align: center;
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 4vw, 2rem);
  margin-top: 3rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .routes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.route-card {
  background: var(--beige);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: all 0.3s;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.route-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.route-directions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.route-direction {
  background: #fff;
  border: 1px solid rgba(6, 20, 45, 0.12);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 24px rgba(12, 28, 44, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.route-direction--return {
  background: rgba(14, 86, 102, 0.05);
  border-color: rgba(14, 86, 102, 0.18);
}

.route-direction__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(199, 146, 43, 0.16);
  color: var(--navy);
  font-weight: 600;
}

.route-direction--return .route-direction__badge {
  background: rgba(14, 86, 102, 0.14);
}

.route-direction__path {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

.route-direction__location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.route-direction .route-arrow {
  font-size: 1.05rem;
  color: rgba(199, 146, 43, 0.9);
}

.routes-load-more {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.route-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.route-card .route-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.route-card .duration {
  font-size: 0.9rem;
  color: #666;
}

.route-card .price {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.route-card .from {
  font-size: 0.75rem;
  color: #999;
}

.route-card .route-image {
  margin-bottom: 1.25rem;
  border-radius: 14px;
  overflow: hidden;
  background: #f4f4f4;
  aspect-ratio: 16 / 9;
  position: relative;
}

.route-card .route-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.route-title-link {
  color: inherit;
  text-decoration: none;
}

.route-title-link:hover {
  color: var(--gold);
}

.route-meta {
  margin: 0.5rem 0 0.4rem;
  font-weight: 600;
  color: rgba(14, 26, 43, 0.75);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.route-arrow {
  font-size: 1rem;
  color: var(--fleet-accent);
}

.route-summary {
  margin: 0 0 1rem;
  color: #555;
  line-height: 1.6;
}

.route-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.route-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(14, 26, 43, 0.04);
  border: 1px solid rgba(14, 26, 43, 0.08);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  min-width: 0;
  width: fit-content;
  max-width: 100%;
}

@media (max-width: 480px) {
  .route-chip {
    min-width: 0;
    width: 100%;
  }
}

.route-chip__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(14, 26, 43, 0.6);
}

.route-chip__value {
  font-weight: 600;
  color: var(--navy);
}

.driver-role {
  margin: 0.35rem 0 0.75rem;
  font-weight: 600;
  color: var(--fleet-accent);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.driver-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.driver-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(14, 26, 43, 0.05);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(14, 26, 43, 0.08);
}

.driver-chip__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(14, 26, 43, 0.6);
}

.driver-chip__value {
  font-weight: 600;
  color: var(--navy);
}

.driver-quote {
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--fleet-accent);
  font-style: italic;
  color: rgba(14, 26, 43, 0.75);
}

.driver-quote--single {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.driver-highlights {
  list-style: disc;
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
  color: rgba(14, 26, 43, 0.75);
}

/* Tours Section */
.archive-map {
    padding: 60px 0 30px;
    background-color: #f5f7f9;
}

.archive-map__header {
    max-width: 720px;
    margin: 0 auto 24px;
    text-align: center;
}

.archive-map__canvas {
    height: clamp(300px, 50vh, 520px);
    width: 100%;
    border-radius: 32px 32px 0 0;
    overflow: hidden;
    border: 1px solid rgba(10, 21, 41, 0.08);
    box-shadow: 0 15px 45px rgba(10, 21, 41, 0.12);
}

.tours-archive-popup {
    max-width: 320px;
}

.tours-archive-popup__media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
}

.tours-archive-popup__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tours-archive-popup__title {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.tours-archive-popup__meta {
    font-size: 0.9rem;
    margin: 0 0 4px;
}

.tours-archive-popup__summary {
    font-size: 0.92rem;
    margin-bottom: 12px;
}

.tours-archive-popup .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    padding: 10px 18px;
}
.tours {
  padding: 5rem 2rem;
  background: var(--section-base-bg);
  color: var(--navy);
}

.tours .section-title h2 {
  color: var(--navy);
}

.tours .section-title p {
  color: rgba(14, 26, 43, 0.7);
}

.tours-slider {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 4vw, 2rem);
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .tours-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tours-slider {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fleet-card--tour .tour-summary {
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.25rem;
}

.tour-gallery {
  padding: 3rem 0;
  background: rgba(14, 26, 43, 0.03);
}

.tour-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.tour-gallery__item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(14, 26, 43, 0.12);
}

.tour-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding-top: 1rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(14, 26, 43, 0.12);
}

.tour-meta__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tour-meta__label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14, 26, 43, 0.55);
}

.tour-meta__value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

/* Testimonials */
.testimonials {
  padding: 5rem 2rem;
  background: var(--section-base-bg);
}

/* Testimonials Tabs */
.testimonials-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0 1rem;
  padding: 0;
  list-style: none;
}

.testimonials-tab {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 2px solid rgba(14, 26, 43, 0.1);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.testimonials-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.testimonials-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 4vw, 2rem);
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stars {
  color: var(--gold);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.25rem;
}

.author-info h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.85rem;
  color: #999;
  margin: 0;
  font-style: normal;
}

.testimonial-card .testimonial-source {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.testimonial-card .stars span {
  display: inline-block;
  line-height: 1;
}

.testimonial-card .testimonial-source a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: var(--navy);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  color: var(--beige);
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background: var(--navy-light);
  color: var(--white);
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-content > * {
  text-align: center;
  width: 100%;
  max-width: 100%;
}
.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: flex-start;
  text-align: left;
}

.footer-about,
.footer-links,
.footer-social {
  text-align: left;
}

.footer-links__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-links__list li {
  margin: 0;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-social__link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.footer-social__link:hover {
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-1px);
}

.footer-social__link svg {
  width: 22px;
  height: 22px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-about,
  .footer-links,
  .footer-social {
    text-align: center;
  }
  .footer-social__icons {
    justify-content: center;
  }
  .footer-social__link {
    width: 36px;
    height: 36px;
  }
  .footer-social__link svg {
    width: 18px;
    height: 18px;
  }
}

/* Internal Links Section - Redesigned for SEO */
.internal-links-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 1rem;
  background: var(--navy-light);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.internal-links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.internal-links-list li {
  margin: 0;
}

.internal-links-list a {
  color: var(--beige);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  position: relative;
}

.internal-links-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.internal-links-list a:hover {
  color: var(--gold);
}

.internal-links-list a:hover::after {
  width: 100%;
}

/* Remove empty space below footer */
.site-footer + .internal-links-section {
  margin-top: 0;
}

/* Ensure no extra spacing after internal links */
.internal-links-section:last-child {
  padding-bottom: 2rem;
}

.footer-builder {
  grid-column: 1 / -1;
}

.footer-builder > *:first-child {
  margin-top: 0;
}

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--beige);
  margin-bottom: 1rem;
}

.footer-links h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links__list li {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--beige);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  color: var(--beige);
  font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: max(2rem, env(safe-area-inset-bottom));
  right: max(2rem, env(safe-area-inset-right));
  z-index: 999;
  display: flex;
  gap: 1rem;
}

.sticky-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.sticky-btn:hover {
  transform: scale(1.1);
}

.sticky-btn.whatsapp {
  background: #25D366;
}

.sticky-btn.phone {
  background: var(--gold);
}

.sticky-btn svg {
  width: auto;
  height: auto;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  display: none;
  font-weight: 600;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.success-message.show {
  display: block;
}

/* Main Content */
#page.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  /* Don't use max-width: 100vw - it includes scrollbar width and causes double scrollbar */
  /* overflow-x: hidden removed - was causing double scrollbar */
  position: relative;
}

.site-main {
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

body.admin-bar #page.site {
  margin-top: 32px;
  min-height: calc(100vh - 32px);
}

@media (max-width: 782px) {
  body.admin-bar #page.site {
    margin-top: 46px;
    min-height: calc(100vh - 46px);
  }
}

.main-navigation {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.main-navigation a:hover {
  color: var(--gold);
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.main-navigation a:hover::after {
  width: 100%;
}

/* Single Entry Layout */
.single-entry-hero {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 3rem;
}

.single-entry-hero--tour {
  background: linear-gradient(135deg, rgba(15, 46, 76, 0.95), rgba(15, 46, 76, 0.6));
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--beige);
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  color: var(--gold);
}

.single-entry-hero__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-end;
}

.single-entry-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  margin-top: 1rem;
}

.single-entry-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.single-entry-meta__item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  min-width: 160px;
}

.meta-label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.meta-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
}

.single-entry-hero__cta .btn {
  justify-content: center;
}

.single-entry-media {
  margin-top: -2rem;
  padding-bottom: 1rem;
}

.single-entry-media__wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.single-entry-media__wrapper img,
.single-entry-media__wrapper figure img {
  width: 100%;
  height: auto;
  display: block;
}

.single-entry-media__placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: rgba(255, 255, 255, 0.3);
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-entry-map {
  padding: 3rem 0;
  background: var(--beige);
}

.single-entry-map .map-heading {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--navy);
}

.map-canvas {
  width: 100%;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10, 32, 50, 0.12);
}

.single-entry-content {
  padding: 3rem 0 5rem;
  background: var(--white);
}

.single-entry-summary {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a4a4a;
}

.single-entry-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.single-entry-spec {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.single-entry--fleet .single-entry-spec {
  border-left: 4px solid var(--fleet-accent);
}

.single-entry--fleet .single-entry-spec__label {
  color: var(--navy);
  font-weight: 600;
}

.single-entry-spec__icon svg {
  width: auto;
  height: auto;
  display: block;
  fill: currentColor;
}
.single-entry-details {
  margin-bottom: 2rem;
}

.single-entry-details__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.single-entry-details__list li {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
}

.single-entry-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.single-entry-text p + p {
  margin-top: 1.25rem;
}

.single-entry-footer {
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .fleet-carousel,
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .routes-search {
    max-width: 100%;
  }

  .tours-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .single-entry-media {
    margin-top: -1rem;
  }
}

@media (max-width: 768px) {
  .fleet-carousel,
  .routes-grid,
  .tours-slider {
    grid-template-columns: 1fr;
  }

  .card-actions .btn {
    flex: 1 1 100%;
  }

  .single-entry-meta__item {
    min-width: 48%;
  }
}

/* Transfer Landing Pages */
.transfer-hero {
  position: relative;
  background: var(--section-base-bg);
  color: var(--navy);
  padding: 6rem 0;
  overflow: hidden;
}

.transfer-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 238, 230, 0.85));
  z-index: 0;
}

.transfer-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.transfer-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.transfer-hero__badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.15);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.transfer-hero__category {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: rgba(14, 26, 43, 0.6);
}

.transfer-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.transfer-hero__destination {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: rgba(14, 26, 43, 0.75);
}

.transfer-hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(14, 26, 43, 0.75);
  margin-bottom: 1.25rem;
}

.transfer-hero__intro {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(14, 26, 43, 0.7);
  margin-bottom: 2rem;
}

.transfer-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.transfer-hero__actions .btn {
  min-width: 160px;
}

.transfer-hero__actions .btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.transfer-hero__actions .btn-whatsapp:hover {
  background: #1fb357;
}

.transfer-usps {
  background: var(--section-base-bg);
  padding: 3.5rem 0;
}

.transfer-usps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.transfer-usps__item {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 24px rgba(15, 35, 52, 0.12);
}

.transfer-usps__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.transfer-content {
  padding: 4rem 0;
  background: var(--section-base-bg);
}

.transfer-content__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.transfer-article > *:first-child {
  margin-top: 0;
}

.transfer-article h2 {
  margin-top: 3rem;
}

.transfer-pricing {
  margin-top: 4rem;
}

.transfer-pricing__table {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.transfer-pricing__row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: 16px;
  background: var(--light-grey);
}

.transfer-pricing__route h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.transfer-pricing__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.transfer-pricing__meta span {
  font-weight: 600;
  margin-right: 0.35rem;
  color: var(--navy);
}

.transfer-pricing__price {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.transfer-pricing__amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}

.transfer-pricing__note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.transfer-faq {
  margin-top: 4rem;
}

.transfer-faq__accordion {
  margin-top: 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(8, 31, 49, 0.08);
}

.transfer-faq__item + .transfer-faq__item {
  border-top: 1px solid rgba(8, 31, 49, 0.08);
}

.transfer-faq__question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 1.5rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.transfer-faq__icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.transfer-faq__icon::before,
.transfer-faq__icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 999px;
}

.transfer-faq__icon::before {
  width: 18px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.transfer-faq__icon::after {
  width: 2px;
  height: 18px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
}

.transfer-faq__question[aria-expanded='true'] .transfer-faq__icon::after {
  opacity: 0;
}

.transfer-faq__answer {
  padding: 0 1.75rem 1.75rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.transfer-tips {
  margin-top: 4rem;
}

.transfer-tips__grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.transfer-tips__item {
  border-radius: 16px;
  padding: 1.75rem;
  background: var(--light-grey);
}

.transfer-tips__item h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.transfer-content__sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.transfer-sidebar__widget {
  border: 1px solid rgba(8, 31, 49, 0.08);
  border-radius: 18px;
  padding: 2rem;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(8, 31, 49, 0.06);
}

.transfer-sidebar__widget h2,
.transfer-sidebar__widget h3 {
  margin-top: 0;
}

.transfer-sidebar__widget p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

.transfer-sidebar__highlights {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.transfer-sidebar__highlights li + li {
  margin-top: 0.5rem;
}

.transfer-sidebar__nav ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.transfer-sidebar__nav a {
  color: var(--navy);
  text-decoration: none;
}

.transfer-sidebar__nav a:hover {
  color: var(--gold);
}

.transfer-related {
  background: var(--section-base-bg);
  padding: 4rem 0 5rem;
}

.transfer-related__header {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}

.transfer-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.related-card {
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(6, 24, 43, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.related-card__link {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--light-grey);
}

.related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--light-grey);
}

.related-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(14, 26, 43, 0.65);
  display: inline-block;
  margin-bottom: 0.35rem;
}

.related-card__title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--navy);
}

.related-card__meta-line {
  font-size: 0.95rem;
  color: rgba(14, 26, 43, 0.8);
  margin: 0 0 0.35rem;
}

.related-card__excerpt {
  color: rgba(14, 26, 43, 0.75);
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}

.related-card__description {
  margin: 0;
  line-height: 1.6;
  color: #3d4a5f;
  font-size: 0.95rem;
  flex-grow: 1;
}

.related-card__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.related-card__meta li + li {
  margin-top: 0.35rem;
}

.related-card__price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.25rem;
  margin: 0;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(14, 26, 43, 0.1);
  border-bottom: 1px solid rgba(14, 26, 43, 0.1);
}

.related-card__price-prefix {
  font-size: 0.9rem;
  font-weight: 500;
  margin-right: 0.25rem;
}

.related-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
}

.related-card__cta::after {
  content: '\2192';
  font-size: 0.85rem;
}

.team {
  background: var(--white);
  padding: 5rem 0 4.5rem;
}

.team .section-title {
  max-width: 740px;
  margin: 0 auto 3rem;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 4vw, 2rem);
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.team-card {
  background: var(--beige);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 36px rgba(10, 32, 50, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(10, 32, 50, 0.12);
}

.team-card__media {
  position: relative;
  width: 100%;
  background: var(--navy);
}

.team-card__image {
  display: block;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.services-hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(14, 26, 43, 0.95) 0%, rgba(17, 40, 68, 0.85) 100%);
  color: var(--white);
  text-align: center;
}

.services-hero__content {
  margin: 10px auto;
  text-align: center;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-hero__content > * {
  text-align: center;
  width: 100%;
  max-width: 720px;
}

.services-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.services-section {
  padding: 4rem 0;
}

.services-section--alt {
  background: var(--section-base-bg);
}

.services-section__header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.services-section__header p {
  margin-top: 0.85rem;
  color: rgba(14, 26, 43, 0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-section--fleet .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Specific styles for Fleet cards in services-grid - separate from route cards */
.services-grid .related-card--fleet .related-card__body {
  /* Fleet card body specific styles - can be customized independently */
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-grid .related-card--fleet .related-card__title {
  /* Fleet card title specific styles - can be customized independently */
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--navy);
}

.services-grid .related-card--fleet .related-card__description {
  /* Fleet card description specific styles - can be customized independently */
  margin: 0;
  line-height: 1.6;
  color: #3d4a5f;
  font-size: 0.95rem;
  flex-grow: 1;
}

.services-grid .related-card--fleet .related-card__price {
  /* Fleet card price specific styles - can be customized independently */
  font-weight: 700;
  color: var(--gold);
  font-size: 1.25rem;
  margin: 0;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(14, 26, 43, 0.1);
  border-bottom: 1px solid rgba(14, 26, 43, 0.1);
}

/* Specific styles for Route cards in services-grid - separate from fleet cards */
.services-grid .related-card--route .related-card__body {
  /* Route card body specific styles - can be customized independently */
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-grid .related-card--route .related-card__title {
  /* Route card title specific styles - can be customized independently */
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--navy);
}

.services-grid .related-card--route .related-card__description {
  /* Route card description specific styles - can be customized independently */
  margin: 0;
  line-height: 1.6;
  color: #3d4a5f;
  font-size: 0.95rem;
  flex-grow: 1;
}

.services-grid .related-card--route .related-card__price {
  /* Route card price specific styles - can be customized independently */
  font-weight: 700;
  color: var(--gold);
  font-size: 1.25rem;
  margin: 0;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(14, 26, 43, 0.1);
  border-bottom: 1px solid rgba(14, 26, 43, 0.1);
}

.services-section__cta {
  text-align: center;
  margin-top: 2rem;
}

.services-section__empty {
  text-align: center;
  color: rgba(14, 26, 43, 0.6);
  font-weight: 500;
}

.services-cta {
  padding: 4rem 0 5rem;
  background: var(--section-base-bg);
}

.services-cta__card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(14, 26, 43, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.services-cta__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: rgba(14, 26, 43, 0.7);
  margin-bottom: 0.35rem;
  display: inline-block;
}

.services-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.team-card__image--placeholder {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
}

.team-card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-card__name {
  font-size: 1.35rem;
  margin: 0;
}

.team-card__role {
  font-weight: 600;
  color: var(--gold);
  margin: 0;
}

.team-card__bio p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.team-card__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: var(--navy);
}

.team-card__label {
  font-weight: 600;
  margin-right: 0.35rem;
}

.team-card__highlights {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.team-card__highlights li::before {
  content: '•';
  margin-right: 0.35rem;
  color: var(--gold);
}

.team-card__quote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 0;
  font-style: italic;
  color: var(--navy-light);
}

.team-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.transfer-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.transfer-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.transfer-sticky-cta__content {
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: auto;
  box-shadow: 0 20px 40px rgba(10, 32, 50, 0.25);
}

.transfer-sticky-cta__text {
  display: flex;
  flex-direction: column;
}

.transfer-sticky-cta__title {
  font-weight: 700;
}

.transfer-sticky-cta__subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.transfer-sticky-cta__actions {
  display: flex;
  gap: 0.75rem;
}

.transfer-sticky-cta .btn {
  min-width: 0;
  width: 100%;
}

@media (min-width: 640px) {
  .transfer-sticky-cta .btn {
    min-width: 140px;
    width: auto;
  }
}

@media (max-width: 1024px) {
  .transfer-content__layout {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .transfer-sticky-cta__content {
    flex-direction: column;
    align-items: stretch;
  }

  .transfer-sticky-cta__actions {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .transfer-hero {
    padding: 4.5rem 0;
  }

  .transfer-pricing__row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .transfer-pricing__price {
    align-items: flex-start;
  }

  .transfer-sticky-cta {
    bottom: 1rem;
  }

  .team-card__content {
    padding: 1.75rem;
  }
}

/* Transfer Archive */
.archive-hero--transfers {
  background: linear-gradient(135deg, rgba(6, 24, 43, 0.96), rgba(12, 48, 70, 0.85));
  color: var(--white);
  padding: 5rem 0 4rem;
}

.archive-hero--transfers .archive-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}

.archive-hero--transfers .archive-hero__intro {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-hero .archive-hero--transfers .archive-hero__intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.archive-content--transfers {
  background: var(--beige);
  padding: 4rem 0 5rem;
}

.archive-grid--transfers {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 4vw, 2rem);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .archive-grid--transfers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .archive-grid--transfers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.transfer-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(6, 24, 43, 0.12);
  display: flex;
  flex-direction: column;
}

.transfer-card__link {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) 3fr;
  text-decoration: none;
  color: inherit;
}

.transfer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transfer-card__placeholder {
  background: var(--light-grey);
  min-height: 220px;
}

.transfer-card__body {
  padding: 2.5rem;
}

.transfer-card__category {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(14, 48, 71, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.05em;
}

.transfer-card__title {
  margin: 1.2rem 0 0.5rem;
  font-size: 2rem;
}

.transfer-card__destination {
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.transfer-card__excerpt {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.transfer-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-weight: 600;
  color: var(--gold);
}

.transfer-card__cta::after {
  content: '\2192';
  font-size: 0.9rem;
}

.transfer-card__actions {
  display: flex;
  gap: 1rem;
  padding: 1.75rem;
  border-top: 1px solid rgba(8, 31, 49, 0.08);
}

@media (max-width: 900px) {
  .transfer-card__link {
    grid-template-columns: 1fr;
  }

  .transfer-card__body {
    padding: 2rem;
  }

  .transfer-card__actions {
    flex-direction: column;
  }

  .transfer-card__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn-whatsapp .icon-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  margin-right: 0.45rem;
  position: relative;
}

.btn-whatsapp .icon-whatsapp::before {
  content: 'WA';
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Services Layout */
.service-entry {
  --service-accent: var(--gold);
  background: #ffffff;
  color: #0a1f33;
}

.service-entry > .service-booking,
.service-entry > .service-related,
.service-entry > .service-body,
.service-entry > .service-map,
.service-entry > .service-highlights,
.service-entry > .service-summary,
.service-entry > .service-gallery {
  width: 100%;
}

.service-hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  background: #f4f7fb;
  overflow: hidden;
}

.service-entry--transfer .service-hero {
  background: linear-gradient(140deg, rgba(7, 21, 38, 0.95), rgba(12, 54, 84, 0.85));
  color: #ffffff;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(7, 21, 38, 0.9), rgba(12, 54, 84, 0.65));
  pointer-events: none;
}

.service-entry--transfer .service-hero__overlay {
  display: block;
}

.service-hero__overlay + .container {
  position: relative;
}

.service-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 3.5rem;
  align-items: center;
}

.service-entry--transfer .service-hero__inner {
  grid-template-columns: minmax(0, 1fr);
}

.service-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: rgba(10, 31, 51, 0.6);
  text-decoration: none;
  margin-bottom: 2rem;
}

.service-entry--transfer .service-hero__back {
  color: rgba(255, 255, 255, 0.7);
}

.service-hero__back:hover {
  color: var(--service-accent, #b58d48);
}

.service-hero__back-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.service-hero__badge {
  align-self: flex-start;
  background: rgba(181, 141, 72, 0.12);
  color: var(--service-accent, #b58d48);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.service-entry--transfer .service-hero__badge {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.service-hero__category {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: rgba(10, 31, 51, 0.5);
}

.service-entry--transfer .service-hero__category {
  color: rgba(255, 255, 255, 0.65);
}

.service-hero__title {
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin: 0;
}

.service-hero__destination {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--service-accent, #b58d48);
}

.service-entry--transfer .service-hero__destination {
  color: rgba(255, 255, 255, 0.78);
}

.service-hero__subtitle,
.service-hero__intro {
  font-size: 1.05rem;
  color: rgba(10, 31, 51, 0.72);
  line-height: 1.7;
  max-width: 620px;
  margin: 0;
}

.service-entry--transfer .service-hero__subtitle,
.service-entry--transfer .service-hero__intro {
  color: rgba(255, 255, 255, 0.75);
}

.service-hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.service-hero__meta-item {
  background: rgba(10, 31, 51, 0.06);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
}

.service-entry--transfer .service-hero__meta-item {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.service-hero__meta-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: rgba(10, 31, 51, 0.55);
}

.service-entry--transfer .service-hero__meta-label {
  color: rgba(255, 255, 255, 0.7);
}

.service-hero__meta-value {
  font-size: 1.2rem;
  font-weight: 600;
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-hero__figure {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(7, 21, 38, 0.18);
  background: #ffffff;
}

.service-hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-summary {
  padding: 3rem 0 2rem;
}

.service-summary__text {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 760px;
  color: rgba(10, 31, 51, 0.75);
}

.service-highlights {
  background: linear-gradient(135deg, rgba(12, 48, 74, 0.08), rgba(12, 48, 74, 0.02));
  padding: 3.5rem 0;
}

.service-highlights__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-highlights__item {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 18px 36px rgba(7, 21, 38, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-highlights__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(12, 48, 74, 0.08);
  color: var(--service-accent, #b58d48);
}

.service-entry--transfer .service-highlights__icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.service-highlights__title {
  font-size: 1.15rem;
  margin: 0;
}

.service-highlights__description {
  margin: 0;
  color: rgba(10, 31, 51, 0.7);
  line-height: 1.6;
}

.service-gallery {
  padding: 3.5rem 0;
}

.service-gallery__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-gallery__item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 36px rgba(7, 21, 38, 0.1);
}

.service-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-map {
  padding: 3.5rem 0;
}

.service-map__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.service-map__canvas {
  width: 100%;
  height: clamp(280px, 40vh, 500px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(7, 21, 38, 0.08);
}

.route-marker-tooltip {
  background: rgba(15, 93, 143, 0.92);
  color: #fff;
  border-radius: 6px;
  font-size: 0.85rem;
  padding: 0.35rem 0.65rem;
  box-shadow: 0 6px 16px rgba(12, 35, 52, 0.25);
}

.route-marker-tooltip::before {
  border-top-color: rgba(15, 93, 143, 0.92);
}

.service-body {
  padding: 4rem 0;
}

.service-body__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3.5rem;
}

.service-body__layout--with-sidebar {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: start;
}

.service-body__layout--route-with-map {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  align-items: start;
  gap: 3.5rem;
}

.service-body__main--route-left {
  display: grid;
  gap: 2.75rem;
}

.service-body__map-column {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.service-map--inline {
  padding: 0;
}

.service-map--inline .service-map__header {
  margin-bottom: 1.5rem;
}

.service-map--inline .service-map__canvas {
  height: clamp(320px, 45vh, 600px);
}

.service-body__main {
  display: grid;
  gap: 2.75rem;
}

.service-section {
  margin-bottom: 3rem;
}

.service-section__heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.service-section__list li {
  background: rgba(10, 31, 51, 0.05);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  position: relative;
  overflow: hidden;
}

.service-section__list strong {
  color: rgba(10, 31, 51, 0.65);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-section__list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--service-accent, #b58d48);
  position: relative;
  top: 0.45rem;
}

.service-section__list span {
  color: rgba(10, 31, 51, 0.78);
}

.service-article {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.75rem 3rem;
  box-shadow: 0 22px 44px rgba(7, 21, 38, 0.1);
}

.service-article__content > *:first-child {
  margin-top: 0;
}

.service-article__content h2,
.service-article__content h3,
.service-article__content h4 {
  margin-top: 2.25rem;
}

.service-article__content h2:first-child,
.service-article__content h3:first-child,
.service-article__content h4:first-child {
  margin-top: 0;
}

.service-article__content {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(10, 31, 51, 0.85);
}

.service-article__content p {
  color: rgba(10, 31, 51, 0.82);
  margin-bottom: 1.5rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.service-article__content p:last-child {
  margin-bottom: 0;
}

.service-article__content h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: rgba(10, 31, 51, 0.95);
  letter-spacing: -0.01em;
}

.service-article__content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: rgba(10, 31, 51, 0.92);
  letter-spacing: -0.005em;
}

.service-article__content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.45;
  margin-top: 1.75rem;
  margin-bottom: 0.875rem;
  color: rgba(10, 31, 51, 0.9);
}

.service-article__content h2:first-child,
.service-article__content h3:first-child,
.service-article__content h4:first-child {
  margin-top: 0;
}

.service-article__content ul,
.service-article__content ol {
  margin: 1.5rem 0;
  padding-left: 1.75rem;
  line-height: 1.85;
}

.service-article__content ul {
  list-style: none;
  padding-left: 0;
}

.service-article__content ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.875rem;
  color: rgba(10, 31, 51, 0.82);
  line-height: 1.85;
}

.service-article__content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--service-accent, #b58d48);
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.4;
}

.service-article__content ol li {
  margin-bottom: 0.875rem;
  color: rgba(10, 31, 51, 0.82);
  line-height: 1.85;
  padding-left: 0.5rem;
}

.service-article__content a {
  color: var(--service-accent, #b58d48);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.service-article__content a:hover {
  color: var(--service-accent, #b58d48);
  border-bottom-color: var(--service-accent, #b58d48);
}

.service-article__content strong {
  font-weight: 600;
  color: rgba(10, 31, 51, 0.9);
}

.service-article__content em {
  font-style: italic;
  color: rgba(10, 31, 51, 0.8);
}

.service-article__content blockquote {
  margin: 2.25rem 0;
  padding: 1.75rem 2.25rem;
  border-left: 4px solid var(--service-accent, #b58d48);
  background: linear-gradient(to right, rgba(10, 31, 51, 0.04), rgba(10, 31, 51, 0.02));
  font-style: italic;
  border-radius: 0 12px 12px 0;
  color: rgba(10, 31, 51, 0.8);
  line-height: 1.8;
  position: relative;
}

.service-article__content blockquote::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 3rem;
  line-height: 1;
  color: var(--service-accent, #b58d48);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.service-article__content blockquote p {
  margin-bottom: 0.75rem;
}

.service-article__content blockquote p:last-child {
  margin-bottom: 0;
}

.service-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 8px 24px rgba(7, 21, 38, 0.1);
}

.service-article__content hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(10, 31, 51, 0.15), transparent);
  margin: 2.5rem 0;
}

.service-richtext > *:first-child {
  margin-top: 0;
}

.route-details-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 3rem;
  box-shadow: 0 22px 44px rgba(7, 21, 38, 0.1);
  border: 1px solid rgba(10, 31, 51, 0.05);
}

.route-details-section h2 {
  margin: 0 0 1.5rem;
}

.route-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.route-detail-item {
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(10, 31, 51, 0.08);
  background: rgba(10, 31, 51, 0.02);
  box-shadow: 0 12px 26px rgba(7, 21, 38, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.route-detail-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10, 31, 51, 0.65);
  font-weight: 600;
}

.route-detail-value {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

@media (max-width: 640px) {
  .route-details-section {
    padding: 2rem;
  }

  .route-detail-value {
    font-size: 1.45rem;
  }
}

.route-pricing-table-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.75rem 3rem;
  box-shadow: 0 22px 44px rgba(7, 21, 38, 0.1);
}

.route-pricing-table-section__content > *:first-child {
  margin-top: 0;
}

.route-pricing-table-section__content h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.route-pricing-table-section__content p {
  color: rgba(10, 31, 51, 0.78);
  margin-bottom: 1.5rem;
}

.route-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.route-pricing-table thead {
  background: rgba(10, 31, 51, 0.04);
}

.route-pricing-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: rgba(10, 31, 51, 0.85);
  border-bottom: 2px solid rgba(10, 31, 51, 0.08);
}

.route-pricing-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(10, 31, 51, 0.06);
  color: rgba(10, 31, 51, 0.78);
}

.route-pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.route-pricing-table tbody tr:hover {
  background: rgba(10, 31, 51, 0.02);
}

.service-pricing {
  margin-top: 4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 31, 51, 0.08);
}

.service-pricing__heading {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.service-pricing__table {
  display: grid;
  gap: 1.5rem;
}

.service-pricing__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 260px);
  gap: 1.5rem;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 18px 32px rgba(7, 21, 38, 0.08);
}

.service-pricing__details h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.service-pricing__details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: rgba(10, 31, 51, 0.7);
}

.service-pricing__details span {
  font-weight: 600;
  margin-right: 0.4rem;
}

.service-pricing__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.service-pricing__amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--service-accent, #b58d48);
}

.service-pricing__note {
  margin-top: 1.5rem;
  color: rgba(10, 31, 51, 0.6);
  font-size: 0.95rem;
}

.service-faq {
  margin-top: 4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 31, 51, 0.08);
}

.service-faq__heading {
  font-size: 2.1rem;
  margin-bottom: 1.5rem;
}

.service-faq__accordion {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(7, 21, 38, 0.08);
}

.service-faq__item + .service-faq__item {
  border-top: 1px solid rgba(10, 31, 51, 0.08);
}

.service-faq__question {
  width: 100%;
  background: #ffffff;
  padding: 1.4rem 1.8rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  cursor: pointer;
}

.service-faq__question:focus-visible {
  outline: 2px solid var(--service-accent, #b58d48);
  outline-offset: 2px;
}

.service-faq__icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(10, 31, 51, 0.08);
  position: relative;
  flex-shrink: 0;
}

.service-faq__icon::before,
.service-faq__icon::after {
  content: '';
  position: absolute;
  background: rgba(10, 31, 51, 0.7);
  inset: 50% 28%;
  transform: translate(-50%, -50%);
}

.service-faq__icon::after {
  width: 60%;
  height: 2px;
}

.service-faq__icon::before {
  width: 2px;
  height: 60%;
}

.service-faq__question[aria-expanded='true'] .service-faq__icon::before {
  display: none;
}

.service-faq__answer {
  background: rgba(10, 31, 51, 0.03);
  padding: 1.4rem 1.8rem 2rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(10, 31, 51, 0.72);
}

.service-entry--route .service-faq {
  position: relative;
  margin-top: 4.5rem;
  padding: 3rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 10%, rgba(15, 93, 143, 0.12), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(181, 141, 72, 0.15), transparent 40%),
    linear-gradient(135deg, rgba(10, 31, 51, 0.02), rgba(10, 31, 51, 0.05));
  border: 1px solid rgba(10, 31, 51, 0.08);
  box-shadow: 0 28px 60px rgba(7, 21, 38, 0.14);
  overflow: hidden;
}

.service-entry--route .service-faq::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 80%, rgba(15, 93, 143, 0.08), transparent 45%);
  pointer-events: none;
}

.service-entry--route .service-faq__heading {
  position: relative;
  margin: 0 0 2rem;
  font-size: 2.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 20px rgba(7, 21, 38, 0.08);
}

.service-entry--route .service-faq__heading::before {
  content: 'FAQs';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  background: rgba(15, 93, 143, 0.15);
  color: #0f5d8f;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.service-entry--route .service-faq__accordion {
  position: relative;
  z-index: 1;
  counter-reset: faq-counter;
  display: grid;
  gap: 1.1rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.service-entry--route .service-faq__item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 31, 51, 0.08);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 40px rgba(7, 21, 38, 0.12);
}

.service-entry--route .service-faq__item + .service-faq__item {
  border-top: none;
}

.service-entry--route .service-faq__question {
  counter-increment: faq-counter;
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.35rem 1.6rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  color: rgba(10, 31, 51, 0.92);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.service-entry--route .service-faq__question::before {
  content: '#' counter(faq-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 10px;
  background: rgba(15, 93, 143, 0.12);
  color: #0f5d8f;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.service-entry--route .service-faq__question:hover {
  background: linear-gradient(90deg, rgba(15, 93, 143, 0.05), rgba(15, 93, 143, 0));
  color: #0f5d8f;
  transform: translateY(-1px);
}

.service-entry--route .service-faq__question:focus-visible {
  outline: 2px solid var(--service-accent, #0f5d8f);
  outline-offset: 2px;
}

.service-entry--route .service-faq__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 93, 143, 0.16), rgba(181, 141, 72, 0.14));
  border: 1px solid rgba(10, 31, 51, 0.08);
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: background 0.18s ease, transform 0.18s ease;
}

.service-entry--route .service-faq__icon::after,
.service-entry--route .service-faq__icon::before {
  content: '';
  position: absolute;
  background: rgba(10, 31, 51, 0.8);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.18s ease, transform 0.18s ease;
}

.service-entry--route .service-faq__icon::after {
  width: 60%;
  height: 2px;
}

.service-entry--route .service-faq__icon::before {
  width: 2px;
  height: 60%;
}

.service-entry--route .service-faq__question[aria-expanded='true'] .service-faq__icon {
  background: #0f5d8f;
  transform: rotate(180deg);
  box-shadow: none;
}

.service-entry--route .service-faq__question[aria-expanded='true'] .service-faq__icon::before {
  transform: translate(-50%, -50%) scale(0);
}

.service-entry--route .service-faq__question[aria-expanded='true'] .service-faq__icon::after {
  background: #ffffff;
  width: 60%;
}

.service-entry--route .service-faq__answer {
  background: linear-gradient(180deg, rgba(15, 93, 143, 0.04), rgba(15, 93, 143, 0));
  border-top: 1px dashed rgba(10, 31, 51, 0.08);
  padding: 0 1.6rem 1.6rem 1.6rem;
}

.service-entry--route .service-faq__answer:not([hidden]) {
  animation: faqFadeIn 0.22s ease;
}

.service-entry--route .service-faq__answer p:last-child {
  margin-bottom: 0;
}

.service-entry--route .service-faq__question span:first-child {
  flex: 1;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .service-entry--route .service-faq {
    padding: 2rem;
    border-radius: 22px;
  }

  .service-entry--route .service-faq__question {
    grid-template-columns: 1fr auto;
    padding: 1.2rem 1.35rem;
  }

  .service-entry--route .service-faq__question::before {
    display: none;
  }
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-tips {
  margin-top: 4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 31, 51, 0.08);
}

.service-tips__heading {
  font-size: 2.1rem;
  margin-bottom: 1.5rem;
}

.service-tips__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-tips__item {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 16px 28px rgba(7, 21, 38, 0.07);
}

.service-sidebar {
  background: #ffffff;
  border-radius: 22px;
  padding: 2.25rem;
  box-shadow: 0 22px 44px rgba(7, 21, 38, 0.12);
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-sidebar__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-sidebar__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: rgba(10, 31, 51, 0.7);
}

.service-sidebar__nav h3 {
  margin: 1rem 0 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(10, 31, 51, 0.7);
}

.service-sidebar__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.service-booking {
  background: linear-gradient(135deg, rgba(12, 48, 74, 0.07), rgba(12, 48, 74, 0.02));
  padding: 4.5rem 0;
}

.service-booking__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.service-booking__info {
  background: linear-gradient(135deg, rgba(7, 21, 38, 0.96), rgba(12, 54, 84, 0.85));
  color: #ffffff;
  border-radius: 26px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  box-shadow: 0 24px 48px rgba(6, 24, 43, 0.35);
}

.service-booking__badge {
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.service-booking__heading {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0;
}

.service-booking__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.service-booking__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.service-booking__benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.service-booking__benefits li::before {
  content: '';
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--service-accent, #b58d48);
  flex-shrink: 0;
}

.service-booking__support {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.service-booking__support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-booking__support-link:hover {
  background: #ffffff;
  color: #0a1f33;
}

.service-booking__form {
  height: 100%;
}

.service-booking__form .booking-form {
  height: 100%;
  margin: 0;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  box-shadow: 0 24px 48px rgba(7, 21, 38, 0.18);
}

.service-booking__form .booking-form__intro {
  margin: 0;
}

.service-booking__form .form-grid {
  margin-top: 0;
  display: grid;
  gap: 1rem 1.25rem;
}

.service-booking__form .form-grid .form-group {
  margin: 0;
}

.service-booking__form .form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.service-related {
  padding: 4rem 0 5rem;
}

.service-related__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.service-related__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
  transform: translateY(100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 90;
  background: rgba(7, 21, 38, 0.96);
  color: #ffffff;
  padding-top: 1rem;
}

.service-sticky-cta.is-visible {
  transform: translateY(0);
  box-shadow: 0 -20px 40px rgba(7, 21, 38, 0.25);
}

.service-sticky-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.service-sticky-cta__text {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-sticky-cta__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.service-sticky-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-sticky-cta .btn {
  min-width: 0;
  width: 100%;
}

@media (min-width: 640px) {
  .service-sticky-cta .btn {
    min-width: 140px;
    width: auto;
  }
}


/* Contact Page */
.contact-page__hero {
  min-height: 560px;
  padding: 140px 0 100px;
}

.contact-page__hero .hero-content {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-page__hero-text {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.contact-page__hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--beige);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-page__hero-text h1 {
  font-size: clamp(2.8rem, 4vw, 3.75rem);
  color: var(--white);
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.contact-page__hero-text .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-page__hero-cta .btn {
  min-width: 0;
  width: 100%;
  font-size: 1rem;
  padding: 0.95rem 2.25rem;
}

@media (min-width: 640px) {
  .contact-page__hero-cta .btn {
    min-width: 200px;
    width: auto;
  }
}

.contact-page__hero-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.contact-page__hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--beige);
  font-size: 0.95rem;
  margin-top: 2.5rem;
}

.contact-page__hero-badge::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.25);
}

.contact-page__cards {
  padding: 90px 0;
  background: var(--beige);
}

.contact-page__section-title {
  text-align: center;
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.contact-page__section-description {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: rgba(14, 26, 43, 0.7);
  font-size: 1.125rem;
}

.contact-page__cards-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-page__card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 24px 60px rgba(14, 26, 43, 0.08);
  border: 1px solid rgba(14, 26, 43, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.contact-page__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-page__card-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
}

.contact-page__card h3 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--navy);
}

.contact-page__card-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-page__card-value a {
  color: inherit;
  text-decoration: none;
}

.contact-page__card-value a:hover {
  color: var(--gold);
}

.contact-page__card p {
  margin: 0;
  color: rgba(14, 26, 43, 0.75);
  line-height: 1.6;
}

.contact-page__form {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-page__form::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.2), transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

.contact-page__form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-page__form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-page__form-intro h2 {
  color: var(--white);
  font-size: clamp(2.3rem, 3vw, 3rem);
  margin-bottom: 1.5rem;
}

.contact-page__form-intro p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-page__feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-page__feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.contact-page__feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-page__form-box {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.contact-page__form-box .booking-form {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.contact-page__form-box .booking-form h3 {
  color: var(--navy);
}

.contact-page__presence {
  padding: 90px 0 110px;
  background: linear-gradient(160deg, rgba(247, 243, 238, 0.65) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.contact-page__presence-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-page__presence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-page__presence h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--navy);
}

.contact-page__presence p {
  color: rgba(14, 26, 43, 0.7);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-page__hours-list {
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.contact-page__hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed rgba(14, 26, 43, 0.15);
  padding-bottom: 0.75rem;
}

.contact-page__hours-day {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
}

.contact-page__hours-time {
  color: rgba(14, 26, 43, 0.65);
  font-size: 1rem;
}

.contact-page__map-frame {
  margin-top: 2.5rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(14, 26, 43, 0.12);
  border: 1px solid rgba(14, 26, 43, 0.08);
}

.contact-page__map-frame iframe {
  width: 100%;
  min-height: clamp(280px, 40vh, 340px);
  display: block;
  border: 0;
}

.contact-page__map-placeholder {
  background: var(--white);
  padding: 3rem;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.15rem;
}

.contact-page__map-cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-page__additional-content {
  padding: 80px 0 120px;
  background: var(--white);
}

.contact-page__content {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(14, 26, 43, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-page__content h2,
.contact-page__content h3,
.contact-page__content h4 {
  color: var(--navy);
  margin-top: 2.5rem;
}

.contact-page__content p + p {
  margin-top: 1.25rem;
}

/* FAQ Section */
.contact-page__faq {
  padding: 80px 0;
  background: var(--beige);
}

.contact-page__faq .container {
  max-width: 1000px;
}

.contact-page__faq .contact-page__section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-page__faq .contact-page__section-description {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-page__faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-page__faq-item {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(14, 26, 43, 0.08);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.contact-page__faq-item:hover {
  box-shadow: 0 4px 16px rgba(14, 26, 43, 0.12);
}

.contact-page__faq-item.is-open {
  box-shadow: 0 4px 16px rgba(14, 26, 43, 0.15);
}

.contact-page__faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.contact-page__faq-question:hover {
  color: var(--gold);
}

.contact-page__faq-question span {
  flex: 1;
}

.contact-page__faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.contact-page__faq-item.is-open .contact-page__faq-icon {
  transform: rotate(180deg);
}

.contact-page__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.contact-page__faq-item.is-open .contact-page__faq-answer {
  max-height: 1000px;
  padding: 0 2rem 2rem 2rem;
}

.contact-page__faq-answer-content {
  color: rgba(14, 26, 43, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-page__faq-answer-content p {
  margin: 0;
}

.contact-page__faq-answer-content p + p {
  margin-top: 1rem;
}

/* Services Slider */
.services-slider-wrapper {
  position: relative;
  margin-top: 3rem;
}

.services-slider {
  overflow: hidden;
  position: relative;
}

.services-slider__track {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

.services-slider__track .related-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  min-width: 0;
}

.services-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services-slider__btn:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.services-slider__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.services-slider__btn--prev {
  left: -24px;
}

.services-slider__btn--next {
  right: -24px;
}

.services-slider__btn svg {
  width: auto;
  height: auto;
}

@media (max-width: 1024px) {
  .services-slider__track .related-card {
    flex: 0 0 calc(50% - 1rem);
  }
  
  .services-slider__btn--prev {
    left: -16px;
  }
  
  .services-slider__btn--next {
    right: -16px;
  }
}

@media (max-width: 768px) {
  .services-slider__track .related-card {
    flex: 0 0 100%;
  }
  
  .services-slider__btn {
    width: 40px;
    height: 40px;
  }
  
  .services-slider__btn--prev {
    left: -12px;
  }
  
  .services-slider__btn--next {
    right: -12px;
  }
}

/* Form Messages - Inline Error/Success */
.form-message {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.form-message.show {
  opacity: 1;
  max-height: 200px;
}

.form-message--error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
}

.form-message--success {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}
