/* ==========================================================================
   Rudra Cab - Master Stylesheet
   Modern, Ultra-Responsive, Zero-Horizontal-Overflow Design System
   ========================================================================== */

:root {
  /* Color System */
  --primary-dark: #0b1528;
  --primary: #0f172a;
  --primary-light: #1e293b;
  --primary-card: #132238;
  
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --accent-dark: #d97706;
  --accent-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  
  --secondary: #0284c7;
  --secondary-light: #38bdf8;
  --whatsapp-color: #25d366;
  --whatsapp-hover: #1ebd5a;
  --call-color: #0284c7;
  
  --bg-page: #f8fafc;
  --bg-white: #ffffff;
  --bg-light: #f1f5f9;
  --bg-dark-section: #090f1d;
  
  --text-main: #0f172a;
  --text-light: #475569;
  --text-muted: #64748b;
  --text-white: #ffffff;
  
  --border-light: #e2e8f0;
  --border-card: #cbd5e1;
  --border-dark: #334155;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.12), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.25);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

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

  --container-max: 1240px;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Sora', system-ui, sans-serif;
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
  overflow-wrap: break-word;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  max-width: 100%;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Section Headings */
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}

.section-head.text-left {
  text-align: left;
  margin-left: 0;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.825rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  max-width: 100%;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--primary);
}

.section-head p {
  color: var(--text-light);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  line-height: 1;
  text-decoration: none;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-accent {
  background: var(--accent-gradient);
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1ebd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-call {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.btn-call:hover {
  background: #0369a1;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary-dark);
}

.btn-sm {
  padding: 13.5px 16px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 15px 28px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.w-full {
  width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

/* Top Utility Bar */
.topbar {
  background-color: var(--primary-dark);
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  overflow-x: hidden;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
  overflow-wrap: anywhere;
}

.topbar-info a:hover {
  color: var(--accent-light);
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-light);
  background: rgba(245, 158, 11, 0.12);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-social a {
  color: #94a3b8;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.topbar-social a:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

/* Main Navbar */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  padding: 10px 0;
  width: 100%;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  max-width: 60%;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 6px 0;
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

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

.nav-item:hover {
  color: var(--accent-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.nav-call-btn i {
  color: var(--accent-light);
}

.nav-call-btn:hover {
  background: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #0f172a;
  color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 158, 11, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 1.25rem;
  padding: 0;
  flex-shrink: 0;
}

.menu-toggle:hover,
.menu-toggle:active {
  background: var(--accent);
  color: #0f172a;
  transform: scale(1.05);
}

/* ==========================================================================
   Dedicated Mobile Drawer (Zero Horizontal Space Leak)
   ========================================================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 21, 40, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 320px);
  height: 100vh;
  height: 100dvh;
  background: #0b1528;
  z-index: 10001;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

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

.mobile-drawer-header img {
  height: 40px;
  width: auto;
}

.mobile-close-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.15rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-close-btn:hover,
.mobile-close-btn:active {
  background: var(--accent);
  color: #0f172a;
}

.mobile-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
}

.mobile-navlinks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.mobile-nav-item {
  color: #e2e8f0;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.mobile-nav-item i {
  color: var(--accent-light);
  width: 22px;
  font-size: 1.1rem;
  text-align: center;
}

.mobile-nav-item:hover,
.mobile-nav-item:active,
.mobile-nav-item.active {
  background: rgba(245, 158, 11, 0.18);
  border-color: rgba(245, 158, 11, 0.4);
  color: #ffffff;
}

.mobile-drawer-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-drawer-contact-info {
  text-align: center;
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 4px;
}

/* ==========================================================================
   Hero Section (Redesigned with Right Side Form)
   ========================================================================== */
.hero {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
  padding: 44px 0 54px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.98fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

/* Left Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-dark);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  width: fit-content;
  max-width: 100%;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.1rem);
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1.18;
  overflow-wrap: break-word;
}

.hero-content h1 span.highlight {
  color: var(--accent-dark);
  position: relative;
}

.hero-desc {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  color: var(--text-light);
  line-height: 1.7;
}

.hero-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 4px 0;
  width: 100%;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--bg-white);
  padding: 9px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}

.feature-pill i {
  color: #10b981;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.hero-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
  width: 100%;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  max-width: 100%;
}

.rating-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.rating-text strong {
  color: var(--primary);
}

.rating-text span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Right Side: Hero Booking & Inquiry Card Form */
.hero-booking-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.12), 0 5px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 4px 4px 0 0;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 8px;
}

.booking-header h3 {
  font-size: 1.2rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-header .instant-tag {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  color: var(--accent-dark);
  font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
  background: var(--bg-page);
  font-size: 0.9rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-dark);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  width: 100%;
}

.form-subtext {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-subtext i {
  color: #10b981;
}

/* ==========================================================================
   Trust & Metrics Strip
   ========================================================================== */
.trust-section {
  padding: 20px 0 50px;
  width: 100%;
  overflow-x: hidden;
}

.trust-card {
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  box-sizing: border-box;
}

.stat-item {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-item i {
  font-size: 1.5rem;
  color: var(--accent-light);
  margin-bottom: 4px;
}

.stat-item h3 {
  font-size: 1.1rem;
  color: #ffffff;
}

.stat-item p {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  padding: 70px 0;
  background: var(--bg-white);
  width: 100%;
  overflow-x: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  margin-top: 30px;
  width: 100%;
}

.about-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--secondary);
  background: #e0f2fe;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
  max-width: 100%;
}

.about-card h3 {
  font-size: 1.45rem;
  color: var(--primary);
}

.about-card p {
  font-size: 0.975rem;
  color: var(--text-light);
  line-height: 1.7;
}

.about-key-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
  width: 100%;
}

.point-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  width: 100%;
}

.point-item i {
  font-size: 1.25rem;
  color: var(--accent-dark);
  background: rgba(245, 158, 11, 0.12);
  padding: 10px;
  border-radius: var(--radius-md);
  margin-top: 2px;
  flex-shrink: 0;
}

.point-item h4 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.point-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

/* ==========================================================================
   Fleet Showcase Section
   ========================================================================== */
.fleet-section {
  padding: 70px 0;
  background: var(--bg-page);
  width: 100%;
  overflow-x: hidden;
}

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

.fleet-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(245, 158, 11, 0.4);
}

.fleet-card-img-wrap {
  width: 100%;
  height: 220px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 16px;
}

.fleet-card-img-wrap img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.fleet-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.fleet-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 14px;
}

.fleet-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.fleet-title-row h3 {
  font-size: 1.2rem;
  color: var(--primary);
}

.fleet-fare-badge {
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.fleet-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--bg-page);
  padding: 12px;
  border-radius: var(--radius-md);
  margin: 4px 0;
  width: 100%;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.825rem;
  color: var(--text-light);
  font-weight: 500;
}

.spec-item i {
  color: var(--secondary);
}

.fleet-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fleet-features-list li {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fleet-features-list li i {
  color: #10b981;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.fleet-card-footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  width: 100%;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  padding: 70px 0;
  background: var(--bg-white);
  width: 100%;
  overflow-x: hidden;
}

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

.service-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
}

.service-card:hover {
  background: var(--bg-white);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-dark);
  color: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 6px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--accent-gradient);
  color: #0f172a;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-section {
  padding: 70px 0;
  background: var(--bg-page);
  width: 100%;
  overflow-x: hidden;
}

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

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
}

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

.why-card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.why-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================================================
   How It Works (Process)
   ========================================================================== */
.how-section {
  padding: 70px 0;
  background: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

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

.step-card {
  background: var(--bg-page);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--primary-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.step-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 70px 0;
  background: var(--bg-page);
  width: 100%;
  overflow-x: hidden;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
  width: 100%;
  box-sizing: border-box;
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  box-sizing: border-box;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--accent-dark);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 22px;
  box-sizing: border-box;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

.faq-answer p {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================================================
   CTA Banner Section
   ========================================================================== */
.cta-section {
  padding: 60px 0;
  background: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

.cta-banner-box {
  background: linear-gradient(135deg, #0b1528 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.cta-banner-box::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-text {
  max-width: 600px;
}

.cta-banner-text h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  color: #ffffff;
  margin-bottom: 10px;
}

.cta-banner-text p {
  color: #cbd5e1;
  font-size: 1.05rem;
}

.cta-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  padding: 70px 0;
  background: var(--bg-page);
  width: 100%;
  overflow-x: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  width: 100%;
}

.contact-info-card {
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  width: 100%;
  box-sizing: border-box;
}

.contact-info-card h3 {
  font-size: 1.4rem;
  color: #ffffff;
}

.contact-info-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.contact-items-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  width: 100%;
}

.contact-detail-item i {
  font-size: 1.2rem;
  color: var(--accent-light);
  background: rgba(255, 255, 255, 0.08);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.85rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-detail-item a,
.contact-detail-item span {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.contact-detail-item a:hover {
  color: var(--accent-light);
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  box-sizing: border-box;
}

.contact-form-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-form-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: #070d18;
  color: #94a3b8;
  padding: 60px 0 30px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  overflow-x: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
  margin-bottom: 40px;
  width: 100%;
}

.footer-col h3 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 44px;
  width: auto;
}

.footer-about-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 18px;
}

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

.footer-social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-fast);
}

.footer-social-icons a:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

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

.footer-links li a {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-links li a i {
  font-size: 0.7rem;
  color: var(--accent);
}

.footer-links li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  width: 100%;
}

.footer-contact-item i {
  color: var(--accent-light);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item strong {
  display: block;
  font-size: 0.8rem;
  color: #cbd5e1;
  text-transform: uppercase;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.875rem;
  color: #94a3b8;
  overflow-wrap: anywhere;
}

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

/* Google Ads Compliance Disclaimer Box */
.footer-disclaimer {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 30px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #64748b;
  width: 100%;
  box-sizing: border-box;
}

.footer-disclaimer strong {
  color: #94a3b8;
}

/* Copyright & Legal links */
.copyright-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  width: 100%;
  box-sizing: border-box;
}

.copyright-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.copyright-links a {
  color: #94a3b8;
}

.copyright-links a:hover {
  color: var(--accent-light);
}

/* ==========================================================================
   Mobile Sticky Quick Action Bottom Bar
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  padding: 10px 16px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.12);
  z-index: 998;
  border-top: 1px solid var(--border-light);
  width: 100%;
  box-sizing: border-box;
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

/* ==========================================================================
   Policy Pages Shared Styling
   ========================================================================== */
.policy-page-hero {
  background: linear-gradient(135deg, #0b1528 0%, #1e293b 100%);
  color: #ffffff;
  padding: 48px 0 40px;
  text-align: center;
  width: 100%;
  overflow-x: hidden;
}

.policy-page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 8px;
}

.policy-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.policy-breadcrumb a {
  color: var(--accent-light);
}

.policy-card-container {
  max-width: 920px;
  margin: -24px auto 80px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

.policy-meta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 100%;
}

.policy-meta-badge {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.policy-section-block {
  margin-bottom: 30px;
  width: 100%;
}

.policy-section-block h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-section-block h2 i {
  color: var(--accent-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.policy-section-block h3 {
  font-size: 1.1rem;
  color: var(--primary-light);
  margin: 16px 0 8px;
}

.policy-section-block p,
.policy-section-block li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 10px;
}

.policy-section-block ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.policy-highlight-box {
  background: #f8fafc;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 20px 0;
  font-size: 0.925rem;
  color: var(--text-main);
  width: 100%;
  box-sizing: border-box;
}

.policy-contact-box {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 24px;
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   Responsive Breakpoints & Media Queries (Zero Overflow)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

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

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

@media (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }

  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-logo img {
    height: 38px;
    max-width: 100%;
  }

  .navlinks,
  .nav-call-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .topbar-info {
    justify-content: center;
    width: 100%;
    font-size: 0.78rem;
    gap: 10px;
  }

  .topbar-social {
    display: none;
  }

  .hero {
    padding: 24px 0 38px;
  }

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

  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-buttons .btn {
    width: 100%;
  }

  .hero-booking-card {
    padding: 18px 14px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .trust-card {
    grid-template-columns: 1fr 1fr;
    padding: 18px 12px;
    gap: 14px;
  }

  .stat-item::after {
    display: none !important;
  }

  .about-card {
    padding: 22px 16px;
  }

  .about-grid,
  .fleet-grid,
  .services-grid,
  .why-grid,
  .steps-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-banner-box {
    flex-direction: column;
    text-align: center;
    padding: 26px 16px;
  }

  .cta-banner-buttons {
    justify-content: center;
    width: 100%;
  }

  .cta-banner-buttons .btn {
    width: 100%;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 22px 16px;
  }

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

  .copyright-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .mobile-bottom-bar {
    display: block;
  }

  .policy-card-container {
    padding: 22px 14px;
    margin: -16px 0 60px;
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 480px) {
  .topbar-badge {
    display: none;
  }

  .trust-card {
    grid-template-columns: 1fr;
  }

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