/* JDMK Travels & Rentals - Main Stylesheet */

/* ---------- IMPORTS & FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  /* Colors - Neutral Charcoal & Warm Accent Palette (Removed Blue Hue) */
  --primary: #edae49;
  /* Honey Bronze (Lustrous, honeyed aura) */
  --primary-hover: #d99c3e;
  --primary-glow: rgba(237, 174, 73, 0.15);

  --navy-dark: #111113;
  /* Rich Charcoal Near-Black */
  --navy-medium: #1f1f23;
  /* Dark Charcoal Card Background */
  --navy-light: #52525b;
  /* Muted Zinc Gray */

  --sky-light: #f4f4f5;
  /* Warm Soft Off-White */
  --sky-medium: #e4e4e7;
  /* Neutral Border Gray */
  --sky-accent: #edae49;
  /* Primary Honey Bronze Accent */

  --accent-gold: #edae49;
  /* Honey Bronze Highlights */
  --accent-amaranth: #d1495b;
  /* Amaranth (Fiery magenta-pink for tags & pricing) */

  --white: #FFFFFF;
  --white-glass: rgba(255, 255, 255, 0.75);
  --navy-glass: rgba(17, 17, 19, 0.88);
  /* Charcoal glass overlay */

  --text-dark: #0F172A;
  /* Near Black for readability */
  --text-muted: #475569;
  /* Gray for descriptions */
  --text-light: #F8FAFC;

  --bg-slate: #F8FAFC;
  /* Section background alternator */
  --bg-border: rgba(226, 232, 240, 0.8);

  /* Layout Metrics */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(17, 17, 19, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(17, 17, 19, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(17, 17, 19, 0.12);
  --shadow-glow: 0 0 20px rgba(237, 174, 73, 0.3);

  /* Typography Scale */
  --font-headings: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

ul,
ol {
  list-style: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  /* Prevent header overlap */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.25;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

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

/* ---------- LAYOUT UTILITIES ---------- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section.alt-bg {
  background-color: var(--bg-slate);
}

/* ---------- PAGE LOADER ---------- */
#page-loader {
  position: fixed;
  inset: 0;
  background-color: var(--navy-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(237, 174, 73, 0.15);
  border-left-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.loader-text {
  color: var(--white);
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- BUTTONS (Min 48px touch friendly) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  white-space: nowrap;
  outline: none;
  position: relative;
  overflow: hidden;
}

/* Button ripple visual feedback */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:active::after {
  opacity: 1;
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px var(--sky-medium), 0 0 0 5px var(--navy-light);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--navy-dark);
  /* Contrast color for Honey Bronze */
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(237, 174, 73, 0.4);
}

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

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

.btn-outline-dark {
  background-color: transparent;
  color: var(--navy-dark);
  border-color: var(--navy-dark);
}

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

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-phone {
  background-color: var(--navy-dark);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-phone:hover {
  background-color: var(--navy-medium);
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 38px;
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ---------- TOP CONTACT BAR ---------- */
.topbar {
  background-color: var(--navy-dark);
  color: var(--text-light);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.topbar-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.topbar-info i {
  color: var(--primary);
}

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

.topbar-social-link {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.topbar-social-link:hover {
  color: var(--primary);
  background: rgba(237, 174, 73, 0.1);
}

.topbar-phone-link {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ---------- PREMIUM HEADER & NAVIGATION ---------- */
.navbar {
  position: absolute;
  top: 45px;
  /* Sits below topbar */
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
}

/* Sticky Class triggered via JS */
.navbar.scrolled {
  position: fixed;
  top: 0;
  background-color: var(--navy-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

/* Logo Design - Styled as an integrated badge */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: var(--transition-fast);
  background-color: var(--white);
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo-img {
  height: 40px;
  padding: 3px 6px;
}

/* Nav links styling */
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  font-weight: 700;
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown Menu (Mega style preview) */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  min-width: 250px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1010;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--navy-dark);
}

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

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
}

.dropdown-link i {
  color: var(--primary);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.dropdown-link:hover {
  background-color: rgba(237, 174, 73, 0.1);
  color: var(--white);
}

/* Header buttons wrapper */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger mobile button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1050;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

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

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

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

/* ---------- HERO SECTION (Parallax Backdrop with Natural Mountains) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: linear-gradient(rgba(17, 17, 19, 0.45), rgba(17, 17, 19, 0.65)), url('../images/hero-bg.png');
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 120px;
  overflow: visible;
}

.hero-inner {
  position: relative;
  z-index: 5;
}

.hero-content {
  max-width: 800px;
  text-align: left;
}

.hero-eyebrow {
  font-family: var(--font-headings);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::after {
  content: '';
  width: 60px;
  height: 2px;
  background-color: var(--primary);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(17, 17, 19, 0.45);
}

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

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--sky-medium);
  margin-bottom: 12px;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 650px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

/* Floating Trust Badges */
.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: clamp(16px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px clamp(20px, 3vw, 36px);
  border-radius: var(--radius-md);
  max-width: fit-content;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-badge-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: clamp(16px, 3vw, 40px);
}

.hero-badge-icon {
  font-size: 1.8rem;
  color: var(--primary);
  filter: drop-shadow(0 2px 4px rgba(237, 174, 73, 0.2));
}

.hero-badge-info strong {
  display: block;
  color: var(--white);
  font-family: var(--font-headings);
  font-size: 1.15rem;
}

.hero-badge-info span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- SEARCH BAR SECTION (Overlaps Hero) ---------- */
.search-container {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.search-bar-glass {
  background-color: var(--white-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px clamp(20px, 3vw, 36px);
}

.search-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.search-field-group {
  position: relative;
}

.search-field-group:not(:last-child) {
  border-right: 1px solid rgba(15, 23, 42, 0.1);
  padding-right: 15px;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-input-wrapper i {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.search-inputs {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.search-inputs label {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.search-inputs select,
.search-inputs input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  outline: none;
  padding: 4px 0;
  cursor: pointer;
}

.search-inputs input::placeholder {
  color: var(--text-muted);
}

/* ---------- SECTION HEADERS ---------- */
.section-header-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(36px, 6vw, 54px);
  flex-wrap: wrap;
  gap: 20px;
}

.section-eyebrow-accent {
  color: var(--navy-light);
  /* Teal/zinc color for section eyebrows */
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title-large {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-dark);
  max-width: 650px;
}

/* ---------- TOUR PACKAGES CARDS ---------- */
.packages-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pkg-card-luxury {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pkg-card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(237, 174, 73, 0.2);
}

.pkg-card-image-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--bg-slate);
}

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

.pkg-card-luxury:hover .pkg-card-image {
  transform: scale(1.08);
}

.pkg-card-badge-top {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--accent-amaranth);
  /* Amaranth highlight badge */
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(209, 73, 91, 0.25);
}

.pkg-card-duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(17, 17, 19, 0.75);
  /* Charcoal glass duration tag */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pkg-card-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pkg-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pkg-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg-card-meta i {
  color: var(--navy-light);
  /* Zinc gray details marker */
}

.pkg-card-rating {
  color: var(--primary);
  /* Honey Bronze star rating */
  margin-left: auto;
  font-weight: 600;
  font-size: 0.85rem;
}

.pkg-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.pkg-card-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.pkg-card-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--bg-border);
  margin-top: auto;
}

.pkg-price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  display: block;
}

.pkg-price-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-amaranth);
  /* Amaranth pricing accent */
}

.pkg-price-amount span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pkg-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.pkg-card-actions .btn {
  flex: 1;
}

/* ---------- VEHICLE RENTAL CARDS (Bikes & Scooties) ---------- */
.vehicles-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.vehicle-card-luxury {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.vehicle-card-luxury:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(237, 174, 73, 0.2);
}

.vehicle-card-image-wrap {
  position: relative;
  aspect-ratio: 16/11;
  background-color: var(--sky-light);
  /* Soft gray background */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.vehicle-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy-glass);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

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

.vehicle-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.vehicle-card-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.vehicle-spec-item {
  background-color: var(--sky-light);
  border-radius: var(--radius-sm);
  padding: 8px;
  text-align: center;
}

.vehicle-spec-item i {
  color: var(--navy-light);
  /* Zinc gray icons */
  font-size: 1rem;
  margin-bottom: 4px;
  display: block;
}

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

.vehicle-specs-list {
  border-top: 1px solid var(--bg-border);
  padding-top: 12px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vehicle-spec-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.vehicle-spec-line span:last-child {
  font-weight: 600;
  color: var(--text-dark);
}

.vehicle-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--bg-border);
  padding-top: 16px;
}

.vehicle-price-day {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-amaranth);
  /* Amaranth pricing accent */
}

.vehicle-price-day span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ---------- TAXI SERVICES SECTION ---------- */
.taxi-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.taxi-card-luxury {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-border);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
}

.taxi-card-luxury:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(237, 174, 73, 0.2);
}

.taxi-card-luxury:hover .taxi-card-icon {
  background-color: var(--primary);
  color: var(--navy-dark);
  transform: scale(1.08);
}

.taxi-card-luxury:hover .btn-outline-dark {
  background-color: var(--primary);
  color: var(--navy-dark);
  border-color: var(--primary);
}

.taxi-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--sky-light);
  color: var(--navy-light);
  /* Zinc gray icon */
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.taxi-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.taxi-card-capacity {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.taxi-pricing-table {
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.taxi-pricing-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--bg-border);
  padding-bottom: 6px;
}

.taxi-pricing-row strong {
  color: var(--text-dark);
}

/* ---------- WHY CHOOSE US & STATISTICS ---------- */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.why-feature-card {
  background-color: var(--white);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

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

.why-feature-icon {
  font-size: 1.8rem;
  color: var(--navy-light);
  /* Zinc gray feature icon */
  margin-bottom: 12px;
}

.why-feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.stats-grid-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.stat-item-premium {
  background-color: var(--white);
  border: 1px solid var(--bg-border);
  box-shadow: var(--shadow-sm);
  padding: 36px 20px;
  border-radius: var(--radius-lg);
}

.stat-counter-number {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy-medium);
  /* Dark Zinc counter */
  display: block;
}

.stat-counter-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ---------- HOW BOOKING WORKS (Timeline steps) ---------- */
.booking-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.booking-process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--sky-medium);
  z-index: 1;
}

.booking-step-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.booking-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  border: 3px solid var(--primary);
  /* Honey Bronze ring */
  color: var(--navy-dark);
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.booking-step-item:hover .booking-step-num {
  background-color: var(--primary);
  color: var(--navy-dark);
  transform: scale(1.08);
}

.booking-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.booking-step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- TESTIMONIALS SECTION ---------- */
.reviews-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card-premium {
  background-color: var(--white);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-card-stars {
  color: var(--primary);
  /* Honey Bronze star rating */
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.review-card-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 24px;
}

.review-card-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.review-user-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--sky-light);
  color: var(--navy-light);
  /* Zinc avatar text */
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-user-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-dark);
}

.review-user-info span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- FILTERABLE GALLERY ---------- */
.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  background: var(--white);
  border: 1px solid var(--bg-border);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background-color: var(--primary);
  color: var(--navy-dark);
  border-color: var(--primary);
}

.gallery-masonry-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-thumbnail-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-slate);
}

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

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

.gallery-thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 19, 0.45);
  /* Charcoal glass overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-thumbnail-card:hover .gallery-thumbnail-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hidden {
  display: none !important;
}

/* ---------- FAQ ACCORDION (Max-Height Transition) ---------- */
.faq-accordion-wrap {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item-premium {
  background-color: var(--white);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-trigger-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  cursor: pointer;
  outline: none;
}

.faq-trigger-btn:focus-visible {
  background-color: var(--sky-light);
}

.faq-trigger-icon {
  color: var(--primary);
  font-size: 0.9rem;
  transition: transform var(--transition-smooth);
}

.faq-content-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.faq-content-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Open Accordion State */
.faq-item-premium.active .faq-trigger-icon {
  transform: rotate(180deg);
}

/* ---------- REUSABLE CONTACT FORM & CONTACT GRID ---------- */
.contact-container-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

.contact-card-sidebar {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-sidebar-title {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.contact-sidebar-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

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

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

.contact-info-card-icon {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 4px;
}

.contact-info-card-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-card-text span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-form-card-premium {
  background-color: var(--white);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.form-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-item {
  margin-bottom: 20px;
}

.form-group-item label {
  display: block;
  font-family: var(--font-headings);
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--navy-medium);
  margin-bottom: 8px;
}

.form-control-input,
.form-control-select,
.form-control-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--bg-border);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-fast);
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
  border-color: var(--navy-medium);
  box-shadow: 0 0 0 3px rgba(48, 99, 142, 0.15);
}

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

/* Form Message Box */
#form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-msg-success {
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #BCF0DA;
  display: block !important;
}

.form-msg-error {
  background-color: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #FBD5D5;
  display: block !important;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 0.8s ease infinite;
}

/* ---------- GOOGLE MAPS BLOCK ---------- */
.maps-block-premium {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-border);
  margin-top: 50px;
}

.maps-block-premium iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ---------- INTERNAL BREADCRUMB HERO (Removed Blue overlay) ---------- */
.internal-hero-section {
  background-image: linear-gradient(rgba(17, 17, 19, 0.75), rgba(17, 17, 19, 0.85)), url('../images/hero-bg.png');
  background-position: center center;
  background-size: cover;
  padding: 100px 0 60px;
  text-align: center;
}

.internal-hero-title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.internal-hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.88rem;
}

.breadcrumb-item-link {
  color: var(--sky-medium);
  font-weight: 600;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-item-active {
  color: var(--white);
  font-weight: 500;
}

/* ---------- PREMIUM FOOTER ---------- */
.footer-luxury {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 20px 0;
}

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

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

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

.footer-social-btn:hover {
  background-color: var(--primary);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.footer-column-title {
  color: var(--white);
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

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

.footer-links-list li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-links-list li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 4px;
}

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

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

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

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

/* ---------- STICKY MOBILE BOTTOM NAVIGATION ---------- */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: rgba(17, 17, 19, 0.95);
  /* Charcoal glass bottom nav */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding: 0 10px;
}

.mobile-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 500;
  height: 100%;
  width: 20%;
  cursor: pointer;
}

.mobile-bottom-nav-item i {
  font-size: 1.3rem;
  margin-bottom: 4px;
  min-height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-bottom-nav-item.active {
  color: var(--primary);
}

/* ---------- FLOATING ACTION BUTTONS (CALL / WHATSAPP / BOOK) ---------- */
.floating-actions-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(17, 17, 19, 0.2);
  /* Charcoal shadow */
  transition: var(--transition-smooth);
}

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

.floating-btn-circle.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: scale(1.08);
}

.floating-btn-circle.call-btn {
  background-color: var(--primary);
  color: var(--navy-dark);
}

.floating-btn-circle.call-btn:hover {
  background-color: var(--primary-hover);
  transform: scale(1.08);
}

.floating-btn-circle.top-btn {
  background-color: var(--navy-medium);
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
}

.floating-btn-circle.top-btn.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-btn-circle.top-btn:hover {
  background-color: var(--navy-dark);
  transform: translateY(-2px);
}

/* Floating Book Now Badge (Desktop only visual helper) */
.floating-book-pill {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
}

.floating-book-pill:hover {
  background-color: var(--primary);
  color: var(--navy-dark);
  border-color: var(--primary);
}

/* ---------- LIGHTBOX GALLERY MODAL ---------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 17, 19, 0.95);
  /* Charcoal glass lightbox background */
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-container {
  max-width: 90%;
  max-height: 80%;
  position: relative;
}

.lightbox-media {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  display: block;
}

.lightbox-caption {
  color: var(--white);
  font-family: var(--font-headings);
  text-align: center;
  margin-top: 16px;
  font-size: 1rem;
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.reveal-scale {
  transform: scale(0.95);
}

.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Delay modifiers */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

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

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

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

/* ---------- RESPONSIVE MEDIA QUERIES ---------- */

/* Desktop Extra Large (1440px+) */
@media (min-width: 1440px) {
  .container {
    max-width: 1380px;
  }
}

/* Desktop Large (1280px) */
@media (max-width: 1280px) {
  .hero {
    background-attachment: scroll;
    /* Disable parallax lag on smaller desktops */
  }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
  .search-form {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .search-form .btn {
    grid-column: span 2;
  }

  .search-field-group:nth-child(2) {
    border-right: none;
  }

  .packages-grid-layout,
  .vehicles-grid-layout,
  .reviews-masonry,
  .taxi-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .contact-container-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  
  /* Compact App-like Header */
  .navbar {
    position: fixed;
    top: 0;
    padding: 12px 0;
    background-color: var(--white);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
  }
  
  .logo-img {
    height: 36px;
    padding: 2px;
    box-shadow: none;
    background: transparent;
  }
  
  .navbar .btn,
  .nav-actions {
    display: none;
  }

  /* Show hamburger and nav links on mobile */
  .hamburger {
    display: flex !important;
  }
  
  .hamburger span {
    background-color: var(--navy-dark);
  }
  
  .nav-links {
    display: flex !important;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    gap: 16px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1040;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    width: 100%;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
  }

  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    background-color: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    border: none;
    margin-top: 8px;
    padding-left: 16px;
    width: 100%;
    display: none;
    /* Handled via JS toggle if needed, or simple static list */
  }

  .dropdown-menu.open {
    display: block;
  }

  /* Hero Section Mobile */
  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 60px;
    background-position: center center;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    text-align: center;
  }
  
  .hero-desc {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-eyebrow {
    margin: 0 auto 16px;
  }

  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: none;
  }

  .hero-badge-item:nth-child(2) {
    border-right: none;
    padding-right: 0;
  }

  .hero-badge-item:nth-child(3) {
    padding-right: 0;
  }

  /* Compact Search Bar */
  .search-container {
    margin-top: -20px;
    padding: 0 16px;
  }
  
  .search-bar-glass {
    padding: 16px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: none;
  }

  .stats-grid-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Horizontal Swipeable Carousels (App-like) */
  .packages-grid-layout,
  .vehicles-grid-layout,
  .gallery-masonry-layout,
  .taxi-grid-layout {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 24px;
    padding-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    scrollbar-width: none; /* Firefox */
  }
  
  .packages-grid-layout::-webkit-scrollbar,
  .vehicles-grid-layout::-webkit-scrollbar,
  .gallery-masonry-layout::-webkit-scrollbar,
  .taxi-grid-layout::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Safari/Chrome */
  }

  /* Make carousel items exact width */
  .packages-grid-layout > *,
  .vehicles-grid-layout > *,
  .gallery-masonry-layout > *,
  .taxi-grid-layout > * {
    flex: 0 0 85vw;
    scroll-snap-align: center;
    border-radius: 20px; /* Premium larger radius */
  }
  
  /* Tap Highlights */
  .pkg-card-luxury:active,
  .vehicle-card:active,
  .taxi-card:active,
  .btn:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

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

  /* Bottom Sticky Nav Styling */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
    z-index: 9999;
    padding: 8px 16px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  
  .mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 600;
    flex: 1 1 0;
    width: 20%;
    gap: 4px;
    transition: 0.2s ease;
    text-align: center;
  }
  
  .mobile-bottom-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
  
  .mobile-bottom-nav-item.active {
    color: var(--primary);
  }

  /* Floating Action Button Mobile Adjustments */
  .floating-actions-panel {
    bottom: 76px;
    right: 12px;
    flex-direction: column;
    gap: 8px;
  }

  .floating-btn-circle {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  
  /* Hide the call button to save space (Contact tab is in bottom nav) */
  .floating-btn-circle.call-btn {
    display: none;
  }

  body {
    padding-bottom: 76px;
  }
}

/* Mobile Screen Sizes (425px & under) */
@media (max-width: 480px) {
  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero-badge-item {
    border-right: none !important;
    padding-right: 0 !important;
  }

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

  .search-form .btn {
    grid-column: span 1;
  }

  .search-field-group {
    border-right: none !important;
    padding-right: 0 !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding-bottom: 12px;
  }

  .reviews-masonry {
    grid-template-columns: 1fr;
  }

  .form-two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stats-grid-wrap {
    grid-template-columns: 1fr;
  }

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

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

  .contact-form-card-premium {
    padding: 24px;
  }

  .contact-card-sidebar {
    padding: 24px;
  }

  /* Package Cards Mobile Fixes */
  .vehicle-spec-line {
    align-items: flex-start;
    gap: 10px;
  }
  .vehicle-spec-line span:last-child {
    text-align: right;
    word-break: break-word;
  }
  
  .pkg-card-pricing-row {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .pkg-card-pricing-row > div:first-child {
    text-align: center;
    padding-bottom: 8px;
  }
  .pkg-card-pricing-row .pkg-card-actions {
    width: 100% !important;
  }
}

/* Mobile Small (320px) */
@media (max-width: 350px) {
  .hero h1 {
    font-size: 2.2rem;
  }

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

/* Sticky Sidebar for desktop viewports */
@media (min-width: 1025px) {
  .sticky-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
    height: fit-content;
  }
}

/* ============================================================
   PREMIUM BOOKING PROCESS SECTION
   ============================================================ */

.booking-section-premium {
  background: linear-gradient(160deg, #fdfaf5 0%, #fff8ee 40%, #fdfaf5 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background pattern */
.booking-section-premium::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(237, 174, 73, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.booking-section-premium::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(237, 174, 73, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Section Header */
.booking-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 7vw, 72px);
}

.booking-section-header .section-title-large {
  margin: 10px auto 18px;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  line-height: 1.2;
}

.booking-section-header .section-title-large em {
  font-style: italic;
  background: linear-gradient(135deg, #edae49, #d99c3e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booking-section-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Track layout with connecting line */
.booking-steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  align-items: start;
}

/* Horizontal connecting line between steps */
.booking-track-line {
  position: absolute;
  top: 52px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: linear-gradient(90deg,
      var(--primary) 0%,
      rgba(237, 174, 73, 0.6) 33%,
      rgba(237, 174, 73, 0.3) 66%,
      rgba(237, 174, 73, 0.1) 100%);
  z-index: 0;
}

/* Individual Step Card */
.booking-step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  border: 1px solid rgba(237, 174, 73, 0.12);
  box-shadow: 0 4px 24px rgba(17, 17, 19, 0.06);
  position: relative;
  z-index: 1;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(237, 174, 73, 0.15), 0 6px 16px rgba(17, 17, 19, 0.08);
  border-color: rgba(237, 174, 73, 0.35);
}

/* Gold top accent bar */
.booking-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-hover));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.booking-step-card:hover::before {
  opacity: 1;
}

/* Icon wrapper */
.booking-step-icon-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Step number badge */
.booking-step-badge {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary);
  background: rgba(237, 174, 73, 0.1);
  border: 1px solid rgba(237, 174, 73, 0.25);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  line-height: 1.4;
  white-space: nowrap;
}

/* Icon circle */
.booking-step-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(237, 174, 73, 0.35);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  margin-left: auto;
}

.booking-step-card:hover .booking-step-icon {
  transform: rotate(8deg) scale(1.08);
  box-shadow: 0 10px 28px rgba(237, 174, 73, 0.5);
}

.booking-step-icon i {
  font-size: 1.35rem;
  color: var(--navy-dark);
}

/* Step body */
.booking-step-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.booking-step-title {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
}

.booking-step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

/* CTA link inside each step */
.booking-step-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-headings);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-hover);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: auto;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.booking-step-cta i {
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.booking-step-cta:hover {
  color: var(--navy-dark);
  gap: 10px;
}

.booking-step-cta:hover i {
  transform: translateX(3px);
}

/* Bottom CTA strip */
.booking-bottom-cta {
  margin-top: clamp(40px, 6vw, 60px);
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px) clamp(24px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.booking-bottom-cta::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(237, 174, 73, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.booking-bottom-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.5;
  max-width: 480px;
}

.booking-bottom-cta p strong {
  color: var(--primary);
}

.booking-bottom-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Responsive: tablet */
@media (max-width: 900px) {
  .booking-steps-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .booking-track-line {
    display: none;
  }
}

/* Responsive: mobile */
@media (max-width: 540px) {
  .booking-steps-track {
    grid-template-columns: 1fr;
  }

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

  .booking-bottom-btns {
    justify-content: center;
  }
}


/* ---------- PREMIUM UI ENHANCEMENTS ---------- */

/* Import Playfair Display for headings */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: var(--navy-dark);
}

/* Glassmorphism */
.bg-glass {
  background: var(--white-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}

/* Image glass effect */
.img-glass {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.img-glass:hover {
  transform: scale(1.03);
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.reveal {
  opacity: 0;
  animation: fadeIn var(--transition-slow) forwards;
}

.reveal-delay-1 {
  animation-delay: 0.1s;
}

.reveal-delay-2 {
  animation-delay: 0.2s;
}

.reveal-delay-3 {
  animation-delay: 0.3s;
}

/* Card hover lift */
.pkg-card-luxury:hover,
.vehicle-card-luxury:hover,
.review-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Footer links */
.footer-links-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

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

/* Button ripple tweak */
.btn::after {
  background: rgba(255, 255, 255, 0.1);
}

/* Utility classes */
.text-primary {
  color: var(--primary);
}

.bg-primary {
  background-color: var(--primary);
  color: var(--navy-dark);
}

.shadow-elevated {
  box-shadow: var(--shadow-lg);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .section {
    padding: clamp(40px, 5vw, 60px) 0;
  }
}

/* ==========================================================================
   BIKE & SCOOTY RENTAL PAGE STYLING ENHANCEMENTS
   ========================================================================== */

/* Hero Enhancement */
.bike-rental-page .internal-hero-section,
.scooty-rental-page .internal-hero-section {
  position: relative;
  background-position: center center;
  background-size: cover;
  padding: 130px 0 90px;
  overflow: hidden;
  border-bottom: 2px solid rgba(237, 174, 73, 0.3);
}

.bike-rental-page .internal-hero-section {
  background-image: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.8)), url('../images/bike-rental-banner.png');
}

.scooty-rental-page .internal-hero-section {
  background-image: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.8)), url('../images/scooty-rental-banner.png');
}

.bike-rental-page .internal-hero-section::before,
.scooty-rental-page .internal-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(15, 23, 42, 0.9) 100%);
  pointer-events: none;
}

.bike-rental-page .internal-hero-title,
.scooty-rental-page .internal-hero-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #eda749 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 8px;
}

/* Requirements Policy Grid */
.bike-rental-page .rental-policy-grid,
.scooty-rental-page .rental-policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.bike-rental-page .policy-card,
.scooty-rental-page .policy-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.bike-rental-page .policy-card::after,
.scooty-rental-page .policy-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.bike-rental-page .policy-card:hover,
.scooty-rental-page .policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: rgba(237, 174, 73, 0.4);
}

.bike-rental-page .policy-card:hover::after,
.scooty-rental-page .policy-card:hover::after {
  transform: scaleX(1);
}

.bike-rental-page .policy-card-icon-wrap,
.scooty-rental-page .policy-card-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(237, 174, 73, 0.1);
  color: var(--accent-gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.4s ease;
}

.bike-rental-page .policy-card:hover .policy-card-icon-wrap,
.scooty-rental-page .policy-card:hover .policy-card-icon-wrap {
  background: var(--accent-gold);
  color: var(--white);
  transform: rotateY(360deg);
  box-shadow: 0 4px 15px rgba(237, 174, 73, 0.4);
}

.bike-rental-page .policy-card-title,
.scooty-rental-page .policy-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.bike-rental-page .policy-card-text,
.scooty-rental-page .policy-card-text {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.45;
}

/* Fleet Filter Bar */
.bike-rental-page .fleet-filter-wrapper,
.scooty-rental-page .fleet-filter-wrapper {
  margin: 20px 0 40px;
  text-align: center;
}

.bike-rental-page .filter-section-title,
.scooty-rental-page .filter-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.bike-rental-page .filter-section-title::after,
.scooty-rental-page .filter-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 40px;
  height: 2px;
  background-color: var(--accent-gold);
  transform: translateX(-50%);
}

.bike-rental-page .fleet-filter-bar,
.scooty-rental-page .fleet-filter-bar {
  display: inline-flex;
  gap: 12px;
  background: rgba(15, 23, 42, 0.04);
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.bike-rental-page .filter-tab,
.scooty-rental-page .filter-tab {
  background: transparent;
  border: none;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.bike-rental-page .filter-tab:hover,
.scooty-rental-page .filter-tab:hover {
  color: var(--accent-gold);
}

.bike-rental-page .filter-tab.active,
.scooty-rental-page .filter-tab.active {
  background: var(--navy-dark);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

/* Vehicle Cards Specific Improvements */
.bike-rental-page .vehicle-card-luxury,
.scooty-rental-page .vehicle-card-luxury {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.bike-rental-page .vehicle-card-image-wrap,
.scooty-rental-page .vehicle-card-image-wrap {
  aspect-ratio: 16/11;
  background: radial-gradient(circle, #f8fafc 0%, #e2e8f0 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.bike-rental-page .vehicle-card-img,
.scooty-rental-page .vehicle-card-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover; /* Beautiful full card cover */
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bike-rental-page .vehicle-card-luxury:hover .vehicle-card-img,
.scooty-rental-page .vehicle-card-luxury:hover .vehicle-card-img {
  transform: scale(1.08) rotate(1deg);
}

.bike-rental-page .vehicle-card-tag-premium,
.scooty-rental-page .vehicle-card-tag-premium {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #d97706 100%);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}

.bike-rental-page .vehicle-card-tag-premium.highlight,
.scooty-rental-page .vehicle-card-tag-premium.highlight {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.bike-rental-page .vehicle-card-badge,
.scooty-rental-page .vehicle-card-badge {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bike-rental-page .vehicle-card-body,
.scooty-rental-page .vehicle-card-body {
  padding: 24px 20px;
}

.bike-rental-page .vehicle-card-title,
.scooty-rental-page .vehicle-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-dark);
}

/* "How it Works" Steps Timeline */
.bike-rental-page .rental-steps-container,
.scooty-rental-page .rental-steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
  position: relative;
}

.bike-rental-page .step-card,
.scooty-rental-page .step-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  position: relative;
}

.bike-rental-page .step-card:hover,
.scooty-rental-page .step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bike-rental-page .step-icon-wrap,
.scooty-rental-page .step-icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  position: relative;
  transition: all 0.4s ease;
}

.bike-rental-page .step-card:hover .step-icon-wrap,
.scooty-rental-page .step-card:hover .step-icon-wrap {
  background: var(--navy-dark);
  color: var(--white);
  transform: scale(1.1);
}

.bike-rental-page .step-number,
.scooty-rental-page .step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--accent-gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.bike-rental-page .step-title,
.scooty-rental-page .step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.bike-rental-page .step-desc,
.scooty-rental-page .step-desc {
  font-size: 0.82rem;
  color: var(--text-dark);
  line-height: 1.45;
}

/* FAQ Accordion Section */
.bike-rental-page .faq-accordion,
.scooty-rental-page .faq-accordion {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bike-rental-page .faq-item,
.scooty-rental-page .faq-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.bike-rental-page .faq-item.active,
.scooty-rental-page .faq-item.active {
  border-color: rgba(237, 174, 73, 0.4);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.bike-rental-page .faq-question,
.scooty-rental-page .faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  outline: none;
  transition: color 0.3s ease;
}

.bike-rental-page .faq-question:hover,
.scooty-rental-page .faq-question:hover {
  color: var(--accent-gold);
}

.bike-rental-page .faq-arrow,
.scooty-rental-page .faq-arrow {
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bike-rental-page .faq-item.active .faq-arrow,
.scooty-rental-page .faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

.bike-rental-page .faq-answer,
.scooty-rental-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.bike-rental-page .faq-answer p,
.scooty-rental-page .faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.6;
  border-top: 1px solid rgba(15, 23, 42, 0.03);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .bike-rental-page .vehicles-grid-layout,
  .scooty-rental-page .vehicles-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bike-rental-page .vehicles-grid-layout,
  .scooty-rental-page .vehicles-grid-layout {
    grid-template-columns: 1fr;
  }
  .bike-rental-page .fleet-filter-bar,
  .scooty-rental-page .fleet-filter-bar {
    flex-direction: column;
    border-radius: 12px;
    padding: 10px;
  }
  .bike-rental-page .filter-tab,
  .scooty-rental-page .filter-tab {
    width: 100%;
    text-align: center;
  }
  .bike-rental-page .internal-hero-section,
  .scooty-rental-page .internal-hero-section {
    padding: 100px 0 60px;
  }
}

/* ==========================================================================
   COLORFUL & PREMIUM WHY CHOOSE US STYLING
   ========================================================================== */

#why-choose-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #fffbeb 100%);
  position: relative;
  overflow: hidden;
}

#why-choose-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#why-choose-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-feature-card {
  position: relative;
  border-left: 3px solid transparent !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* Card 1: GST (Blue Theme) */
.why-feature-card.gst-card:hover {
  border-left-color: #3b82f6 !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}
.why-feature-card.gst-card .why-feature-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card 2: Sanitized (Emerald Theme) */
.why-feature-card.sanitized-card:hover {
  border-left-color: #10b981 !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.08);
}
.why-feature-card.sanitized-card .why-feature-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card 3: Drivers (Violet Theme) */
.why-feature-card.drivers-card:hover {
  border-left-color: #8b5cf6 !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}
.why-feature-card.drivers-card .why-feature-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card 4: Booking (Amber Theme) */
.why-feature-card.booking-card:hover {
  border-left-color: #f59e0b !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.08);
}
.why-feature-card.booking-card .why-feature-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Metric Stats Colorful Styling */
.stat-item-premium {
  position: relative;
  border-top: 3px solid transparent !important;
  transition: all 0.4s ease !important;
}

.stat-item-premium:nth-child(1):hover {
  border-top-color: #3b82f6 !important;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.08) !important;
}
.stat-item-premium:nth-child(1) .stat-counter-number {
  color: #2563eb !important;
}

.stat-item-premium:nth-child(2):hover {
  border-top-color: #10b981 !important;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.08) !important;
}
.stat-item-premium:nth-child(2) .stat-counter-number {
  color: #059669 !important;
}

.stat-item-premium:nth-child(3):hover {
  border-top-color: #8b5cf6 !important;
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.08) !important;
}
.stat-item-premium:nth-child(3) .stat-counter-number {
  color: #7c3aed !important;
}

.stat-item-premium:nth-child(4):hover {
  border-top-color: #f59e0b !important;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.08) !important;
}
.stat-item-premium:nth-child(4) .stat-counter-number {
  color: #d97706 !important;
}

/* ==========================================================================
   COLORFUL ABOUT PAGE VALUES & STORY STYLING
   ========================================================================== */

#our-story {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
}

#our-story::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.value-card {
  position: relative;
  border-bottom: 3px solid transparent !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}

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

/* Rose Theme (Card 1) */
.value-card.rose-theme:hover {
  border-bottom-color: #f43f5e !important;
}
.value-card.rose-theme .why-feature-icon {
  background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Teal Theme (Card 2) */
.value-card.teal-theme:hover {
  border-bottom-color: #0d9488 !important;
}
.value-card.teal-theme .why-feature-icon {
  background: linear-gradient(135deg, #0d9488 0%, #115e59 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Amber Theme (Card 3) */
.value-card.amber-theme:hover {
  border-bottom-color: #eab308 !important;
}
.value-card.amber-theme .why-feature-icon {
  background: linear-gradient(135deg, #eab308 0%, #a16207 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Blue Theme (Card 4) */
.value-card.blue-theme:hover {
  border-bottom-color: #3b82f6 !important;
}
.value-card.blue-theme .why-feature-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Violet Theme (Card 5) */
.value-card.violet-theme:hover {
  border-bottom-color: #8b5cf6 !important;
}
.value-card.violet-theme .why-feature-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Emerald Theme (Card 6) */
.value-card.emerald-theme:hover {
  border-bottom-color: #10b981 !important;
}
.value-card.emerald-theme .why-feature-icon {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text {
  background: linear-gradient(135deg, #edae49 0%, #d1495b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}/* ==========================================
   CUSTOM TOAST NOTIFICATIONS & FALLBACK UI
   ========================================== */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #fff;
  color: #333;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 400px;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success { border-left: 5px solid #10b981; }
.toast.error { border-left: 5px solid #ef4444; }

.toast-icon { font-size: 24px; }
.toast.success .toast-icon { color: #10b981; }
.toast.error .toast-icon { color: #ef4444; }

.toast-content { flex: 1; }
.toast-title { font-weight: 700; margin-bottom: 4px; font-size: 15px; }
.toast-message { font-size: 14px; color: #666; line-height: 1.4; }

.toast-close {
  background: none; border: none; font-size: 20px;
  cursor: pointer; color: #999;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.fallback-contact {
  margin-top: 20px;
  padding: 20px;
  background: #fdf2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  display: none;
}
.fallback-contact.show { display: block; animation: fadeIn 0.5s ease; }
.fallback-title { color: #b91c1c; font-weight: bold; margin-bottom: 10px; font-size: 16px;}
.fallback-links { display: flex; flex-direction: column; gap: 10px; }
.fallback-link {
}/* ==========================================
   CUSTOM TOAST NOTIFICATIONS & FALLBACK UI
   ========================================== */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #fff;
  color: #333;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 400px;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success { border-left: 5px solid #10b981; }
.toast.error { border-left: 5px solid #ef4444; }

.toast-icon { font-size: 24px; }
.toast.success .toast-icon { color: #10b981; }
.toast.error .toast-icon { color: #ef4444; }

.toast-content { flex: 1; }
.toast-title { font-weight: 700; margin-bottom: 4px; font-size: 15px; }
.toast-message { font-size: 14px; color: #666; line-height: 1.4; }

.toast-close {
  background: none; border: none; font-size: 20px;
  cursor: pointer; color: #999;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.fallback-contact {
  margin-top: 20px;
  padding: 20px;
  background: #fdf2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  display: none;
}
.fallback-contact.show { display: block; animation: fadeIn 0.5s ease; }
.fallback-title { color: #b91c1c; font-weight: bold; margin-bottom: 10px; font-size: 16px;}
.fallback-links { display: flex; flex-direction: column; gap: 10px; }
.fallback-link {
  display: flex; align-items: center; gap: 8px;
  color: #1f2937; text-decoration: none; font-weight: 500;
  padding: 10px; background: #fff; border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05); transition: 0.3s;
}
.fallback-link:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

/* Mobile Carousel Arrow Controls */
.carousel-scroll-btn {
  display: none;
}

@media (max-width: 768px) {
  .carousel-scroll-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--white);
    color: var(--navy-dark);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
  
  .carousel-scroll-btn.left {
    left: -10px;
  }
  
  .carousel-scroll-btn.right {
    right: -10px;
  }
}
