/* ============================================
   AHMEDABAD AIRPORT TO ANAND TAXI
   Premium Luxury Theme — External Stylesheet
   Brand: Gold #F5C518 · Dark #0D0D0D · White
   ============================================ */

:root {
  --gold: #F5C518;
  --gold-dark: #D4A815;
  --gold-light: #FFF8DC;
  --gold-gradient: linear-gradient(135deg, #F5C518 0%, #E8A800 100%);
  --dark: #0D0D0D;
  --dark-soft: #1A1A1A;
  --dark-muted: #2D2D2D;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;
  --success: #10B981;
  --error: #EF4444;
  --whatsapp: #25D366;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 32px rgba(245, 197, 24, 0.28);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  outline: none;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
  color: var(--gray-500);
  line-height: 1.8;
}

.container {
  width: min(1200px, calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
}

.section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-label-dark {
  color: var(--dark);
}

.section-header {
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header p {
  margin-top: 14px;
}

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

.section-cta {
  margin-top: 48px;
}

.is-hidden {
  display: none !important;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245, 197, 24, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-search {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: var(--radius);
  background: var(--gold-gradient);
  color: var(--dark);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-search:hover {
  transform: scale(1.05);
}

/* ---- Alerts ---- */
.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.alert-success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.alert-error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ---- Floating Buttons ---- */
.float-buttons {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.float-btn:hover {
  transform: scale(1.08);
}

.whatsapp-btn {
  background: var(--whatsapp);
}

.call-btn {
  background: var(--gold-gradient);
  color: var(--dark);
}

/* ---- Header ---- */
/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 15px;
  /* Floating space */
  pointer-events: none;
  /* Let clicks pass through empty space */
}

.site-header>* {
  pointer-events: auto;
  /* Re-enable clicks for actual header content */
}

.site-header.is-scrolled {
  padding-top: 0;
}

.header-top {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  padding: 8px 0;
  margin-top: -15px;
  /* Offset the padding-top from site-header */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, padding 0.35s ease;
  max-height: 60px;
  overflow: hidden;
}

.site-header.is-scrolled .header-top {
  max-height: 0;
  padding: 0;
  border-bottom: none;
  opacity: 0;
  visibility: hidden;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.header-top-left,
.header-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}

.top-link:hover {
  color: var(--gold);
}

.top-badge {
  color: var(--gold);
  font-weight: 600;
}

.header-main {
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled .header-main {
  max-width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled .header-inner {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 0 0 24px 24px;
  padding: 10px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-top: none;
  border-left: none;
  border-right: none;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #F5C518 0%, #D69E00 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--dark);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
}

.brand-sub {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}

.brand-logo-light .brand-main,
.brand-logo-light .brand-sub {
  color: var(--white);
}

.brand-logo-light .brand-sub {
  color: var(--gold);
}

.mobile-drawer-header {
  display: none !important;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-item-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-item-link .nav-arrow {
  font-size: 0.75rem;
  color: #555555;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-item-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--gold, #F5C518);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  box-shadow: 0 0 10px rgba(245, 197, 24, 0.6);
}

.nav-item-link:hover,
.nav-item-link.active {
  color: #d69e00;
}

.nav-item-link:hover .nav-arrow,
.nav-item-link.active .nav-arrow {
  color: #d69e00;
}

.nav-item-link:hover::after,
.nav-item-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}



/* Navigation Mega Grid Dropdown Styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown>a i.nav-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover>a i.nav-arrow {
  transform: rotate(180deg);
}

.nav-mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 600px;
  max-width: 95vw;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  margin-top: 15px;
  overflow: hidden;
}

.nav-dropdown:hover .nav-mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-dropdown-header {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gray-700);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #eef0f2;
}

.mega-routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-height: 380px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 5px 5px 15px 5px;
  margin: -5px 0 -15px -5px;
}

.mega-routes-grid::-webkit-scrollbar {
  width: 5px;
}

.mega-routes-grid::-webkit-scrollbar-thumb {
  background: var(--gold, #F5C518);
  border-radius: 10px;
}

.mega-route-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #faf9f5;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 0;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.mega-route-card:hover,
.mega-route-card.active {
  background: #ffffff;
  border-color: var(--gold, #F5C518);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 197, 24, 0.15);
}

.mega-route-icon {
  width: 36px;
  height: 36px;
  background: rgba(245, 197, 24, 0.18);
  color: var(--gold-dark, #d69e00);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.mega-route-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  width: 100%;
}

.mega-route-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.mega-route-card:hover .mega-route-title {
  color: #000000;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header {
  padding: 12px 26px;
  font-size: 0.92rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #F5C518 0%, #D69E00 100%);
  color: #111;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.35);
  border: none;
  transition: all 0.3s ease;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 197, 24, 0.5);
  color: #000;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  border: none;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.82) 0%, rgba(13, 13, 13, 0.55) 50%, rgba(13, 13, 13, 0.72) 100%);
  z-index: 1;
}

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

.hero-text {
  max-width: 720px;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 18px;
}

.hero-text h1 span {
  color: var(--gold);
}

.hero-text>p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 580px;
}

.hero-route-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.route-city {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.route-line {
  color: var(--gold);
  font-size: 1rem;
}

.route-distance {
  margin-left: auto;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(245, 197, 24, 0.15);
  padding: 4px 12px;
  border-radius: 50px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---- Booking Widget ---- */
.booking-widget-wrap {
  position: relative;
  z-index: 3;
  margin-top: -60px;
}

.booking-widget {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 24px 28px 28px;
  border: 1px solid var(--gray-100);
}

.booking-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gray-100);
  padding-bottom: 16px;
}

.booking-tab {
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-500);
  background: transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.booking-tab:hover {
  color: var(--dark);
  background: var(--gray-100);
}

.booking-tab.active {
  background: var(--gold-gradient);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

.booking-fields {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: end;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-field label i {
  color: var(--gold-dark);
  font-size: 0.75rem;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.18);
}

.form-control.error {
  border-color: var(--error);
}

.form-field-submit {
  display: flex;
  align-items: flex-end;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-collage {
  position: relative;
  min-height: 480px;
}

.collage-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, z-index 0s, box-shadow 0.3s ease;
  position: absolute;
}

.collage-item:hover {
  z-index: 10 !important;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  height: 72%;
  z-index: 1;
}

.collage-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  height: 38%;
  z-index: 2;
  border: 4px solid var(--white);
}

.collage-accent {
  position: absolute;
  top: 10%;
  right: 0;
  width: 42%;
  height: 45%;
  z-index: 3;
  border: 4px solid var(--white);
}

.about-experience-badge {
  position: absolute;
  bottom: 18%;
  right: 8%;
  z-index: 4;
  background: var(--gold-gradient);
  color: var(--dark);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-experience-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge span {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-content h2 {
  margin-bottom: 18px;
}

.about-content p {
  margin-bottom: 14px;
}

.about-highlights {
  margin: 24px 0 28px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-weight: 500;
  color: var(--gray-700);
}

.about-highlights i {
  color: var(--gold-dark);
  font-size: 0.85rem;
}

/* ---- Services ---- */
.services-section {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

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

.service-image {
  height: 200px;
  overflow: hidden;
}

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

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

.service-body {
  padding: 24px;
}

.service-body h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.service-body p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold-dark);
}

.service-link:hover {
  gap: 12px;
  color: var(--dark);
}

/* ---- Features ---- */
.features-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.features-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.features-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.features-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow);
}

.features-visual-badge i {
  color: var(--gold-dark);
}

.features-content h2 {
  margin-bottom: 14px;
}

.features-content>p {
  margin-bottom: 28px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
}

.feature-item h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--dark);
}

.feature-item p {
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ---- Fleet ---- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fleet-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.fleet-card-featured {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.fleet-card-featured p {
  color: rgba(255, 255, 255, 0.7);
}

.fleet-card-featured .fleet-tag {
  background: var(--gold);
  color: var(--dark);
}

.fleet-image {
  height: 120px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-image img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.fleet-card h3 {
  margin-bottom: 8px;
}

.fleet-card p {
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.fleet-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--gold-gradient);
}

.testimonials-section .section-header h2 {
  color: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.quote-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.6;
}

.stars {
  color: var(--gold-dark);
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}

.testimonial-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.testimonial-card p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* ---- FAQ ---- */
.faq-section {
  background: var(--gray-50);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-question i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: var(--gold-dark);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 14px;
}

.contact-info>p {
  margin-bottom: 32px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.contact-list strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.contact-list a {
  color: var(--dark);
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--gold-dark);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

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

label.error,
span.error {
  color: var(--error, #EF4444);
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 4px;
  display: block;
  text-align: left;
}

.b-form-group span.error,
.p-form-group span.error,
.b-form-group label.error,
.p-form-group label.error {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 2px;
  width: 100%;
}

.premium-input+label.error,
.premium-input+span.error,
.contact-phone-combo+label.error,
.contact-phone-combo+span.error {
  margin-top: -16px;
  margin-bottom: 16px;
}

input.error,
textarea.error,
select.error,
.premium-input.error,
.phone-input-combo:has(input.error) {
  border-color: var(--error, #EF4444) !important;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 0.9fr 1.4fr 1.2fr;
  gap: 30px;
}

.footer-desc {
  margin: 18px 0 22px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

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

/* ---- Animations ---- */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .booking-fields {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-field-submit {
    grid-column: span 1;
  }

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

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

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

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 80px 24px 24px;
    transition: right 0.35s ease;
    z-index: 850;
    overflow-y: auto;
  }

  .main-nav.is-open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: var(--radius);
  }

  .hamburger {
    display: flex;
    z-index: 860;
  }

  .btn-header span {
    display: none;
  }

  .about-grid,
  .features-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-collage {
    min-height: 360px;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

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

  body.menu-open .header-top {
    display: none;
  }

  /* Mega dropdowns become accordion-style inside mobile drawer */
  .nav-mega-dropdown {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    padding: 8px 0 8px 8px;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    display: none;
  }

  .nav-dropdown.is-open .nav-mega-dropdown {
    display: block;
  }

  .nav-dropdown.is-open>a .nav-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown:hover .nav-mega-dropdown {
    transform: none;
    /* Keep closed unless .is-open on touch devices */
  }

  .nav-dropdown:not(.is-open):hover .nav-mega-dropdown {
    display: none;
  }

  .mega-routes-grid,
  .services-grid-layout {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .mega-route-card {
    padding: 10px 12px;
  }

  .header-main {
    max-width: 100%;
    padding: 0 10px;
  }

  .header-inner {
    padding: 10px 14px;
    border-radius: 24px;
    gap: 12px;
  }

  .site-header.is-scrolled .header-inner {
    border-radius: 0 0 16px 16px;
    padding: 8px 14px;
  }

  .brand-logo img {
    max-height: 44px !important;
  }
}

@media (max-width: 640px) {
  .header-top-right {
    display: none;
  }

  .header-top-left {
    gap: 10px;
    font-size: 0.75rem;
  }

  .top-link {
    font-size: 0.75rem;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 100px;
  }

  .booking-widget {
    padding: 20px 16px;
  }

  .booking-fields {
    grid-template-columns: 1fr;
  }

  .form-field-submit {
    justify-content: stretch;
  }

  .btn-search {
    width: 100%;
    height: 50px;
    border-radius: 50px;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .hero-route-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .route-distance {
    margin-left: 0;
  }

  .float-buttons {
    right: 14px;
    bottom: 16px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .container {
    width: min(1200px, calc(100% - 24px));
  }

  .section {
    padding: clamp(40px, 8vw, 70px) 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .about-collage {
    min-height: 280px;
  }

  .about-experience-badge {
    padding: 12px 14px;
    bottom: 10%;
    right: 4%;
  }

  .about-experience-badge strong {
    font-size: 1.4rem;
  }
}

/* New Hero Styles */
.new-hero-section {
  padding: 2rem 1.5rem;
  max-width: 1650px;
  margin: 0 auto;
  position: relative;
  font-family: 'Inter', sans-serif;
  margin-bottom: 60px;
}

.new-hero-container {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

/* Hero Background Variations */
.hero-bg-std {
  background-image: url('../img/std.webp');
}

.hero-bg-oneway {
  background-image: url('../img/one-way.webp');
}

.hero-bg-roundtrip {
  background-image: url('../img/round-trip.webp');
}

.hero-bg-airport {
  background-image: url('../img/airport.webp');
}

.new-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
}

.new-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 4rem 8rem 4rem;
  color: #fff;
  max-width: 800px;
}

.new-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.new-hero-content p {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.9;
  max-width: 600px;
}

/* Custom Tabbed Booking Widget */
.custom-booking-widget {
  position: relative;
  margin-top: -90px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 1050px;
  z-index: 10;
}

.booking-tabs-header {
  display: flex;
  gap: 8px;
  margin-left: 20px;
  margin-bottom: -1px;
}

.b-tab-btn {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  border-bottom: none;
  padding: 14px 28px;
  border-radius: 12px 12px 0 0;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
  font-family: var(--font-heading);
}

.b-tab-btn.active {
  background: #fff;
  color: var(--dark);
  border: 2px solid var(--gold);
  border-bottom: 2px solid #fff;
  z-index: 3;
}

.booking-form-body {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 24px;
  position: relative;
  z-index: 2;
  border: 1px solid #eaeaea;
}

.b-tab-content {
  display: none;
}

.b-tab-content.active {
  display: block;
}

.b-form-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 32px;
}

.b-form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.b-form-row .b-form-group:has(.phone-input-combo) {
  flex: 1.4;
  /* Give the phone field more width */
}

.b-form-group label {
  font-size: 11px;
  font-weight: 700;
  color: #666;
  margin-bottom: 8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
}

.b-form-group label i {
  color: var(--gold-dark);
  font-size: 13px;
}

.b-form-group input {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: border 0.3s ease;
  width: 100%;
  background: #f9f9f9;
}

.b-form-group input:focus {
  border-color: var(--gold);
  background: #fff;
}

.b-form-submit {
  display: flex;
  align-items: flex-end;
}

.b-submit-btn {
  background: var(--gold-gradient);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-gold);
}

.b-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35);
}

/* Responsive */
@media (max-width: 992px) {
  .custom-booking-widget {
    position: relative;
    bottom: auto;
    transform: none;
    left: auto;
    margin: -40px auto 40px auto;
    width: 95%;
  }

  .b-form-row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .b-form-submit {
    padding-top: 15px;
  }

  .b-submit-btn {
    width: 100%;
  }

  .booking-tabs-header {
    margin-left: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .booking-tabs-header::-webkit-scrollbar {
    display: none;
  }

  .b-tab-btn {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .new-hero-section {
    padding: 1.25rem 0.75rem;
    margin-bottom: 40px;
  }

  .new-hero-container {
    border-radius: 16px;
    min-height: 400px;
  }

  .new-hero-content {
    padding: 2rem 1.5rem;
  }

  .new-hero-content h1,
  .premium-heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .premium-subheading,
  .new-hero-content p {
    font-size: 1.05rem;
  }

  .typed-cursor {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background-color: #fcfcfc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-image-wrapper {
  background: #fff;
  position: relative;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.wrapper-light {
  background: #fff;
}

.wrapper-premium {
  background: #fff;
}

.pricing-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.badge-popular {
  color: var(--gold-dark);
}

.badge-family {
  color: #d68b00;
}

.badge-premium {
  color: var(--dark);
}

.pricing-img {
  width: 100%;
  max-width: 100%;
  height: 240px;
  object-fit: cover;
  margin: 0;
  display: block;
  transition: transform 0.5s ease;
}

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

.pricing-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  color: var(--dark);
}

.pricing-category {
  background: #f5f5f5;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
}

.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.feature-item i {
  color: var(--gold);
  width: 16px;
  text-align: center;
}

.pricing-inclusions {
  border-top: 1px dashed #e0e0e0;
  border-bottom: 1px dashed #e0e0e0;
  padding: 20px 0;
  margin-bottom: 25px;
}

.pricing-inclusions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-inclusions li {
  margin-bottom: 10px;
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-inclusions li:last-child {
  margin-bottom: 0;
}

.pricing-inclusions li i {
  color: var(--gold-dark);
}

.pricing-inclusions li.text-warning i {
  color: #f39c12;
}

.pricing-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.pricing-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-dark);
  display: flex;
  align-items: baseline;
}

.price-unit {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  margin-left: 2px;
}

.pricing-footer .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3);
}

.card-premium {
  border: 1px solid rgba(245, 197, 24, 0.3);
}

/* ============================================
   Luxury Marquee Line (Ticker Banner)
   ============================================ */
.luxury-marquee-section {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #0a0a0a 0%, #161616 50%, #0a0a0a 100%);
  border-top: 1px solid rgba(245, 197, 24, 0.35);
  border-bottom: 1px solid rgba(245, 197, 24, 0.35);
  padding: 14px 0;
  position: relative;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  margin-top: 15px;
  margin-bottom: 30px;
  user-select: none;
  z-index: 5;
}

.luxury-marquee-section::before,
.luxury-marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}

.luxury-marquee-section::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a 0%, rgba(10, 10, 10, 0) 100%);
}

.luxury-marquee-section::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a 0%, rgba(10, 10, 10, 0) 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.luxury-marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 197, 24, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  color: #ffffff;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.marquee-item:hover {
  background: rgba(245, 197, 24, 0.12);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.25);
}

.marquee-item i {
  color: var(--gold, #F5C518);
  font-size: 15px;
  filter: drop-shadow(0 0 5px rgba(245, 197, 24, 0.6));
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .luxury-marquee-section {
    padding: 10px 0;
    margin-top: 15px;
    margin-bottom: 25px;
  }

  .marquee-content {
    gap: 16px;
    padding-right: 16px;
  }

  .marquee-item {
    padding: 6px 14px;
    font-size: 11px;
    letter-spacing: 0.8px;
    gap: 8px;
  }

  .marquee-item i {
    font-size: 13px;
  }

  .luxury-marquee-section::before,
  .luxury-marquee-section::after {
    width: 40px;
  }
}

/* ============================================
   SEO Content Section & Read More Toggle
   ============================================ */
.seo-content-section {
  padding: 80px 0;
  background-color: #0f0f0f;
  background-image: radial-gradient(circle at top right, rgba(245, 197, 24, 0.03), transparent 400px);
}

.seo-card-container {
  background: #1a1a1a;
  border-radius: 24px;
  border: 1px solid rgba(245, 197, 24, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  padding: 48px;
  position: relative;
  transition: all 0.5s ease;
}

.seo-card-container:hover {
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 197, 24, 0.05);
}

.seo-card-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold, #F5C518);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
  font-family: var(--font-heading);
  text-shadow: 0 2px 10px rgba(245, 197, 24, 0.15);
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.seo-card-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.seo-content-wrapper {
  position: relative;
  max-height: 440px;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.seo-content-wrapper.expanded {
  max-height: 12000px;
}

.seo-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.9) 70%, rgba(26, 26, 26, 1) 100%);
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 2;
}

.seo-content-wrapper.expanded .seo-content-overlay {
  opacity: 0;
  visibility: hidden;
}

.seo-body-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f1f1f1;
  margin: 36px 0 16px 0;
  font-family: var(--font-heading);
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.seo-body-text h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #d1d5db;
  margin: 24px 0 12px 0;
  font-family: var(--font-heading);
}

.seo-body-text {
  color: #e2e8f0;
}

.seo-body-text p {
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.85;
  margin-bottom: 20px;
}

.seo-body-text strong,
.seo-body-text b {
  color: #ffffff;
  font-weight: 700;
}

.seo-body-text ul,
.seo-body-text ol {
  margin: 16px 0 24px 20px;
}

.seo-body-text ul {
  list-style-type: none;
}

.seo-body-text ol {
  padding-left: 20px;
  color: #e2e8f0;
}

.seo-body-text ul li,
.seo-body-text ol li {
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.85;
  margin-bottom: 12px;
}

.seo-body-text ul li {
  position: relative;
  padding-left: 20px;
}

.seo-body-text ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold, #F5C518);
  font-size: 0.8rem;
  top: 2px;
}

.seo-body-text ol li::marker {
  color: var(--gold, #F5C518);
  font-weight: 700;
}

.inline-seo-link,
.seo-highlight-link,
.seo-body-text a {
  color: var(--gold, #F5C518);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.inline-seo-link:hover,
.seo-highlight-link:hover,
.seo-body-text a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(245, 197, 24, 0.4);
}

.seo-toggle-action {
  text-align: center;
  margin-top: 24px;
  position: relative;
  z-index: 3;
}

.seo-read-more-btn {
  background: var(--dark);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 12px 38px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.seo-read-more-btn:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.seo-read-more-btn i {
  transition: transform 0.3s ease;
}

.seo-read-more-btn.expanded i {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .seo-content-section {
    padding: 50px 0;
  }

  .seo-card-container {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .seo-card-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .seo-body-text h3 {
    font-size: 1.2rem;
    margin: 24px 0 10px 0;
  }

  .seo-body-text p,
  .seo-body-text ul li {
    font-size: 0.95rem;
  }

  .seo-content-wrapper {
    max-height: 400px;
  }

  .seo-read-more-btn {
    padding: 10px 28px;
    font-size: 14px;
  }
}

/* ============================================
   INNER PAGES (ABOUT & CONTACT) PREMIUM STYLES
   ============================================ */

/* ---- Inner Page Hero ---- */
.inner-hero-section {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
  text-align: center;
  color: var(--white);
  border-bottom: 2px solid rgba(245, 197, 24, 0.2);
}

.inner-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245, 197, 24, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.inner-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #F5C518 50%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGradient 5s ease infinite;
  font-family: var(--font-heading);
}

.inner-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ---- About Page Specifics ---- */
.about-premium-story {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-content {
  position: relative;
  z-index: 2;
}

.about-story-content h2 {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.about-story-content p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-story-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-story-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(245, 197, 24, 0.4);
  border-radius: 24px;
  pointer-events: none;
  animation: borderGlow 3s infinite;
}

/* Values Grid */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: #fdfdfd;
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(245, 197, 24, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(245, 197, 24, 0.3);
}

.value-card h3 {
  font-size: 1.3rem;
  font-family: var(--font-heading);
  margin-bottom: 12px;
  color: var(--dark);
}

/* ---- Contact Page Specifics ---- */
.contact-premium-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #faf8f0 0%, var(--white) 100%);
  position: relative;
}

.contact-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info-panel {
  background: var(--dark);
  color: var(--white);
  padding: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.05);
}

.contact-info-text {
  flex: 1;
  min-width: 0;
}

.contact-info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
}

.contact-info-text p,
.contact-info-text a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-info-text a:hover {
  color: var(--gold);
}

/* ---- Business Hours Block ---- */
.contact-hours-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hours-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-hours-list li:last-child {
  border-bottom: none;
}

.contact-hours-list .hours-val {
  color: #4ade80;
  font-weight: 600;
  font-size: 0.82rem;
}

.contact-hours-list li.hours-note {
  justify-content: flex-start;
  gap: 7px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  font-style: italic;
  margin-top: 4px;
  padding: 0;
  border: none;
}

.contact-hours-list li.hours-note i {
  font-size: 0.45rem;
  color: #4ade80;
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ---- Trust Points Block ---- */
.contact-trust-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-trust-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-trust-list li i {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ---- Response Time Badge ---- */
.contact-response-badge {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-response-badge i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-response-badge strong {
  color: var(--gold);
}

.contact-premium-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(245, 197, 24, 0.15);
}

.contact-premium-form-wrap h3 {
  font-size: 2rem;
  font-family: var(--font-heading);
  margin-bottom: 24px;
  color: var(--dark);
}

.premium-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 16px 20px;
  background: #f9f9f9;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-phone-combo {
  margin-bottom: 20px;
  height: 58px;
}

.phone-input-combo input.contact-phone-input {
  padding: 16px 20px !important;
  font-size: 1rem !important;
}

.premium-input:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.1);
  outline: none;
}

textarea.premium-input {
  min-height: 150px;
  resize: vertical;
}

.iform-group--captcha {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
}

.invalid-feedback--visible {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 6px;
  display: block;
}

@media (max-width: 360px) {
  .g-recaptcha {
    transform: scale(0.88);
    transform-origin: 0 0;
  }
}

.premium-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--gold-gradient);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(245, 197, 24, 0.2);
}

.premium-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(245, 197, 24, 0.3);
}

.map-section {
  padding-bottom: 80px;
  background: var(--white);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.2);
}

/* Responsive adjustments for inner pages */
@media (max-width: 992px) {

  .about-story-grid,
  .contact-premium-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero-title {
    font-size: 2.2rem;
  }
}

/* ---- Premium Hero Typography & Typed.js ---- */
.premium-heading {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: capitalize;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  color: #ffffff !important;
}

.premium-subheading {
  font-size: 1.25rem;
  font-weight: 500;
  opacity: 0.9;
  color: #ffffff !important;
}

.text-gold {
  color: var(--gold, #F5C518);
}

.typed-cursor {
  color: var(--gold, #F5C518);
  font-size: 3.5rem;
}

/* ---- Premium Why Choose Us Section ---- */
.premium-why-us {
  padding: 80px 0;
  background-color: #faf9f5;
}

.premium-why-header {
  margin-bottom: 50px;
}

.premium-badge {
  display: inline-block;
  background: rgba(245, 197, 24, 0.1);
  color: var(--gold-dark, #d69e00);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.premium-why-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.premium-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.premium-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 30px;
}

.p-why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-align: center;
}

.p-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(245, 197, 24, 0.4);
}

.p-why-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 1.8rem;
}

.icon-green {
  background: rgba(46, 204, 113, 0.1);
  color: #27ae60;
}

.icon-gold {
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold-dark, #d69e00);
}

.icon-blue {
  background: rgba(52, 152, 219, 0.1);
  color: #2980b9;
}

.icon-red {
  background: rgba(231, 76, 60, 0.1);
  color: #c0392b;
}

.p-why-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.p-why-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .premium-why-header h2 {
    font-size: 2rem;
  }
}

/* ============================================
   Route Landing Page Premium Styles
   ============================================ */

/* Hero Split Layout */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 3;
  padding: 40px 0 120px 0;
  min-width: 0;
}

.hero-text-side {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.hero-visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.hero-visual-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.hero-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--gold, #F5C518);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(245, 197, 24, 0.4);
  backdrop-filter: blur(10px);
}

/* Route Info Cards */
.route-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.route-info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  border: 1px solid #eaeaea;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.route-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(245, 197, 24, 0.4);
}

.route-info-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.route-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold-dark, #d69e00);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.route-info-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.route-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.route-info-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #eef0f2;
  font-size: 0.98rem;
  color: #555;
}

.route-info-list li span.val {
  font-weight: 700;
  color: #1a1a1a;
}

/* Service Options Cards */
.services-opt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 30px;
}

.service-opt-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid #eaeaea;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.service-opt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--gold, #F5C518);
}

.service-opt-icon {
  width: 65px;
  height: 65px;
  background: rgba(245, 197, 24, 0.12);
  color: var(--gold-dark, #d69e00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.service-opt-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.service-opt-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #eaeaea;
  position: relative;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.stars-rating {
  color: #f39c12;
  font-size: 1rem;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  background: var(--gold, #F5C518);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.reviewer-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.reviewer-info span {
  font-size: 0.85rem;
  color: #888;
}

/* Bottom CTA Banner Upgrade */
.luxury-cta-banner {
  background: radial-gradient(circle at center, #1f1d16 0%, #0d0d0d 100%);
  padding: 90px 0;
  border-top: 2px solid var(--gold, #F5C518);
  border-bottom: 2px solid var(--gold, #F5C518);
  position: relative;
  overflow: hidden;
}

.luxury-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 25px;
  margin-top: 40px;
}

.cta-action-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cta-action-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold, #F5C518);
  box-shadow: 0 15px 35px rgba(245, 197, 24, 0.15);
}

.cta-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold, #F5C518);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  border: 1px solid rgba(245, 197, 24, 0.4);
}

/* Phone handset faces right in CTA + contact sections */
.cta-icon-box .fa-phone-alt,
.cta-btn-gold .fa-phone-alt,
.luxury-cta-banner .fa-phone-alt,
.contact-info-icon .fa-phone-alt,
.contact-icon .fa-phone {
  display: inline-block;
  transform: scaleX(1);
}

.cta-action-card h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-action-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.cta-btn-gold {
  background: linear-gradient(135deg, #F5C518 0%, #d4a017 100%);
  color: #1a1a1a;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3);
}

.cta-btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.5);
  color: #000;
}

.cta-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #fff;
}

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

  .route-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Route Page Clean External Classes */
.route-hero-title {
  font-size: 2.8rem;
  text-shadow: none;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.route-hero-sub {
  margin-bottom: 30px;
}

.route-hero-btn {
  display: inline-block;
  width: auto;
  padding: 14px 36px;
  text-decoration: none;
}

.section-bg-light {
  padding: 80px 0;
  background-color: #faf9f5;
}

.section-bg-white {
  padding: 80px 0;
  background-color: #ffffff;
}

.badge-cta-vip {
  background: rgba(245, 197, 24, 0.15);
  color: #F5C518;
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.cta-heading {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.premium-subtitle {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.cta-subtext {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 10px;
}

.cta-highlights-row {
  color: var(--gold, #F5C518);
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-icon-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.4);
}

/* ============================================
   Dynamic FAQ Accordion Premium Styling
   ============================================ */
.faq-section {
  background: #faf8f5;
  padding: 90px 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.faq-item:hover {
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: 0 8px 25px rgba(245, 197, 24, 0.12);
  transform: translateY(-2px);
}

.faq-item.active,
.faq-item.is-open {
  border-color: var(--gold, #F5C518);
  box-shadow: 0 10px 30px rgba(245, 197, 24, 0.18);
}

.faq-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: #ffffff;
  transition: background 0.2s ease;
  min-width: 0;
  overflow: hidden;
}

.faq-item.active .faq-header,
.faq-item.is-open .faq-header {
  background: #fffdf5;
}

.faq-header h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  padding-right: 15px;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.faq-icon {
  font-size: 0.95rem;
  color: var(--gold-dark, #d69e00);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 28px;
  background: #fffdf5;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.faq-item.active .faq-body,
.faq-item.is-open .faq-body {
  max-height: 500px;
  padding: 0 28px 24px 28px;
  transition: max-height 0.35s cubic-bezier(1, 0, 1, 0);
}

.faq-body p {
  font-size: 0.96rem;
  color: #4a4a4a;
  line-height: 1.65;
  margin: 0;
}

/* ---- About Us Premium Page Styles ---- */
.company-bg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.company-bg-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.company-bg-content p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.mission-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.value-card-premium {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f5f5f5;
  height: 100%;
}

.value-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(245, 197, 24, 0.15);
  border-color: var(--gold);
}

.value-card-premium .value-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 50%;
  background: #fffdf5;
  display: inline-block;
}

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

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

@media (max-width: 576px) {
  .stats-premium-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

.stat-premium-box {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border-bottom: 4px solid var(--gold);
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 576px) {
  .stat-premium-box {
    padding: 1.25rem 1rem;
  }
}

.stat-premium-box .stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 576px) {
  .stat-premium-box .stat-number {
    font-size: 2.2rem;
  }
}

.stat-premium-box .stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 576px) {
  .stat-premium-box .stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }
}

.premium-check-list {
  list-style: none;
  padding: 0;
}

.premium-check-list li {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: flex-start;
  color: #444;
}

.premium-check-list li i {
  font-size: 1.4rem;
  margin-top: 3px;
  margin-right: 15px;
}

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

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

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

.safety-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
}

.safety-card:hover {
  background: var(--gold);
  color: #1a1a1a;
  transform: translateY(-5px);
}

.safety-card .safety-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.safety-card:hover .safety-icon,
.safety-card:hover h3,
.safety-card:hover p {
  color: #1a1a1a;
}

.safety-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

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

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

.fleet-q-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s;
}

.fleet-q-card:hover {
  transform: translateX(10px);
  border-left: 4px solid var(--gold);
}

.fleet-q-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-right: 1.5rem;
  background: #fffdf5;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.fleet-q-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.fleet-q-card p {
  color: #666;
  margin: 0;
}

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

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

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

.expert-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(245, 197, 24, 0.15);
  border-color: var(--gold);
}

.expert-card .expert-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.expert-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.expert-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* About Page Premium Utilities */
.section-divider-white {
  background: var(--white);
}

.alert-premium-info {
  background-color: #fffdf5;
  border-color: #f5c518;
  color: #1a1a1a;
}

.bg-gradient-premium {
  background: linear-gradient(180deg, var(--white) 0%, #faf8f0 100%);
}

.bg-light-gold {
  background-color: #faf8f0;
}

.trusted-service-text {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

.section-divider-gold {
  background: #faf8f0;
}

/* Service Pages Utilities */
.service-hero-container {
  padding-top: 150px;
  padding-bottom: 100px;
  position: relative;
}

.service-hero-overlay {
  background: rgba(10, 10, 10, 0.85);
  position: absolute;
  inset: 0;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.service-premium-heading {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 15px;
}

.service-premium-subheading {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

.service-booking-widget {
  position: relative;
  z-index: 3;
  margin-top: 50px;
}

.service-tab-btn {
  width: auto;
  padding: 10px 40px;
  cursor: default;
}

.service-date-input {
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  padding: 5px 0;
  width: 100%;
}

.service-date-input:focus {
  outline: none;
  border-bottom-color: #f5c518;
}

/* Premium Fleet Section */
.premium-fleet-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
  text-align: center;
}

.premium-fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(245, 197, 24, 0.15);
  border-color: #f5c518;
}

.premium-fleet-img {
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.fleet-features {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  color: #666;
  font-size: 0.9rem;
}

.fleet-features span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* How It Works Section */
.step-process-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 40px 0;
}

.step-process-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: dashed 2px #e0e0e0;
  z-index: 1;
}

.step-item {
  position: relative;
  z-index: 2;
  background: #fff;
  width: 250px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 4px solid #f5c518;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #111;
  color: #f5c518;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: -40px auto 15px;
  border: 4px solid #fff;
}

/* Inclusions List */
.inclusion-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
}

.inclusion-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.inclusion-list li i.fa-check-circle {
  color: #28a745;
  margin-top: 4px;
}

.inclusion-list li i.fa-times-circle {
  color: #dc3545;
  margin-top: 4px;
}

@media (max-width: 991px) {
  .step-process-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.step-process-wrapper::before {
  display: none;
}


/* Image Match Layout Styles */
.split-hero-section {
  background: linear-gradient(135deg, #111 0%, #222 100%);
  padding: 120px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.split-hero-badge {
  display: inline-block;
  background: rgba(245, 197, 24, 0.2);
  color: #f5c518;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(245, 197, 24, 0.5);
}

.split-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.split-hero-text {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 90%;
}

.split-hero-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.split-hero-img-wrapper img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

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

.booking-card-light {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-top: 5px solid #f5c518;
}

/* Benefit Grid Items (Tiny Cards) */
.benefit-grid-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: left;
}

.benefit-grid-item:hover {
  border-color: #f5c518;
  box-shadow: 0 5px 15px rgba(245, 197, 24, 0.1);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(245, 197, 24, 0.1);
  color: #d4a017;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.benefit-grid-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.benefit-grid-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Fleet Price Cards */
.fleet-price-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.fleet-price-card:hover {
  border-color: #f5c518;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.fleet-price-card .car-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 15px 0 5px;
  color: #333;
}

.fleet-price-card .car-price {
  color: #d4a017;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.fleet-price-card .btn-book-sm {
  background: #f5c518;
  color: #111;
  font-weight: 600;
  padding: 8px 25px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.fleet-price-card .btn-book-sm:hover {
  background: #d4a017;
}

/* Popular Routes Card */
.route-pricing-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
}

.route-header {
  text-align: center;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.route-header h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
}

.route-details-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.route-details-row .label {
  color: #777;
}

.route-details-row .val {
  font-weight: 600;
  color: #222;
}

.route-details-row .val.price {
  color: #d4a017;
  font-size: 1.1rem;
}

.route-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.route-actions .btn {
  flex: 1;
  padding: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Travel Tip Card */
.travel-tip-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #eee;
  height: 100%;
}

.travel-tip-card .tip-icon {
  width: 50px;
  height: 50px;
  background: rgba(245, 197, 24, 0.1);
  color: #d4a017;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.travel-tip-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.travel-tip-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* ========== Utility Classes ========== */
.text-gold {
  color: #f5c518 !important;
}

.bg-light-gold {
  background-color: #fdfaf0;
}

.premium-badge {
  display: inline-block;
  background: rgba(245, 197, 24, 0.15);
  color: #d4a017;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.premium-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 15px auto 0;
}

/* ========== Service Page V2 (Reference Image Match) ========== */

/* --- Hero with Embedded Form --- */
.svc-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 60%, #222 100%);
  padding: 130px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.svc-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.svc-hero-badge {
  display: inline-block;
  background: rgba(245, 197, 24, 0.15);
  color: #f5c518;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.svc-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.svc-hero p.lead {
  font-size: 1.15rem;
  color: #bbb;
  margin-bottom: 30px;
  max-width: 500px;
}

.svc-hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(245, 197, 24, 0.2);
}

.svc-hero-img img {
  width: 100%;
  display: block;
  border-radius: 17px;
}

.svc-hero-cta .btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
}

/* --- Inline Booking Form Card --- */
.svc-booking-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 35px 30px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-top: 5px solid #f5c518;
}

.svc-booking-card .form-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.svc-booking-card .form-control {
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px 14px;
}

.svc-booking-card .form-control:focus {
  border-color: #f5c518;
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
}

.svc-booking-card .btn-search {
  background: #111;
  color: #f5c518;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 30px;
  font-size: 1.05rem;
  border: 2px solid #f5c518;
  transition: all 0.3s ease;
}

.svc-booking-card .btn-search:hover {
  background: #f5c518;
  color: #111;
}

/* --- Smarter Choice / Feature Split --- */
.svc-feature-split {
  padding: 80px 0;
  background: #fff;
}

.svc-feature-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.svc-feature-img img {
  width: 100%;
  display: block;
}

.svc-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.svc-feature-list li .feat-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(245, 197, 24, 0.12);
  color: #d4a017;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.svc-feature-list li h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #222;
}

.svc-feature-list li p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* --- Fleet Grid (Multiple Cars) --- */
.svc-fleet-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.svc-fleet-card:hover {
  border-color: #f5c518;
  box-shadow: 0 8px 25px rgba(245, 197, 24, 0.12);
  transform: translateY(-5px);
}

.svc-fleet-card img {
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.svc-fleet-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.svc-fleet-card .car-type {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 10px;
}

.svc-fleet-card .car-specs {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 15px;
}

.svc-fleet-card .car-fare {
  font-size: 1.3rem;
  font-weight: 800;
  color: #d4a017;
  margin-bottom: 15px;
}

.svc-fleet-card .btn-fleet {
  background: #f5c518;
  color: #111;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
}

.svc-fleet-card .btn-fleet:hover {
  background: #d4a017;
}

/* --- Trending Destinations --- */
.svc-dest-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
  transition: transform 0.3s ease;
}

.svc-dest-card:hover {
  transform: translateY(-5px);
}

.svc-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-dest-card .dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}

.svc-dest-card .dest-overlay h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.svc-dest-card .dest-overlay span {
  font-size: 0.85rem;
  color: #ccc;
}

/* --- Travel Standards / Icons Grid --- */
.svc-standard-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  height: 100%;
  transition: all 0.3s ease;
}

.svc-standard-card:hover {
  border-color: #f5c518;
  box-shadow: 0 5px 20px rgba(245, 197, 24, 0.1);
}

.svc-standard-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 197, 24, 0.1);
  color: #d4a017;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 15px;
}

.svc-standard-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-standard-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* --- 4 Step Booking Process --- */
.svc-steps-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  padding: 40px 0;
}

.svc-step {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #f5c518;
  position: relative;
}

.svc-step-num {
  width: 40px;
  height: 40px;
  background: #111;
  color: #f5c518;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: -42px auto 15px;
  border: 4px solid #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.svc-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-step p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* --- FAQ Accordion --- */
.svc-faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.svc-faq-q {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.svc-faq-q:hover {
  background: #fdfaf0;
}

.svc-faq-q i {
  transition: transform 0.3s;
  color: #d4a017;
}

.svc-faq-q.active i {
  transform: rotate(180deg);
}

.svc-faq-a {
  padding: 0 20px 18px;
  display: none;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.svc-faq-a.show {
  display: block;
}

/* --- CTA Banner --- */
.svc-cta-banner {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 5px solid #f5c518;
}

.svc-cta-banner::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(245, 197, 24, 0.06);
  border-radius: 50%;
}

.svc-cta-banner::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(245, 197, 24, 0.04);
  border-radius: 50%;
}

.svc-cta-banner h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.svc-cta-banner p {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.svc-cta-banner .btn {
  position: relative;
  z-index: 2;
}

/* --- SEO Content Block --- */
.svc-seo-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.svc-seo-block h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-top: 25px;
  margin-bottom: 10px;
}

.svc-seo-block p {
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .svc-hero h1 {
    font-size: 2.2rem;
  }

  .svc-steps-row {
    flex-direction: column;
    align-items: center;
  }

  .svc-step {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 767px) {
  .svc-hero {
    padding: 100px 0 60px;
  }

  .svc-hero h1 {
    font-size: 1.8rem;
  }

  .svc-booking-card {
    padding: 25px 20px;
  }

  .svc-cta-banner h2 {
    font-size: 1.6rem;
  }
}

/* ============================================
   Place Autocomplete Dropdown
   ============================================ */
.b-form-group,
.p-form-group,
.form-group {
  position: relative;
  z-index: 1;
}

.b-form-group:focus-within,
.p-form-group:focus-within,
.form-group:focus-within,
.b-form-group.has-active-dropdown,
.p-form-group.has-active-dropdown,
.form-group.has-active-dropdown,
.b-form-group:has(.place-autocomplete-dropdown.is-visible),
.p-form-group:has(.place-autocomplete-dropdown.is-visible),
.form-group:has(.place-autocomplete-dropdown.is-visible) {
  z-index: 100;
}

.place-autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(20, 20, 20, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 260px;
  width: 100%;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 197, 24, 0.3) transparent;
}

.place-autocomplete-dropdown.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.place-autocomplete-dropdown::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.place-autocomplete-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.place-autocomplete-dropdown::-webkit-scrollbar-thumb {
  background: rgba(245, 197, 24, 0.3);
  border-radius: 10px;
}

.place-autocomplete-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-family: var(--font-body);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease, color 0.2s ease;
}

.place-autocomplete-item:last-child {
  border-bottom: none;
}

.place-autocomplete-item i {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.place-autocomplete-item span {
  flex: 1;
  white-space: normal;
  word-break: break-word;
}

.place-autocomplete-item:hover,
.place-autocomplete-item.is-highlighted {
  background: rgba(245, 197, 24, 0.1);
  color: #fff;
}

.place-autocomplete-item:hover i,
.place-autocomplete-item.is-highlighted i {
  opacity: 1;
}

.place-autocomplete-item mark {
  background: rgba(245, 197, 24, 0.25);
  color: var(--gold);
  padding: 0 2px;
  border-radius: 3px;
  font-weight: 600;
}

.place-autocomplete-empty {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  font-style: italic;
}

.place-autocomplete-empty i {
  color: rgba(245, 197, 24, 0.4);
}

/* Thank You Page CSS */
.thankyou-section {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.thankyou-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.thankyou-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.thankyou-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.success-icon-wrapper {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #F5C518, #E8A800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(245, 197, 24, 0.3);
  position: relative;
}

.success-icon-wrapper::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 2px solid rgba(245, 197, 24, 0.5);
  animation: pulseRing 2s infinite;
}

.success-icon-wrapper i {
  font-size: 45px;
  color: #0d0d0d;
}

.thankyou-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.thankyou-subtitle {
  color: #F5C518;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.thankyou-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.thankyou-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-return {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-return:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-whatsapp-ty {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  border: none;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-ty:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .thankyou-card {
    padding: 40px 20px;
    margin: 0 20px;
  }

  .thankyou-title {
    font-size: 32px;
  }

  .thankyou-actions {
    flex-direction: column;
  }

  .btn-return,
  .btn-whatsapp-ty {
    width: 100%;
    justify-content: center;
  }
}

/* Alert Messages CSS */
.alert-success-premium {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  color: #10B981;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-error-premium {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  color: #EF4444;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-validation-premium {
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  color: #EF4444;
  font-weight: 600;
}

.alert-validation-premium ul {
  margin: 8px 0 0 20px;
  font-weight: 400;
}



/* Added for round trip days */
.route-days-badge {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}


/* Hero text visibility fix */
.route-hero-title,
.route-hero-title * {
  color: #ffffff;
}

.route-hero-sub,
.route-hero-sub strong {
  color: #f8f9fa;
}

.route-hero-title {
  color: #ffffff !important;
}

.route-hero-title .text-gold {
  color: #ffc107 !important;
}

.route-hero-sub {
  color: #f8f9fa !important;
}

.route-hero-sub strong {
  color: #ffffff !important;
}


/* Premium Modal Styles */
.premium-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}

.premium-modal.active {
  display: flex;
}

.premium-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: 0.3s;
}

.premium-modal-close:hover {
  color: #000;
}

.premium-modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.premium-modal-header h2 {
  margin: 0;
  color: #333;
  font-size: 24px;
  font-weight: 700;
}

.premium-modal-header p {
  margin: 5px 0 0;
  color: #777;
  font-size: 14px;
}

.p-form-group {
  margin-bottom: 24px;
  text-align: left;
}

.p-form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 13px;
  color: #444;
}

.p-form-group input,
.p-form-group select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: 0.3s;
}

.p-form-group input:focus,
.p-form-group select:focus {
  border-color: #F5C518;
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
}

.p-form-group input[readonly] {
  background-color: #f9f9f9;
  color: #666;
  cursor: not-allowed;
}

.p-form-row {
  display: flex;
  gap: 15px;
}

.p-form-row .half {
  flex: 1;
}

.b-form-group input[readonly] {
  background-color: #f9f9f9;
  color: #666;
  cursor: not-allowed;
}

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

.custom-booking-widget {
  z-index: 30;
}

.booking-form-body {
  position: relative;
  z-index: 40;
}

.b-form-group {
  position: relative;
  z-index: 50;
}

/* Premium Services Section CSS */
.premium-services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.premium-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 40%);
  pointer-events: none;
}

.premium-services-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.premium-label {
  display: inline-block;
  color: #D4AF37;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding: 5px 15px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  background: rgba(212, 175, 55, 0.05);
}

.premium-services-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.premium-services-header p {
  color: #aaa;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.premium-service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.premium-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #F3E5AB);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.premium-service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.premium-service-card:hover::after {
  transform: scaleX(1);
}

.premium-service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-size: 32px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.5s ease;
}

.premium-service-card:hover .premium-service-icon {
  background: #D4AF37;
  color: #111;
  transform: rotateY(360deg);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.premium-service-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.premium-service-card p {
  color: #999;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.premium-service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.premium-service-btn i {
  margin-left: 8px;
  color: #D4AF37;
  transition: margin-left 0.3s ease;
}

.premium-service-card:hover .premium-service-btn {
  color: #D4AF37;
}

.premium-service-card:hover .premium-service-btn i {
  margin-left: 12px;
}

@media (max-width: 768px) {
  .premium-services-header h2 {
    font-size: 2.2rem;
  }

  .premium-services-section {
    padding: 60px 0;
  }
}

/* ==========================================================================
   ---- Ultra-Premium Company Background & About Us Section Styles ----
   ========================================================================== */

/* Inner Hero Section Luxury Dark Upgrade */
.inner-hero-section {
  position: relative;
  background: linear-gradient(135deg, #070709 0%, #121217 60%, #1c1a24 100%);
  padding: 120px 0 80px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.inner-hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.inner-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  letter-spacing: -0.5px;
}

.inner-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto;
}

/* Company Background Section - Luxury Dark Theme */
.company-bg-section {
  background: linear-gradient(180deg, #0a0a0e 0%, #111117 100%);
  padding: 100px 0;
  color: #ffffff;
  position: relative;
}

.company-bg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.company-bg-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 24px;
  padding: 45px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 197, 24, 0.05);
  position: relative;
}

.company-bg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F5C518, transparent);
}

.company-bg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.12);
  color: #F5C518;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(245, 197, 24, 0.35);
  margin-bottom: 20px;
}

.company-bg-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
  line-height: 1.2;
}

.company-bg-card h2 .highlight-gold {
  background: linear-gradient(135deg, #FFE066 0%, #F5C518 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-bg-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.company-bg-card p strong {
  color: #ffffff;
}

.company-bg-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 25px;
}

.company-feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.2);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
}

.company-feature-pill:hover {
  background: rgba(245, 197, 24, 0.16);
  border-color: rgba(245, 197, 24, 0.45);
  transform: translateY(-2px);
}

.company-feature-pill i {
  color: #F5C518;
  font-size: 1.1rem;
}

/* Image Showcase Frame */
.company-bg-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(245, 197, 24, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 197, 24, 0.12);
  background: radial-gradient(circle at center, #1e1e28 0%, #0d0d12 100%);
  padding: 20px;
}

.company-bg-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.company-bg-image-wrap:hover img {
  transform: scale(1.04);
}

.company-bg-float-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background: rgba(13, 13, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 197, 24, 0.4);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.company-float-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #F5C518 0%, #D49E00 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d12;
  font-size: 1.4rem;
  box-shadow: 0 0 15px rgba(245, 197, 24, 0.4);
}

.company-float-text strong {
  color: #ffffff;
  font-size: 1.05rem;
  display: block;
}

.company-float-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .company-bg-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .company-bg-card {
    padding: 30px 22px;
  }

  .company-bg-card h2 {
    font-size: 2rem;
  }

  .company-bg-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .company-bg-card {
    padding: 22px 16px;
    border-radius: 16px;
  }

  .company-bg-card h2 {
    font-size: 1.6rem;
    word-break: break-word;
  }

  .company-bg-image-wrap {
    padding: 12px;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .company-bg-float-badge {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 15px;
    padding: 12px 14px;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .company-float-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .company-float-text strong {
    font-size: 0.88rem;
    word-break: break-word;
  }

  .company-float-text span {
    font-size: 0.75rem;
    word-break: break-word;
  }
}

/* ==========================================================================
   ---- Ultra-Luxurious Light Theme Trusted Service Section ----
   ========================================================================== */
.trusted-service-section {
  position: relative;
  background: linear-gradient(135deg, #FFFDF7 0%, #FAF5E8 50%, #FFFDF9 100%);
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.trusted-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.trusted-bg-glow.glow-1 {
  top: -100px;
  right: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.14) 0%, rgba(245, 197, 24, 0) 70%);
}

.trusted-bg-glow.glow-2 {
  bottom: -100px;
  left: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 70%);
}

.trusted-service-section .container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.luxury-gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #B8860B;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.trusted-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1A1917;
  letter-spacing: -0.5px;
  margin-top: 10px;
  margin-bottom: 16px;
  font-family: var(--font-heading, 'Poppins', sans-serif);
}

.highlight-gold-gradient {
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #C59B27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.trusted-subtitle {
  font-size: 1.1rem;
  color: #5A554C;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Feature Cards Grid */
.trusted-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trusted-feature-card {
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(212, 175, 55, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.trusted-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #D4AF37 0%, #F5C518 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.trusted-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.14), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.trusted-feature-card:hover::before {
  opacity: 1;
}

.trusted-feature-card.trusted-card-full {
  grid-column: span 2;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFDF2 100%);
}

.trusted-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFF3CC 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B8860B;
  font-size: 1.35rem;
  transition: all 0.35s ease;
}

.trusted-feature-card:hover .trusted-card-icon {
  background: linear-gradient(135deg, #F5C518 0%, #D4AF37 100%);
  color: #111111;
  box-shadow: 0 6px 18px rgba(245, 197, 24, 0.35);
  transform: scale(1.06) rotate(4deg);
}

.trusted-card-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A1917;
  margin-bottom: 6px;
  line-height: 1.3;
}

.trusted-card-content p {
  font-size: 0.88rem;
  color: #666055;
  margin: 0;
  line-height: 1.5;
}

.trusted-card-check {
  margin-left: auto;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: 1px solid rgba(16, 185, 129, 0.25);
  margin-top: 2px;
}

/* Showcase Box (Right Column) */
.trusted-showcase-box {
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
  position: relative;
}

.trusted-showcase-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F5C518, #D4AF37, transparent);
}

.trusted-seal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.trusted-seal-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #F5C518 0%, #D4AF37 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(245, 197, 24, 0.3);
}

.trusted-seal-tag {
  font-size: 0.82rem;
  font-weight: 800;
  color: #B8860B;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.trusted-showcase-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1A1917;
  margin-bottom: 12px;
  line-height: 1.3;
}

.trusted-showcase-desc {
  font-size: 0.95rem;
  color: #5A554C;
  line-height: 1.65;
  margin-bottom: 24px;
}

.trusted-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  padding: 18px 20px;
  background: #FFFDF7;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
}

.trusted-hl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2C2822;
}

.trusted-hl-item i {
  color: #D4AF37;
  font-size: 1.05rem;
}

.trusted-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px dashed rgba(212, 175, 55, 0.3);
}

.callout-rating .stars {
  color: #F5C518;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.callout-rating span {
  font-size: 0.85rem;
  color: #666055;
}

.btn-trusted-gold {
  background: linear-gradient(135deg, #F5C518 0%, #E0AE00 100%);
  color: #111111;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(245, 197, 24, 0.3);
}

.btn-trusted-gold:hover {
  background: linear-gradient(135deg, #FFE066 0%, #F5C518 100%);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 197, 24, 0.45);
}

@media (max-width: 991px) {
  .trusted-features-grid {
    grid-template-columns: 1fr;
  }

  .trusted-feature-card.trusted-card-full {
    grid-column: span 1;
  }

  .trusted-title {
    font-size: 2.2rem;
  }

  .trusted-showcase-box {
    padding: 30px 22px;
  }
}

@media (max-width: 576px) {
  .trusted-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-trusted-gold {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   Inline SEO Links (Text Interlinking)
========================================= */
.inline-seo-link {
  color: #F5C518;
  text-decoration: underline;
  text-decoration-color: rgba(245, 197, 24, 0.5);
  font-weight: 600;
  transition: all 0.3s ease;
}

.inline-seo-link:hover,
.inline-seo-link:focus {
  color: #ffffff;
  text-decoration-color: #ffffff;
  background-color: transparent;
}

/* ============================================
   GLOBAL RESPONSIVE — 320px → Tablet → Laptop
   Front pages: home, about, contact, services,
   routes, thank-you
   ============================================ */

img,
video,
iframe,
table,
embed,
object {
  max-width: 100%;
}

iframe {
  width: 100%;
}

/* ---- Laptop (≤1199px) ---- */
@media (max-width: 1199px) {

  .premium-heading,
  .new-hero-content h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

  .typed-cursor {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

  .trusted-title,
  .premium-why-header h2,
  .premium-services-header h2,
  .cta-heading,
  .route-hero-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }

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

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .new-hero-container {
    min-height: 560px;
  }
}

/* ---- Tablet & below (≤991px) ---- */
@media (max-width: 991px) {
  .container {
    width: min(1200px, calc(100% - 28px));
  }

  .section,
  .pricing-section,
  .seo-content-section,
  .premium-why-us,
  .premium-services-section,
  .section-bg-light,
  .section-bg-white,
  .trusted-service-section {
    padding: 60px 0;
  }

  .inner-hero-section,
  .split-hero-section,
  .svc-hero {
    padding: 100px 0 60px;
  }

  .inner-hero-title,
  .split-hero-title,
  .svc-hero h1 {
    font-size: clamp(1.7rem, 4vw, 2.2rem);
  }

  .route-hero-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }

  .cta-heading {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
  }

  .cta-highlights-row {
    gap: 16px !important;
  }

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

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

  .footer-top {
    padding: 48px 0 36px;
  }

  .contact-premium-form-wrap,
  .booking-card-light,
  .svc-booking-card {
    padding: 28px 20px;
  }

  .map-container {
    height: 320px;
  }

  .hero-visual-img {
    height: 260px;
  }

  .company-float-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
  }

  .offset-booking-wrapper {
    margin-top: -40px;
  }

  .split-hero-text {
    max-width: 100%;
  }

  .thankyou-section {
    min-height: auto;
    padding: 60px 0;
  }
}

/* ---- Mobile landscape / large phones (≤767px) ---- */
@media (max-width: 767px) {
  html {
    font-size: 15px;
  }

  .container {
    width: min(1200px, calc(100% - 24px));
  }

  .section,
  .pricing-section,
  .seo-content-section,
  .premium-why-us,
  .premium-services-section,
  .section-bg-light,
  .section-bg-white,
  .trusted-service-section,
  .map-section {
    padding: 48px 0;
  }

  .new-hero-section {
    padding: 0.85rem 0.5rem;
    margin-bottom: 24px;
  }

  .new-hero-container {
    min-height: 320px;
    border-radius: 14px;
  }

  .new-hero-content {
    padding: 1.5rem 1.1rem;
  }

  .new-hero-content h1,
  .premium-heading {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    margin-bottom: 12px;
  }

  .premium-subheading,
  .new-hero-content p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .typed-cursor {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .custom-booking-widget {
    width: 100%;
    margin: -28px auto 28px;
  }

  .booking-tabs-header {
    margin-left: 6px;
    gap: 4px;
  }

  .b-tab-btn {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 10px 10px 0 0;
  }

  .booking-form-body {
    padding: 16px 14px;
    border-radius: 12px;
  }

  .b-form-group label {
    font-size: 10px;
  }

  .form-control,
  .b-form-group input,
  .b-form-group select {
    font-size: 16px;
    /* prevents iOS zoom */
    min-height: 44px;
  }

  .fleet-grid,
  .services-grid,
  .about-values-grid,
  .pricing-grid,
  .premium-why-grid,
  .premium-services-grid,
  .services-opt-grid,
  .testimonials-grid,
  .trusted-features-grid,
  .route-info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trusted-feature-card.trusted-card-full {
    grid-column: span 1;
  }

  .p-why-card,
  .premium-service-card,
  .route-info-card,
  .service-opt-card,
  .value-card {
    padding: 24px 18px;
  }

  .seo-card-container {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .seo-card-title {
    font-size: clamp(1.2rem, 5vw, 1.45rem);
    width: 100%;
  }

  .inner-hero-section,
  .split-hero-section,
  .svc-hero {
    padding: 90px 0 48px;
  }

  .inner-hero-title,
  .split-hero-title,
  .svc-hero h1,
  .route-hero-title {
    font-size: clamp(1.4rem, 6.5vw, 1.85rem);
  }

  .cta-heading {
    font-size: clamp(1.35rem, 5.5vw, 1.7rem);
  }

  .cta-subtext,
  .svc-cta-banner p {
    font-size: 0.95rem;
  }

  .cta-highlights-row {
    gap: 12px !important;
  }

  .cta-btn-gold,
  .cta-btn-whatsapp,
  .route-hero-btn,
  .premium-submit-btn,
  .b-submit-btn,
  .section-cta .btn,
  .luxury-cta-banner .btn,
  .cta-action-card .cta-btn-gold,
  .cta-action-card .cta-btn-whatsapp {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .cta-btn-gold,
  .cta-btn-whatsapp {
    display: flex;
    margin: 0;
  }

  .d-flex.gap-4,
  .cta-actions,
  .thankyou-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px !important;
  }

  .map-container {
    height: 260px;
    border-radius: 14px;
  }

  .contact-premium-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .contact-info-panel,
  .contact-premium-form-wrap {
    padding: 24px 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .booking-card-light {
    padding: 22px 16px !important;
  }

  .contact-premium-section {
    padding: 40px 0 !important;
    overflow: hidden !important;
  }

  .contact-premium-form-wrap h3 {
    font-size: 1.4rem !important;
    margin-bottom: 18px !important;
  }

  .contact-info-item {
    gap: 14px !important;
    margin-bottom: 18px !important;
  }

  .contact-info-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    font-size: 1.05rem !important;
  }

  .contact-info-text h4 {
    font-size: 1rem !important;
  }

  .contact-info-text a,
  .contact-info-text p {
    font-size: 0.88rem !important;
  }

  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
  }

  .hero-visual-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 0.82rem;
    padding: 8px 12px;
  }

  .company-bg-card h2,
  .trusted-title,
  .premium-why-header h2,
  .premium-services-header h2 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .trusted-feature-card {
    flex-direction: column;
    padding: 18px 16px;
  }

  .trusted-showcase-box {
    padding: 22px 16px;
  }

  .luxury-gold-badge,
  .premium-badge {
    font-size: 0.72rem;
    padding: 6px 12px;
    letter-spacing: 1px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .header-top-left .top-link:nth-child(2) {
    display: none;
  }

  .site-header {
    padding-top: 8px;
  }

  .header-top {
    margin-top: -8px;
    padding: 6px 0;
  }

  .main-nav {
    width: min(300px, 88vw);
    padding: 72px 16px 24px;
  }

  .brand-logo img {
    max-height: 40px !important;
  }

  .btn-header {
    padding: 10px 12px;
    min-width: 42px;
  }

  .float-buttons {
    right: 10px;
    bottom: 12px;
    gap: 10px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .thankyou-card {
    margin: 0 8px;
    padding: 32px 16px;
  }

  .thankyou-title {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }

  .inclusion-list li,
  .route-info-list li {
    flex-wrap: wrap;
    gap: 6px;
  }

  .route-details-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .place-autocomplete-item {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .alert-success-premium,
  .alert-error-premium,
  .alert-validation-premium {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .p-form-row {
    flex-direction: column;
  }

  .p-form-row .half {
    width: 100%;
  }
}

/* ---- Small phones (≤480px) ---- */
@media (max-width: 480px) {
  html {
    font-size: 14.5px;
  }

  .container {
    width: calc(100% - 20px);
  }

  .new-hero-section {
    padding: 0.6rem 0.35rem;
  }

  .new-hero-container {
    min-height: 280px;
    border-radius: 12px;
  }

  .new-hero-content {
    padding: 1.25rem 0.9rem;
  }

  .new-hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 100%);
  }

  .b-tab-btn {
    padding: 9px 11px;
    font-size: 11px;
  }

  .booking-form-body {
    padding: 14px 12px;
  }

  .section-label {
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(1.35rem, 7vw, 1.7rem);
  }

  h2 {
    font-size: clamp(1.25rem, 5.5vw, 1.55rem);
  }

  .about-collage {
    min-height: 240px;
  }

  .collage-secondary,
  .collage-accent {
    border-width: 2px;
  }

  .svc-cta-banner {
    padding: 48px 14px;
  }

  .svc-cta-banner h2 {
    font-size: 1.35rem;
  }

  .map-container {
    height: 220px;
  }

  .company-float-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .marquee-item {
    font-size: 10px;
    padding: 5px 10px;
  }
}

/* ---- Minimum width support (320px) ---- */
@media (max-width: 360px) {
  .container {
    width: calc(100% - 16px);
  }

  .header-inner {
    padding: 8px 10px;
    gap: 8px;
  }

  .brand-logo img {
    max-height: 34px !important;
  }

  .hamburger {
    width: 36px;
    height: 36px;
    padding: 6px;
  }

  .btn-header {
    padding: 8px 10px;
  }

  .main-nav {
    width: min(288px, 92vw);
    padding: 64px 12px 20px;
  }

  .nav-item-link {
    padding: 12px 10px;
    font-size: 0.9rem;
  }

  .new-hero-content h1,
  .premium-heading,
  .inner-hero-title,
  .route-hero-title,
  .svc-hero h1 {
    font-size: 1.3rem;
    line-height: 1.25;
  }

  .premium-subheading,
  .new-hero-content p {
    font-size: 0.88rem;
  }

  .b-tab-btn {
    padding: 8px 9px;
    font-size: 10px;
  }

  .booking-tabs-header {
    margin-left: 2px;
  }

  .p-why-card,
  .premium-service-card,
  .value-card,
  .route-info-card {
    padding: 18px 12px;
  }

  .seo-card-container {
    padding: 16px 10px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .float-buttons {
    right: 8px;
    bottom: 10px;
  }

  .top-link {
    font-size: 0.7rem;
  }
}

/* Prevent horizontal scroll from decorative absolute elements */
@media (max-width: 991px) {

  .trusted-bg-glow,
  .thankyou-section::before,
  .thankyou-section::after {
    max-width: 100vw;
  }
}

/* ============================================
   Lightweight Bootstrap-compatible helpers
   (front layout does not load Bootstrap)
   ============================================ */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.row>[class*="col-"] {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}

.col-12,
.col-md-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-items-stretch {
  align-items: stretch;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.w-100 {
  width: 100%;
}

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

.text-white {
  color: #fff;
}

.g-4 {
  gap: 0;
}

.g-4>[class*="col-"] {
  margin-bottom: 24px;
}

.gap-4 {
  gap: 1.5rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-7:only-child,
  .col-lg-10:only-child,
  .col-lg-5:only-child {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .g-4>[class*="col-"] {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .row>[class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }

  .cta-action-card {
    padding: 24px 16px;
  }

  .cta-cards-grid {
    gap: 16px;
    margin-top: 28px;
  }

  .premium-modal {
    padding: 12px;
    align-items: flex-start;
  }

  .premium-modal-content {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    padding: 20px 14px;
    border-radius: 14px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

  .premium-modal-header h2 {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   Comprehensive Responsive Overrides (Laptop, Tablet & Mobile Views)
   ========================================================================== */

/* ---- Laptop & Large Screens (992px - 1200px) ---- */
@media (min-width: 992px) and (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .pricing-footer {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* ---- Compact desktop header (1101px - 1200px) ---- */
@media (min-width: 1101px) and (max-width: 1200px) {
  .header-main {
    max-width: 100%;
    padding: 0 10px;
  }

  .header-inner {
    width: 100%;
    gap: 10px;
    padding: 10px 14px;
  }

  .site-header.is-scrolled .header-inner {
    padding: 8px 18px;
  }

  .brand-logo {
    flex-shrink: 0;
  }

  .brand-logo img {
    max-height: 48px !important;
    width: auto;
  }

  .main-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
  }

  .main-nav ul {
    gap: 0;
    flex-wrap: nowrap;
  }

  .nav-item-link {
    padding: 8px 9px;
    font-size: 0.82rem;
    gap: 4px;
  }

  .nav-item-link::after {
    left: 9px;
    right: 9px;
  }

  .header-actions {
    flex-shrink: 0;
  }

  .btn-header {
    padding: 10px 14px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .header-top-inner {
    gap: 10px;
  }

  .header-top-left,
  .header-top-right {
    gap: 12px;
  }
}

/* ---- Tablet View (768px - 991px) ---- */
@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
  }

  .contact-premium-grid,
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .premium-modal {
    align-items: center;
    padding: 16px;
  }

  .premium-modal-content {
    width: 92%;
    max-width: 520px;
    max-height: 88vh;
    overflow-y: auto;
    padding: 28px 22px;
  }
}

/* ---- Mobile View (≤767px) ---- */
@media (max-width: 767px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .pricing-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .pricing-footer .btn {
    min-width: 110px;
    padding: 10px 18px;
    font-size: 0.88rem;
  }

  .premium-modal {
    padding: 12px;
    align-items: center;
    justify-content: center;
  }

  .premium-modal-content {
    width: 96%;
    max-width: 100%;
    margin: 10px auto;
    padding: 22px 16px;
    border-radius: 16px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .premium-modal-header h2 {
    font-size: 1.35rem;
  }

  .premium-modal-close {
    top: 12px;
    right: 16px;
    font-size: 24px;
  }

  .p-form-row {
    flex-direction: column !important;
    gap: 12px;
  }

  .p-form-row .half {
    width: 100% !important;
  }

  .p-form-group input,
  .p-form-group select {
    font-size: 16px !important;
    /* Prevents iOS Safari automatic zoom */
    min-height: 46px;
  }

  .place-autocomplete-dropdown {
    max-height: 200px;
    z-index: 10050;
  }
}

/* ---- Small Phones (≤480px) ---- */
@media (max-width: 480px) {
  .pricing-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .pricing-footer .btn {
    width: 100% !important;
    justify-content: center;
  }

  .price-amount {
    font-size: 24px;
  }

  .premium-modal-content {
    padding: 18px 14px;
    margin: 6px auto;
  }

  .b-submit-btn,
  .premium-submit-btn {
    font-size: 15px;
    height: 46px;
  }
}

/* ---- Ultra Small Screens (≤360px) ---- */
@media (max-width: 360px) {
  .container {
    width: calc(100% - 14px) !important;
  }

  .premium-modal-content {
    padding: 16px 12px;
  }

  .premium-modal-header h2 {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   Mobile Navigation Drawer & Header Responsive Fixes
   (≤1100px covers 1024 laptop/tablet widths where desktop nav wraps)
   ========================================================================== */
@media (max-width: 1100px) {

  html,
  body {
    overflow-x: clip !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.menu-open .site-header {
    z-index: 100000 !important;
  }

  .hamburger {
    display: flex !important;
    position: relative;
    z-index: 100001 !important;
  }

  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9990 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .header-top {
    display: none !important;
  }

  .header-main {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 10px !important;
  }

  .header-inner {
    border-radius: 50px !important;
    padding: 8px 14px !important;
    margin: 6px auto !important;
    width: 100% !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    gap: 10px !important;
    justify-content: space-between !important;
  }

  .brand-logo img {
    max-height: 42px !important;
    width: auto !important;
  }

  .btn-header {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #F5C518 0%, #D69E00 100%) !important;
    color: #111111 !important;
    box-shadow: 0 4px 14px rgba(245, 197, 24, 0.4) !important;
    flex-shrink: 0 !important;
  }

  .btn-header span {
    display: none !important;
  }

  .btn-header i {
    font-size: 1rem !important;
    margin: 0 !important;
  }

  .main-nav {
    position: fixed !important;
    top: 0 !important;
    right: -120% !important;
    width: 310px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #ffffff !important;
    z-index: 100002 !important;
    padding: 20px 20px 30px !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4) !important;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .main-nav.is-open {
    right: 0 !important;
  }

  .mobile-drawer-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 20 !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 20px 14px !important;
    margin: -20px -20px 16px -20px !important;
    border-bottom: 1px solid #eeeeee !important;
    width: calc(100% + 40px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  }

  .mobile-drawer-brand img {
    max-height: 40px !important;
    width: auto !important;
  }

  .mobile-drawer-close {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: #f5f5f5 !important;
    border: 1px solid #e0e0e0 !important;
    color: #1a1a1a !important;
    font-size: 1.1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }

  .mobile-drawer-close:hover,
  .mobile-drawer-close:active {
    background: var(--gold, #F5C518) !important;
    color: #111111 !important;
    border-color: var(--gold, #F5C518) !important;
  }

  .main-nav ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .main-nav ul li {
    width: 100% !important;
    border-bottom: 1px solid #f2f2f2 !important;
    list-style: none !important;
  }

  .main-nav .nav-item-link {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 8px !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    width: 100% !important;
  }

  .main-nav .nav-item-link::after {
    display: none !important;
  }

  .main-nav .nav-dropdown {
    position: static !important;
  }

  .main-nav .nav-dropdown>a i.nav-arrow {
    transition: transform 0.3s ease;
  }

  .main-nav .nav-dropdown.is-open>a i.nav-arrow {
    transform: rotate(180deg);
  }

  .main-nav .nav-dropdown .nav-mega-dropdown {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    box-shadow: none !important;
    border: 1px solid #eee !important;
    padding: 12px !important;
    background: #fafafa !important;
    border-radius: 12px !important;
    margin: 6px 0 12px !important;
  }

  .main-nav .nav-dropdown.is-open .nav-mega-dropdown {
    display: block !important;
  }

  .main-nav .mega-routes-grid {
    grid-template-columns: 1fr !important;
    max-height: 280px !important;
    overflow-y: auto !important;
    gap: 8px !important;
  }

  .main-nav .mega-route-card {
    padding: 10px 12px !important;
    background: #ffffff !important;
  }
}

/* Backdrop Overlay & Glassmorphism Blur when Mobile Menu is Open */
body.menu-open::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  animation: fadeInBackdrop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInBackdrop {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }

  to {
    opacity: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

body.menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}

body.menu-open main,
body.menu-open footer,
body.menu-open .hero,
body.menu-open .section,
body.menu-open .new-hero-section {
  filter: blur(3px);
  transition: filter 0.3s ease;
}

/* ==========================================================================
   Mobile Responsive Viewport & Horizontal Overflow Fixes
   ========================================================================== */
html,
body {
  width: 100% !important;
  max-width: 100% !important;
}

#main-content,
main {
  overflow-x: clip !important;
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 991px) {

  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .new-hero-section {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    overflow-x: hidden !important;
  }

  .new-hero-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .custom-booking-widget {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .booking-tabs-header {
    margin-left: 0 !important;
    padding-left: 4px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .booking-form-body {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .b-form-row {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .b-form-group {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .b-form-group input,
  .b-form-group select,
  .b-submit-btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
  }

  .luxury-marquee-section {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .container {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Luxury Content Card for Legal Pages */
.luxury-content-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(245, 197, 24, 0.2) !important;
}

.luxury-content-card h2 {
  color: var(--dark);
  font-size: 1.4rem;
  font-weight: 700;
}

.luxury-content-card p.text-muted {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Anti-Autofill WebKit Styling Rules */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: inherit !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* ==========================================
   SEO Content Section & Description Styling
   ========================================== */
.seo-content-section {
  padding: 60px 0;
  background: var(--dark-bg, #121214);
}

.seo-card-container {
  background: #1a1a1f;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(245, 197, 24, 0.2);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.seo-card-title {
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(245, 197, 24, 0.3);
  word-break: break-word;
  overflow-wrap: break-word;
}

.seo-content-wrapper {
  position: relative;
  max-height: 260px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.seo-content-wrapper.expanded {
  max-height: 15000px !important;
  overflow: visible;
}

.seo-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(26, 26, 31, 0), rgba(26, 26, 31, 0.98));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.seo-content-wrapper.expanded .seo-content-overlay {
  opacity: 0;
  visibility: hidden;
}

.seo-body-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.8;
  word-break: break-word;
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
  overflow-x: auto;
}

.seo-body-text p {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  word-break: break-word;
  overflow-wrap: break-word;
}

.seo-body-text h1,
.seo-body-text h2,
.seo-body-text h3,
.seo-body-text h4,
.seo-body-text h5,
.seo-body-text h6 {
  color: #ffffff;
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
  word-break: break-word;
  overflow-wrap: break-word;
}

.seo-body-text h2 {
  font-size: 1.35rem;
  color: var(--gold, #f5c518);
}

.seo-body-text h3 {
  font-size: 1.2rem;
  color: #ffffff;
}

.seo-body-text h4 {
  font-size: 1.1rem;
  color: var(--gold, #f5c518);
}

.seo-body-text a,
.seo-body-text .inline-seo-link {
  color: var(--gold, #f5c518);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
  word-break: break-word;
  overflow-wrap: break-word;
}

.seo-body-text a:hover,
.seo-body-text .inline-seo-link:hover {
  color: #ffffff;
}

.seo-body-text ul,
.seo-body-text ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.seo-body-text li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}

.seo-body-text strong,
.seo-body-text b {
  color: #ffffff;
  font-weight: 600;
}

.seo-body-text table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}

.seo-body-text table th,
.seo-body-text table td {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  word-break: break-word;
}

.seo-body-text table th {
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold, #f5c518);
  font-weight: 700;
}

.seo-body-text img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.seo-toggle-action {
  text-align: center;
  margin-top: 25px;
  position: relative;
  z-index: 10;
}

.seo-read-more-btn {
  background: var(--gold, #f5c518);
  color: #111111;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3);
  transition: all 0.3s ease;
}

.seo-read-more-btn:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.seo-read-more-btn i {
  transition: transform 0.3s ease;
}

.seo-read-more-btn.expanded i {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .seo-card-container {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .seo-card-title {
    font-size: 1.3rem;
  }

  .seo-body-text {
    font-size: 0.95rem;
  }
}

/* ============================================================
   Custom Country Code Select2 Integration Styles
   Matches the requested UI screenshot
   ============================================================ */

/* The combo wrapper */
.phone-input-combo {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #f8f8f8;
  overflow: hidden;
}

.phone-input-combo:focus-within {
  border-color: #F5C518;
  box-shadow: 0 0 5px rgba(245, 197, 24, 0.2);
  background: #ffffff;
}

/* Adjust Select2 container to blend with input */
.phone-input-combo .select2-container--default .select2-selection--single {
  border: none !important;
  background: transparent !important;
  height: 48px;
  display: flex;
  align-items: center;
  border-radius: 0;
  /* Removed border-right for a seamless look */
}

/* Fix focus outline on select2 */
.phone-input-combo .select2-container--default.select2-container--focus .select2-selection--single {
  outline: none;
}

/* The selected item view */
.cc-selection-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  padding-left: 12px;
}

.cc-sel-arrow {
  font-size: 0.7rem;
  color: #666;
  margin-left: 2px;
  margin-top: 2px;
}

.cc-sel-dial {
  font-weight: 500;
  color: #333;
}

/* Hide default select2 arrow */
.phone-input-combo .select2-selection__arrow {
  display: none !important;
}

/* The actual phone input */
.phone-input-combo input[type="tel"] {
  flex: 1;
  border: none !important;
  background: transparent !important;
  height: 48px !important;
  padding-left: 6px !important;
  /* Closer to the dial code */
  font-size: 0.95rem;
  outline: none !important;
  box-shadow: none !important;
  color: #333;
}

.phone-input-combo input[type="tel"]::placeholder {
  color: #999;
}

/* Dropdown list styling */
.select2-container--default .select2-dropdown {
  border: 1px solid #F5C518 !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  min-width: 260px !important;
  max-width: 90vw !important;
  margin-top: 4px;
  background: #fff !important;
  /* Keep Select2 dropdown below the sticky header (z-index:1000) on all pages */
  z-index: 999 !important;
}

/* When Select2 is inside a modal, the dropdownParent is the modal element,
   so the dropdown is not a body child — it inherits the modal's stacking
   context and needs a higher z-index to show above modal content */
.premium-modal .select2-container--default .select2-dropdown,
.modal .select2-container--default .select2-dropdown {
  z-index: 100010 !important;
}

@media (max-width: 400px) {
  .select2-container--default .select2-dropdown {
    min-width: 220px !important;
    max-width: 85vw !important;
  }

  .cc-dropdown-row {
    gap: 8px !important;
    font-size: 0.85rem !important;
  }
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: none;
  border-bottom: 1px solid #eee;
  border-radius: 0;
  padding: 10px 14px;
  outline: none !important;
  font-size: 0.9rem;
  color: #555;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-bottom-color: #F5C518;
}

.select2-results__option {
  padding: 10px 14px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #FFF8DC !important;
  color: #333 !important;
}

.cc-dropdown-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.cc-dropdown-row .cc-name {
  flex: 1;
  color: #333;
}

.cc-dropdown-row .cc-dial {
  color: #555;
  font-weight: 500;
}

/* Image flag styling */
.cc-img-flag {
  width: 24px;
  height: 16px;
  min-width: 24px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  display: inline-block;
  vertical-align: middle;
}

/* Fix iOS Auto-Zoom Issue on Form Fields */
@media screen and (max-width: 767px) {

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  input[type="password"],
  input[type="number"],
  input[type="date"],
  input[type="search"],
  textarea,
  select,
  .form-control,
  .b-input,
  .p-input,
  .premium-input,
  .select2-selection,
  .select2-selection__rendered,
  .place-autocomplete-input {
    font-size: 16px !important;
  }
}

/* ============================================
   iOS AOS SAFETY FALLBACK
   On iOS Chrome, AOS IntersectionObserver can
   silently fail after a hard refresh, leaving
   [data-aos] elements permanently invisible.
   This CSS guarantees they become visible
   after 1.5s as a fail-safe.
   ============================================ */
@keyframes aiosFallbackShow {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fallback ONLY applies when AOS has NOT yet animated the element.
   Once AOS adds .aos-animate, this selector no longer matches,
   so AOS's own CSS transitions run completely undisturbed. */
[data-aos]:not(.aos-animate) {
  animation: aiosFallbackShow 0.6s ease-out 1.5s both;
}

/* ============================================
   POPULAR ROUTES SECTION
   ============================================ */
.popular-routes-section {
  background: #f8f9fb;
}

.popular-routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* ---- Route Card ---- */
.pr-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
}

.pr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
  text-decoration: none;
  color: inherit;
}

/* Hidden cards (beyond first 6) */
.pr-card--hidden {
  display: none;
}

/* ---- Image Block ---- */
.pr-img-wrap {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
  flex-shrink: 0;
}

.pr-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.pr-card:hover .pr-img {
  transform: scale(1.07);
}

/* KM pill badge — top-right of image */
.pr-km-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 15, 15, 0.78);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* ---- Card Body ---- */
.pr-card-body {
  padding: 14px 16px 10px;
  flex: 1;
}

.pr-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-heading);
  line-height: 1.4;
  margin-bottom: 10px;
}

.pr-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pr-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

.pr-duration i {
  font-size: 0.75rem;
  color: #888;
}

.pr-fare {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
}

/* ---- Card Footer: Book Now button ---- */
.pr-card-footer {
  padding: 12px 16px;
  border-top: 1px solid #f0f0f0;
}

.pr-reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 9px 0;
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: background 0.22s ease, color 0.22s ease;
}

.pr-card:hover .pr-reserve-btn,
.pr-reserve-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.pr-reserve-btn i {
  font-size: 0.75rem;
  transition: transform 0.22s ease;
}

.pr-card:hover .pr-reserve-btn i {
  transform: translateX(4px);
}

/* ---- Show More Button ---- */
.popular-routes-toggle {
  margin-top: 36px;
}

.pr-show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.28s ease;
}

.pr-show-more-btn:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 197, 24, 0.35);
}

.pr-chevron {
  transition: transform 0.3s ease;
}

.pr-show-more-btn.is-expanded .pr-chevron {
  transform: rotate(180deg);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .popular-routes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .popular-routes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .pr-img-wrap {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .popular-routes-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pr-img-wrap {
    height: 180px;
  }

  .pr-title {
    font-size: 0.93rem;
  }
}

/* ---- Vehicle Card Action Buttons (Call & WhatsApp) ---- */
.pricing-card-actions {
  display: flex;
  width: 100%;
  gap: 12px;
  margin-top: 16px;
}

.pr-card-actions {
  padding: 0 16px 14px 16px;
  margin-top: 10px;
}

.pr-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  flex: 1;
}

.pr-card-link:hover {
  color: inherit;
  text-decoration: none;
}

.btn-card-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}


/* Call Button */
.btn-card-call {
  background-color: #ffffff;
  color: #1a1a1a;
  border: 1.5px solid #e5e7eb;
}

.btn-card-call:hover {
  background-color: var(--gold, #F5C518);
  color: #0D0D0D;
  border-color: var(--gold, #F5C518);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.35);
}

/* WhatsApp Button */
.btn-card-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  border: 1.5px solid #25d366;
}

.btn-card-whatsapp:hover {
  background-color: #1ebd5b;
  border-color: #1ebd5b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}