/* Rajput Travels - Refined Professional UI */

:root {
  /* Professional Color Palette */
  --primary: #d96b1d;
  --primary-dark: #b85714;
  --secondary: #e9873a;
  --accent: #25d366;
  --gradient-main: none;
  --gradient-hero: none;
  --gradient-card: none;
  
  /* Neutral Colors */
  --dark: #122033;
  --dark-light: #23344a;
  --gray: #5f6f82;
  --gray-light: #d4dbe3;
  --white: #ffffff;
  --light: #f4f7fa;
  --light-gray: #e7edf3;
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  
  /* Spacing */
  --container-width: 1240px;
  --section-padding: 60px 0;
  --border-radius: 10px;
  --border-radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 6px 20px rgba(18, 32, 51, 0.06);
  --shadow-md: 0 12px 32px rgba(18, 32, 51, 0.08);
  --shadow-lg: 0 20px 48px rgba(18, 32, 51, 0.12);
  --shadow-primary: 0 12px 28px rgba(217, 107, 29, 0.18);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 1.8rem; font-weight: 700; }
h3 { font-size: 1.8rem; font-weight: 600; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray);
  font-size: 1rem;
}

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

a:hover {
  color: var(--primary-dark);
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(217, 107, 29, 0.24);
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--primary);
  border-color: var(--gray-light);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

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

/* Top Bar */
.topbar {
  background: #0d1b2e;
  color: rgba(255,255,255,0.75);
  padding: 7px 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-left a,
.topbar-right span {
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.topbar-left a:hover {
  color: #fff;
}

.topbar-left a i,
.topbar-right span i {
  color: var(--primary);
  font-size: 0.72rem;
}

.topbar-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #fff !important;
  padding: 5px 13px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}

.topbar-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  color: #fff !important;
}

/* Navbar */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  transition: box-shadow 0.25s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(18, 32, 51, 0.09);
  border-bottom-color: transparent;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  height: 64px;
  padding: 0;
}

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

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

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

.logo-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.001em;
  line-height: 1;
}

.logo-main strong {
  color: var(--primary);
  font-weight: 800;
}

.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 4px;
}

/* Desktop nav group */
.nav-desktop-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links > li > a {
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 40px;
  padding: 0 13px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-links > li > a:hover {
  color: var(--primary);
  background: rgba(217,107,29,0.07);
}

.nav-links > li > a .fa-chevron-down {
  font-size: 0.6rem;
  opacity: 0.5;
  margin-left: 1px;
}

/* Active link indicator */
.nav-links > li > a.active {
  color: var(--primary);
  background: rgba(217,107,29,0.08);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  min-width: 200px;
  max-height: 320px;
  overflow-y: auto;
  box-shadow: 0 16px 40px rgba(18,32,51,0.13);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
  padding: 6px;
}

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

.dropdown li {
  border-bottom: none;
}

.dropdown a {
  display: flex;
  align-items: center;
  min-height: auto;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.dropdown a:hover {
  background: rgba(217,107,29,0.08);
  color: var(--primary);
}

/* CTA button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 40px;
  background: var(--primary);
  color: var(--white) !important;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(217,107,29,0.25);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(217,107,29,0.3);
  color: var(--white) !important;
}

.nav-cta-desktop {
  flex-shrink: 0;
  margin-left: 8px;
}

.nav-mobile-cta {
  display: none !important;
}

.nav-links .nav-cta::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  cursor: pointer;
  padding: 9px 10px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

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

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

/* Hero Section */
.hero {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Booking Form */
.booking-section {
  padding: 60px 0;
  background: var(--light);
}

.booking-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.form-title {
  text-align: center;
  margin-bottom: 2rem;
}

.form-title h2 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group input,
.form-group select {
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 107, 29, 0.12);
}

.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 107, 29, 0.12);
}

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

/* Sections */
section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

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

.card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.card-content {
  padding: 25px;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.card-text {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Route Cards */
.route-card {
  background: var(--gradient-card);
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  padding: 25px;
  transition: var(--transition);
}

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

.route-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.route-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

.route-distance {
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.route-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-bottom: 1.5rem;
}

.price-item {
  text-align: center;
  padding: 12px;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--light-gray);
}

.price-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 4px;
}

.price-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

/* Fleet Cards */
.fleet-card {
  text-align: center;
}

.fleet-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--white);
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary);
  font-family: serif;
  line-height: 1;
}

/* Homepage */
.homepage {
  background: var(--white);
}

.homepage section {
  position: relative;
}

.homepage .booking-section {
  padding-top: 56px;
  background: linear-gradient(180deg, #eef3f8 0%, #f7f9fc 100%);
}

.homepage .booking-form {
  max-width: 1120px;
  padding: 42px;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}

.homepage .form-title {
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.homepage .form-title h2 {
  font-size: 2rem;
  margin-bottom: 0.65rem;
}

.homepage .form-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.homepage .form-submit {
  display: flex;
  justify-content: center;
}

.homepage .form-submit .btn {
  min-width: 280px;
}

.homepage .cards-grid,
.homepage .features-grid,
.homepage .contact-grid,
.homepage .about-grid {
  align-items: stretch;
}

.homepage .cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.homepage .route-card,
.homepage .card,
.homepage .testimonial-card,
.homepage .feature-item,
.homepage .info-panel,
.homepage .map-frame {
  border: 1px solid var(--gray-light);
}

.homepage .card,
.homepage .testimonial-card,
.homepage .info-panel {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.homepage .route-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.homepage .route-card:hover,
.homepage .card:hover,
.homepage .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.homepage .route-header {
  align-items: flex-start;
  gap: 14px;
}

.homepage .route-title {
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.homepage .route-distance {
  background: #eaf2fa;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.homepage .route-pricing {
  gap: 12px;
}

.homepage .price-item {
  padding: 14px 12px;
  border-radius: 12px;
  background: #f8fafc;
}

.homepage .price-value {
  color: var(--dark);
}

.homepage .card-image {
  height: 220px;
}

.homepage .card-content {
  padding: 26px;
}

.homepage .fleet-card {
  text-align: left;
}

.homepage .card-title {
  font-size: 1.25rem;
}

.homepage .card-price {
  color: var(--dark);
}

.homepage .action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.homepage .action-row .btn {
  width: 100%;
}

.homepage .features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.homepage .feature-item {
  padding: 32px 24px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.homepage .feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  background: #eaf2fa;
  color: var(--primary);
}

.homepage .testimonial-card {
  padding: 32px 28px;
}

.homepage .testimonial-text {
  font-style: normal;
  color: var(--dark-light);
}

.homepage .author-avatar {
  background: var(--primary);
}

.homepage .blog-meta {
  flex-wrap: wrap;
}

.homepage .blog-category {
  background: #eaf2fa;
  color: var(--primary);
  font-weight: 600;
}

.homepage .about-grid,
.homepage .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
}

.homepage .info-panel {
  padding: 30px;
  height: 100%;
}

.homepage .info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 16px;
}

.homepage .info-row:first-child {
  margin-top: 0;
}

.homepage .info-row i {
  margin-top: 2px;
  font-size: 1rem;
}

.homepage .map-frame {
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.homepage .contact-panel {
  display: flex;
  flex-direction: column;
}

.homepage .contact-block {
  margin-bottom: 20px;
}

.homepage .contact-block:last-of-type {
  margin-bottom: 28px;
}

.homepage .contact-block h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.65rem;
}

.homepage .contact-panel .btn,
.homepage #contactForm .btn {
  width: 100%;
}

/* ══════════════════════════════════════
   HERO SECTION — FULL REDESIGN
══════════════════════════════════════ */
.hero-section {
  position: relative;
  background: #0d1b2e;
  padding: 60px 0 56px;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

/* BG image with dark overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10,18,30,0.72), rgba(10,18,30,0.72)),
    url('/images/bg.webp') center/cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Bottom accent line */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  z-index: 1;
}

/* Subtle grid texture */
.hero-background {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(255,255,255,0.018) 48px, rgba(255,255,255,0.018) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(255,255,255,0.018) 48px, rgba(255,255,255,0.018) 49px);
  pointer-events: none;
  z-index: 1;
}

/* Two-column layout */
.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

/* ── Title ── */
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
  max-width: 800px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* ── Booking Card ── */
.hero-form-card {
  background: #f5f0eb;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  width: 100%;
  max-width: 960px;
}

.booking-form-modern .form-group-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 0;
}

.booking-form-modern .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-form-modern label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  white-space: nowrap;
}

.booking-form-modern label i {
  color: var(--primary);
  font-size: 0.68rem;
}

.booking-form-modern input {
  height: 46px;
  padding: 0 12px;
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  font-size: 0.88rem;
  font-family: var(--font-primary);
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.booking-form-modern input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(217,107,29,0.1);
}

.booking-form-modern input::placeholder {
  color: #aab4be;
  font-size: 0.82rem;
}

.booking-form-modern input,
.booking-form-modern input[type="date"],
.booking-form-modern input[type="time"],
.booking-form-modern input[type="tel"] {
  color-scheme: dark;
}

.booking-form-modern input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form-modern input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  cursor: pointer;
  filter: invert(49%) sepia(77%) saturate(1220%) hue-rotate(351deg) brightness(94%) contrast(89%);
}

/* Swap divider */
.form-divider {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 11px;
  color: var(--primary);
  font-size: 0.8rem;
  opacity: 0.6;
  width: 24px;
}

/* ── Stats row ── */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 960px;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 14px;
  backdrop-filter: blur(8px);
}

.stat-icon {
  width: 34px;
  height: 34px;
  background: rgba(217,107,29,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.stat-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.6rem; }
  .booking-form-modern .form-group-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }
  .form-divider { display: none; }
  .hero-submit-btn { grid-column: 1 / -1; width: 100%; height: 48px; }
}

@media (max-width: 900px) {
  .hero-section { padding: 56px 0 52px; min-height: auto; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .hero-title { font-size: 1.85rem; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-form-card { padding: 18px 16px; }
  .booking-form-modern .form-group-row {
    grid-template-columns: 1fr 1fr;
  }
  .hero-submit-btn { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 1.6rem; }
  .booking-form-modern .form-group-row { grid-template-columns: 1fr; }
  .hero-form-card { padding: 16px 12px; }
}

/* Homepage booking-section override — hide old style */
.homepage .booking-section { display: none; }


.city-booking-hero {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #fff6f0 0%, #fff 100%);
}

.city-booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
}

.city-booking-copy {
  max-width: 520px;
}

.city-booking-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-booking-copy h1 {
  margin-bottom: 1rem;
}

.city-booking-copy p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.city-booking-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.city-booking-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-light);
  font-weight: 600;
}

.city-booking-form {
  max-width: none;
  margin: 0;
  padding: 36px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-lg);
}

.city-booking-form .form-title {
  text-align: left;
  margin-bottom: 2rem;
}

.city-booking-form .form-title h2 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.city-booking-form .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.city-booking-form input[readonly] {
  background: #f8fafc;
  color: var(--dark);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
}

.author-info h5 {
  margin-bottom: 0;
  color: var(--dark);
}

.author-info span {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Blog Cards */
.blog-card {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.blog-category {
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* Breadcrumb */
.breadcrumb-nav {
  padding: 10px 0;
  background: var(--light);
  border-bottom: 1px solid var(--gray-light);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  gap: 0;
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  line-height: 1.4;
}

.breadcrumb-item a {
  color: var(--gray);
  transition: color 0.2s;
  white-space: nowrap;
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-item.active {
  color: var(--dark);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

.breadcrumb-sep {
  display: inline-flex;
  align-items: center;
  padding: 0 6px;
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1;
  user-select: none;
}

.sep {
  display: inline-block;
  color: var(--gray-light);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
}

.footer-top {
  padding: 60px 0 40px;
}

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

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-brand p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-list a,
.footer-contact-list span {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.footer-contact-list a:hover {
  color: var(--accent);
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

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

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Floating Action Dock */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 1000;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 7px 10px 7px 8px;
  border-radius: 999px;
  color: var(--white);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.floating-action:hover {
  transform: translateY(-2px) scale(1.02);
  color: var(--white);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.22);
}

.floating-action-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.18);
}

.floating-action-label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding-right: 6px;
  white-space: nowrap;
}

.floating-action-whatsapp {
  background: linear-gradient(135deg, #22c55e, #128c7e);
}

.floating-action-call {
  background: linear-gradient(135deg, #ff8a3d, #d96b1d);
}

.floating-action-top {
  border: 0;
  background: linear-gradient(135deg, #1f2937, #0f172a);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.floating-action-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-action-top:hover {
  transform: translateY(-2px) scale(1.02);
}

.scroll-top-btn {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }

  .homepage .form-grid,
  .homepage .cards-grid,
  .homepage .features-grid,
  .homepage .about-grid,
  .homepage .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-desktop-group {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    box-shadow: 0 16px 40px rgba(18,32,51,0.12);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 998;
  }

  .nav-desktop-group.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links > li > a {
    width: 100%;
    height: auto;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 0.92rem;
    justify-content: flex-start;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    background: var(--light);
    margin: 4px 0 4px 12px;
    max-height: 200px;
    overflow-y: auto;
  }

  .nav-mobile-cta {
    display: flex !important;
    width: 100%;
    margin-top: 10px;
  }

  .nav-mobile-cta .nav-cta {
    width: 100%;
    height: 46px;
    border-radius: 8px;
    justify-content: center;
  }

  .nav-cta-desktop {
    display: none;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .booking-form {
    padding: 30px 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }

  .homepage .booking-form {
    padding: 30px 22px;
  }

  .homepage .cards-grid,
  .homepage .features-grid,
  .homepage .about-grid,
  .homepage .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .city-booking-form {
    padding: 28px 22px;
  }

  .city-booking-form .form-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .topbar { display: none; }

  .topbar-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .topbar-left, .topbar-right {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .route-pricing {
    grid-template-columns: 1fr 1fr;
  }

  .homepage .form-submit .btn {
    min-width: 100%;
  }
  
  .floating-actions {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .floating-action {
    min-height: 52px;
    padding: 6px 8px 6px 6px;
    gap: 10px;
  }

  .floating-action-icon {
    width: 46px;
    height: 46px;
  }

  .floating-action-label {
    font-size: 0.85rem;
    padding-right: 4px;
  }

  .floating-action-top .floating-action-label {
    max-width: 88px;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* ══════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════ */
.services-section {
  padding: var(--section-padding);
  background: var(--white);
}

/* 4 equal columns in one row */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Card */
.svc-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}

/* Image area */
.svc-img {
  position: relative;
  height: 190px;
  overflow: visible;
  z-index: 2;
}

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

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

/* Floating icon badge — sits on bottom edge of image */
.svc-float-icon {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(217,107,29,0.35);
  border: 3px solid #fff;
  z-index: 10;
}

/* Body */
.svc-body {
  position: relative;
  z-index: 1;
  padding: 28px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-body h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.svc-body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

/* Mini features row at bottom */
.svc-mini-features {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}

.svc-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
}

.svc-mini i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--primary);
  background: var(--white);
}

.svc-mini span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

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

@media (max-width: 540px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-img { height: 200px; }
}

/* ══════════════════════════════════════
   POPULAR ROUTES SECTION
══════════════════════════════════════ */
.routes-section {
  padding: var(--section-padding);
  background: var(--light);
}

/* Header row: heading left, button right */
.routes-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.routes-section-head h2 { margin-bottom: 8px; }
.routes-section-head p  { margin: 0; color: var(--gray); }

/* 3-column grid */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.rt-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.rt-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(217,107,29,0.25);
}

/* Card header — city names + distance */
.rt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--light-gray);
  background: linear-gradient(135deg, #fff8f3 0%, #fff 100%);
}

.rt-cities {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.rt-city {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rt-arrow {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.rt-dist {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(217,107,29,0.1);
  border: 1px solid rgba(217,107,29,0.2);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Price rows */
.rt-prices {
  padding: 8px 20px;
  flex: 1;
}

.rt-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

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

.rt-car-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rt-car-info i {
  width: 30px;
  height: 30px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--primary);
  flex-shrink: 0;
}

.rt-car-info span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.rt-car-info small {
  font-size: 0.72rem;
  color: var(--gray);
  margin-left: 2px;
}

.rt-fare {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

/* Action buttons */
.rt-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--light-gray);
}

.rt-actions .btn {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.85rem;
  min-height: 40px;
}

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

@media (max-width: 640px) {
  .routes-section-head { flex-direction: column; align-items: flex-start; }
  .routes-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   FLEET SECTION
══════════════════════════════════════ */
.fleet-section {
  padding: var(--section-padding);
  background: var(--white);
}

.fleet-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}
.fleet-section-head h2 { margin-bottom: 8px; }
.fleet-section-head p  { margin: 0; color: var(--gray); }

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

/* Base card */
.fl-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.fl-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}

/* Popular card highlight */
.fl-card--popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(217,107,29,0.15);
}

.fl-card--popular:hover {
  box-shadow: var(--shadow-primary), 0 20px 48px rgba(18,32,51,0.12);
}

/* Image wrapper */
.fl-img {
  position: relative;
  height: 170px;
  overflow: hidden;
}

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

.fl-card:hover .fl-img img {
  transform: scale(1.07);
}

/* Badge top-left */
.fl-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--dark);
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
}

.fl-badge--hot {
  background: var(--primary);
}

/* Rate pill bottom-right */
.fl-rate {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #fff;
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  line-height: 1;
}

.fl-rate small {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gray);
}

/* Card body */
.fl-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.fl-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}

.fl-title-row h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.fl-model {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
  white-space: nowrap;
}

.fl-body > p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Specs 2x2 grid */
.fl-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.fl-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--light);
  border-radius: 7px;
  padding: 6px 8px;
}

.fl-spec i {
  font-size: 0.72rem;
  color: var(--primary);
  width: 12px;
  text-align: center;
  flex-shrink: 0;
}

.fl-spec span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
}

/* Responsive */
@media (max-width: 1200px) {
  .fleet-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .fl-body > p { display: none; }
  .fl-body { gap: 8px; }
}

@media (max-width: 900px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-section-head { flex-direction: column; align-items: flex-start; }
  .fl-body > p { display: block; }
}

@media (max-width: 540px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .fl-img { height: 200px; }
}

/* ══════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════ */
.why-section {
  padding: var(--section-padding);
  background:
    radial-gradient(circle at top left, rgba(217, 107, 29, 0.08), transparent 28%),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 42%, #f7fafc 100%);
}

.why-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}
.why-section-head h2 { margin-bottom: 8px; }
.why-section-head p  { margin: 0; color: var(--gray); }

.why-section .fleet-section-head {
  display: block;
  margin-bottom: 22px;
  text-align: center;
}

.why-section .fleet-section-head .section-badge {
  display: inline-flex;
  margin-bottom: 14px;
  background: rgba(217, 107, 29, 0.1);
  color: var(--primary);
  border: 1px solid rgba(217, 107, 29, 0.16);
}

.why-section .fleet-section-head h2 {
  /* margin: 0 0 10px; */
  color: #111111;
  /* font-size: clamp(2rem, 3vw, 2.85rem); */
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 700;
  /* text-transform: uppercase; */
}

.why-section .fleet-section-head p {
  display: block;
  margin: 0 auto;
  max-width: 860px;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.7;
}

.why-layout {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.why-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: linear-gradient(180deg, #e07b2f 0%, #d96b1d 100%);
  border-radius: 22px;
  /* padding: 20px 28px; */
  box-shadow: 0 14px 30px rgba(217, 107, 29, 0.22);
  overflow: hidden;
}

.why-band-card {
  min-height: 130px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  position: relative;
}

.why-band-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  right: 0;
  width: 1px;
  height: calc(100% - 44px);
  background: rgba(255, 255, 255, 0.18);
}

.why-band-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(127, 74, 33, 0.7);
  box-shadow: 0 8px 16px rgba(134, 66, 15, 0.16);
  color: var(--primary-dark);
  font-size: 2.2rem;
}

.why-band-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.38;
  color: #fff;
  font-weight: 800;
  max-width: 200px;
}

.why-grid {
  display: none !important;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--wc, var(--primary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: transparent;
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--wc, var(--primary)) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--wc, var(--primary));
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

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

@media (max-width: 1024px) {
  .why-layout { max-width: none; }

  .why-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px 20px;
  }

  .why-band-card:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .why-section-head { flex-direction: column; align-items: flex-start; }
  .why-band {
    padding: 14px;
    border-radius: 18px;
  }

  .why-band-card {
    min-height: 118px;
    padding: 14px 12px;
    gap: 12px;
  }

  .why-band-icon {
    width: 76px;
    height: 76px;
    font-size: 1.55rem;
  }

  .why-band-card h3 {
    font-size: 0.98rem;
    max-width: none;
  }
}

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

  .why-band-card {
    min-height: auto;
  }

  .why-band-card::after,
  .why-band-card:nth-child(2)::after {
    display: none;
  }
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.process-section {
  padding: var(--section-padding);
  background: var(--white);
}

/* 3 steps + 2 arrows */
.process-wrap {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: stretch;
  margin-bottom: 24px;
}

/* Step card */
.process-step {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

/* Orange top bar on hover */
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #f7931e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.process-step:hover::before {
  transform: scaleX(1);
}

/* Icon left + Number right — same row */
.ps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.ps-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(217,107,29,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}

.ps-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(217,107,29,0.08);
  line-height: 1;
  font-family: var(--font-heading);
  letter-spacing: -2px;
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.process-step > p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* Step badge */
.ps-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(217,107,29,0.08);
  border: 1px solid rgba(217,107,29,0.2);
  padding: 4px 12px;
  border-radius: 999px;
  width: fit-content;
}

/* Arrow connector */
.ps-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 1.2rem;
}

/* Bottom stats strip */
.process-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pb-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--light);
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  padding: 16px 20px;
  transition: var(--transition);
}

.pb-stat:hover {
  border-color: rgba(217,107,29,0.25);
  box-shadow: var(--shadow-sm);
}

.pb-stat i {
  width: 40px;
  height: 40px;
  background: rgba(217,107,29,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.pb-stat span {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.45;
}

.pb-stat strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .process-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ps-connector {
    transform: rotate(90deg);
    height: 32px;
  }
  .process-bottom { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .process-bottom { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pb-stat { padding: 12px 14px; }
  .process-step { padding: 24px 20px; }
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--light);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.testi-stars { color: #f59e0b; font-size: 0.85rem; display: flex; gap: 3px; }
.testi-text { font-size: 0.9rem; color: var(--dark-light); line-height: 1.7; flex: 1; margin: 0; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.testi-author span   { font-size: 0.78rem; color: var(--gray); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .testi-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   BLOG SECTION
══════════════════════════════════════ */
.blog-section {
  padding: var(--section-padding);
  background: var(--white);
}
.blog-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}
.blog-section-head h2 { margin-bottom: 8px; }
.blog-section-head p  { margin: 0; color: var(--gray); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.blog-img { position: relative; height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
}
.blog-body { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.blog-date { font-size: 0.75rem; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.blog-body h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 0; line-height: 1.4; }
.blog-body p  { font-size: 0.85rem; color: var(--gray); margin: 0; flex: 1; line-height: 1.6; }
.blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.83rem; font-weight: 700; color: var(--primary);
  margin-top: auto; transition: gap 0.2s;
}
.blog-link:hover { gap: 10px; }
@media (max-width: 900px) {
  .blog-section-head { flex-direction: column; align-items: flex-start; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) { .blog-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-section {
  padding: var(--section-padding);
  background: var(--light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-content h2 { margin-bottom: 12px; }
.about-content > p { color: var(--gray); margin-bottom: 28px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.about-feat {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: 12px; padding: 16px;
}
.about-feat-icon {
  width: 40px; height: 40px;
  background: rgba(217,107,29,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1rem; flex-shrink: 0;
}
.about-feat h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; color: var(--dark); }
.about-feat p  { font-size: 0.82rem; color: var(--gray); margin: 0; }
.about-contact-strip {
  display: flex; flex-direction: column; gap: 8px;
}
.acs-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600; color: var(--dark);
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: 8px; padding: 9px 14px;
  transition: var(--transition);
}
.acs-item i { color: var(--primary); }
.acs-item:hover { border-color: var(--primary); color: var(--primary); }
.about-map {
  height: 460px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}
.about-map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-map { height: 320px; }
}

/* ══════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════ */
.contact-section {
  padding: var(--section-padding);
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}
.contact-form-card,
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 18px;
  padding: 32px;
}
.contact-form-card h3,
.contact-info-card h3 {
  font-size: 1.2rem; font-weight: 700;
  color: var(--dark); margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-gray);
}
.cf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.cf-group label {
  font-size: 0.78rem; font-weight: 700; color: var(--dark);
  display: flex; align-items: center; gap: 6px;
}
.cf-group label i { color: var(--primary); font-size: 0.7rem; }
.cf-group input,
.cf-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-primary);
  color: var(--dark);
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.cf-group input:focus,
.cf-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(217,107,29,0.1);
}
.cf-group textarea { resize: vertical; min-height: 110px; }
.ci-block {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
}
.ci-block:last-of-type { border-bottom: none; }
.ci-icon {
  width: 38px; height: 38px;
  background: rgba(217,107,29,0.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 0.9rem; flex-shrink: 0;
}
.ci-block h5 { font-size: 0.82rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.ci-block a  { display: block; font-size: 0.88rem; color: var(--primary); font-weight: 500; }
.ci-block p  { font-size: 0.85rem; color: var(--gray); margin: 0; line-height: 1.5; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */
.faq-section {
  padding: var(--section-padding);
  background: var(--light);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
}
.faq-left h2 { margin-bottom: 12px; }
.faq-left p  { color: var(--gray); margin-bottom: 28px; }
.faq-right { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.active { border-color: rgba(217,107,29,0.3); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
}
.faq-question span { font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.faq-question i {
  color: var(--primary); font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid var(--light-gray);
  padding-top: 14px;
}
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; gap: 32px; } }


/* ══════════════════════════════════════
   CITY CONTENT SECTION
══════════════════════════════════════ */
.city-content-section {
  padding: var(--section-padding);
  background: var(--white);
}

/* .city-content-wrap {
  max-width: 860px;
} */

.city-content-wrap h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.city-content-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 10px;
}

.city-content-wrap h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 8px;
}

.city-content-wrap p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 12px;
}

.city-content-wrap a {
  color: var(--primary);
  font-weight: 600;
}

.city-content-wrap ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.city-content-wrap ol li {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 6px;
}

.city-fleet-table {
  overflow-x: auto;
  margin: 16px 0 24px;
}

.city-fleet-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.city-fleet-table th {
  background: var(--dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.city-fleet-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--light-gray);
  color: var(--dark);
}

.city-fleet-table tr:nth-child(even) td {
  background: var(--light);
}

.city-fleet-table tr:hover td {
  background: rgba(217,107,29,0.05);
}


/* ══════════════════════════════════════
   BLOG LISTING PAGE STYLES
══════════════════════════════════════ */

.blog-header-section {
  padding: 48px 0 32px;
  background: linear-gradient(135deg, #fff8f3 0%, #fff 100%);
  border-bottom: 1px solid var(--light-gray);
}

.blog-header-section h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.blog-description {
  font-size: 1.05rem;
  color: var(--gray);
  margin: 0;
  max-width: 600px;
}

.blog-filter-section {
  padding: 24px 0;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 65px;
  z-index: 100;
}

.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--light);
  border: 1px solid var(--light-gray);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  transition: var(--transition);
  white-space: nowrap;
}

.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(217,107,29,0.05);
}

.filter-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.blog-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.blog-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  z-index: 2;
}

.blog-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}

.blog-body h4 a {
  color: var(--dark);
  transition: color 0.2s;
}

.blog-body h4 a:hover {
  color: var(--primary);
}

.blog-body p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
  flex: 1;
  line-height: 1.6;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  transition: gap 0.2s;
}

.blog-link:hover {
  gap: 10px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  text-decoration: none;
}

.page-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(217,107,29,0.05);
}

.page-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* No Posts */
.no-posts {
  padding: 60px 20px;
  text-align: center;
}

.no-posts-content {
  max-width: 400px;
  margin: 0 auto;
}

.no-posts-content i {
  font-size: 3.5rem;
  color: var(--gray-light);
  margin-bottom: 20px;
  display: block;
}

.no-posts-content h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.no-posts-content p {
  color: var(--gray);
  margin-bottom: 24px;
}

/* Newsletter Section */
.newsletter-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff8f3 0%, #fff 100%);
  border-top: 1px solid var(--light-gray);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.newsletter-content p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 24px;
}

/* ══════════════════════════════════════
   BLOG POST PAGE STYLES
══════════════════════════════════════ */

.blog-post-page {
  background: var(--white);
}

.post-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--light-gray);
}

.post-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.post-category {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: capitalize;
}

.post-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

.post-date i {
  color: var(--primary);
}

.post-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.post-excerpt {
  font-size: 1.1rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.7;
  max-width: 700px;
}

.post-featured-image {
  margin: 32px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  padding: 40px 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark);
}

.post-content h2 {
  font-size: 1.8rem;
  margin: 32px 0 16px;
  color: var(--dark);
}

.post-content h3 {
  font-size: 1.4rem;
  margin: 28px 0 12px;
  color: var(--dark);
}

.post-content p {
  margin-bottom: 16px;
  color: var(--gray);
}

.post-content ul,
.post-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.post-content li {
  margin-bottom: 8px;
  color: var(--gray);
}

.post-content a {
  color: var(--primary);
  font-weight: 600;
}

.post-content a:hover {
  text-decoration: underline;
}

.post-content img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: 12px;
}

/* Social Sharing */
.post-sharing {
  padding: 32px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  margin: 32px 0;
}

.post-sharing h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--light);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}

.share-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(217,107,29,0.05);
}

.share-btn.facebook:hover {
  border-color: #1877f2;
  color: #1877f2;
}

.share-btn.twitter:hover {
  border-color: #1da1f2;
  color: #1da1f2;
}

.share-btn.whatsapp:hover {
  border-color: #25d366;
  color: #25d366;
}

/* CTA Section */
.post-cta {
  padding: 40px;
  background: linear-gradient(135deg, #fff8f3 0%, #fff 100%);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  margin: 40px 0;
}

.cta-content h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.cta-content p {
  color: var(--gray);
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  flex: 1;
  min-width: 200px;
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

/* Related Posts Section */
.related-posts-section {
  padding: 60px 0;
  background: var(--light);
  border-top: 1px solid var(--light-gray);
}

.related-posts-section h2 {
  margin-bottom: 32px;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-header-section h1 {
    font-size: 1.8rem;
  }
  
  .post-title {
    font-size: 1.6rem;
  }
  
  .post-header {
    padding: 32px 0 24px;
  }
  
  .post-content {
    padding: 24px 0;
  }
  
  .share-buttons {
    gap: 8px;
  }
  
  .share-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .post-cta {
    padding: 28px;
  }
  
  .filter-tabs {
    gap: 8px;
  }
  
  .filter-tab {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 540px) {
  .blog-header-section h1 {
    font-size: 1.5rem;
  }
  
  .post-title {
    font-size: 1.4rem;
  }
  
  .post-meta-top {
    gap: 8px;
  }
  
  .share-btn {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
  
  .share-btn i {
    display: none;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .pagination {
    gap: 4px;
  }
  
  .page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 0.85rem;
    padding: 0 8px;
  }
}


/* ══════════════════════════════════════
   CONFIRMATION MODAL
══════════════════════════════════════ */
.confirmation-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.confirmation-modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.confirmation-header {
  text-align: center;
  margin-bottom: 24px;
}

.confirmation-header i {
  font-size: 3.5rem;
  color: #10b981;
  margin-bottom: 12px;
  display: block;
}

.confirmation-header h2 {
  font-size: 1.6rem;
  color: var(--dark);
  margin: 0;
}

.confirmation-details {
  background: var(--light);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

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

.detail-label {
  font-weight: 600;
  color: var(--gray);
  font-size: 0.9rem;
}

.detail-value {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.confirmation-message {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.confirmation-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.confirmation-actions .btn {
  width: 100%;
  padding: 14px 24px;
  min-height: 48px;
}

@media (max-width: 540px) {
  .confirmation-modal-content {
    padding: 28px 20px;
  }

  .confirmation-header i {
    font-size: 2.8rem;
  }

  .confirmation-header h2 {
    font-size: 1.4rem;
  }

  .confirmation-details {
    padding: 16px;
  }

  .detail-row {
    padding: 8px 0;
  }

  .detail-label,
  .detail-value {
    font-size: 0.85rem;
  }

  .confirmation-message {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}

/* ══════════════════════════════════════
   AIRPORT ROUTES SECTION
══════════════════════════════════════ */
.airport-routes-section {
  padding: var(--section-padding);
  background: var(--light);
}

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

.airport-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 12px;
  transition: var(--transition);
  text-decoration: none;
}

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

.airport-card-icon {
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  background: rgba(217,107,29,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.airport-card-content {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.airport-card-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}

.airport-dest {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
}

.airport-dest i {
  color: var(--primary);
  font-size: 0.7rem;
}

.airport-dist {
  grid-column: 3;
  grid-row: 1;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(217,107,29,0.08);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  height: fit-content;
}

.airport-card-arrow {
  grid-column: 3;
  grid-row: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  color: var(--primary);
  font-size: 0.85rem;
}

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

@media (max-width: 640px) {
  .airport-grid {
    grid-template-columns: 1fr;
  }
  
  .airport-card {
    padding: 16px;
  }
}
