/* ==========================================================================
   RELOCAA TRAVELS - PREMIUM LOCAL SEO TAXI & TOUR LANDING PAGE
   Brand: Relocaa Travels (Gorakhpur, UP)
   Mobile-First | Core Web Vitals Optimized | Conversion-Focused
   ========================================================================== */

:root {
  --primary-navy: #0b192c;
  --primary-dark: #060e1a;
  --primary-blue: #1e3a8a;
  --primary-blue-light: #2563eb;
  
  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  --accent-yellow: #fbbf24;
  --accent-orange: #ea580c;
  
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1ebd5a;
  --call-blue: #0284c7;
  --call-blue-hover: #0369a1;
  
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  --text-white: #ffffff;
  
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-alt: #f1f5f9;
  --bg-dark: #0b192c;
  
  --border-light: #e2e8f0;
  --border-card: #e2e8f0;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 35px -10px rgba(11, 25, 44, 0.25);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --container-max: 1200px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Reset & Global Standards */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 76px; /* Clearance for mobile sticky bottom CTA */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Typography Helpers */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-blue-light);
  background-color: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-tag.light {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--accent-yellow);
}

.section-heading {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 2.35rem;
  }
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 2.25rem;
}

.text-center {
  text-align: center;
}
.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
  font-size: 0.95rem;
  user-select: none;
}

.btn-lg {
  padding: 0.9rem 1.6rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #c2410c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.5);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-call {
  background-color: var(--call-blue);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}
.btn-call:hover {
  background-color: var(--call-blue-hover);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
}
.btn-outline-dark:hover {
  background-color: var(--primary-navy);
  color: var(--text-white);
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
  background-color: var(--primary-dark);
  color: #cbd5e1;
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.rating-pill-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background-color: rgba(245, 158, 11, 0.2);
  color: var(--accent-yellow);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.top-bar-right {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .top-bar-right {
    display: flex;
  }
}
.top-bar-right a:hover {
  color: var(--accent-yellow);
}

/* ==========================================================================
   PREMIUM REDESIGNED HEADER & NAVIGATION (DESKTOP + DROPDOWNS)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(11, 25, 44, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
  transition: all var(--transition-fast);
}

.header-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-name {
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.15;
}

.brand-name .highlight {
  color: var(--accent-gold);
}

.brand-tagline {
  font-size: 0.65rem;
  color: #94a3b8;
  letter-spacing: 0.03em;
  font-weight: 600;
  margin-top: 2px;
}

/* Desktop Navigation List */
.desktop-nav {
  display: none;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  padding: 0.5rem 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.dropdown-arrow {
  font-size: 0.6rem;
  color: var(--accent-gold);
  transition: transform var(--transition-fast);
}

/* Dropdown Menu Styles (Desktop) */
.nav-has-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #ffffff;
  color: var(--text-main);
  border-radius: 12px;
  box-shadow: 0 18px 40px -5px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 1010;
}

/* Hover bridge so mouse does not disconnect between link & dropdown */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-has-dropdown:hover .nav-dropdown-menu,
.nav-has-dropdown:focus-within .nav-dropdown-menu,
.nav-has-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-has-dropdown:hover .dropdown-arrow,
.nav-has-dropdown.is-open .dropdown-arrow {
  transform: rotate(180deg);
}

/* Services Dropdown (Mega 2-Column Grid) */
.services-dropdown {
  width: 520px;
  padding: 1.15rem;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

/* Tour Packages Dropdown (1-Column List) */
.tours-dropdown {
  width: 320px;
  padding: 1.15rem;
}

.dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Individual Dropdown Item */
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  background-color: #ffffff;
  transition: all var(--transition-fast);
  text-decoration: none;
  border: 1px solid transparent;
}

.dropdown-link:hover {
  background-color: #f1f5f9;
  border-color: #e2e8f0;
  transform: translateX(3px);
}

.dropdown-link .d-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.dropdown-link .d-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.dropdown-link .d-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.25;
}

.dropdown-link:hover .d-text strong {
  color: var(--primary-blue-light);
}

.dropdown-link .d-text small {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.dropdown-footer {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.dropdown-footer-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-blue-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: color var(--transition-fast);
}

.dropdown-footer-link:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

/* Desktop Header Action Buttons */
.header-ctas {
  display: none;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.btn-header-call {
  background-color: rgba(2, 132, 199, 0.18);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 0.46rem 0.78rem;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.btn-header-call:hover {
  background-color: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

.btn-header-wa {
  background-color: rgba(37, 211, 102, 0.18);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.4);
  padding: 0.46rem 0.78rem;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.btn-header-wa:hover {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  border-color: var(--whatsapp-green);
}

.btn-header-book {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
  color: #ffffff;
  padding: 0.48rem 0.9rem;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.35);
  border: none;
  cursor: pointer;
}
.btn-header-book:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #c2410c 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.45);
}

/* Responsive Desktop Media Queries (Ensuring No Overlap / Cut-off) */
@media (min-width: 1140px) {
  .desktop-nav {
    display: flex;
  }
  .header-ctas {
    display: flex;
  }
  .hamburger-toggle {
    display: none;
  }
}

@media (min-width: 1140px) and (max-width: 1280px) {
  .header-container {
    padding: 0 0.85rem;
    gap: 0.65rem;
  }
  .nav-list {
    gap: 0.5rem;
  }
  .nav-link {
    font-size: 0.82rem;
    padding: 0.4rem 0.25rem;
  }
  .btn-header-call, .btn-header-wa, .btn-header-book {
    padding: 0.42rem 0.65rem;
    font-size: 0.78rem;
  }
}

/* Mobile Hamburger Button */
.hamburger-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  gap: 5px;
  flex-shrink: 0;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  transition: all var(--transition-fast);
}

.hamburger-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER & ACCORDIONS
   ========================================================================== */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 88%;
  max-width: 380px;
  height: 100vh;
  background-color: #060e1a;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  z-index: 999;
  padding: 1.25rem 1.25rem 6.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.85rem;
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  font-size: 0.98rem;
  font-weight: 700;
  color: #f1f5f9;
  padding: 0.8rem 0.85rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background-color: rgba(245, 158, 11, 0.18);
  color: var(--accent-gold);
}

/* Mobile Accordions for Services & Tour Packages */
.mobile-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0.85rem;
  background: none;
  border: none;
  color: #f1f5f9;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.mobile-accordion-toggle:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-gold);
  transition: transform 0.25s ease;
  line-height: 1;
}

.mobile-accordion-item.is-open .accordion-icon {
  transform: rotate(45deg);
}

.mobile-accordion-content {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.35rem 0 0.65rem 1rem;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  margin-bottom: 0.35rem;
}

.mobile-accordion-item.is-open .mobile-accordion-content {
  display: flex;
}

.mobile-sublink {
  font-size: 0.88rem;
  color: #cbd5e1;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  display: block;
}

.mobile-sublink:hover {
  color: var(--accent-gold);
  background-color: rgba(245, 158, 11, 0.12);
  transform: translateX(4px);
}

.mobile-drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* ==========================================================================
   HERO BANNER & QUICK BOOKING FORM
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #060e1a 0%, #0b192c 50%, #172554 100%);
  color: var(--text-white);
  padding: 3rem 0 4.5rem;
  overflow: hidden;
}

.hero-backdrop-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: var(--accent-yellow);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-title {
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.85rem;
  }
}

.hero-title .text-gold {
  color: var(--accent-gold);
}

.hero-lead-text {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-feature-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
}

@media (min-width: 480px) {
  .hero-feature-pills {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pill-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #e2e8f0;
  font-weight: 600;
}

.pill-icon {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

/* Quick Booking Form Card */
.hero-booking-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.form-header {
  margin-bottom: 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.85rem;
}

.form-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 520px) {
  .booking-form-grid.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-label .req {
  color: #e11d48;
}

.form-control {
  width: 100%;
  padding: 0.68rem 0.85rem;
  font-size: 0.92rem;
  color: var(--text-main);
  background-color: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue-light);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 65px;
}

.form-help-fallback {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}
.form-help-fallback a {
  color: var(--call-blue);
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   TRUST BAR (5 CARDS DIRECTLY BELOW HERO)
   ========================================================================== */
.trust-bar-section {
  background-color: #ffffff;
  padding: 2.25rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 10;
  margin-top: -1.5rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

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

@media (min-width: 992px) {
  .trust-cards-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.trust-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.trust-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--accent-gold);
}

.trust-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.trust-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   MAIN SERVICES SECTION
   ========================================================================== */
.section-services {
  padding: 4.5rem 0;
  background-color: var(--bg-page);
}

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

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

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

.service-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-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #93c5fd;
}

.service-image-box {
  height: 220px;
  overflow: hidden;
  position: relative;
  background-color: #0b192c;
}

.service-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image-box img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 25, 44, 0.9);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.service-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* ==========================================================================
   LOCAL SEO TAXI CONTENT & CITY AUTHORITY
   ========================================================================== */
.section-taxi-seo {
  padding: 4.5rem 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.seo-split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .seo-split-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.seo-text-content p {
  font-size: 1.02rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.seo-check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 540px) {
  .seo-check-list {
    grid-template-columns: 1fr 1fr;
  }
}

.seo-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
}

.seo-check-item .icon {
  color: #16a34a;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.seo-gallery-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.seo-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
  background: #0b192c;
}
.seo-main-img img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.seo-img-floating-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-round {
  width: 44px;
  height: 44px;
  background-color: #eff6ff;
  color: var(--primary-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ==========================================================================
   CAR RENTAL FLEET SECTION
   ========================================================================== */
.section-fleet {
  padding: 4.5rem 0;
  background-color: var(--bg-page);
}

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

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

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

.fleet-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-normal);
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.fleet-img-wrap {
  height: 230px;
  overflow: hidden;
  position: relative;
  background: #0f172a;
}

.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.fleet-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-gold);
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.fleet-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.fleet-reg-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0369a1;
  background: #e0f2fe;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

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

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  background-color: var(--bg-card-alt);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.spec-item {
  font-size: 0.8rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

/* ==========================================================================
   OUTSTATION & FEATURED ROUTE (GORAKHPUR TO LUCKNOW)
   ========================================================================== */
.section-outstation {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.featured-route-banner {
  background: linear-gradient(135deg, #0b192c 0%, #1e3a8a 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .featured-route-banner {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 3rem;
  }
}

.route-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-yellow);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.route-heading {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.route-desc {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.price-display-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.price-label {
  font-size: 0.85rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.price-value {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent-yellow);
  line-height: 1.1;
  margin-bottom: 0.65rem;
}

.price-disclaimer {
  font-size: 0.78rem;
  color: #cbd5e1;
  font-style: italic;
  line-height: 1.4;
  margin-top: 0.75rem;
}

/* Outstation Estimator Form Box */
.outstation-card-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   TOUR PACKAGES (NEPAL & PRAYAGRAJ)
   ========================================================================== */
.section-tours {
  padding: 4.5rem 0;
  background-color: var(--bg-page);
}

.tour-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.tour-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.tour-img-box {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: #0b192c;
}

.tour-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-img-box img {
  transform: scale(1.06);
}

.tour-destination-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-navy);
  color: var(--accent-yellow);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.tour-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.tour-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.tour-price-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.tour-price-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: #0f172a;
}
.tour-price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ==========================================================================
   AIRPORT & CORPORATE TRANSPORTATION
   ========================================================================== */
.section-airport-corporate {
  padding: 4.5rem 0;
  background-color: #ffffff;
}

.split-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .split-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-panel {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-panel h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.85rem;
}

.feature-panel p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   WHY CHOOSE US (11 VERIFIED REASONS)
   ========================================================================== */
.section-why-us {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #060e1a 0%, #0b192c 100%);
  color: #ffffff;
}

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

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

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

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

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all var(--transition-fast);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.why-check-icon {
  width: 32px;
  height: 32px;
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  font-weight: 900;
}

.why-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: #f1f5f9;
}

/* ==========================================================================
   TRAVEL PROCESS (4 STEPS)
   ========================================================================== */
.section-process {
  padding: 4.5rem 0;
  background-color: var(--bg-page);
}

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

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

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary-navy);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--accent-gold);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   GOOGLE REVIEWS (AUTHENTIC 5.0★)
   ========================================================================== */
.section-reviews {
  padding: 4.5rem 0;
  background-color: #ffffff;
}

.review-stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.75rem;
  margin-bottom: 2.5rem;
}

.review-big-score {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1;
}

.review-stars {
  color: #f59e0b;
  font-size: 1.3rem;
}

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

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

.review-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-quote {
  font-size: 0.98rem;
  color: #1e293b;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--primary-navy);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.author-tag {
  font-size: 0.78rem;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

/* ==========================================================================
   AREAS WE SERVE (LOCAL GORAKHPUR & ROUTES)
   ========================================================================== */
.section-areas {
  padding: 4rem 0;
  background-color: var(--bg-page);
}

.areas-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.area-pill {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.area-pill.highlight {
  background-color: #eff6ff;
  border-color: #93c5fd;
  color: var(--primary-blue-light);
}

/* ==========================================================================
   CONVERSION BANNER / PLAN YOUR JOURNEY
   ========================================================================== */
.section-cta-banner {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #0b192c 0%, #1e3a8a 100%);
  color: #ffffff;
  text-align: center;
}

.cta-banner-box {
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner-box h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-banner-box p {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.cta-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ==========================================================================
   CONTACT & GOOGLE MAPS
   ========================================================================== */
.section-contact {
  padding: 4.5rem 0;
  background-color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-blue-light);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.2rem;
}

.contact-detail p, .contact-detail a {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.5;
}

.contact-detail a:hover {
  color: var(--primary-blue-light);
  text-decoration: underline;
}

.map-container-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.map-container-box iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  flex-grow: 1;
}

.map-actions {
  background: #ffffff;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   SEO FAQ ACCORDION
   ========================================================================== */
.section-faq {
  padding: 4.5rem 0;
  background-color: var(--bg-page);
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.faq-item.is-active {
  border-color: #93c5fd;
}

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

.faq-icon-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
  color: var(--primary-blue-light);
  font-size: 0.9rem;
}

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

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  display: none;
}

.faq-item.is-active .faq-answer {
  display: block;
}

/* ==========================================================================
   FOOTER (PREMIUM DARK THEMED)
   ========================================================================== */
.site-footer {
  background-color: var(--primary-dark);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.3fr 0.9fr 1.1fr 1.2fr;
  }
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: #94a3b8;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: #cbd5e1;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
}

.footer-seo-keywords {
  color: #475569;
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM CTA BAR
   ========================================================================== */
.mobile-sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(6, 14, 26, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.35);
  padding: 0.55rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .mobile-sticky-cta-bar {
    display: none;
  }
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.68rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.mobile-cta-btn.btn-m-call {
  background-color: var(--call-blue);
}
.mobile-cta-btn.btn-m-wa {
  background-color: var(--whatsapp-green);
}
.mobile-cta-btn.btn-m-book {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
}

/* Quick Booking Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.is-visible {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
}
