/* =========================
   DESIGN TOKENS (ORANGE THEME)
   ========================= */
:root {
  --bg-body: #ffffff;
  --bg-body-alt: #ffffff;
  --bg-elevated: #ffffff;
  --bg-elevated-soft: #ffffff;
  --bg-chip: rgba(249, 115, 22, 0.06);

  --brand-primary: #f97316;      /* main orange */
  --brand-primary-soft: rgba(249, 115, 22, 0.08);
  --brand-secondary: #ea580c;    /* darker orange */
  --brand-secondary-soft: rgba(234, 88, 12, 0.08);
  --accent-gold: #fbbf24;

  --border-subtle: rgba(248, 150, 69, 0.45);

  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-chip: 0 12px 30px rgba(15, 23, 42, 0.12);

  --radius-card: 18px;
  --radius-pill: 999px;

  --transition-fast: 170ms ease-out;
  --transition-med: 260ms ease-out;

  --orange-main: #f97316;
  --orange-dark: #ea580c;
  --orange-soft: #fff1e0;
}

/* =========================
   GLOBAL RESET
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  background: var(--bg-body-alt);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Remove default borders/outlines */
input,
select,
textarea,
button {
  outline: none;
  border: none;
  font-family: inherit;
  background: transparent;
}

/* Base link style */
a {
  color: inherit;
  text-decoration: none;
}
.floating-call img.phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}


/* Focus visible */
:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
}

/* =========================
   SECTION / TYPOGRAPHY
   ========================= */
.section-header,
.section-title,
.section-subtitle {
  text-align: center;
}

.section-header {
  margin-bottom: 2.2rem;
}

.section-title {
  font-size: clamp(1.7rem, 2.3vw, 2.3rem);
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 0.45rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  border-radius: 999px;
  margin: 0.5rem auto 0;
  background: linear-gradient(90deg, #f97316, #fbbf24);
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
}

/* Generic elevated card helper */
.elevated-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-card);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-card);
}

/* =========================
   BUTTONS – MAIN ORANGE
   ========================= */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--orange-main);
  color: #ffffff;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.45);
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter 160ms ease-out;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(234, 88, 12, 0.5);
  filter: brightness(1.02);
}

/* Secondary (outline) button near hero */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brand-primary);
  background: #fffbeb;
  text-decoration: none;
  border: 1px solid rgba(250, 204, 21, 0.7);
  transition:
    background var(--transition-med),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast);
  box-shadow: 0 10px 24px rgba(248, 181, 52, 0.25);
}

.btn-secondary:hover {
  background: #fef3c7;
  transform: translateY(-2px);
  color: #c05621;
}

/* Ghost-style tag button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand-primary);
  background: rgba(249, 115, 22, 0.06);
  cursor: pointer;
  border: 1px solid rgba(254, 215, 170, 0.9);
  text-decoration: none;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast);
}

.btn-ghost:hover {
  background: rgba(249, 115, 22, 0.12);
  transform: translateY(-1px);
  color: var(--orange-dark);
}

/* Buttons inside cards (WhatsApp / Book / Quote) – SAME AS PRIMARY */
.btn-book-package,
.btn-book-car,
.btn-corporate {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--orange-main);
  color: #ffffff;
  padding: 0.75rem 1.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.45);
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter 160ms ease-out;
}

.btn-book-package:hover,
.btn-book-car:hover,
.btn-corporate:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(234, 88, 12, 0.5);
  filter: brightness(1.02);
}

/* Center main form buttons in booking + enquiry */
.booking-container form .btn-primary {
  display: block;
  margin: 1.8rem auto 0;
}

.enquiry-container form .btn-primary {
  display: block;
  margin: 1.6rem auto 0;
}

/* =========================
   PAGE WRAPPER
   ========================= */
.page-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
}

/* =========================
   ORANGE HERO + TOP NAV
   ========================= */
.hero-card {
  width: 100%;
  background: var(--bg-elevated);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 1.8rem 2.3rem 2.6rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

/* Header / Navbar */
.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--orange-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}


.brand-text-main {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.92rem;
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  padding-bottom: 0.15rem;
  color: #374151;
  font-weight: 500;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: var(--orange-main);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--orange-main);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange-main);
  background: #fff7ed;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.nav-cta:hover {
  background: var(--orange-main);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
  transform: translateY(-1px);
}

/* Hero body */
.hero-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.8rem;
  margin-top: 0.7rem;
  align-items: center;
}

.hero-text h1 {
  margin: 0 0 1rem;
  font-size: 2.6rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-text h1 span.orange {
  color: var(--orange-main);
}

.hero-text h1 span.black {
  font-weight: 800;
}

.hero-text p {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 420px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Outline button near hero */
.btn-outline {
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.btn-outline:hover {
  background: #f3f4f6;
  box-shadow: 0 8px 20px rgba(55, 65, 81, 0.12);
  transform: translateY(-1px);
}

/* Hero visual – SMALLER SHAPE */
.hero-visual {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-bg {
  position: absolute;
  inset: 12px 10px 12px 40px;  /* shrink from edges */
  background: linear-gradient(135deg, #ff8a00, #ea580c);
  border-radius: 32px;
  transform: skewX(-5deg);
  transform-origin: left center;
}

.hero-car-wrap {
  position: relative;
  transform: translateX(8px);
}

.hero-car {
  width: 320px;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.35));
}

/* =========================
   BOOKING SECTION
   ========================= */
.booking-wrapper {
  margin: 0 auto 3rem;
}

.booking-container {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 1.9rem 1.8rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(248, 181, 52, 0.12);
}

/* Steps */
.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

/* Form layout */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  font-size: 0.86rem;
  color: var(--text-secondary);
  font-weight: 500;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="date"],
select {
  background: #f9fafb;
  color: var(--text-primary);
  padding: 0.7rem 0.85rem;
  border-radius: 0.9rem;
  font-size: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    transform 120ms ease-out,
    border-color var(--transition-fast);
}

input::placeholder,
select:invalid {
  color: var(--text-muted);
}

input:focus,
select:focus {
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.4), 0 0 0 6px rgba(254, 215, 170, 0.9);
  background: #ffffff;
  transform: translateY(-1px);
  border-color: rgba(249, 115, 22, 0.9);
}

/* Trip type pills */
.trip-type-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.trip-type-toggle label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  background: #f9fafb;
  font-size: 0.86rem;
  color: var(--text-secondary);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.7);
  cursor: pointer;
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast),
    color var(--transition-fast);
}

.trip-type-toggle input {
  accent-color: var(--brand-primary);
}

.trip-type-toggle label:has(input:checked) {
  background: linear-gradient(120deg, #f97316, #fbbf24);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.32);
  transform: translateY(-1px);
}

/* =========================
   PACKAGES
   ========================= */
.packages-wrapper {
  margin: 0 auto 3rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.package-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1px solid rgba(248, 181, 52, 0.7);
  position: relative;
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-med),
    background var(--transition-med);
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at top, rgba(251, 191, 36, 0.18), transparent 60%);
  transition: opacity 240ms ease-out;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
  border-color: rgba(249, 115, 22, 0.9);
  background: #ffffff;
}

.package-card:hover::before {
  opacity: 1;
}

.package-image {
  position: relative;
  overflow: hidden;
  height: 150px;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition:
    transform 650ms ease-out,
    filter 650ms ease-out;
  filter: saturate(1.06) contrast(1.04);
}

.package-card:hover .package-image img {
  transform: scale(1.09);
  filter: saturate(1.15) contrast(1.08);
}

.package-title {
  margin: 0.8rem 1.1rem 0.35rem;
  font-size: 1.02rem;
  color: #111827;
}

.package-details {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin: 0 1.1rem 0.3rem;
}

.package-detail-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.package-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.25rem 1.1rem 0.9rem;
}

.package-card .btn-book-package {
  margin: 0 1.1rem 1.05rem;
}

/* =========================
   DESTINATIONS GRID
   ========================= */
.destinations-wrapper {
  margin: 0 auto 2.8rem;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.destination-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  min-height: 150px;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-med);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.05);
  transition:
    transform 650ms ease-out,
    filter 650ms ease-out;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  border-color: rgba(249, 115, 22, 0.6);
}

.destination-card:hover img {
  transform: scale(1.1);
  filter: saturate(1.15) contrast(1.09);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent 55%);
  color: #ffffff;
}

.destination-name {
  margin: 0;
  font-size: 1rem;
}

.destination-desc {
  margin: 0.05rem 0 0;
  font-size: 0.82rem;
  opacity: 0.95;
}

/* =========================
   SLIDING DESTINATIONS STRIP
   ========================= */
.sliding-destinations-wrapper {
  margin: 0 auto 2.8rem;
}

.slider-track-wrapper {
  overflow: hidden;
  border-radius: 1.3rem;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(248, 181, 52, 0.12);
}

.slider-track {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 1rem;
  animation: slide-track 30s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}/* Bigger, taller sliding cards */
.slide-item {
  min-width: 260px;
  max-width: 320px;
  height: 220px;              /* <<< make the card taller */
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

/* Image fills full height of the card */
.slide-item img {
  width: 100%;
  height: 100%;               /* <<< use full card height */
  object-fit: cover;
}


.slide-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent 60%);
}

.slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem 0.8rem;
  font-size: 0.8rem;
  color: #f9fafb;
}

@keyframes slide-track {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   HOW IT WORKS
   ========================= */
.howit-wrapper {
  margin: 0 auto 3rem;
}

.howit-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.howit-step {
  background: var(--bg-elevated);
  border-radius: 1.3rem;
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow-card);
  font-size: 0.9rem;
  border: 1px solid rgba(248, 181, 52, 0.6);
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-med),
    background var(--transition-med);
}

.howit-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  border-color: rgba(249, 115, 22, 0.8);
  background: #ffffff;
}

.howit-icon {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.howit-title {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
  color: #111827;
}

.howit-text {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* =========================
   FLEET
   ========================= */
.fleet-wrapper {
  margin: 0 auto 3rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.car-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    background var(--transition-med),
    border-color var(--transition-med);
  border: 1px solid rgba(248, 181, 52, 0.7);
  position: relative;
}

.car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at top, rgba(255, 237, 213, 0.4), transparent 60%);
  transition: opacity 240ms ease-out;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
  background: #ffffff;
  border-color: rgba(249, 115, 22, 0.85);
}

.car-card:hover::before {
  opacity: 1;
}

.car-image {
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition:
    transform 650ms ease-out,
    filter 650ms ease-out;
  filter: saturate(1.06) contrast(1.04);
}

.car-card:hover .car-image img {
  transform: scale(1.09);
  filter: saturate(1.16) contrast(1.08);
}

.car-info {
  padding: 1rem 1.15rem 1.2rem;
}

.car-info h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  color: #111827;
}

.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
}

.spec-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.car-price {
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--brand-primary);
  margin-bottom: 0.3rem;
}

.price-note {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =========================
   STATS
   ========================= */
.stats-wrapper {
  margin: 0 auto 3rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stat-box {
  background: #ffffff;
  border-radius: 1.3rem;
  padding: 1rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transform: translateY(8px);
  opacity: 0.4;
  transition:
    transform 360ms ease-out,
    opacity 360ms ease-out,
    box-shadow 360ms ease-out,
    border-color 200ms ease-out;
  border: 1px solid rgba(248, 181, 52, 0.4);
}

.stat-box.animate {
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  border-color: rgba(249, 115, 22, 0.9);
}

.stat-number {
  font-size: 1.45rem;
  font-weight: 750;
  margin-bottom: 0.25rem;
  color: #111827;
}

.stat-label {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* =========================
   CORPORATE SERVICES
   ========================= */
.corporate-wrapper {
  margin: 0 auto 3.1rem;
}

.corporate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.corporate-card {
  border-radius: 1.4rem;
  padding: 1.15rem 1.2rem 1.15rem;
  box-shadow: var(--shadow-card);
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(248, 181, 52, 0.7);
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-med),
    background var(--transition-med);
}

.corporate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  border-color: rgba(249, 115, 22, 0.9);
  background: #ffffff;
}

.corporate-icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.corporate-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #111827;
}

.corporate-features {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.corporate-features li {
  margin-bottom: 0.22rem;
}

/* Soft gradient variants (kept very light) */
.corporate-blue {
  background: linear-gradient(135deg, #f1f5f9, #ffffff);
}

.corporate-pink {
  background: linear-gradient(135deg, #fdf2f8, #ffffff);
}

.corporate-yellow {
  background: linear-gradient(135deg, #fffbeb, #ffffff);
}

.corporate-red {
  background: linear-gradient(135deg, #fee2e2, #ffffff);
}

.corporate-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.3rem;
}

.keyword-tag {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: var(--bg-chip);
  border: 1px solid rgba(248, 181, 52, 0.7);
  box-shadow: var(--shadow-chip);
}

/* =========================
   WHY CHOOSE US
   ========================= */
.why-choose-wrapper {
  margin: 0 auto 3rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 1.3rem;
}

.why-choose-item {
  background: var(--bg-elevated);
  border-radius: 1.3rem;
  padding: 1.15rem 1.15rem;
  box-shadow: var(--shadow-card);
  font-size: 0.9rem;
  border: 1px solid rgba(248, 181, 52, 0.7);
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-med),
    background var(--transition-med);
}

.why-choose-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  border-color: rgba(249, 115, 22, 0.9);
  background: #ffffff;
}

.why-icon {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.why-title {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
  color: #111827;
}

.why-description {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* =========================
   REVIEWS
   ========================= */
.reviews-wrapper {
  margin: 0 auto 3rem;
}

.reviews-container {
  background: #ffffff;
  border-radius: 1.7rem;
  padding: 1.7rem 1.5rem 1.9rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(254, 215, 170, 0.4);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.reviews-header-left {
  display: flex;
  flex-direction: column;
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-number {
  font-size: 2.1rem;
  font-weight: 700;
  color: #111827;
}

.rating-stars-large span {
  font-size: 1.4rem;
}

.rating-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.reviews-slider-wrapper {
  overflow: hidden;
}

.reviews-slider-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.google-review-card {
  background: #ffffff;
  border-radius: 1.15rem;
  padding: 0.9rem 0.95rem 1.05rem;
  font-size: 0.86rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(252, 211, 77, 0.9);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  overflow: hidden;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

.review-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-stars {
  font-size: 0.9rem;
}

.review-text {
  margin: 0.35rem 0 0.65rem;
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.review-trip {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =========================
   ENQUIRY
   ========================= */
.enquiry-wrapper {
  margin: 0 auto 3rem;
}

.enquiry-container {
  background: #ffffff;
  border-radius: 1.7rem;
  padding: 1.7rem 1.7rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(252, 211, 77, 0.5);
}

.enquiry-container .form-grid {
  margin-bottom: 0.95rem;
}

/* =========================
   SERVICES
   ========================= */
.services-wrapper {
  margin: 0 auto 3.1rem;
}

.services-container {
  background: var(--bg-elevated);
  border-radius: 1.7rem;
  padding: 1.55rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.services-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem 1.2rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-pill);
  background: #f9fafb;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border: 1px solid rgba(209, 213, 219, 0.9);
  transition:
    background var(--transition-med),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.service-item:hover {
  background: linear-gradient(120deg, #f97316, #fbbf24);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.16);
  transform: translateY(-2px);
  border-color: rgba(234, 179, 8, 0.9);
}

.service-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-primary);
}

/* =========================
   FOOTER
   ========================= */
.footer-wrapper {
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  margin-top: 3rem;
  border-radius: 1.7rem 1.7rem 0 0;
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.9rem 1.5rem 1.25rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr;
  gap: 1.4rem;
  margin-bottom: 1.25rem;
}

.footer-section h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  color: #111827;
}

.footer-section p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.footer-links li {
  margin-bottom: 0.28rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #f97316, #fbbf24);
  transition: width 160ms ease-out;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(209, 213, 219, 0.8);
  padding-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* =========================
   FLOATING BUTTONS
   ========================= */
.floating-call,
.floating-whatsapp {
  position: fixed;
  right: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
  z-index: 50;
  border: none;
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    filter 160ms ease-out;
}

.floating-call {
  bottom: 5.1rem;
  background: #ffffff;
}

.floating-whatsapp {
  bottom: 1.7rem;
  background: linear-gradient(145deg, #22c55e, #15803d);
}

.floating-call:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.4);
  filter: brightness(1.05);
}

/* =========================
   TOAST
   ========================= */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  background: #111827;
  color: #f9fafb;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.4);
  z-index: 60;
}

/* =========================
   CAR POPUP
   ========================= */
.car-popup {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
}

.car-popup-box {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.5rem 1.7rem;
  width: 90%;
  max-width: 360px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
  position: relative;
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.car-popup-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #111827;
}

.car-popup-box input {
  width: 100%;
  margin: 0.35rem 0;
  padding: 0.7rem 0.85rem;
  border-radius: 0.9rem;
  font-size: 0.9rem;
  background: #f9fafb;
  color: var(--text-primary);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.car-popup-box button {
  margin-top: 0.75rem;
  width: 100%;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(130deg, #f97316, #fbbf24);
  color: #fff;
  padding: 0.8rem 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.4);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter 160ms ease-out;
}

.car-popup-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(249, 115, 22, 0.45);
  filter: brightness(1.04);
}

.close-btn {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =========================
   HAMBURGER / MOBILE NAV
   ========================= */

/* desktop header defaults */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange-main);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
  .hero-card {
    padding: 1.6rem 1.5rem 3rem;
  }

  .hero-body {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-visual {
    order: -1;
    height: 220px;
  }

  .hero-visual-bg {
    inset: 10px 8px 10px 30px;
  }

  .packages-grid,
  .fleet-grid,
  .corporate-grid,
  .why-choose-grid,
  .stats-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-slider-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* MOBILE NAV + LAYOUT <= 768px */
@media (max-width: 768px) {
  .hero-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .brand-wrap {
    gap: 8px;
  }

  /* show hamburger on mobile */
  .hamburger {
    display: flex;
  }

  /* hide nav on mobile until toggle */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 12px;
    top: 70px;
    width: 180px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    padding: 12px;
    z-index: 999;
  }

  .nav-menu a {
    padding: 8px 4px;
  }

  .nav-menu.show {
    display: flex;
  }

  .booking-strip {
    grid-template-columns: 1fr;
    bottom: -210px;
  }

  .booking-item {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .booking-item:last-of-type {
    border-bottom: none;
  }

  .booking-search {
    padding: 0.9rem 1.2rem;
  }

  .page-wrapper {
    padding-bottom: 220px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid,
  .destinations-grid,
  .fleet-grid,
  .corporate-grid,
  .why-choose-grid,
  .stats-container {
    grid-template-columns: 1fr 1fr;
  }

  .howit-steps {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-slider-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-wrapper {
    padding-inline: 1rem;
  }

  .hero-card {
    padding: 1.3rem 1rem 3.8rem;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .packages-grid,
  .destinations-grid,
  .fleet-grid,
  .corporate-grid,
  .why-choose-grid,
  .stats-container,
  .howit-steps,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .reviews-slider-track {
    grid-template-columns: 1fr;
  }

  .floating-call,
  .floating-whatsapp {
    right: 0.8rem;
  }

  .booking-container,
  .enquiry-container,
  .services-container,
  .reviews-container {
    border-radius: 1.3rem;
  }
}
