:root {
  /* Colors */
 
  /* PRIMARY – Premium Gold (Logo D & DHANVITHA text) */
  --color-primary: #f2b705;
  --color-primary-dark: #d9a204;

  /* SECONDARY – Deep Navy (Logo background) */
  --color-secondary: #0b132b;

  /* TEXT COLORS */
  --color-text: #0b132b;
  --color-text-light: #5b6b8a;

  /* BACKGROUNDS */
  --color-background: #f6f8fc;
  --color-background-light: #ffffff;
  --color-white: #ffffff;

  /* BORDERS */
  --color-border: #e2e8f0;

  /* ACCENT – Cyan Blue (HOLIDAY’S text) */
  --color-accent: #39c6f4;
  --color-accent-bg: #e6f7fd;

  --site-header-height: 124px;
  /* Typography */
  --font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  --font-weight-bolder: 700;
  --font-weight-extra-bold: 800;
   --radius: 8px;
            --radius-lg: 12px;
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
  --header-top-height: 88px;

}

/* ================= BASE STYLES ================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  background: var(--color-background);
  color: var(--color-text);
  overflow-x: hidden;
}

/* ================= HEADER ================= */

/* =====================================================
   HEADER — FINAL FIXED STACKING
   ===================================================== */

/* ================= CONTAINER ================= */

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}


/* ================= HERO section ================= */
/* =====================================================
   HEADER — FINAL FIXED STACKING
   ===================================================== */

/* ================= CONTAINER ================= */

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}


/* ================= HERO section ================= */
/* ===============================
   HERO SECTION – FINAL FIXED
================================ */

.hero {
  width: 100%;
  min-height: calc(100vh - var(--site-header-height));
  min-height: calc(100svh - var(--site-header-height));
  display: flex;
  align-items: center;
  padding: 72px 24px 96px;
  position: relative;
  overflow: hidden;
}

/* ================= BACKGROUND SLIDER ================= */

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
}

/* ================= OVERLAY ================= */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

/* ================= CONTENT ================= */

.hero-container {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  width: 100%;

  margin: 0 auto;

  /* 🔑 FORCE LEFT ALIGNMENT */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* ================= TEXT ================= */

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-family);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 18px;

  max-width: 760px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;

  max-width: 600px;
}

/* ================= SEARCH ================= */

.hero .booking-search {
  margin-top: 24px;

  /* 🔑 ALIGN SEARCH WITH TEXT LEFT EDGE */
  width: 100%;
  max-width: 1100px;

  margin-left: 0;
  margin-right: auto;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .hero {
    padding: 56px 16px 72px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}
/* Primary button */
/* ================= BUTTON SYSTEM (2025) ================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;

  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

/* ---------- PRIMARY ---------- */
.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ---------- SECONDARY ---------- */
.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ---------- SIZES ---------- */
.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

/* ---------- DISABLED ---------- */
.btn[disabled],
.btn--disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* /////////////////////////////search////////////////////// */
/* =====================================================
   BOOKING SEARCH — CLEAN UX + RESPONSIVE (FINAL)
   ===================================================== */

.booking-search {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  max-width: 1100px;
  margin: 32px auto;
  box-shadow: 0 16px 40px rgba(15,23,42,.15);
}

/* =====================================================
   USER DETAILS
   ===================================================== */

.user-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

/* =====================================================
   TRIP TYPE
   ===================================================== */

.trip-type {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
}

.radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
}

.radio input {
  display: none;
}

.radio span {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  position: relative;
}

.radio input:checked + span::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* =====================================================
   MAIN SEARCH GRID
   ===================================================== */

.search-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1.2fr;
  gap: 16px;
  align-items: end;
}

/* =====================================================
   INPUTS
   ===================================================== */

.search-box,
.search-date {
  position: relative;
}

.search-box label,
.search-date label {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
  display: block;
}

.search-box input,
.search-date input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #e5e7eb;
  padding: 10px 6px;
  font-size: 15px;
  outline: none;
  background: transparent;
}

.search-box input:focus,
.search-date input:focus {
  border-color: var(--color-primary);
}

/* =====================================================
   SWAP BUTTON
   ===================================================== */

.swap-btn {
  align-self: flex-end;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s ease;
}

.swap-btn:hover {
  background: #e2e8f0;
}

/* =====================================================
   DATE GROUP
   ===================================================== */

.date-group {
  display: flex;
  gap: 12px;
}

.hidden {
  display: none;
}

/* =====================================================
   DATE PICKER
   ===================================================== */

.datepicker {
  position: fixed;
  width: min(360px, calc(100vw - 32px));
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  padding: 16px;
  display: none;
  z-index: 9999;
}

.datepicker.active {
  display: block;
}

/* Header */
.dp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.dp-header button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Week */
.dp-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 12px;
  color: #64748b;
  margin-bottom: 6px;
}

/* Grid */
.dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.dp-day {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
}

.dp-day:hover {
  background: #f1f5f9;
}

.dp-day.start {
  background: var(--color-primary);
  color: #fff;
}

.dp-day.end {
  background: #0ea5e9;
  color: #fff;
}

.dp-day.disabled {
  color: #cbd5e1;
  pointer-events: none;
}

/* =====================================================
   AUTOCOMPLETE
   ===================================================== */

.city-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(15,23,42,.12);
  z-index: 1000;
  display: none;
  max-height: 220px;
  overflow-y: auto;
}

.city-item {
  padding: 12px 16px;
  font-size: 14px;
  cursor: pointer;
}

.city-item:hover {
  background: #f8fafc;
}

/* =====================================================
   FOOTER
   ===================================================== */

.search-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Seat type */
.seat-type {
  display: flex;
  align-items: center;
  gap: 14px;
}

.seat-tabs {
  display: inline-flex;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 999px;
}

.seat-tab {
  border: none;
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.seat-tab.active {
  background: var(--color-primary);
  color: #fff;
}

/* Search button area */
.check-button {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1024px) {
  .search-main {
    grid-template-columns: 1fr auto 1fr;
  }

  .search-date {
    grid-column: 1 / -1;
  }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 768px) {

  .booking-search {
    padding: 20px;
  }

  .user-details {
    grid-template-columns: 1fr;
  }

  .trip-type {
    flex-direction: column;
    gap: 12px;
  }

  .search-main {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .swap-btn {
    display: none;
  }

  .date-group {
    flex-direction: column;
    gap: 12px;
  }

  .search-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .seat-type {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .check-button {
    flex-direction: column;
    align-items: stretch;
  }

  .search-submit {
    width: 100%;
  }
}

/* popular routes */
/* ================= POPULAR ROUTES ================= */

/* ================= POPULAR ROUTES ================= */

.popular-routes {
  padding: 60px 20px;
  background: #f8f9fa;
  overflow: hidden;
}

.popular-container {
  max-width: 1400px;
  margin: 0 auto;
}

.popular-header {
  text-align: center;
  margin-bottom: 24px;
}

.popular-header h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.popular-header p {
  color: #666;
}

/* NAV */
.routes-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 16px;
}

.routes-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #0b2c5f;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
}

/* SWIPER */
.popularRoutesSwiper {
  padding: 10px 0 30px;
}

.swiper-slide {
  width: auto;
  flex-shrink: 0;
}

/* CARD */
.route-card {
  width: 320px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.route-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.route-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.85));
}

.route-nights {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,.85);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.route-content {
  position: absolute;
  bottom: 0;
  padding: 24px;
  color: #fff;
}

.route-content h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.trip-details {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.route-btn {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 10px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
}

/* LOAD MORE */
.load-more-card {
  border: 2px dashed #0b2c5f;
  background: transparent;
  color: #0b2c5f;
  font-weight: 700;
  cursor: pointer;
}


/* ===============================
   WHY CHOOSE US – PREMIUM TRAVEL
================================ */
/* ===============================
   WHY CHOOSE US – MOBILE FIXED
================================ */

.why-choose {
  padding-top: 10px;

  background: var(--color-white);
  font-family: var(--font-family);
}

.why-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 520px 1fr;
  gap: 64px;
  align-items: center;
}

/* ================= TITLES ================= */

.why-title {
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-secondary);
  margin-bottom: 36px;
}

.why-title span {
  color: var(--color-primary);
}

/* ================= FEATURES ================= */

.why-feature {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.why-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
  max-width: 320px;
}

/* ================= ICON ================= */

.why-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--color-accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
}

/* ================= CENTER ================= */

.why-center {
  position: relative;
  display: flex;
  justify-content: center;
}

.why-curve {
  position: absolute;
  top: -32px;
  width: 100%;
  height: 160px;
  border-top: 1.5px dashed var(--color-border);
  border-radius: 50%;
}

.why-visual {
  width: 400px;
  height: 500px;
  background: linear-gradient(
    180deg,
    var(--color-accent),
    var(--color-white)
  );
  border-radius: 220px 220px 48px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.why-visual img {
  width: 110%;
  height: auto;
  object-fit: contain;
  transform: translateY(6px);
}

/* ================= RIGHT ================= */

.why-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 32px;
  max-width: 360px;
}

/* =====================================================
   MOBILE & TABLET FIX (THIS IS THE MAGIC)
===================================================== */

@media (max-width: 1024px) {
  .why-choose {
    padding: 56px 16px;
  }

  .why-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .why-center {
    order: -1;
    margin-bottom: 12px;
  }

  .why-curve {
    display: none;
  }

  .why-visual {
    width: 280px;
    height: 360px;
    border-radius: 160px 160px 32px 32px;
  }

  .why-visual img {
    width: 115%;
    transform: translateY(4px);
  }

  .why-left,
  .why-right {
    align-items: center;
  }

  .why-title {
    margin-bottom: 24px;
  }

  .why-feature {
    justify-content: center;
    text-align: left;
    margin-bottom: 20px;
  }

  .why-feature p {
    max-width: 100%;
  }

  .why-desc {
    max-width: 100%;
    margin-bottom: 28px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
  .why-choose {
    padding: 48px 14px;
  }

  .why-title {
    font-size: 2rem;
  }

  .why-visual {
    width: 240px;
    height: 320px;
  }

  .why-feature {
    gap: 12px;
  }

  .why-icon {
    width: 36px;
    height: 36px;
  }

  .why-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* ================= TESTIMONIALS ================= */

.testimonials {
  padding: 40px 0 50px;
  background: var(--color-background-light);
  font-family: var(--font-family);
  overflow: hidden; /* ✅ HARD STOP SCROLL */
}

/* HEADER */
.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 1.2px;
  color: var(--color-text-light);
}

.testimonials-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: var(--font-weight-extra-bold);
}

/* ================= SWIPER WRAP ================= */

.testimonial-swiper-wrap {
  position: relative;
  overflow: hidden; /* ✅ FIXED */
  width: 100%;
}

/* ================= SWIPER ================= */

.testimonialSwiper {
  width: 100%;
  overflow: hidden; /* ✅ FIXED */
  padding: 32px 0 48px;
}

.testimonialSwiper .swiper-wrapper {
  align-items: stretch;
}

.testimonialSwiper .swiper-slide {
  height: auto;
}

/* ================= CARD ================= */

.testimonial-card {
  height: 100%;
  background: var(--color-white);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transition: border-color 0.3s ease;
  box-sizing: border-box; /* ✅ SAFETY */
}

.swiper-slide-active .testimonial-card {
  border-color: var(--color-primary);
}

/* ================= RATING ================= */

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.rating .stars {
  font-size: 16px;
  color: #f59e0b;
  letter-spacing: 2px;
  line-height: 1;
}

.rating .rating-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

/* ================= TEXT ================= */

.testimonial-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-light);
  margin-bottom: 22px;
}

/* ================= USER ================= */

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

/* AVATAR */
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar svg {
  width: 22px;
  height: 22px;
  fill: #475569;
}

.avatar.female {
  background: #fde7f3;
}

.avatar.female svg {
  fill: #be185d;
}

.avatar.male {
  background: #e0f2fe;
}

.avatar.male svg {
  fill: #0369a1;
}

/* ================= PAGINATION ================= */

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 4px;
  border-radius: 6px;
  background: var(--color-border);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .testimonialSwiper {
    padding-bottom: 36px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 22px;
  }
}

/* ====================================================
   FLEET / VEHICLES (IMAGE-FREE, ZERO-LAG)
   ==================================================== */
/* ====================================================
   FLEET UI – MODERN RENTAL STYLE (NO TOP PADDING)
   ==================================================== */
/* ====================================================
   FLEET SECTION (WITH TITLE STRIP)
   ==================================================== */
.fleet-section {
  background: var(--color-background-light);
  font-family: var(--font-family);
}

.fleet-container {
  margin: 0 auto;
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

/* ---------- TITLE STRIP ---------- */

.fleet-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: var(--spacing-lg);
}

.fleet-title h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: var(--font-weight-extra-bold);
  color: var(--color-text);
  white-space: nowrap;
}

.fleet-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-primary),
    transparent
  );
}

/* ---------- GRID ---------- */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

/* ---------- CARD ---------- */

.fleet-card {
  background: var(--color-white);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* ---------- IMAGE VISUAL ---------- */

.fleet-visual {
  height: 180px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* subtle overlay for readability */
.fleet-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.45)
  );
}

.fleet-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: var(--font-weight-medium);
  z-index: 2;
}

/* ---------- BODY ---------- */

.fleet-body {
  padding: var(--spacing-md);
}

.fleet-body h3 {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin-bottom: 12px;
}

/* ---------- SPECS ---------- */

.fleet-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fleet-specs span {
  font-size: 14px;
  color: var(--color-text-light);
  padding-left: 16px;
  position: relative;
}

.fleet-specs span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

/* ---------- FOOTER ---------- */

.fleet-footer {
  padding: 12px var(--spacing-md);
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-secondary);
  font-weight: var(--font-weight-medium);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-line {
    width: 40px;
  }
}

/* 
///////////////////////////////////////page-bus-results//////////// */
/* ============================================
   BUS RESULTS PAGE - GLOBAL STYLES
   ============================================ */
   
/* ============================================
   packages page 
   ============================================ */
/* ================= THEME ================= */
:root {

  /* PRIMARY – Premium Gold (DHANVITHA + icon outline) */
  --primary: #f2b705;
  --primary-light: #fff6db;
  --primary-dark: #d9a204;

  /* SECONDARY – Deep Navy (Logo background) */
  --secondary: #0b132b;

  /* ACCENT – Cyan Blue (HOLIDAY’S text) */
  --accent: #39c6f4;

  /* TEXT */
  --text-dark: #0b132b;
  --text-medium: #4a5d7c;
  --text-light: #6b7fa3;

  /* BACKGROUNDS */
  --bg-white: #ffffff;
  --bg-light: #f6f8fc;

  /* BORDER */
  --border: #e2e8f0;

  --radius-2xl: 24px;
  --radius-xl: 20px;
  --radius-lg: 16px;
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  --font-weight-bolder: 700;
  --font-weight-extra-bold: 800;
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

body {
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { 
  text-decoration: none; 
  color: inherit; 
}

/* ================= PAGE ================= */
.packages-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* ================= HEADER ================= */
.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  gap: 8px;
}

.badge::before {
  content: "✨";
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 16px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--text-medium);
  font-weight: 400;
}

/* ================= SECTION ================= */
.package-section { 
  margin-bottom: 80px; 
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 700;
}

.section-header p {
  font-size: 17px;
  color: var(--text-medium);
  max-width: 560px;
  margin-left: 56px;
}

/* ================= GRID ================= */
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 1200px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CARD ================= */
.package-card {
  background: var(--bg-white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.package-thumb {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.package-thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--bg-white), transparent);
  z-index: 1;
}

.package-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-thumb img {
  transform: scale(1.05);
}

/* Destination Color Themes */
.karnataka { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.tirupati { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.ooty { background: linear-gradient(135deg, #10b981, #34d399); }

/* Card Body */
.package-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.package-header {
  margin-bottom: 12px;
}

.package-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.package-subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-subtitle::before {
  content: "";
  width: 10px;
  height: 2px;
  background: var(--primary);
  display: block;
}

.package-description {
  color: var(--text-medium);
  margin-bottom: 16px;
  flex-grow: 1;
  line-height: 1.5;
  font-size: 15px;
  overflow: hidden;
  max-height: 72px;
}

/* Features */
.package-features {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 16px;
}

.feature-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Footer */
.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.package-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 2px;
}

.price-amount2 {
  
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.btn2 {
  padding: 10px 22px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.btn2:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 19, 0.2);
}

.btn2::after {
  content: "→";
  transition: transform 0.3s ease;
}

.btn2:hover::after {
  transform: translateX(4px);
}

/* line and heading */
.fleet-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}

.fleet-title h2 {
  font-size: 26px;
  font-weight: var(--font-weight-extra-bold);
  color: var(--color-text);
  white-space: nowrap;
}

.fleet-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-primary),
    transparent
  );
}

/* ================= CATEGORY FILTER ================= */
.category-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-medium);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .page-header h1 {
    font-size: 36px;
  }
  
  .section-header h2 {
    font-size: 26px;
  }
  
  .section-header p {
    margin-left: 0;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .packages-page {
    padding: 32px 16px;
  }
  
  .page-header {
    margin-bottom: 48px;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  .page-header p {
    font-size: 16px;
  }
  
  .section-header h2 {
    font-size: 24px;
  }
  
  .section-title {
    gap: 12px;
  }
  
  .section-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .package-thumb {
    height: 140px;
  }
  
  .package-body {
    padding: 16px;
  }
  
  .package-header h3 {
    font-size: 18px;
  }
  
  .package-description {
    font-size: 14px;
    max-height: 63px;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 28px;
  }
  
  .badge {
    font-size: 13px;
    padding: 6px 16px;
  }
  
  .section-header h2 {
    font-size: 22px;
  }
  
  .section-header p {
    font-size: 15px;
  }
  
  .package-thumb {
    height: 120px;
  }
  
  .package-features {
    gap: 8px;
  }
  
  .feature-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  
  .feature-label {
    font-size: 10px;
  }
  
  .feature-value {
    font-size: 12px;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .price-amount2 {
    font-size: 18px;
  }
  
  .filter-btn {
    padding: 6px 14px;
    font-size: 13px;
  }
}
/* 
///////////////////////////////////////rentals css//////////////// */
/* ============================================
   RENTALS PAGE STYLES - ORGANIZED BY SECTION
   ============================================ */

/* ====================
   SECTION 1: THEME VARIABLES
   ==================== */
/* Variables already defined in packages section - DO NOT REDEFINE */

/* ====================
   SECTION 2: BASE STYLES
   ==================== */
.rentals-page * { 
  box-sizing: border-box; 
}

.rentals-page {
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
}

.rentals-page a { 
  text-decoration: none; 
  color: inherit; 
}

.rentals-page img { 
  max-width: 100%; 
  height: auto; 
}

.rentals-page .container {
  margin: 0 auto;
  padding: 0 20px;
}

/* ====================
   SECTION 3: HEADER & TITLE
   ==================== */
.fleet-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
  margin-top: 30px;
}

.fleet-title h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
}

.fleet-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
}

/* ====================
   SECTION 4: FILTER TABS
   ==================== */
.filter-section {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  margin-bottom: 32px;
}

.tabs-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.tabs-container::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  padding: 10px 20px;
  border: none;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-tab:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.filter-tab.active {
  background: var(--primary);
  color: white;
}

.tab-icon {
  font-size: 16px;
}

/* ====================
   SECTION 5: VEHICLE GRID LAYOUT
   ==================== */
.vehicles-section {
  padding: 40px 0 60px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vehicle-category {
  display: none;
}

.vehicle-category.active {
  display: block;
}

@media (max-width: 1200px) {
  .vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================
   SECTION 6: VEHICLE CARD COMPONENTS
   ==================== */
.vehicle-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
  position: relative;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.vehicle-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: white;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

/* Vehicle Image */
.vehicle-image {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.05);
}

.vehicle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.vehicle-type {
  color: white;
  font-size: 13px;
  opacity: 0.9;
}

/* Vehicle Body */
.vehicle-body {
  padding: 20px;
}

.vehicle-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.vehicle-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.vehicle-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-light);
  padding: 4px 10px;
  border-radius: 20px;
}

.rating-stars {
  color: #fbbf24;
  font-size: 14px;
}

.rating-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Features Grid */
.vehicle-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
}

.feature-content h4 {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Vehicle Footer */
.vehicle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vehicle-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.price-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
}

.price-unit {
  font-size: 14px;
  color: var(--text-light);
}

.price-note {
  font-size: 12px;
  color: var(--text-light);
}

/* Book Button */
.book-btn {
  width: 130px;
  padding: 10px 0;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.book-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ====================
   SECTION 7: MODAL STYLES
   ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-container {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.close-modal {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.modal-body {
  padding: 22px;
}

/* Vehicle Info in Modal */
.vehicle-info {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.vehicle-thumb {
  width: 80px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
}

.vehicle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-details h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.vehicle-details p {
  font-size: 14px;
  color: var(--text-medium);
}

/* Booking Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-label span {
  color: #ef4444;
}

.form-input {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 15px;
  transition: all 0.3s ease;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Phone Input */
.phone-wrapper {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.phone-prefix {
  padding: 12px 12px;
  background: var(--bg-light);
  color: var(--text-medium);
  font-weight: 500;
  border-right: 2px solid var(--border);
}

.phone-wrapper .form-input {
  border: none;
  flex: 1;
  border-radius: 0;
}

.form-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

/* Submit Button */
.btn-submit {
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Success Message */
.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 16px;
  border-radius: var(--radius-lg);
  text-align: center;
  display: none;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================
   SECTION 8: BENEFITS SECTION
   ==================== */
.benefits-section {
  background: var(--bg-light);
  padding: 60px 0;
  margin-top: 40px;
}

.benefits-header {
  text-align: center;
  margin-bottom: 40px;
}

.benefits-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.benefits-header p {
  font-size: 16px;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.5;
}

/* ====================
   SECTION 9: RESPONSIVE STYLES
   ==================== */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vehicle-image {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .vehicles-section {
    padding: 32px 0 48px;
  }
  
  .benefits-section {
    padding: 48px 0;
  }
  
  .vehicle-header {
    flex-direction: column;
    gap: 10px;
  }
  
  .vehicle-rating {
    align-self: flex-start;
  }
  
  .modal-container {
    max-height: 80vh;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    padding: 20px;
  }
  
  .benefits-header h2 {
    font-size: 24px;
  }
  
  .fleet-title {
    margin-top: 24px;
    margin-bottom: 32px;
  }
}

@media (max-width: 640px) {
  .vehicle-grid {
    gap: 20px;
  }
  
  .filter-tab {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .tabs-container {
    gap: 6px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .vehicle-features {
    grid-template-columns: 1fr;
  }
  
  .vehicle-footer {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  
  .book-btn {
    justify-content: center;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .fleet-title {
    gap: 12px;
  }
  
  .fleet-line {
    width: 50px;
  }
  
  .vehicle-image {
    height: 140px;
  }
  
  .benefits-header h2 {
    font-size: 22px;
  }
}

/* ///////////////////////////////////package detailes page////////////////////////// */
/* ///////////////////////////////////package detailes page////////////////////////// */

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}



a { 
  text-decoration: none; 
  color: inherit; 
}

img { 
  max-width: 100%; 
  height: auto; 
  display: block;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
  padding: var(--spacing-sm) 0;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  font-size: 14px;
  color: var(--color-text-light);
}

.breadcrumb a {
  color: var(--color-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb a:hover {
  color: var(--color-primary-dark);
}

.breadcrumb svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ================= HERO SLIDER ================= */
.hero-slider {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  background: #000;
}

.slider-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.slider-slide.active {
  opacity: 1;
  z-index: 2;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 10s ease;
}

.slider-slide.active .slider-image {
  transform: scale(1.05);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.slider-prev,
.slider-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.slider-prev:hover,
.slider-next:hover {
  background: white;
  transform: translateY(-2px);
}

.slider-prev svg,
.slider-next svg {
  width: 24px;
  height: 24px;
  color: var(--color-text);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot.active {
  background: white;
  transform: scale(1.2);
}

/* Overlay Content */
.slider-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 0 140px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  color: white;
  z-index: 3;
}

.slider-overlay .container {
  max-width: 800px;
}

.package-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.package-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-weight-extra-bold);
  line-height: 1.2;
  margin-bottom: 16px;
  color: white;
}

.package-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 700px;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  opacity: 0.9;
}

.meta-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.9;
  flex-shrink: 0;
}

/* ================= GALLERY MODAL ================= */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  flex-direction: column;
}

.gallery-modal.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gallery-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-header h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
}

.close-gallery {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-gallery:hover {
  background: rgba(255, 255, 255, 0.2);
}

.close-gallery svg {
  width: 24px;
  height: 24px;
}

.gallery-grid {
  flex: 1;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  overflow-y: auto;
  align-content: start;
}

.gallery-grid::-webkit-scrollbar {
  width: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #333;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(242, 183, 5, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ================= QUICK STATS ================= */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: -60px auto 40px;
  position: relative;
  z-index: 10;
  max-width: 1200px;
}

.stat-card {
  background: var(--color-background-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(242, 183, 5, 0.1);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  border-color: rgba(242, 183, 5, 0.2);
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(242, 183, 5, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.stat-content h4 {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 6px;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-content p {
  font-size: 18px;
  font-weight: var(--font-weight-bolder);
  color: var(--color-text);
  line-height: 1.3;
}

/* ================= CONTENT LAYOUT ================= */
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding: 40px 0 80px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ================= MAIN CONTENT ================= */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Sections */
.section {
  background: var(--color-background-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--color-border);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(242, 183, 5, 0.1);
}

.section-icon {
  width: 48px;
  height: 48px;
  background: rgba(242, 183, 5, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.section-title {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bolder);
  color: var(--color-text);
}

/* Package Description */
.package-description-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.package-description-content p {
  margin-bottom: 1.5rem;
}

.package-description-content p:last-child {
  margin-bottom: 0;
}

/* Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-background);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.highlight-item:hover {
  background: rgba(242, 183, 5, 0.1);
  transform: translateY(-2px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--color-background-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.highlight-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.highlight-text h4 {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 6px;
  color: var(--color-text);
}

.highlight-text p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* Inclusions & Exclusions */
.inclusion-category {
  margin-bottom: 32px;
}

.inclusion-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.inclusion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  padding: 8px 0;
}

.inclusion-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.inclusion-item.included {
  color: var(--color-text);
}

.inclusion-item.included .inclusion-icon {
  color: var(--color-accent);
}

.inclusion-item.excluded {
  color: var(--color-text-light);
}

.inclusion-item.excluded .inclusion-icon {
  color: #c2410c; /* Fallback color since not in original palette */
}

/* ================= SIDEBAR ================= */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  height: fit-content;
}

@media (max-width: 1024px) {
  .sidebar {
    position: static;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Price Box */
.price-box {
  background: var(--color-background-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--color-border);
}

.price-header {
  margin-bottom: 24px;
  text-align: center;
}

.price-header h3 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin-bottom: 12px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: var(--font-weight-extra-bold);
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount span {
  display: block;
  font-size: 0.875rem;
  font-weight: var(--font-weight-normal);
  color: var(--color-text-light);
  margin-top: 4px;
}

.price-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.rating-stars {
  font-size: 1.25rem;
  color: #ffc107;
  letter-spacing: 2px;
}

.review-count {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: var(--font-weight-medium);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-light);
}

.feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-bold);
  font-size: 15px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  width: 100%;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 183, 5, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  margin-top: 12px;
}

.btn-secondary:hover {
  background: rgba(242, 183, 5, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 183, 5, 0.2);
}

/* Callback Card */
.callback-card {
  background: var(--color-background-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--color-border);
}

.callback-header {
  text-align: center;
  margin-bottom: 24px;
}

.callback-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 16px;
}

.callback-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bolder);
  margin-bottom: 8px;
  color: var(--color-text);
}

.callback-subtitle {
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.5;
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-label::after {
  content: '*';
  color: #c2410c; /* Fallback color */
  font-size: 12px;
}

.form-input {
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.1);
}

.phone-wrapper {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.phone-prefix {
  padding: 14px 12px;
  background: var(--color-background);
  color: var(--color-text-light);
  font-weight: var(--font-weight-medium);
  border-right: 2px solid var(--color-border);
  font-size: 15px;
  white-space: nowrap;
}

.phone-wrapper .form-input {
  border: none;
  flex: 1;
  border-radius: 0;
}

.form-note {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 4px;
  line-height: 1.4;
}

.btn-submit {
  padding: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.btn-submit:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 183, 5, 0.3);
}

.btn-submit svg {
  width: 20px;
  height: 20px;
}

.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 16px;
  border-radius: var(--radius-lg);
  text-align: center;
  animation: slideIn 0.3s ease;
  display: none;
}

.form-success.show {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
    min-height: 400px;
  }
  
  .slider-nav {
    bottom: 20px;
    gap: 16px;
  }
  
  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
  }
  
  .slider-prev svg,
  .slider-next svg {
    width: 20px;
    height: 20px;
  }
  
  /* ===== FIX: PACKAGE HEADING NOT VISIBLE ON MOBILE ===== */
  .slider-overlay {
    top: 0;                 /* move overlay to top */
    bottom: auto;           /* remove bottom lock */
    padding-top: 50px;     /* space below sticky header */
    padding-bottom: 80px;
  }
  
  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -40px;
    gap: 16px;
  }
  
  .stat-card {
    padding: 20px;
    gap: 16px;
  }
  
  .stat-icon {
    width: 48px;
    height: 48px;
  }
  
  .stat-content p {
    font-size: 16px;
  }
  
  .content-wrapper {
    padding: 20px 0 40px;
    gap: 24px;
  }
  
  .section {
    padding: 24px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .price-box,
  .callback-card {
    padding: 24px;
  }
  
  .price-amount {
    font-size: 2rem;
  }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {
  .slider-overlay {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}


@media (max-width: 480px) {
  .hero-slider {
    height: 50vh;
    min-height: 300px;
  }
  
  .package-title {
    font-size: 1.75rem;
  }
  
  .package-subtitle {
    font-size: 1rem;
  }
  
  .package-meta {
    gap: 16px;
  }
  
  .meta-item {
    font-size: 14px;
  }
  
  .quick-stats {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }
  
  .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .stat-content h4 {
    font-size: 13px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 10px;
  }
  
  .breadcrumb-inner {
    font-size: 13px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ================= UTILITY CLASSES ================= */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.text-center {
  text-align: center;
}

.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

/* Print styles */
@media print {
  .hero-slider,
  .slider-nav,
  .gallery-modal,
  .callback-card,
  .btn {
    display: none !important;
  }
  
  .container,
  .content-wrapper {
    max-width: none;
    padding: 0;
  }
  
  .content-wrapper {
    display: block;
  }
  
  .sidebar {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
}

/* ////////////////////////////////footer////////////////// */
/* ================= FOOTER ================= */
.site-footer {
  background: var(--color-secondary);
  color: var(--color-white);
  font-family: var(--font-family);
}

/* TOP */
.footer-top {
  padding: var(--spacing-xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--spacing-lg);
}

.footer-logo {
  font-size: 22px;
  font-weight: var(--font-weight-extra-bold);
}

.footer-logo .logo-accent {
  color: var(--color-primary);
}

.footer-logo .logo-main {
  color: var(--color-accent);
  margin-left: 6px;
}

.footer-desc {
  margin-top: 12px;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--color-white);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #cbd5e1;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--color-primary);
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  text-align: center;
  font-size: 14px;
  color: #cbd5e1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-desc {
    margin: 0 auto;
  }

  .footer-socials {
    justify-content: center;
  }
}
/* ////////////////////about us//////////////////// */
/* ================= ABOUT PAGE ================= */
.about-hero {
  background: linear-gradient(
    180deg,
    var(--color-secondary),
    #050a1d
  );
  color: var(--color-white);
  padding: 60px 0 90px;
  text-align: center;
}

.about-eyebrow {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  letter-spacing: 1px;
}

.about-hero h1 {
  font-size: 42px;
  margin: 16px 0;
}

.about-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: #cbd5e1;
}

/* SECTION */
.about-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-background-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-xl);
}

/* TEXT */
.about-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* CARDS */
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.about-card {
  background: var(--color-white);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.about-card svg {
  width: 32px;
  height: 32px;
  fill: var(--color-primary);
  margin-bottom: 12px;
}

/* STATS */
.about-stats {
  background: var(--color-background);
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat h3 {
  font-size: 36px;
  color: var(--color-primary);
}

/* WHY */
.center {
  text-align: center;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: var(--font-weight-medium);
}

.why-item svg {
  width: 22px;
  height: 22px;
  fill: var(--color-accent);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid,
  .why-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .about-grid,
  .why-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 32px;
  }
}

/* ---------- MOBILE ----------///////////////////////////////////////////////////////// */

@media (max-width: 600px) {
  .why-choose-us {
    padding: var(--spacing-lg) var(--spacing-sm);
  }
}


