/* NIRALA CAB SERVICE - Modern Premium Redesign */
/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --primary-navy: #0B192C;      /* Deep luxurious navy */
  --primary-navy-rgb: 11, 25, 44;
  --secondary-navy: #1E3E62;    /* Slate-navy blue */
  --secondary-navy-rgb: 30, 62, 98;
  --accent-yellow: #F9D949;     /* Marigold warm yellow */
  --accent-yellow-hover: #F6C915;
  --accent-orange: #FF6B6B;     /* Vibrant attention accent */
  --accent-orange-rgb: 255, 107, 107;
  --whatsapp-green: #25D366;
  
  --bg-light: #F8FAFC;          /* Soft slate light background */
  --bg-white: #FFFFFF;
  --text-dark: #0F172A;         /* Slate-900 */
  --text-muted: #64748B;        /* Slate-500 */
  --text-white: #F8FAFC;
  
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --shadow-sm: 0 2px 4px rgba(11, 25, 44, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.08), 0 8px 16px -6px rgba(11, 25, 44, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(11, 25, 44, 0.12), 0 12px 24px -8px rgba(11, 25, 44, 0.06);
  --shadow-xl: 0 30px 60px -15px rgba(11, 25, 44, 0.2), 0 15px 30px -10px rgba(11, 25, 44, 0.1);
  --shadow-glow: 0 0 20px rgba(249, 217, 73, 0.3);
  --shadow-whatsapp: 0 10px 25px rgba(37, 211, 102, 0.3);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

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

/* Typography & Global Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-navy);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; position: relative; margin-bottom: 2.5rem; }
h3 { font-size: 1.5rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }
}

/* Section Subtitle Eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-navy);
  margin-bottom: 0.75rem;
  background: rgba(30, 62, 98, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

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

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--accent-yellow);
  margin: 0.75rem auto 0 auto;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-align: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent-yellow);
  color: var(--primary-navy);
}

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

.btn-secondary {
  background-color: var(--secondary-navy);
  color: var(--text-white);
}

.btn-secondary:hover {
  background-color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-whatsapp);
}

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

.btn-outline:hover {
  background-color: var(--secondary-navy);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1.125rem 2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

/* Sticky Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(11, 25, 44, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all var(--transition-normal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
  background-color: var(--primary-navy);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  background-color: var(--accent-yellow);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-navy);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-white);
  line-height: 1.1;
}

.logo-text span {
  color: var(--accent-yellow);
  font-size: 0.8rem;
  display: block;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-yellow);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-desktop-call {
  display: none;
}

@media (min-width: 768px) {
  .btn-desktop-call {
    display: inline-flex;
  }
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

@media (min-width: 992px) {
  .nav {
    display: block;
  }
  .menu-toggle {
    display: none;
  }
}

/* Mobile Sidebar Menu */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background-color: var(--primary-navy);
  z-index: 1001;
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-normal);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sidebar.open {
  right: 0;
}

.sidebar-close {
  align-self: flex-end;
  color: var(--text-white);
  font-size: 1.5rem;
}

.sidebar-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.sidebar-nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

.sidebar-nav-link:hover {
  color: var(--accent-yellow);
}

.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 25, 44, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.sidebar-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(180deg, rgba(11, 25, 44, 0.92) 0%, rgba(30, 62, 98, 0.88) 100%), url('../assets/images/hero-bg.png') no-repeat center center/cover;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--text-white);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--bg-light), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(249, 217, 73, 0.15);
  border: 1px solid rgba(249, 217, 73, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-yellow);
  margin-bottom: 1.5rem;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--whatsapp-green);
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-content h1 {
  margin-bottom: 1.25rem;
  line-height: 1.15;
  color: #f5f5f5;
}

.hero-content h1 span {
  color: var(--accent-yellow);
  position: relative;
  display: inline-block;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(248, 250, 252, 0.85);
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
  }
}

/* Booking Form Container */
.hero-booking-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  color: var(--text-white);
  animation: slide-up 0.6s ease-out;
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-card-title {
  margin-bottom: 1.5rem;
  text-align: center;
}

.booking-card-title h3 {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.booking-card-title p {
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.65);
}

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

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(248, 250, 252, 0.7);
  margin-bottom: 0.35rem;
}

.input-icon-wrapper {
  position: relative;
}

.input-icon-wrapper svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--accent-yellow);
  pointer-events: none;
  transition: color var(--transition-fast);
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  background-color: rgba(11, 25, 44, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: var(--accent-yellow);
  background-color: rgba(11, 25, 44, 0.75);
  box-shadow: 0 0 10px rgba(249, 217, 73, 0.15);
}

.form-input::placeholder {
  color: rgba(248, 250, 252, 0.4);
}

/* Custom Dropdown Arrow */
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.input-icon-wrapper::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(248, 250, 252, 0.6);
  border-bottom: 2px solid rgba(248, 250, 252, 0.6);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

select.form-input + svg + ::after {
  display: block;
}

/* Remove default date placeholder styling */
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg);
  cursor: pointer;
}

.booking-form-btn {
  margin-top: 0.5rem;
  width: 100%;
  font-size: 1rem;
  padding: 1rem;
}

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

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

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
}

.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  transition: transform var(--transition-slow);
}

.about-visual:hover .about-image img {
  transform: scale(1.05);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background-color: var(--primary-navy);
  color: var(--text-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--accent-yellow);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 240px;
}

@media (max-width: 480px) {
  .about-experience-badge {
    right: 1.5rem;
    bottom: -15px;
    padding: 1rem;
    max-width: calc(100% - 3rem);
  }
}

.experience-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent-yellow);
  line-height: 1;
}

.experience-text {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

.about-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 480px) {
  .about-bullets {
    grid-template-columns: 1fr 1fr;
  }
}

.about-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bullet-icon {
  background-color: rgba(30, 62, 98, 0.08);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-navy);
  flex-shrink: 0;
}

.bullet-icon svg {
  width: 18px;
  height: 18px;
}

.bullet-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.bullet-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Fleet Showcase Section */
.fleet {
  background-color: var(--bg-light);
}

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

@media (min-width: 768px) {
  .fleet-showcase-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 992px) {
  .fleet-showcase-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1400px) {
  .fleet-showcase-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

.fleet-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 25, 44, 0.05);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
  height: 100%;
  overflow: hidden;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 62, 98, 0.15);
}

.fleet-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: radial-gradient(circle, rgba(30, 62, 98, 0.04) 0%, rgba(30, 62, 98, 0.01) 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 1rem; */
  overflow: hidden;
}

.fleet-card-image img {
  max-width: 10 0%;
  /* max-height: 90%; */
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(11, 25, 44, 0.1));
  transition: transform 0.4s ease;
}

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

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

.fleet-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.fleet-card-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-navy);
  margin: 0;
}

.fleet-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--primary-navy);
  background-color: var(--accent-yellow);
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
}

.fleet-badge svg {
  color: var(--primary-navy);
  flex-shrink: 0;
}

.fleet-card-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  background-color: var(--bg-light);
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(11, 25, 44, 0.03);
}

.fleet-card-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0.85rem;
  background-color: rgba(30, 62, 98, 0.02);
  border-radius: 8px;
  border: 1px dashed rgba(30, 62, 98, 0.1);
  margin-bottom: 1.5rem;
}

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

.price-box:first-child {
  border-right: 1px solid rgba(11, 25, 44, 0.08);
}

.price-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--secondary-navy);
  line-height: 1.2;
}

.price-val span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.fleet-card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.fleet-btn-call {
  background-color: var(--secondary-navy) !important;
  color: var(--text-white) !important;
  border-color: var(--secondary-navy) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  padding: 0.65rem 0.5rem;
}

.fleet-btn-call:hover {
  background-color: var(--primary-navy) !important;
  border-color: var(--primary-navy) !important;
}

.btn-whatsapp-outline {
  background-color: transparent !important;
  color: var(--whatsapp-green) !important;
  border: 2px solid var(--whatsapp-green) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-family: var(--font-display);
  transition: all var(--transition-fast);
}

.btn-whatsapp-outline:hover {
  background-color: rgba(37, 211, 102, 0.05) !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .fleet-showcase-container {
    /* display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 1rem !important;
    padding: 0.5rem 0.5rem 1.5rem 0.5rem !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch; */
  }
  
  .fleet-showcase-container::-webkit-scrollbar {
    display: none !important;
  }
  
  .fleet-card {
    min-width: 85% !important;
    max-width: 100% !important;
    scroll-snap-align: center !important;
    height: auto !important;
  }
}

/* Why Choose Us Section */
.why {
  background-color: var(--bg-light);
}

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

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

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

.why-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 25, 44, 0.03);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--secondary-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

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

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

.why-icon-box {
  background-color: rgba(30, 62, 98, 0.08);
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-navy);
  margin: 0 auto 1.5rem auto;
  transition: all var(--transition-normal);
}

.why-card:hover .why-icon-box {
  background-color: var(--secondary-navy);
  color: var(--text-white);
  transform: rotate(8deg);
}

.why-icon-box svg {
  width: 32px;
  height: 32px;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Stats Mini bar */
.stats-bar {
  margin-top: 4.5rem;
  background-color: var(--primary-navy);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

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

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

.stat-item {
  position: relative;
}

@media (min-width: 992px) {
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
  }
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.75rem;
  color: var(--accent-yellow);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(248, 250, 252, 0.7);
}

/* Popular Routes Section */
.routes {
  background-color: var(--bg-white);
}

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

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

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

.route-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(11, 25, 44, 0.05);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.route-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 62, 98, 0.15);
}

.route-header {
  background-color: var(--primary-navy);
  color: var(--text-white);
  padding: 1.5rem;
  position: relative;
}

.route-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--accent-yellow);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-weight: 600;
}

.route-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.route-loc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-white);
}

.route-arrow {
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
}

.route-arrow svg {
  width: 20px;
  height: 20px;
}

.route-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-grow: 1;
}

.route-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1.5px dashed rgba(11, 25, 44, 0.08);
  padding-bottom: 0.75rem;
}

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

.route-meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--secondary-navy);
}

.route-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.route-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.route-price-type {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.route-price-type::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-yellow);
}

.route-price-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary-navy);
}

.route-btn {
  margin-top: auto;
  width: 100%;
}

/* Testimonials Carousel Section */
.testimonials {
  background-color: var(--bg-light);
  overflow: hidden;
}

.testimonials-carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.testimonials-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
  width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  /* flex-shrink: 0; */
  padding: 0 1rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 25, 44, 0.02);
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 4rem 3.5rem;
  }
}

.quote-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(249, 217, 73, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  margin: 0 auto 2rem auto;
}

.quote-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  color: var(--accent-yellow);
  margin-bottom: 1.25rem;
}

.testimonial-rating svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.testimonial-author p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(30, 62, 98, 0.2);
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--secondary-navy);
  transform: scale(1.2);
  width: 24px;
  border-radius: 6px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-white);
  color: var(--primary-navy);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
  border: 1px solid rgba(11, 25, 44, 0.05);
}

.carousel-btn:hover {
  background-color: var(--primary-navy);
  color: var(--text-white);
  box-shadow: var(--shadow-lg);
}

.carousel-btn-prev {
  left: -20px;
}

.carousel-btn-next {
  right: -20px;
}

@media (max-width: 900px) {
  .carousel-btn {
    display: none;
  }

  .hero-grid {
    display: block;
}

.hero-content{
  margin-bottom: 10px;
}

.hero-booking-card{
  padding: 1rem;
}

.booking-form{
  display: block;
}

.Pickuptimes{
  display: block;
}

.fleet-details-side{
  padding: 12px;
}

.fleet-image-side img{
  width: 100%;
}

.fleet-image-side{
  padding: 1rem;
}

.fleet-card{
  gap: 0px;
}

}

@media (min-width: 900px) {
  .Pickuptimes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
}



/* Contact & Footer Section */
.footer {
  background-color: var(--primary-navy);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 5rem;
  border-top: 4px solid var(--accent-yellow);
}

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

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

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand .logo-text {
  font-size: 1.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  background-color: var(--accent-yellow);
  color: var(--primary-navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-links h3, .footer-contact h3 {
  color: var(--text-white);
  font-size: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--accent-yellow);
  border-radius: 2px;
}

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

.footer-links-list a {
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-links-list a::before {
  content: '→';
  color: var(--accent-yellow);
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--accent-yellow);
  padding-left: 5px;
}

.footer-links-list a:hover::before {
  transform: translateX(3px);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail-info h4 {
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.contact-detail-info p, .contact-detail-info a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.contact-detail-info a:hover {
  color: var(--accent-yellow);
}

/* Map Embed Container */
.map-container {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
  height: 180px;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

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

/* Floating Actions & Widgets */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-whatsapp);
  z-index: 998;
  transition: all var(--transition-normal);
  animation: float 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20ba5a;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Floating Mobile Action Bar (Bottom Sticky) */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-navy);
  border-top: 2.5px solid var(--accent-yellow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 997;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
  transition: background-color var(--transition-fast);
}

.mobile-action-btn-call {
  background-color: var(--secondary-navy);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-action-btn-call:hover {
  background-color: var(--primary-navy);
}

.mobile-action-btn-whatsapp {
  background-color: var(--whatsapp-green);
}

.mobile-action-btn-whatsapp:hover {
  background-color: #20ba5a;
}

.mobile-action-btn svg {
  width: 18px;
  height: 18px;
}

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

/* Adjust padding on mobile body to make room for action bar */
@media (max-width: 767px) {
  body {
    padding-bottom: 58px; /* height of action bar */
  }
  .floating-whatsapp {
    bottom: 80px; /* shift up to not overlap */
  }
}

/* ==========================================================================
   Desktop-Only Side Floating Action Buttons (width >= 992px)
   ========================================================================== */
.desktop-floating-actions {
  display: none;
}

@media (min-width: 992px) {
  .desktop-floating-actions {
    display: block;
  }

  .desktop-action-btn {
    position: fixed;
    bottom: 100px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: 0 6px 20px rgba(11, 25, 44, 0.25);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
  }

  /* WhatsApp Left Button */
  .desktop-btn-whatsapp {
    left: 24px;
    background-color: var(--whatsapp-green);
    animation: pulse-whatsapp 2.5s infinite;
  }

  .desktop-btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  }

  /* Call Right Button */
  .desktop-btn-call {
    right: 24px;
    background-color: var(--secondary-navy);
  }

  .desktop-btn-call:hover {
    background-color: var(--primary-navy);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(30, 62, 98, 0.4);
  }

  .desktop-action-btn svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
  }
  
  .desktop-btn-call svg {
    fill: none; /* phone icon is stroked */
  }

  /* Tooltip Styling */
  .desktop-action-btn .tooltip-text {
    visibility: hidden;
    width: auto;
    white-space: nowrap;
    background-color: var(--primary-navy);
    color: var(--text-white);
    text-align: center;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    position: absolute;
    bottom: 70px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(5px);
    pointer-events: none;
  }

  .desktop-btn-whatsapp .tooltip-text {
    left: 0;
  }

  .desktop-btn-call .tooltip-text {
    right: 0;
  }

  .desktop-action-btn:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  /* Gently pulsing keyframes for WhatsApp */
  @keyframes pulse-whatsapp {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }
}
