/* ══════════════════════════════════════════════════════════════
   STYLE — Core Layouts, Grids & Utilities
   ══════════════════════════════════════════════════════════════ */

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--wide {
  max-width: var(--container-wide);
}

/* ── Sections ───────────────────────────────────────────────── */
.section {
  padding: var(--space-4xl) 0;
}

.section--sm {
  padding: var(--space-2xl) 0;
}

.section--ivory {
  background-color: var(--ivory);
}

.section--grey {
  background-color: var(--soft-grey);
}

.section--navy {
  background-color: var(--navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.section--navy p {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Section Headers ────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: var(--fs-3xl);
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: var(--fs-md);
  color: var(--muted-text);
  line-height: 1.7;
}

.section--navy .section-title { color: var(--white); }
.section--navy .section-desc { color: rgba(255,255,255,0.75); }

/* ── Grid System ────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

.grid--auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ── Flex Utilities ─────────────────────────────────────────── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ── Text Utilities ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-navy { color: var(--navy); }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted-text); }
.text-white { color: var(--white); }

/* ── Spacing Utilities ──────────────────────────────────────── */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

/* ── Top Bar ────────────────────────────────────────────────── */
.topbar {
  background-color: var(--navy-dark);
  color: var(--white);
  font-size: var(--fs-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.topbar-item a {
  color: var(--white);
  transition: color var(--duration-fast);
}

.topbar-item a:hover {
  color: var(--gold);
}

.topbar-item i {
  color: var(--teal);
  font-size: var(--fs-xs);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.topbar-social {
  display: flex;
  gap: var(--space-sm);
}

.topbar-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-sm);
  transition: color var(--duration-fast);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar-social a:hover {
  color: var(--gold);
}

/* ── Main Navigation ────────────────────────────────────────── */
.navbar {
  background-color: var(--white);
  height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 18px;
}

.logo-icon {
  width: auto;
  height: 38px !important;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.2px;
  white-space: nowrap;
  display: block;
}

.logo-tagline {
  font-size: 0.68rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 0;
  margin-right: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--duration-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--teal);
  background-color: var(--teal-light);
}

.nav-link i.fa-chevron-down {
  font-size: 10px;
  transition: transform var(--duration-fast);
}

.nav-item:hover .nav-link i.fa-chevron-down,
.nav-item.open .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--duration-normal) var(--ease-out);
  z-index: 100;
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--charcoal);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast);
}

.dropdown-link:hover {
  background-color: var(--teal-light);
  color: var(--teal);
}

/* Nav CTA (Book Your Taxi) */
.nav-cta {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-cta-btn {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35) !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.nav-cta-btn:hover {
  background: linear-gradient(135deg, #0369a1 0%, #1e40af 100%) !important;
  transform: translateY(-1px) scale(1.03) !important;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.5) !important;
  color: #ffffff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

.hamburger span + span {
  margin-top: 5px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--duration-normal);
}

.nav-backdrop.active {
  display: block;
  opacity: 1;
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
}

.hero .swiper {
  width: 100%;
  height: 85vh;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 29, 40, 0.75) 0%,
    rgba(8, 43, 58, 0.55) 50%,
    rgba(4, 29, 40, 0.7) 100%
  );
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  padding: 0 var(--space-lg);
}

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: var(--fs-5xl);
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.hero-desc {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.hero .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

.hero .swiper-button-next,
.hero .swiper-button-prev {
  color: var(--white);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: background var(--duration-fast);
}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero .swiper-button-next::after,
.hero .swiper-button-prev::after {
  font-size: 18px;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* ── Booking Form ───────────────────────────────────────────── */
.booking-bar {
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-xl) var(--space-2xl);
}

.booking-tabs {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  border-bottom: 2px solid var(--border);
  padding-bottom: var(--space-sm);
}

.booking-tab {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--muted-text);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  cursor: pointer;
  transition: all var(--duration-fast);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.booking-tab.active,
.booking-tab:hover {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.booking-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.booking-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.booking-note {
  font-size: var(--fs-xs);
  color: var(--muted-text);
  margin-top: var(--space-md);
  font-style: italic;
}

/* ── Trust Strip ────────────────────────────────────────────── */
.trust-strip {
  background: var(--ivory);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.trust-item i {
  font-size: var(--fs-2xl);
  color: var(--teal);
}

.trust-item span {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--navy);
}

/* ── About Home Section ─────────────────────────────────────── */
.about-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-home__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-home__img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  border-radius: var(--radius-xl);
  display: block;
}

.about-home__accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--teal-light);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-home__content {
  display: flex;
  flex-direction: column;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.about-feature i {
  color: var(--teal);
  margin-top: 3px;
  flex-shrink: 0;
}

.about-feature span {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--charcoal);
}

/* ── WHY CHOOSE US SECTION — LUXURY CARDS ────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  position: relative;
  text-align: left;
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(234, 179, 8, 0.4);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(234, 179, 8, 0.15);
}

.why-card__img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.why-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-card:hover .why-card__img-wrap img {
  transform: scale(1.08);
}

.why-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.why-card__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.why-card__icon {
  position: absolute;
  bottom: -24px;
  left: 20px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 3;
}

.why-card__icon i {
  font-size: 1.25rem;
  color: #ffffff;
}

.why-card__content {
  padding: 34px 22px 20px 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.why-card h4 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.why-card p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 16px;
}

.why-card__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-card__highlights li {
  font-size: 0.82rem;
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.why-card__highlights li i {
  color: #10b981;
  font-size: 0.78rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.why-card__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #94a3b8;
}

.why-card__footer span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.why-card__link {
  color: #fbbf24;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.why-card__link:hover {
  color: #f59e0b;
  transform: translateX(4px);
}

/* Light theme fallback for why-card when inside light sections */
.section:not(.section--navy) .why-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.section:not(.section--navy) .why-card h4 {
  color: var(--navy);
}

.section:not(.section--navy) .why-card p {
  color: var(--text-muted);
}

.section:not(.section--navy) .why-card__highlights li {
  color: var(--text);
}

.section:not(.section--navy) .why-card__footer {
  border-top-color: var(--border);
  color: var(--text-muted);
}

/* ── Routes Section ─────────────────────────────────────────── */
.route-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--duration-normal) var(--ease-out);
}

.route-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.route-card__info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.route-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.route-card__icon i { color: var(--teal); }

.route-card__name {
  font-weight: var(--fw-semibold);
  color: var(--navy);
  font-size: var(--fs-base);
}

.route-card__meta {
  font-size: var(--fs-xs);
  color: var(--muted-text);
  margin-top: 2px;
}

.route-card__actions {
  display: flex;
  gap: var(--space-sm);
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-card__stars i {
  color: var(--gold);
  font-size: var(--fs-sm);
}

.testimonial-card__body {
  font-size: var(--fs-base);
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  color: var(--teal);
  font-size: var(--fs-md);
}

.testimonial-card__name {
  font-weight: var(--fw-semibold);
  color: var(--navy);
  font-size: var(--fs-sm);
}

.testimonial-card__service {
  font-size: var(--fs-xs);
  color: var(--muted-text);
}

.testimonial-card__badge {
  font-size: var(--fs-xs);
  color: var(--muted-text);
  font-style: italic;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: border-color var(--duration-fast);
}

.faq-item.active {
  border-color: var(--teal);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background var(--duration-fast);
}

.faq-question:hover {
  background: var(--soft-grey);
}

.faq-question i {
  font-size: var(--fs-sm);
  color: var(--teal);
  transition: transform var(--duration-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.faq-answer__inner {
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-lg);
}

.footer-col p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-sm);
  transition: color var(--duration-fast);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--fs-sm);
}

.footer-contact-item i {
  color: var(--teal);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--duration-fast);
}

.footer-social a:hover {
  background: var(--teal);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg) 0;
  margin-top: var(--space-3xl);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* ── Back to Top ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--teal);
}

/* ── Floating Calling Button (Positioned HIGH ABOVE WhatsApp Float) ── */
.phone-float {
  position: fixed;
  bottom: 140px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.45);
  z-index: 998;
  transition: all var(--duration-fast);
  text-decoration: none;
  animation: phonePulse 2.5s infinite;
}

.phone-float:hover {
  background: linear-gradient(135deg, #0369a1 0%, #1e40af 100%);
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.6);
}

@keyframes phonePulse {
  0% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(2, 132, 199, 0); }
  100% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

/* ── Floating WhatsApp ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: all var(--duration-fast);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.1);
  color: var(--white);
}

/* ── Mobile Action Bar ──────────────────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--mobile-bar-height);
  background: var(--white);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  z-index: 950;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
}

.mobile-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--charcoal);
  min-height: 44px;
  transition: color var(--duration-fast);
}

.mobile-bar__btn i {
  font-size: var(--fs-lg);
}

.mobile-bar__btn--call { color: var(--teal); }
.mobile-bar__btn--whatsapp { color: var(--whatsapp); }
.mobile-bar__btn--book {
  background: var(--teal);
  color: var(--white);
}

/* ── Breadcrumbs ────────────────────────────────────────────── */
.breadcrumbs {
  padding: var(--space-md) 0;
  background: var(--soft-grey);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  flex-wrap: wrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.breadcrumb-list li + li::before {
  content: '›';
  color: var(--muted-text);
}

.breadcrumb-list a {
  color: var(--muted-text);
}

.breadcrumb-list a:hover {
  color: var(--teal);
}

.breadcrumb-list .current {
  color: var(--navy);
  font-weight: var(--fw-medium);
}

/* ── Page Header ────────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  background: rgba(17, 168, 160, 0.08);
}

.page-header h1 {
  color: var(--white);
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-md);
  max-width: 600px;
  margin: 0 auto;
}
