/* ============================================
   AHMEDABAD AIRPORT TAXI - Premium Stylesheet
   Brand: Yellow #F5C518, Deep Blue #1E3A8A, Black #0D0D0D
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --yellow: #F5C518;
  --yellow-dark: #D4A815;
  --yellow-light: #FFF5CC;
  --yellow-gradient: linear-gradient(135deg, #F5C518 0%, #F0A500 100%);
  --blue: #1E3A8A;
  --blue-mid: #1A56DB;
  --blue-dark: #162D6E;
  --blue-light: #EEF2FF;
  --blue-gradient: linear-gradient(135deg, #1E3A8A 0%, #1A56DB 100%);
  --black: #0D0D0D;
  --dark: #0F172A;
  --gray: #64748B;
  --gray-light: #F8FAFC;
  --gray-border: #E2E8F0;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
  --shadow: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
  --shadow-xl: 0 25px 60px rgba(0, 0, 0, .18);
  --shadow-glow-yellow: 0 8px 30px rgba(245, 197, 24, .30);
  --shadow-glow-blue: 0 8px 30px rgba(30, 58, 138, .25);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

.logo-image {
  width: 140px;
  height: auto;
  transition: var(--transition);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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;
}

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

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

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

/* ---- Layout ---- */
.container {
  width: min(1200px, 94%);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray-light);
}

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

/* ---- Animate On Scroll ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 12px;
  color: var(--black);
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--yellow-gradient);
  color: var(--black);
  box-shadow: 0 4px 15px rgba(245, 197, 24, .25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-yellow);
}

.btn-blue {
  background: var(--blue-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(30, 58, 138, .20);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--black);
}

.btn-outline:hover {
  background: var(--yellow);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .4);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .7);
  transform: translateY(-2px);
}

.btn-outline-white i {
  transition: var(--transition);
}

.btn-outline-white:hover i {
  transform: scale(1.15);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

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

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

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

.whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.call-btn {
  background: var(--blue);
  color: #fff;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

/* ---- Header Top Bar ---- */
.header-top {
  background: var(--dark);
  color: rgba(255, 255, 255, .85);
  font-size: 0.8rem;
  transition: var(--transition);
  overflow: hidden;
  max-height: 44px;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, 96%);
  margin: 0 auto;
  padding: 8px 0;
}

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

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .75);
  font-size: 0.8rem;
  transition: var(--transition-fast);
  letter-spacing: 0.2px;
}

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

.top-link i {
  font-size: 0.75rem;
  color: var(--yellow);
}

.top-badge {
  background: rgba(245, 197, 24, .12);
  padding: 3px 12px;
  border-radius: 50px;
  border: 1px solid rgba(245, 197, 24, .2);
  color: var(--yellow);
  font-weight: 600;
}

/* ---- Main Header ---- */
.header-main {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.site-header.scrolled .header-main {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .08);
  border-bottom-color: rgba(245, 197, 24, .3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  width: min(1280px, 96%);
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo:hover .logo-image {
  transform: scale(1.03);
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--yellow-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--black);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--black);
}

.logo-sub {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-white .logo-main {
  color: var(--white);
}

.logo-white .logo-sub {
  color: var(--yellow);
}

/* Main Nav */
.main-nav ul {
  display: flex;
  gap: 2px;
}

.main-nav>ul>li {
  position: relative;
}

.main-nav>ul>li>a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.1px;
  cursor: pointer;
}

/* Active underline indicator */
.main-nav>ul>li>a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2.5px;
  background: var(--yellow-gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav>ul>li>a:hover,
.main-nav>ul>li>a.active {
  color: var(--blue);
}

.main-nav>ul>li>a:hover::after,
.main-nav>ul>li>a.active::after {
  transform: scaleX(1);
}

.main-nav>ul>li>a .fa-chevron-down {
  font-size: 0.65rem;
  transition: var(--transition);
  opacity: 0.5;
}

.main-nav>ul>li.open>a .fa-chevron-down {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  background: var(--white);
  min-width: 230px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  border: 1px solid rgba(0, 0, 0, .05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 24px;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: rotate(45deg);
  border-left: 1px solid rgba(0, 0, 0, .05);
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition-fast);
  border-radius: 0;
}

.dropdown li a:hover {
  background: var(--blue-light);
  color: var(--blue);
  padding-left: 24px;
}

.dropdown li a i {
  color: var(--blue-mid);
  width: 18px;
  font-size: 0.85rem;
}

/* Header CTA */
.header-cta .btn-call {
  background: var(--yellow-gradient);
  color: var(--black);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(245, 197, 24, .25);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.header-cta .btn-call::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .25) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.header-cta .btn-call:hover::before {
  transform: translateX(100%);
}

.header-cta .btn-call:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-yellow);
}

.header-cta .btn-call i {
  animation: phonePulse 2s infinite;
}

@keyframes phonePulse {

  0%,
  100% {
    transform: rotate(0);
  }

  20% {
    transform: rotate(-10deg);
  }

  40% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(-5deg);
  }

  80% {
    transform: rotate(5deg);
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10002;
}

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

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

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

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

.mobile-menu-close {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--yellow-gradient);
  color: var(--black);
  box-shadow: var(--shadow);
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0A1628 0%, #0F2647 30%, #1E3A8A 60%, #1A56DB 100%);
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

/* Animated road lines */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg,
      var(--yellow) 0, var(--yellow) 60px,
      transparent 60px, transparent 100px);
  background-size: 100px 100%;
  animation: roadMove 2s linear infinite;
}

@keyframes roadMove {
  from {
    background-position: 0;
  }

  to {
    background-position: 100px;
  }
}

/* Decorative glass orbs */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  filter: blur(1px);
}

.hero-decor-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  top: -250px;
  right: -150px;
  opacity: 0.08;
}

.hero-decor-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--white) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  opacity: 0.04;
}

.hero-decor-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  top: 25%;
  left: 18%;
  opacity: 0.08;
  animation: floatOrb 8s ease-in-out infinite;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-25px) scale(1.05);
  }
}

/* Hero grid content */
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, 94%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 56px;
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, .1);
  border: 1px solid rgba(245, 197, 24, .25);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease both;
}

.hero-badge i {
  font-size: 0.85rem;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

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

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

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

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFD54F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text>p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 32px;
  line-height: 1.85;
  max-width: 520px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
  letter-spacing: 0.3px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s both;
}

/* ============================================
   BOOKING FORM CARD — Premium Redesign
   ============================================ */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .20);
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--blue-mid));
  border-radius: 0 0 4px 4px;
}

.booking-title {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black);
}

.booking-title span {
  color: var(--blue);
}

/* Booking Tabs — pill style */
.booking-tabs {
  display: flex;
  gap: 6px;
  background: var(--gray-light);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 22px;
  border: 1px solid var(--gray-border);
}

.booking-tab {
  flex: 1;
  padding: 10px 6px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 9px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray);
  border: none;
  background: none;
  position: relative;
}

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

.booking-tab.active {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  font-weight: 700;
}

/* Form controls */
.form-group {
  margin-bottom: 14px;
}

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--gray-light);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, .1), 0 1px 3px rgba(0, 0, 0, .06);
  transform: translateY(-1px);
}

.form-control::placeholder {
  color: #94A3B8;
}

/* Custom Transfer Type Pill Selector */
.transfer-type-selector {
  display: flex;
  background: var(--gray-light);
  padding: 5px;
  border-radius: 12px;
  border: 1.5px solid var(--gray-border);
  gap: 5px;
  margin-bottom: 5px;
}

.transfer-pill-item {
  flex: 1;
  padding: 10px 15px;
  border: none;
  background: transparent;
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.transfer-pill-item i {
  font-size: 0.95rem;
  opacity: 0.7;
}

.transfer-pill-item:hover {
  color: var(--blue);
  background: rgba(30, 58, 138, 0.05);
}

.transfer-pill-item.active {
  background: var(--blue-gradient);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.transfer-pill-item.active i {
  opacity: 1;
}

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

.form-note {
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note i {
  color: var(--blue-mid);
}

/* Submit button — strong gradient CTA */
.booking-card .btn-primary {
  background: linear-gradient(135deg, #1E3A8A 0%, #1A56DB 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(30, 58, 138, .3);
  border-radius: 12px;
  letter-spacing: 0.3px;
}

.booking-card .btn-primary:hover {
  box-shadow: 0 8px 30px rgba(30, 58, 138, .4);
  transform: translateY(-2px);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--yellow-gradient);
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1) 0%, transparent 50%, rgba(255, 255, 255, .1) 100%);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--black);
  font-size: 0.88rem;
}

.trust-item i {
  font-size: 1.15rem;
  color: var(--blue);
}

/* ============================================
   POPULAR ROUTES
   ============================================ */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 24px;
}

.route-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid #F0F1F3;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.route-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--yellow);
  transition: var(--transition);
}

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

.route-card:hover::before {
  background: var(--blue);
}

.route-from-to {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.route-city {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
}

.route-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--yellow-light);
  border-radius: 50%;
  color: var(--yellow-dark);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.route-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.route-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray);
}

.route-meta-item i {
  color: var(--blue-mid);
}

.route-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.route-price .from {
  font-size: 0.8rem;
  color: var(--gray);
}

.route-price .amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
}

.route-price .unit {
  font-size: 0.8rem;
  color: var(--gray);
}

.route-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}

.route-book-btn:hover {
  color: var(--blue-dark);
}

.route-book-btn i {
  font-size: 0.75rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.feature-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--yellow-light), #FFF0A0);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--yellow-dark);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--yellow-gradient);
  color: var(--white);
  transform: rotate(5deg) scale(1.05);
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--black);
}

.feature-card p {
  font-size: 0.88rem;
}

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid #F0F1F3;
  transition: var(--transition);
}

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

.fleet-img {
  background: linear-gradient(135deg, var(--blue-light), #E8EEFA);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fleet-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
}

.fleet-img i {
  font-size: 4rem;
  color: var(--blue);
}

.fleet-body {
  padding: 24px;
}

.fleet-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 8px;
}

.fleet-desc {
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.fleet-tag {
  background: var(--yellow-light);
  color: var(--yellow-dark);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.fleet-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-heading);
}

.fleet-price .amt {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
}

.fleet-price .unit {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-table {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-header {
  background: linear-gradient(90deg, var(--dark), var(--blue-dark));
  padding: 20px 28px;
  color: var(--white);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid #F0F1F3;
  transition: var(--transition);
  align-items: center;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:hover {
  background: var(--yellow-light);
}

.pricing-row .route-name {
  font-weight: 600;
  color: var(--black);
  font-size: 0.92rem;
}

.pricing-row .price-cell {
  font-weight: 700;
  color: var(--blue);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
  font-family: serif;
}

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--black);
  font-size: 0.95rem;
}

.testimonial-trip {
  font-size: 0.8rem;
  color: var(--gray);
}

.stars {
  color: #F59E0B;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--yellow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  gap: 16px;
}

.faq-question .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  transition: var(--transition);
}

.faq-item.open .faq-question .icon {
  background: var(--yellow);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.9;
}

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--yellow-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  margin-bottom: 28px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1A3A6E 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 197, 24, .08) 0%, transparent 70%);
}

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

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.cta-banner p {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   TRIP DETAILS PAGE
   ============================================ */
.trip-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
  padding: 80px 0 60px;
  color: var(--white);
}

.trip-hero-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.trip-route-display {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trip-city {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
}

.trip-arrow {
  font-size: 2rem;
  color: var(--yellow);
}

.trip-type-badge {
  display: inline-block;
  background: rgba(245, 197, 24, .2);
  border: 1px solid rgba(245, 197, 24, .4);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-top: 12px;
}

.trip-quick-info {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.trip-quick-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, .8);
}

.trip-price-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
  min-width: 200px;
}

.trip-price-label {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.trip-price-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue);
}

.trip-price-unit {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Booking Sidebar */
.trip-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.booking-sidebar {
  position: sticky;
  top: 90px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.booking-sidebar-header {
  background: var(--yellow-gradient);
  padding: 20px 24px;
}

.booking-sidebar-header h3 {
  font-size: 1.1rem;
  color: var(--black);
}

.booking-sidebar-body {
  padding: 28px 24px;
}

/* Car Cards */
.car-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.car-card {
  border: 2px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.car-card:hover,
.car-card.selected {
  border-color: var(--blue);
  background: var(--blue-light);
}

.car-icon {
  font-size: 2rem;
  color: var(--blue);
  width: 44px;
  text-align: center;
}

.car-info {
  flex: 1;
}

.car-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
}

.car-seats {
  font-size: 0.8rem;
  color: var(--gray);
}

.car-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue);
}

.car-price s {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 14px 0;
  background: var(--yellow-light);
  border-bottom: 1px solid #E5E7EB;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
}

.breadcrumb-inner a {
  color: var(--blue);
}

.breadcrumb-inner a:hover {
  text-decoration: underline;
}

.breadcrumb-inner .sep {
  opacity: 0.4;
}

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

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

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

/* ============================================
   BADGES & MISC
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.badge-yellow {
  background: var(--yellow-light);
  color: var(--yellow-dark);
}

.badge-blue {
  background: var(--blue-light);
  color: var(--blue);
}

.badge-green {
  background: #D1FAE5;
  color: #065F46;
}

.badge-live {
  background: #FEE2E2;
  color: #DC2626;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* Divider */
.divider {
  height: 1px;
  background: #E5E7EB;
  margin: 24px 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand .footer-desc {
  color: rgba(255, 255, 255, .6);
  font-size: 0.88rem;
  margin: 16px 0 24px;
  line-height: 1.9;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-link.whatsapp {
  background: #25D366;
  color: #fff;
}

.social-link.phone {
  background: var(--blue);
  color: #fff;
}

.social-link.email {
  background: #EA4335;
  color: #fff;
}

.social-link:hover {
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-links ul li a {
  color: rgba(255, 255, 255, .6);
  font-size: 0.88rem;
  display: block;
  padding: 5px 0;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--yellow);
  padding-left: 6px;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, .6);
}

.footer-contact ul li i {
  color: var(--yellow);
  margin-top: 1px;
  flex-shrink: 0;
}

.footer-contact ul li a {
  color: rgba(255, 255, 255, .6);
}

.footer-contact ul li a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .4);
  font-size: 0.82rem;
}

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

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

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* ============================================
   PAGE INNER (static pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1A3A6E 100%);
  padding: 64px 0;
  color: var(--white);
}

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

.page-hero p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  max-width: 600px;
}

.page-content {
  padding: 72px 0;
}

/* ============================================
   CONFIRMATION / THANK YOU
   ============================================ */
.confirm-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 48px;
  max-width: 660px;
  margin: 60px auto;
}

.confirm-green {
  width: 72px;
  height: 72px;
  background: #D1FAE5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #065F46;
  margin: 0 auto 24px;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.detail-table td {
  padding: 12px 0;
  border-bottom: 1px solid #F0F1F3;
  font-size: 0.92rem;
}

.detail-table td:first-child {
  color: var(--gray);
  width: 40%;
}

.detail-table td:last-child {
  font-weight: 600;
  color: var(--black);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .header-top {
    display: none !important;
  }

  .header-inner {
    padding: 8px 0;
  }


  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 80vw;
    max-width: 360px;
    height: 100dvh;
    min-height: 100vh;
    background: var(--white);
    z-index: 10001;
    padding: 12px 20px 32px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-left: 1px solid #F0F1F3;
    box-shadow: -18px 0 40px rgba(0, 0, 0, .16);
  }

  .mobile-menu-close {
    display: inline-flex;
    margin-left: auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--yellow-gradient);
    color: var(--black);
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 10;
    transition: var(--transition);
  }

  .mobile-menu-close:hover {
    transform: rotate(90deg);
  }


  .main-nav.open ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 8px;
  }

  .main-nav.open>ul>li>a {
    padding: 14px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #F0F1F3;
    border-radius: 0;
  }

  .main-nav.open>ul>li>a::after {
    display: none;
  }

  .main-nav.open>ul>li>a:hover {
    background: none;
    color: var(--blue);
    padding-left: 8px;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0.3s;
    border: none;
    border-radius: 0;
    padding-left: 16px;
  }

  .dropdown::before {
    display: none;
  }

  .open>.dropdown {
    visibility: visible;
    max-height: 400px;
  }

  .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: hidden;
  }

  .has-dropdown.open>.dropdown {
    visibility: visible;
    opacity: 1;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .booking-card {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .trip-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }

  .trip-hero-content {
    grid-template-columns: 1fr;
  }

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

  .pricing-header,
  .pricing-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .pricing-header>*:nth-child(4),
  .pricing-header>*:nth-child(5),
  .pricing-row>*:nth-child(4),
  .pricing-row>*:nth-child(5) {
    display: none;
  }
}

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

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

  .hero {
    min-height: auto;
    padding: 80px 0 56px;
  }

  .hero-stats {
    gap: 20px;
  }

  .features-grid,
  .fleet-grid,
  .testimonials-grid,
  .routes-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-bar-inner {
    gap: 20px;
  }

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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

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

  .confirm-card {
    padding: 28px 20px;
    margin: 32px auto;
  }

  .header-cta .btn-call span {
    display: none;
  }

  .header-cta .btn-call {
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .pricing-header,
  .pricing-row {
    font-size: 0.8rem;
    padding: 14px 16px;
    gap: 8px;
  }
}

.is-invalid {
  border-color: #DC2626 !important;
}

.invalid-feedback {
  color: #DC2626;
  font-size: 0.8rem;
  display: block;
  margin-top: 4px;
}

.validation-error {
  color: #e74c3c;
  font-size: 0.82rem;
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

/* ============================================
   UTILITY: replaces all inline styles
   ============================================ */

/* Hide/show toggling (replaces style="display:none") */
.is-hidden {
  display: none !important;
}

/* Icon colour helpers used in form labels */
.icon-blue {
  color: var(--blue);
}

.icon-yellow {
  color: var(--yellow-dark);
}

/* Full-width submit button (replaces style="width:100%;justify-content:center;padding:16px") */
.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px !important;
}

/* Fleet section helpers */
.fleet-book-btn {
  margin-top: 12px;
}

.fleet-view-all {
  text-align: center;
  margin-top: 32px;
}

/* ============================================
   HOW IT WORKS — Step Cards
   Replaces inline position/font/color/margin styles
   ============================================ */
.steps-container {
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  text-align: left;
  position: relative;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: #F0F1F3;
  font-family: var(--font-heading);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.step-icon {
  margin: 0 0 16px;
}

.step-icon-blue {
  background: linear-gradient(135deg, var(--blue-light), #B8C9F5) !important;
}

.step-icon-blue i {
  color: var(--blue) !important;
}

.step-icon-green {
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0) !important;
}

.step-icon-green i {
  color: #065F46 !important;
}

/* ============================================
   TESTIMONIALS — Rating Summary
   Replaces inline styles in testimonials bottom block
   ============================================ */
.testimonial-rating-summary {
  text-align: center;
  margin-top: 32px;
}

.testimonial-rating-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.testimonial-rating-highlight {
  color: var(--blue);
}

.testimonial-rating-stars {
  font-size: 1.4rem;
  margin-top: 8px;
}

/* ============================================
   FAQ — View-all wrapper
   ============================================ */
.faq-view-all {
  text-align: center;
  margin-top: 32px;
}

/* ============================================
   AUTOCOMPLETE DROPDOWN
   Replaces inline cssText in main.js
   ============================================ */
.autocomplete-list {
  position: absolute;
  z-index: 999;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
  margin-top: 4px;
  width: 100%;
  max-height: 220px;
  overflow-y: auto;
  list-style: none;
  padding: 6px 0;
}

.autocomplete-item {
  padding: 10px 16px;
  cursor: pointer;
  font-size: .9rem;
  color: #374151;
  transition: background .15s;
}

.autocomplete-item:hover {
  background: var(--yellow-light);
}

.autocomplete-loading {
  color: #6B7280;
  cursor: not-allowed;
  text-align: center;
  font-weight: 500;
}

.autocomplete-loading i {
  margin-right: 8px;
  color: var(--blue);
}

.autocomplete-error {
  color: #EF4444;
  cursor: not-allowed;
  text-align: center;
  font-weight: 500;
}

.autocomplete-error i {
  margin-right: 8px;
}

/* ============================================
   POP-UP MODAL  (moved from pop-up.blade.php)
   ============================================ */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.overlay.open {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .22);
  animation: modalSlideUp .25s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(32px) scale(.97);
  }

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

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: var(--gray-light);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--yellow);
  color: var(--black);
  transform: rotate(90deg);
}

.modal h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  color: var(--black);
}

.modal .sub {
  font-size: 0.83rem;
  color: var(--gray);
  margin-bottom: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field input {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-main);
  outline: none;
  width: 100%;
  background: var(--gray-light);
  color: var(--dark);
  transition: var(--transition);
}

.field input:focus {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, .10);
}

.popup-error {
  display: block;
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 4px;
  font-weight: 500;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #1E3A8A 0%, #1A56DB 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: var(--transition);
  font-family: var(--font-main);
}

.btn-submit:hover {
  box-shadow: 0 8px 24px rgba(30, 58, 138, .35);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .modal {
    padding: 26px 18px;
  }
}

/* ============================================================
   AIRPORT-THEMED UI REDESIGN — Home Page
   ============================================================ */

/* ---- Hero: Sky layers & atmosphere ---- */
.hero {
  background: linear-gradient(165deg,
      #020B18 0%,
      #061529 20%,
      #0A2240 45%,
      #112E5C 70%,
      #1A3F7A 100%) !important;
  min-height: 100vh;
  padding: 80px 0 60px;
}

.hero-sky-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 0%, rgba(26, 86, 219, .18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 50%, rgba(245, 197, 24, .04) 0%, transparent 70%);
  pointer-events: none;
}

/* Starfield dots */
.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255, 255, 255, .7) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 8%, rgba(255, 255, 255, .5) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 20%, rgba(255, 255, 255, .6) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 5%, rgba(255, 255, 255, .4) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 12%, rgba(255, 255, 255, .6) 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 25%, rgba(255, 255, 255, .5) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 35%, rgba(255, 255, 255, .3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 8%, rgba(255, 255, 255, .5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 30%, rgba(255, 255, 255, .4) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 40%, rgba(255, 255, 255, .3) 0%, transparent 100%);
}

/* Glowing orbs */
.hero-runway {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  z-index: 1;
  overflow: hidden;
}

.runway-lights {
  display: flex;
  height: 100%;
  align-items: flex-end;
  padding-bottom: 6px;
  gap: 0;
}

.runway-lights::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .06);
}

.runway-lights span {
  flex: 1;
  height: 10px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 0 6%;
  opacity: 0;
  animation: runwayBlink 1.8s ease-in-out infinite;
  box-shadow: 0 0 8px var(--yellow);
}

.runway-lights span:nth-child(1) {
  animation-delay: 0s;
}

.runway-lights span:nth-child(2) {
  animation-delay: .18s;
}

.runway-lights span:nth-child(3) {
  animation-delay: .36s;
}

.runway-lights span:nth-child(4) {
  animation-delay: .54s;
}

.runway-lights span:nth-child(5) {
  animation-delay: .72s;
}

.runway-lights span:nth-child(6) {
  animation-delay: .90s;
}

.runway-lights span:nth-child(7) {
  animation-delay: 1.08s;
}

.runway-lights span:nth-child(8) {
  animation-delay: 1.26s;
}

.runway-lights span:nth-child(9) {
  animation-delay: 1.44s;
}

.runway-lights span:nth-child(10) {
  animation-delay: 1.62s;
}

@keyframes runwayBlink {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* Glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 86, 219, .15) 0%, transparent 70%);
  top: -180px;
  right: -120px;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 197, 24, .06) 0%, transparent 70%);
  bottom: 60px;
  left: 5%;
  animation: floatOrb 10s ease-in-out infinite;
}

/* ---- Hero: Trust mini-pills ---- */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}

/* ---- Hero CTA buttons ---- */
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .85);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.hero-trust-pill i {
  color: var(--yellow);
  font-size: 0.75rem;
}

.hero-trust-pill:hover {
  background: rgba(245, 197, 24, .15);
  border-color: rgba(245, 197, 24, .3);
}

/* ---- Hero CTA buttons ---- */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--yellow-gradient);
  color: var(--black);
  font-weight: 700;
  padding: 14px 28px 14px 16px;
  border-radius: 14px;
  border: none;
  box-shadow: 0 8px 24px rgba(245, 197, 24, .35);
  transition: var(--transition);
  cursor: pointer;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(245, 197, 24, .45);
}

.btn-hero-primary .btn-icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 0, 0, .12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.btn-hero-primary .btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.btn-hero-primary small {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, .15);
  border: 1.5px solid rgba(37, 211, 102, .4);
  color: #fff;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 14px;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

/* ============================================
   PREMIUM COMPONENTS
   ============================================ */

/* ---- Immersive Page Hero ---- */
.page-hero-airport {
  position: relative;
  background: linear-gradient(135deg, #0A1628 0%, #0F2647 30%, #1E3A8A 60%, #1A56DB 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  color: var(--white);
  border-bottom: 2px solid var(--yellow);
}

.page-hero-airport h1 {
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.page-hero-airport p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

/* Starfield Background */
.starfield {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(white, rgba(255, 255, 255, 0.2) 1px, transparent 2px);
  background-size: 100px 100px;
  opacity: 0.15;
  animation: starsMove 100s linear infinite;
  pointer-events: none;
}

@keyframes starsMove {
  from { background-position: 0 0; }
  to { background-position: 100% 100%; }
}

/* Runway Lights Animation */
.runway-lights {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0 20px;
  pointer-events: none;
}

.light-dot {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: lightSequence 3s infinite;
}

@keyframes lightSequence {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Sequential delay for runway lights */
.light-dot:nth-child(1) { animation-delay: 0.1s; }
.light-dot:nth-child(2) { animation-delay: 0.2s; }
.light-dot:nth-child(3) { animation-delay: 0.3s; }
.light-dot:nth-child(4) { animation-delay: 0.4s; }
.light-dot:nth-child(5) { animation-delay: 0.5s; }
.light-dot:nth-child(6) { animation-delay: 0.6s; }
.light-dot:nth-child(7) { animation-delay: 0.7s; }
.light-dot:nth-child(8) { animation-delay: 0.8s; }

/* ---- Route Layout Grid ---- */
.route-layout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  padding: 80px 0;
}

@media (max-width: 1024px) {
  .route-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---- Vehicle Selection Cards ---- */
.vehicle-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.vehicle-card-premium {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.vehicle-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--yellow);
}

.vehicle-card-premium.selected {
  border: 2px solid var(--yellow);
  box-shadow: var(--shadow-glow-yellow);
}

.vehicle-img-wrapper {
  background: var(--gray-light);
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.vehicle-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: var(--transition);
}

.vehicle-card-premium:hover .vehicle-img-wrapper img {
  transform: scale(1.1);
}

.vehicle-details {
  padding: 24px;
}

.vehicle-type {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-mid);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.vehicle-name {
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 12px;
}

.vehicle-features {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray);
}

.feature-tag i {
  color: var(--yellow-dark);
}

.vehicle-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--gray-border);
  padding-top: 20px;
}

.vehicle-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
}

.vehicle-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
}

/* ---- Pricing Table ---- */
.pricing-table-modern {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table-modern th,
.pricing-table-modern td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--gray-border);
}

.pricing-table-modern th {
  background: var(--gray-light);
  color: var(--blue-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.pricing-table-modern tr:last-child td {
  border-bottom: none;
}

.pricing-table-modern .price-cell {
  font-weight: 800;
  color: var(--black);
  font-size: 1.1rem;
}

/* ---- Service Components ---- */
.service-feature-card-premium {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}

.service-feature-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  background: var(--blue-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-feature-card-premium:hover .feature-icon-wrapper {
  background: var(--yellow);
  color: var(--black);
  transform: scale(1.1);
}

.service-cta-premium {
  background: linear-gradient(135deg, #1E3A8A 0%, #162D6E 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  color: var(--white);
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-cta-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(245, 197, 24, 0.15) 0%, transparent 50%);
}

.service-cta-premium h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.ab {
  color: #000000;
}

.ab:hover {
  color: #000000 !important;
}

.btn-hero-whatsapp:hover {
  background: rgba(37, 211, 102, .25);
  border-color: #25D366;
  transform: translateY(-2px);
  color: #fff;
}

.btn-hero-whatsapp i {
  font-size: 1.2rem;
  color: #25D366;
}

/* ---- Booking Card: header row ---- */
.booking-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.booking-card-icon {
  font-size: 2rem;
  color: var(--yellow-dark);
  flex-shrink: 0;
}

.booking-subtitle {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 2px 0 0;
}

/* Booking tabs — add icons */
.booking-tab i {
  margin-right: 4px;
  font-size: 0.8rem;
}

/* Full-width submit in booking card */
.btn-booking-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  background: linear-gradient(135deg, #1E3A8A 0%, #1A56DB 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(30, 58, 138, .3);
  transition: var(--transition);
}

.btn-booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 58, 138, .45);
}

/* ============================================================
   TRUST TICKER (scrolling marquee-style bar)
   ============================================================ */
.trust-ticker-wrap {
  background: var(--yellow-gradient);
  overflow: hidden;
  padding: 0;
  border-top: 3px solid rgba(255, 255, 255, .15);
  border-bottom: 3px solid rgba(0, 0, 0, .06);
}

.trust-ticker {
  overflow: hidden;
  padding: 14px 0;
}

.trust-ticker-inner {
  display: flex;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}

.trust-ticker-wrap:hover .trust-ticker-inner {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

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

.trust-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

.trust-ticker-item i {
  font-size: 1rem;
  color: var(--blue);
}

/* Separator between items */
.trust-ticker-item::after {
  content: '✦';
  margin-left: 36px;
  font-size: 0.5rem;
  opacity: .5;
}

/* ============================================================
   ROUTES — Redesigned cards with dot-line connector
   ============================================================ */
.route-card-top {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
}

.route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.route-dot-from {
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, .25);
}

.route-dot-to {
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, .2);
}

.route-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg,
      var(--gray-border) 0, var(--gray-border) 6px,
      transparent 6px, transparent 12px);
  margin: 0 6px;
}

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

.route-card:hover .route-line {
  background: repeating-linear-gradient(90deg,
      var(--yellow) 0, var(--yellow) 6px,
      transparent 6px, transparent 12px);
}

.route-book-btn {
  background: var(--blue);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  margin-top: 0;
}

.route-card:hover .route-book-btn {
  background: var(--yellow);
  color: var(--black);
}

/* ============================================================
   WHY CHOOSE US — Horizontal advantage cards
   ============================================================ */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.advantage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.advantage-icon-wrap {
  flex-shrink: 0;
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--yellow-light), #FFF0A0);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow-dark);
  transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
  background: var(--yellow-gradient);
  color: var(--black);
  transform: scale(1.08) rotate(-3deg);
}

.advantage-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.advantage-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   FLEET — Badge system & CTA row
   ============================================================ */
.fleet-img-wrap {
  background: linear-gradient(135deg, #EEF2FF, #D8E4FF);
  padding: 8px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

.fleet-img-wrap img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  transition: transform .4s ease;
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.06) translateY(-4px);
}

.fleet-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow-gradient);
}

.fleet-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 10px;
  border-radius: 50px;
}

.fleet-badge-popular {
  background: var(--yellow);
  color: var(--black);
}

.fleet-badge-premium {
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
  color: #fff;
}

.fleet-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-border);
}

.btn-fleet-book {
  background: var(--yellow-gradient);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-fleet-book:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-yellow);
  color: var(--black);
}

/* ============================================================
   HOW IT WORKS — Dark section with step circles
   ============================================================ */
.section-dark-alt {
  background: linear-gradient(135deg, #0A1628 0%, #122040 50%, #1A3A6E 100%);
  padding: 80px 0;
}

.section-dark-alt .section-tag-light {
  background: rgba(245, 197, 24, .15);
  color: var(--yellow);
  border: 1px solid rgba(245, 197, 24, .25);
}

.text-white {
  color: #fff !important;
}

.text-white-muted {
  color: rgba(255, 255, 255, .65) !important;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-item {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 2px solid rgba(255, 255, 255, .15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  transition: var(--transition);
}

.step-circle:hover,
.step-item:hover .step-circle {
  border-color: var(--yellow);
  background: rgba(245, 197, 24, .1);
}

.step-circle-yellow {
  background: rgba(245, 197, 24, .12);
  border-color: rgba(245, 197, 24, .4);
}

.step-circle-green {
  background: rgba(16, 185, 129, .1);
  border-color: rgba(16, 185, 129, .35);
}

.step-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .35);
  line-height: 1;
}

.step-ico {
  font-size: 1.4rem;
  color: var(--yellow);
  margin-top: 2px;
}

.step-circle-green .step-ico {
  color: #10B981;
}

.step-item h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 10px;
}

.step-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
}

.step-connector {
  position: absolute;
  top: 44px;
  right: -16px;
  color: rgba(255, 255, 255, .2);
  font-size: 1.1rem;
  z-index: 2;
}

.step-connector-hidden {
  visibility: hidden;
}

/* ============================================================
   TESTIMONIALS — Top-row layout (avatar + name + stars)
   ============================================================ */
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.stars-sm {
  margin-left: auto;
  color: #F59E0B;
  font-size: 0.82rem;
  white-space: nowrap;
}

.testimonial-avatar-blue {
  background: var(--blue-gradient) !important;
}

.testimonial-avatar-green {
  background: linear-gradient(135deg, #059669, #10B981) !important;
}

.testimonial-quote-mark {
  font-size: 3rem;
  color: var(--yellow);
  line-height: .6;
  margin-bottom: 12px;
  font-family: serif;
}

/* ============================================================
   CTA BANNER — Plane decoration
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-plane-decor {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  font-size: 16rem;
  color: rgba(255, 255, 255, .03);
  pointer-events: none;
  line-height: 1;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-text {
  flex: 1;
  min-width: 260px;
  text-align: left;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.cta-text p {
  color: rgba(255, 255, 255, .72);
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ============================================================
   RESPONSIVE — Airport UI
   ============================================================ */
@media (max-width: 1024px) {
  .advantage-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-row {
    gap: 24px;
  }

  .step-connector {
    display: none;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 70px 0 50px;
  }

  .hero-plane {
    display: none;
  }

  .hero-trust-row {
    gap: 8px;
  }

  .hero-trust-pill {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .btn-hero-primary {
    width: 100%;
  }

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

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

  .step-item {
    max-width: 100%;
    width: 100%;
  }

  .trust-ticker-item {
    padding: 0 22px;
  }

  .route-card-top {
    display: none;
  }

  .fleet-cta-row {
    flex-direction: row;
  }

  .cta-plane-decor {
    font-size: 8rem;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-stat {
    min-width: 70px;
  }
}

/* ============================================================
   ADVANTAGE SECTION — Stat cards + Feature cards
   ============================================================ */

/* ---- Stat row (4 counters across the top) ---- */
.adv-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.adv-stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.adv-stat-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.adv-stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.adv-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Watermark icon */
.adv-stat-icon {
  position: absolute;
  bottom: -8px;
  right: 12px;
  font-size: 4.5rem;
  color: var(--gray-border);
  line-height: 1;
  transition: var(--transition);
  pointer-events: none;
}

.adv-stat-card:hover .adv-stat-icon {
  color: rgba(245, 197, 24, .18);
  transform: scale(1.1) rotate(-6deg);
}

.adv-stat-card:hover .adv-stat-num {
  color: var(--yellow-dark);
}

/* ---- Feature cards grid (8 cards, 4 per row) ---- */
.adv-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.adv-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 22px 22px;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.adv-feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gray-border);
  border-radius: 4px 0 0 4px;
  transition: var(--transition);
}

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

.adv-feature-card:hover::before {
  background: var(--yellow-gradient);
}

/* Icon + number row */
.adv-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.adv-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
  flex-shrink: 0;
}

/* Icon colour variants */
.adv-icon-yellow {
  background: linear-gradient(135deg, var(--yellow-light), #FFF0A0);
  color: var(--yellow-dark);
}

.adv-icon-blue {
  background: linear-gradient(135deg, var(--blue-light), #C7D7F9);
  color: var(--blue);
}

.adv-icon-green {
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
  color: #065F46;
}

.adv-icon-purple {
  background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
  color: #5B21B6;
}

.adv-feature-card:hover .adv-feature-icon {
  transform: scale(1.1) rotate(-4deg);
}

.adv-feature-card:hover .adv-icon-yellow {
  background: var(--yellow-gradient);
  color: var(--black);
}

.adv-feature-card:hover .adv-icon-blue {
  background: var(--blue-gradient);
  color: #fff;
}

.adv-feature-card:hover .adv-icon-green {
  background: linear-gradient(135deg, #059669, #10B981);
  color: #fff;
}

.adv-feature-card:hover .adv-icon-purple {
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
  color: #fff;
}

.adv-feature-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gray-border);
  line-height: 1;
  transition: var(--transition);
}

.adv-feature-card:hover .adv-feature-num {
  color: rgba(245, 197, 24, .25);
}

.adv-feature-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.adv-feature-card p {
  font-size: 0.83rem;
  line-height: 1.75;
  color: var(--gray);
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .adv-stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 480px) {
  .adv-stat-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .adv-feature-grid {
    grid-template-columns: 1fr;
  }

  .adv-stat-num {
    font-size: 2rem;
  }
}

/* Also hide hero-plane on mobile (already removed from HTML, just safety) */
/* ============================================================
   SECONDARY PAGE HERO — Airport Night Sky
   ============================================================ */

.page-hero-airport {
  background: linear-gradient(165deg, #020B18 0%, #061529 20%, #0A2240 45%, #112E5C 70%, #1A3F7A 100%) !important;
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.page-hero-airport .container {
  position: relative;
  z-index: 2;
}

.page-hero-airport h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--font-heading);
}

.page-hero-airport p {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(255, 255, 255, .7);
  max-width: 700px;
}

/* Breadcrumbs (for secondary heros) */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  font-weight: 600;
}

.breadcrumb-link {
  color: var(--yellow);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb-link:hover {
  color: var(--white);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, .4);
}

.breadcrumb-current {
  color: rgba(255, 255, 255, .7);
}

/* ============================================================
   FLEET PAGE — Detailed View
   ============================================================ */

.fleet-detail-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fleet-row-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1.5px solid var(--gray-border);
  transition: var(--transition);
}

.fleet-row-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

/* Left: visual box */
.fleet-detail-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.fleet-detail-visual img {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  transition: .4s ease;
}

.fleet-row-card:hover .fleet-detail-visual img {
  transform: scale(1.08) translateY(-4px);
}

.fleet-detail-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--yellow-gradient);
}

.fleet-type-label {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

/* Variant backgrounds */
.bg-gradient-yellow {
  background: linear-gradient(135deg, var(--yellow-light), #FFECA0);
  color: var(--yellow-dark);
}

.bg-gradient-blue {
  background: linear-gradient(135deg, var(--blue-light), #D0DFFF);
  color: var(--blue);
}

/* Right: content area */
.fleet-detail-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-detail-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--black);
}

.fleet-detail-info p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Feature grid inside detailed card */
.fleet-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.fleet-spec-item {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: var(--transition);
}

.fleet-spec-item i {
  color: var(--blue);
  font-size: 1.2rem;
  margin-bottom: 8px;
  display: block;
}

.fleet-spec-item-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
}

.fleet-row-card:hover .fleet-spec-item {
  background: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--gray-border);
}

/* Pricing & Booking Row */
.fleet-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-border);
}

.price-box small {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.price-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
}

@media (max-width: 992px) {
  .fleet-row-card {
    grid-template-columns: 1fr;
  }

  .fleet-detail-visual {
    padding: 32px 0;
  }
}

@media (max-width: 480px) {
  .fleet-spec-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   UTILITY: Spacing & Layout
   ============================================ */
.mt-1 {
  margin-top: 4px !important;
}

.mt-2 {
  margin-top: 8px !important;
}

.mt-3 {
  margin-top: 16px !important;
}

.mt-4 {
  margin-top: 24px !important;
}

.mt-5 {
  margin-top: 32px !important;
}

.mb-1 {
  margin-bottom: 4px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.mb-3 {
  margin-bottom: 16px !important;
}

.mb-4 {
  margin-bottom: 24px !important;
}

.mb-5 {
  margin-bottom: 32px !important;
}

.d-flex {
  display: flex !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.gap-2 {
  gap: 8px !important;
}

.gap-3 {
  gap: 16px !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

/* ============================================================
   SECONDARY PAGE HERO — Airport Night Sky

/* ============================================================
   CONTACT PAGE — Modern Icon Cards & Form
   ============================================================ */

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1.5px solid var(--gray-border);
  transition: var(--transition);
}

.contact-method-card:hover {
  transform: translateX(8px);
  border-color: var(--yellow);
  box-shadow: var(--shadow);
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-method-card:hover .contact-method-icon {
  transform: scale(1.1) rotate(-8deg);
}

/* Icon colour variants */
.cm-blue {
  background: #EEF2FF;
  color: var(--blue);
}

.cm-green {
  background: #E8FFF0;
  color: #25D366;
}

.cm-red {
  background: #FFF0F0;
  color: #EA4335;
}

.cm-yellow {
  background: var(--yellow-light);
  color: var(--yellow-dark);
}

.contact-method-card a {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}

.contact-method-card a:hover {
  color: var(--yellow-dark);
}

.contact-method-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-method-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* Status Online Badge */
.status-online-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8FFF0;
  color: #065F46;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  animation: status-pulse 2s infinite ease-out;
}

@keyframes status-pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Premium Form Card */
.contact-form-premium {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--gray-border);
  position: relative;
  overflow: hidden;
}

.contact-form-premium::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--blue-gradient);
}

.contact-form-premium h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-note-footer {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
}

.form-note-footer i {
  color: #10B981;
}

@media (max-width: 768px) {
  .contact-form-premium {
    padding: 28px 20px;
  }
}

/* ============================================================
   ABOUT PAGE — Story & Achievement Stats
   ============================================================ */

.about-story-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about-stat-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-stat-card {
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.about-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ACHIEVEMENT COLOURS */
.bg-stat-yellow {
  background: linear-gradient(135deg, var(--yellow-light), #FFECA0);
  color: var(--yellow-dark);
}

.bg-stat-blue {
  background: linear-gradient(135deg, var(--blue-light), #D0DFFF);
  color: var(--blue);
}

.bg-stat-green {
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
  color: #065F46;
}

@media (max-width: 992px) {
  .about-story-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 480px) {
  .about-stat-grid-premium {
    grid-template-columns: 1fr;
  }

  .about-stat-card {
    padding: 32px 20px;
  }

  .about-stat-num {
    font-size: 2.4rem;
  }
}

/* ============================================================
   FAQ PAGE — Premium Accordion & Help Banner
   ============================================================ */

.faq-premium-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.faq-item-premium {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1.5px solid var(--gray-border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item-premium:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
}

.faq-question-premium {
  padding: 22px 28px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: var(--transition);
}

.faq-question-premium .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--blue);
  transition: transform 0.4s ease, background 0.3s;
  flex-shrink: 0;
}

.faq-item-premium.open {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.faq-item-premium.open .faq-question-premium {
  color: var(--blue);
  background: #F8FAFF;
}

.faq-item-premium.open .icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: var(--white);
}

.faq-answer-premium {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  display: none;
}

.faq-item-premium.open .faq-answer-premium {
  display: block;
}

/* Still Have Questions? Banner */
.faq-help-banner {
  background: linear-gradient(135deg, #FDFCF0 0%, #FFFBEB 100%);
  border-top: 1.5px solid rgba(245, 197, 24, 0.2);
  border-bottom: 1.5px solid rgba(245, 197, 24, 0.2);
  padding: 64px 0;
  text-align: center;
}

.faq-help-banner h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.faq-help-banner p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .faq-premium-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .faq-question-premium {
    padding: 18px 20px;
    font-size: 0.98rem;
  }

  .faq-answer-premium {
    padding: 0 20px 20px;
  }
}