/* ==========================================================================
   Kattappana Cabs - Modern Mobility Design System
   Website Background: #f8fbfa
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-site: #f8fbfa;
  --bg-card: #ffffff;
  --bg-subtle: #f0f5f2;
  --bg-muted: #e7efe9;
  
  --brand-primary: #319965;
  --brand-primary-hover: #267c51;
  --brand-primary-light: #edf7f1;
  --brand-primary-border: #b8e2cd;
  
  --brand-secondary: #0d4d4d;
  --brand-secondary-hover: #083636;
  --brand-secondary-light: #e6f4f4;
  
  --accent-amber: #d97706;
  --accent-amber-light: #fef3c7;
  --whatsapp-color: #25d366;
  --whatsapp-hover: #20bd5a;
  
  --text-main: #111a24;
  --text-muted: #4b5863;
  --text-subtle: #6e7d89;
  --border-light: #e2ebe6;
  --border-subtle: #edf3f0;
  
  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(17, 26, 36, 0.04);
  --shadow-sm: 0 2px 8px rgba(17, 26, 36, 0.04), 0 1px 2px rgba(17, 26, 36, 0.03);
  --shadow-md: 0 8px 24px -4px rgba(17, 26, 36, 0.06), 0 2px 6px -1px rgba(17, 26, 36, 0.03);
  --shadow-lg: 0 16px 36px -6px rgba(17, 26, 36, 0.09), 0 4px 12px -2px rgba(17, 26, 36, 0.04);
  --shadow-hover: 0 20px 40px -8px rgba(49, 153, 101, 0.16), 0 6px 16px -4px rgba(17, 26, 36, 0.06);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-smooth: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-site);
}

body {
  background-color: var(--bg-site);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 251, 250, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px -2px rgba(17, 26, 36, 0.05);
  border-bottom-color: rgba(0, 106, 57, 0.1);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  background: #ffffff;
  padding: 0.3rem 0.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }
}

.nav-item {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.45rem 1.05rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.nav-item:hover {
  color: var(--brand-primary);
  background: var(--bg-subtle);
}

.nav-item.active {
  color: #ffffff;
  background: var(--brand-primary);
  box-shadow: 0 2px 6px rgba(0, 106, 57, 0.25);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-primary);
  color: #ffffff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(49, 153, 101, 0.24);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-header-call:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(49, 153, 101, 0.32);
}

@media (max-width: 480px) {
  .btn-header-call span:not(.material-symbols-outlined) {
    display: none;
  }
  .btn-header-call {
    padding: 0;
    width: 40px;
    height: 40px;
    justify-content: center;
    border-radius: var(--radius-pill);
  }
}

.btn-header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--whatsapp-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-fast);
}

.btn-header-whatsapp:hover {
  background: #ecfdf3;
  border-color: var(--whatsapp-color);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  cursor: pointer;
}

@media (min-width: 860px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transform: translateY(-120%);
  transition: transform var(--transition-smooth);
  z-index: 99;
}

.mobile-drawer.open {
  transform: translateY(0);
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
}

.mobile-nav-link:hover {
  background: var(--bg-subtle);
  color: var(--brand-primary);
}

/* Hero Section */
.hero-section {
  padding-top: 110px;
  padding-bottom: 4rem;
  position: relative;
  overflow: visible;
  z-index: 20;
}

.hero-glow {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  max-width: 100vw;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 106, 57, 0.08) 0%, rgba(248, 251, 250, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 20;
}

/* Live Dispatch Pill */
.hero-top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: #ffffff;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  font-size: 0.8125rem;
}

.live-indicator {
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
}

.live-ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--brand-primary);
  opacity: 0.75;
  animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-dot {
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--brand-primary);
}

@keyframes ping {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.live-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.live-divider {
  color: var(--border-light);
}

.live-sub {
  color: var(--text-muted);
  font-weight: 500;
}

.hero-badges-desk {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .hero-badges-desk {
    display: flex;
  }
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.tag-badge .material-symbols-outlined {
  font-size: 16px;
  color: var(--brand-primary);
}

/* Hero Typography */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.hero-title .text-brand {
  color: var(--brand-primary);
  display: block;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Booking Card */
.booking-widget-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
  z-index: 50;
  margin-bottom: 1.5rem;
}

.booking-widget-card.has-dropdown-open {
  z-index: 9999 !important;
}

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

/* Trip Tabs */
.trip-tab-list {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
}

.trip-tab-list::-webkit-scrollbar {
  height: 4px;
}

.trip-tab-list::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

.trip-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.trip-tab:hover {
  background: var(--bg-muted);
  color: var(--text-main);
}

.trip-tab.active {
  background: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 106, 57, 0.22);
}

.trip-tab .material-symbols-outlined {
  font-size: 18px;
}

/* Booking Form Grid */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

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

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

.form-field {
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.form-field:focus-within {
  background: #ffffff;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(49, 153, 101, 0.16);
}

.field-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-subtle);
  margin-bottom: 0.3rem;
}

.field-label .material-symbols-outlined {
  font-size: 15px;
  color: var(--brand-primary);
}

.field-input {
  width: 100%;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.2rem 0;
  outline: none;
}

.field-input::placeholder {
  color: rgba(75, 88, 99, 0.45);
  font-weight: 400;
}

.field-select {
  width: 100%;
  background-color: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.25rem 2rem 0.25rem 0;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  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='%23319965' 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");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  transition: all var(--transition-fast);
}

.field-select:hover {
  color: var(--brand-primary);
}

.field-select:focus {
  color: var(--brand-primary);
}

.field-select option {
  background-color: #ffffff;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.65rem 0.85rem;
}

.field-hint {
  font-size: 0.72rem;
  color: var(--text-subtle);
  margin-top: 0.25rem;
}

/* ==========================================================================
   Custom Themed Select Dropdown Component
   For Vehicle & Passenger selections matching Highland Emerald (#319965)
   ========================================================================== */
.form-field.has-custom-select {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: transparent;
  border: none;
  padding: 0.2rem 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  outline: none;
}

.custom-select-trigger .selected-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.custom-select-trigger .custom-select-arrow {
  color: var(--brand-primary);
  font-size: 22px;
  line-height: 1;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.form-field.custom-select-open .custom-select-arrow {
  transform: rotate(180deg);
}

.form-field.custom-select-open {
  background: #ffffff !important;
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0 0 3px rgba(49, 153, 101, 0.16) !important;
  z-index: 99999 !important;
}

/* Floating Dropdown Panel */
.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  min-width: 100%;
  max-width: calc(100vw - 32px);
  max-height: 320px;
  background: #ffffff;
  border: 1.5px solid var(--brand-primary-border);
  border-radius: 16px;
  box-shadow: 0 20px 48px -6px rgba(17, 26, 36, 0.25), 0 6px 16px -2px rgba(17, 26, 36, 0.1);
  padding: 6px;
  overflow-y: auto;
  z-index: 999999 !important;
  display: none;
  animation: customSelectFadeIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 640px) {
  .custom-select-dropdown {
    min-width: 310px;
  }
}

@keyframes customSelectFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-field.custom-select-open .custom-select-dropdown {
  display: block;
}

/* Dropdown Scrollbar */
.custom-select-dropdown::-webkit-scrollbar {
  width: 6px;
}
.custom-select-dropdown::-webkit-scrollbar-track {
  background: #f0f5f2;
  border-radius: 8px;
}
.custom-select-dropdown::-webkit-scrollbar-thumb {
  background: var(--brand-primary-border);
  border-radius: 8px;
}
.custom-select-dropdown::-webkit-scrollbar-thumb:hover {
  background: var(--brand-primary);
}

/* Option Rows */
.custom-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-main);
}

.custom-select-option:hover {
  background: var(--brand-primary-light);
  color: var(--brand-primary);
}

.custom-select-option.is-selected {
  background: var(--brand-primary-light);
  color: var(--brand-primary);
}

.custom-select-option .opt-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.custom-select-option .opt-main {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}

.custom-select-option.is-selected .opt-main {
  font-weight: 700;
  color: var(--brand-primary);
}

.custom-select-option .opt-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.custom-select-option:hover .opt-desc,
.custom-select-option.is-selected .opt-desc {
  color: var(--brand-primary);
}

.custom-select-option .opt-check {
  font-size: 18px;
  color: var(--brand-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
  flex-shrink: 0;
}

.custom-select-option.is-selected .opt-check {
  opacity: 1;
}

/* Visually Hidden Native Select */
.native-select-hidden {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* ==========================================================================
   Flatpickr Custom Theme - Kattappana Emerald (#319965)
   Replaces default browser datetime-local popups
   ========================================================================== */
.flatpickr-calendar {
  background: #ffffff !important;
  border: 1.5px solid var(--brand-primary-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 40px -8px rgba(17, 26, 36, 0.16), 0 4px 12px -2px rgba(17, 26, 36, 0.06) !important;
  font-family: var(--font-heading) !important;
  padding: 10px 10px 8px !important;
  width: 318px !important;
  z-index: 99999 !important;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #ffffff !important;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #ffffff !important;
}

.flatpickr-months {
  align-items: center !important;
  padding: 4px 6px 10px !important;
  position: relative !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  padding: 6px 8px !important;
  fill: var(--brand-primary) !important;
  color: var(--brand-primary) !important;
  border-radius: 8px !important;
  transition: all var(--transition-fast) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background: var(--brand-primary-light) !important;
  fill: var(--brand-primary-hover) !important;
  color: var(--brand-primary-hover) !important;
}

.flatpickr-current-month {
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--text-main) !important;
  padding: 0 !important;
}

.flatpickr-current-month .cur-month {
  font-weight: 700 !important;
  color: var(--text-main) !important;
}

.flatpickr-current-month input.cur-year {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  color: var(--text-main) !important;
}

.flatpickr-weekdays {
  margin-bottom: 6px !important;
}

span.flatpickr-weekday {
  color: var(--text-subtle) !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 0.72rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.flatpickr-days {
  width: 100% !important;
}

.dayContainer {
  min-width: 100% !important;
  max-width: 100% !important;
  justify-content: space-around !important;
}

.flatpickr-day {
  border-radius: 10px !important;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  color: var(--text-main) !important;
  border-color: transparent !important;
  transition: all 0.15s ease !important;
  line-height: 36px !important;
  height: 36px !important;
  max-width: 38px !important;
}

.flatpickr-day:hover {
  background: var(--brand-primary-light) !important;
  border-color: transparent !important;
  color: var(--brand-primary) !important;
}

.flatpickr-day.today {
  border-color: var(--brand-primary) !important;
  color: var(--brand-primary) !important;
  font-weight: 700 !important;
}

.flatpickr-day.today:hover {
  background: var(--brand-primary-light) !important;
  color: var(--brand-primary) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover {
  background: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 10px rgba(49, 153, 101, 0.35) !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: #c8d4ce !important;
  cursor: not-allowed !important;
}

/* Time Picker Component */
.flatpickr-time {
  border-top: 1px solid var(--border-light) !important;
  margin-top: 8px !important;
  padding-top: 8px !important;
  line-height: 38px !important;
  max-height: 42px !important;
}

.flatpickr-time input {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  color: var(--text-main) !important;
  border-radius: 8px !important;
}

.flatpickr-time input:hover,
.flatpickr-time input:focus {
  background: var(--brand-primary-light) !important;
  color: var(--brand-primary) !important;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: var(--brand-primary) !important;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: var(--brand-primary) !important;
}

.flatpickr-time .flatpickr-am-pm {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  color: var(--brand-primary) !important;
  border-radius: 8px !important;
  padding: 0 8px !important;
}

.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
  background: var(--brand-primary-light) !important;
}

.flatpickr-time .flatpickr-time-separator {
  color: var(--text-muted) !important;
  font-weight: 700 !important;
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.phone-prefix {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Secondary Booking Options Row */
.booking-sub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 40;
}

@media (min-width: 640px) {
  .booking-sub-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (min-width: 1024px) {
  .booking-sub-grid {
    grid-template-columns: 1.5fr 1fr 1.5fr;
  }
}

/* Dynamic Live Fare Box */
.fare-estimate-box {
  background: var(--brand-primary-light);
  border: 1px solid var(--brand-primary-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.fare-info-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.fare-info-details {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.fare-price-tag {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-primary);
  white-space: nowrap;
}

/* Form Action Buttons */
.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

@media (min-width: 640px) {
  .booking-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.booking-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.booking-guarantee .material-symbols-outlined {
  color: var(--brand-primary);
  font-size: 20px;
}

.action-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
}

@media (min-width: 640px) {
  .action-btn-group {
    flex-direction: row;
    width: auto;
  }
}

.btn-book-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--brand-primary);
  color: #ffffff;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 106, 57, 0.28);
  transition: all var(--transition-fast);
}

.btn-book-submit:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 106, 57, 0.35);
}

.btn-book-submit:active {
  transform: scale(0.98);
}

.btn-book-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--whatsapp-color);
  color: #ffffff;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: all var(--transition-fast);
}

.btn-book-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Quick Bar Below Hero */
.hero-quick-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.quick-pill-primary {
  background: var(--brand-primary);
  color: #ffffff;
}

.quick-pill-primary:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-1px);
}

.quick-pill-secondary {
  background: var(--brand-secondary);
  color: #ffffff;
}

.quick-pill-secondary:hover {
  background: var(--brand-secondary-hover);
  transform: translateY(-1px);
}

.quick-pill-outline {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.quick-pill-outline:hover {
  background: var(--bg-subtle);
  transform: translateY(-1px);
}

.quick-zero-surge {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (min-width: 992px) {
  .quick-zero-surge {
    display: inline-flex;
  }
}

/* Section Common Styling */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-alt {
  background: var(--bg-subtle);
}

.section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary);
  margin-bottom: 0.35rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-top: 0.5rem;
}

/* Services / Mobility Solutions Cards */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

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

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary-border);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08);
}

.service-icon-wrap.green {
  background: var(--brand-primary-light);
  color: var(--brand-primary);
}

.service-icon-wrap.teal {
  background: var(--brand-secondary-light);
  color: var(--brand-secondary);
}

.service-icon-wrap.amber {
  background: var(--accent-amber-light);
  color: var(--accent-amber);
}

.service-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--bg-subtle);
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.service-card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-rate {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-primary);
}

/* Fleet Showcase Section */
.fleet-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.fleet-filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.fleet-filter-btn:hover {
  background: var(--bg-subtle);
  color: var(--text-main);
}

.fleet-filter-btn.active {
  background: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
  box-shadow: 0 4px 12px rgba(0, 106, 57, 0.2);
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

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

.vehicle-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-primary-border);
}

.vehicle-card.hidden-vehicle {
  display: none !important;
}

.vehicle-img-wrap {
  position: relative;
  background: #ffffff;
  padding: 1.25rem 1rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.vehicle-img {
  width: 100%;
  height: 165px;
  object-fit: contain;
  transition: transform var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.vehicle-card:hover .vehicle-img {
  transform: scale(1.05);
}

.vehicle-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  color: var(--brand-primary);
  z-index: 10;
  pointer-events: none;
}

.vehicle-badge.gold {
  color: var(--accent-amber);
}

.vehicle-badge.teal {
  color: var(--brand-secondary);
}

.vehicle-info {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vehicle-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.vehicle-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.vehicle-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.spec-item .material-symbols-outlined {
  font-size: 17px;
  color: var(--brand-primary);
}

.btn-book-vehicle {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--bg-subtle);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.vehicle-card:hover .btn-book-vehicle {
  background: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
}

/* Popular Routes Section */
.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@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(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.route-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary-border);
}

.route-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.route-dest {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.route-dist-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--bg-subtle);
  color: var(--text-muted);
  white-space: nowrap;
}

.route-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.route-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.route-meta-item .material-symbols-outlined {
  font-size: 16px;
  color: var(--brand-primary);
}

.route-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.route-fare-from {
  font-size: 0.75rem;
  color: var(--text-subtle);
  display: block;
}

.route-fare-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-primary);
}

.btn-book-route {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--bg-subtle);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.route-card:hover .btn-book-route {
  background: var(--brand-primary);
  color: #ffffff;
}

/* Why Choose Us & How it works */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

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

.feature-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.feature-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* 3 Step Process */
.steps-container {
  margin-top: 4rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.step-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 106, 57, 0.25);
}

.step-badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
  background: #319965;
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .cta-banner {
    padding: 3.5rem 2.5rem;
  }
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .cta-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-banner-text {
  max-width: 650px;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.cta-sub {
  font-size: 1.05rem;
  opacity: 0.92;
}

.cta-banner-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .cta-banner-buttons {
    flex-direction: row;
  }
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #ffffff;
  color: var(--brand-primary);
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-fast);
}

.btn-cta-white:hover {
  background: #f1fdf6;
  transform: translateY(-2px);
}

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.btn-cta-dark:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* Dispatch Hub Location */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .hub-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.hub-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hub-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hub-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.hub-address {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

/* Towns / Routes pills */
.dest-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dest-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
}

.dest-pill .material-symbols-outlined {
  font-size: 16px;
  color: var(--brand-primary);
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--brand-primary-border);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  color: var(--brand-primary);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

/* SEO Content Box */
.seo-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
}

.seo-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.seo-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.seo-text p + p {
  margin-top: 0.75rem;
}

/* Site Footer */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand-logo {
  height: 40px;
  width: auto;
  margin-bottom: 0.85rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--brand-primary-light);
  border: 1px solid var(--brand-primary-border);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 5.5rem;
  }
}

/* Floating Mobile Action Bar */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.75rem;
  z-index: 90;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .mobile-action-bar {
    display: none;
  }
}

.mobile-action-bar .btn-mobile-call {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--brand-primary);
  color: #ffffff;
  padding: 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
}

.mobile-action-bar .btn-mobile-wa {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--whatsapp-color);
  color: #ffffff;
  padding: 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Booking Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 26, 36, 0.6);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: modalPop 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-subtle);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.modal-icon .material-symbols-outlined {
  font-size: 32px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.modal-summary-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
}

.modal-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.modal-summary-row strong {
  color: var(--text-main);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 85px;
  right: 1.5rem;
  z-index: 150;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--brand-primary);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 380px;
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}
