/* ============================================================
   GOA SELF DRIVE CAR — style.css
   Main stylesheet for all pages
   ============================================================ */

/* [01] CSS VARIABLES (Design Tokens)
   ============================================================ */
:root {
  --primary:     #0d3b36;
  --primary-2:   #0d6b5e;
  --accent:      #ff6b3d;
  --sun:         #f7b733;
  --sand:        #fffaf0;
  --shell:       #f9f5eb;
  --ink:         #17302c;
  --muted:       #61736f;
  --border:      rgba(23,48,44,.13);
  --shadow:      0 24px 60px rgba(13,59,54,.14);
  --radius:      24px;
  --radius-sm:   14px;
}

/* [02] RESET & BASE STYLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: var(--shell);
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: 130px; /* offset for fixed header (topbar ~50px + navbar ~80px); JS overrides dynamically */
  transition: padding-top 0.3s ease;
}
body.nav-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea, button { max-width: 100%; }

/* [03] LAYOUT WRAPPER
   ============================================================ */
.wrap {
  width: min(1480px, calc(100% - 5px));
  margin: 0 auto;
}

/* [04] BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary  { background: var(--accent);   color: #fff; box-shadow: 0 12px 28px rgba(255,107,61,.28); }
.btn-dark     { background: var(--primary);  color: #fff; box-shadow: 0 12px 28px rgba(13,59,54,.22); }
.btn-outline  { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 12px 28px rgba(37,211,102,.28); }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* [05] TOP BAR
   ============================================================ */
.topbar {
  display: block;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-bottom: none;
  transition: max-height .3s ease, padding .3s ease, opacity .3s ease;
  max-height: 50px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar-info { display: flex; gap: 18px;  flex-wrap: nowrap;  align-items: center;}
.topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.9);
  transition: color .2s;
  white-space: nowrap;     
  font-size: 13px;
}
.topbar-info a:hover { color: var(--sun); }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  transition: background .2s, transform .2s;
}
.topbar-social a:hover,
.footer-social a:hover { background: rgba(255,255,255,.28); transform: translateY(-1px); }

/* [06] HEADER (Fixed)
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s;
}
/* Hide topbar on scroll */
header.scrolled .topbar {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
}
/* [07] NAVBAR - Logo Left | Menu Center | CTA Right */
.navbar {
  position: relative;
  background: #fff;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { 
  box-shadow: 0 4px 20px rgba(13,59,54,.1); 
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;   /* Ye important hai */
  padding: 10px 0;
  gap: 20px;
  max-width: 1480px;
  margin: 0 auto;
}

/* Logo - Left Side */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 220px;
  height: 55px;
  max-width: 220px;
  object-fit: contain;
  flex: 0 0 auto;
}

/* Menu - Perfect Center */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 6px;
  margin: 0 10px 0 20px;
}

/* Menu Links */
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all .25s ease;
}

.nav-links a i {
  font-size: 13px;
  opacity: .8;
}

.nav-links a:hover {
  background: var(--sand);
  color: var(--primary-2);
  transform: translateY(-1px);
}

/* Book Now Button - Right Side */
.nav-cta {
  flex: 0 0 auto;
  font-size: 13px;
  padding: 9px 16px;
  white-space: nowrap;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .brand-logo {
    width: 140px;
    max-width: 140px;
    height: 40px;
  }

  .nav-links {
    margin: 0 12px;
    gap: 4px;
  }

  .nav-links a {
    font-size: 13px;
    padding: 6px 8px;
  }

  .nav-cta {
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* [08] HAMBURGER (Mobile/Tablet) - Instagram Style Lines
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;   
  z-index: 130;         
  width: 36px;
  height: 36px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 99px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 17, 34, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 105;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* [09] HERO / SLIDER
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 10px;
  overflow: hidden;
}
.hero .wrap {
    padding-top: 10px;
}

.slider { position: absolute; inset: 0; width: 100%; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active {
  opacity: 1;
  animation: slideZoom 10s ease-out forwards;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.94) 45%, rgba(0,0,0,.80) 100%),
    rgba(0,0,0,.72);
  animation: overlayShift 10s ease-out forwards;
}
.slide.active .slide-overlay { animation: overlayShift 10s ease-out forwards; }
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 20px 0 20px;
  animation: contentParallax 10s ease-out forwards;
}
.slide.active ~ .hero-content { animation: contentParallax 10s ease-out forwards; }
.hero-content .wrap {
  width: min(1280px, calc(100% - 24px));
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 400px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero-copy-slider {
  position: relative;
  max-width: 100%;
  min-height: 500px;
  padding-top: 10px;
}
.hero-copy {
  position: absolute;
  inset: 0 auto auto 0;
  padding-top: 10px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(70px);
  transition: opacity .65s ease, transform .65s ease;
}
.hero-copy.active {
  position: relative;
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.hero-copy-featured.active { display: block; }
.hero .hero-copy .eyebrow,
.hero .hero-copy h1,
.hero .hero-copy p,
.hero .hero-copy .hero-btns,
.hero .hero-copy .hero-extra-content {
  opacity: 1;
  animation: none;
}
.hero-main-copy {
  min-width: 0;
  max-width: 680px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(247,183,51,.18);
  border: 1px solid rgba(247,183,51,.4);
  color: var(--sun);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeSlideUp 0.8s cubic-bezier(.34,.1,.64,.1) 0.2s forwards;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sun); }
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 6vw, 76px);
  color: #fff;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeSlideUp 1s cubic-bezier(.34,.1,.64,.1) 0.4s forwards;
}
.hero h1 span { color: var(--accent); }
.hero p {
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 2.2vw, 20px);
  max-width: 640px;
  margin-bottom: 26px;
  line-height: 1.6;
  opacity: 0;
  animation: heroFadeSlideUp 0.9s cubic-bezier(.34,.1,.64,.1) 0.6s forwards;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeSlideUp 0.8s cubic-bezier(.34,.1,.64,.1) 0.8s forwards;
}

/* [10] HERO SEARCH / BOOKING FORM (Side Panel)
   ============================================================ */
.hero-search-form {
  width: min(100%, 420px);
  justify-self: end;
  padding: 22px;
  border-radius: 22px;
  background: transparent;
  align-self: center;
  opacity: 1;
}
.hero-form-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -.01em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,.18);
}
.hero-search-options {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.hero-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}
.hero-field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}
.hero-field label {
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 900;
}
.hero-input {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 13px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 14px;
  transition: border-color 0.3s;
}
.hero-input i {
  color: var(--sun);
  font-size: 16px;
  flex: 0 0 auto;
}
.hero-input input,
.hero-time-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
}
.hero-input:hover {
  border-color: lightblue;
  box-shadow: 0 0 10px lightblue;
}
.hero-date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-time-input {
  min-height: 42px;
  padding: 0 13px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-time-input:hover {
  border-color: lightblue;
  box-shadow: 0 0 10px lightblue;
}
.hero-input input::placeholder { color: rgba(255,255,255,.72); }
.hero-search-btn { width: 100%; justify-content: center; margin-top: 2px; }
.hero-extra-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 420px;
  margin-top: 0;
  opacity: 0;
  animation: heroFadeSlideUp 0.8s cubic-bezier(.34,.1,.64,.1) 1s forwards;
}
.hero-feature {
  padding: 14px;
  border-radius: 14px;
  background: transparent;
}
.hero-feature h3 { color: #fff; font-size: 14px; font-weight: 800; line-height: 1.25; margin-bottom: 7px; }
.hero-feature p { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.45; }
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
  opacity: 0;
  animation: heroFadeSlideUp 0.8s cubic-bezier(.34,.1,.64,.1) 1s forwards;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  transition: background .3s, width .3s;
}
.slider-dot.active { background: var(--accent); width: 28px; border-radius: 99px; }

/* [11] HERO BOOKING FORM (Overlay style)
   ============================================================ */
.hero-booking-form {
  width: min(100%, 400px);
  justify-self: end;
  padding: 12px 16px;
  border-radius: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-booking-form h3 { font-size: 16px; margin-bottom: 10px; color: #fff; }
.hero-booking-form label { color: #fff; }
.hero-booking-form .form-group { margin-bottom: 7px; }
.hero-booking-form .form-group input,
.hero-booking-form .form-group select,
.hero-booking-form .form-group textarea {
  min-height: 40px;
  padding: 7px 10px;
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.24);
  font-size: 14px;
}
.hero-booking-form .form-group textarea { min-height: 42px; }
.hero-booking-form .form-group input::placeholder,
.hero-booking-form .form-group textarea::placeholder { color: rgba(255,255,255,.72); }
.hero-booking-form .form-group select option { color: var(--ink); }
.hero-booking-form .form-group input:focus,
.hero-booking-form .form-group select:focus,
.hero-booking-form .form-group textarea:focus {
  border-color: rgba(247,183,51,.8);
  box-shadow: 0 0 0 3px rgba(247,183,51,.16);
  background: rgba(255,255,255,.18);
}
.hero-booking-form .form-row { gap: 8px; }
.hero-booking-form .btn { min-height: 38px; padding: 8px 12px; }

/* [12] TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--primary);
  padding: 18px 0;
}
.trust-bar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-item { color: #fff; }
.trust-item strong { display: block; font-size: 26px; color: var(--sun); }
.trust-item span { font-size: 13px; color: rgba(255,255,255,.75); }

/* [13] SECTION BASE STYLES
   ============================================================ */
section { padding: 80px 0; }
section.hero { padding: 0; }
.section-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--primary);
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  line-height: 1.65;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* [14] FLEET FILTER TABS
   ============================================================ */
.fleet { background: var(--shell); }
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* [15] CAR GRID & CAR CARDS
   ============================================================ */
.car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.car-card {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(13,59,54,.06);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.car-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(13,59,54,.12);
}
.car-card.hidden { display: none; }
.car-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
  z-index: 1;
}
.car-img { width: 100%; height: 250px; object-fit: cover; }
.car-body { padding: 20px; }
.car-category {
  display: inline-block;f
  padding: 4px 12px;
  border-radius: 999px;
  background: #e8f5f2;
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}
.car-name { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 6px; letter-spacing: -.02em; }
.car-price { font-size: 24px; font-weight: 800; color: var(--accent); margin-bottom: 14px; }
.car-price span { font-size: 14px; color: var(--muted); font-weight: 600; }
.car-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.spec-pill {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--shell);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.car-actions { display: flex; gap: 10px; }
.car-actions .btn { flex: 1; justify-content: center; font-size: 13px; padding: 10px 12px; }

/* [16] WHY US SECTION
   ============================================================ */
.why-us { background: #fff; position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 6vw, 72px);
  align-items: center;
}
.why-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(13,59,54,.18);
  isolation: isolate;
}
.why-img::before {
  content: '';
  position: absolute;
  inset: 18px auto auto 18px;
  width: 76px; height: 76px;
  border-radius: 20px;
  background: rgba(247,183,51,.88);
  z-index: 2;
}
.why-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,59,54,0) 45%, rgba(13,59,54,.34) 100%);
  z-index: 1;
}
.why-img img { width: 100%; height: 520px; object-fit: cover; transform: scale(1.02); }
.why-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: transparent;
  box-shadow: 0 14px 34px rgba(13,59,54,.07);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.why-feature:hover {
  border-color: rgba(173,216,230,.7);
  box-shadow: 0 18px 42px rgba(13,59,54,.11);
  transform: translateY(-2px);
}
.why-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sun);
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(13,59,54,.16);
}
.why-feature h4 { font-size: 15px; font-weight: 800; color: var(--primary); margin-bottom: 4px; line-height: 1.25; }
.why-feature p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* [17] HOW IT WORKS SECTION
   ============================================================ */
.how { background: var(--primary); }
.how .section-title { color: #fff; }
.how .section-label { color: var(--sun); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.how-step {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(255,107,61,.3);
}
.how-step h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.how-step p { color: rgba(255,255,255,.72); font-size: 14px; }

/* [18] BOOKING FORM SECTION
   ============================================================ */
.booking { background: var(--shell); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.booking-info h3 { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.booking-info p { color: var(--muted); margin-bottom: 24px; }
.contact-list { display: grid; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
}
.contact-item i { color: var(--primary-2); min-width: 20px; font-size: 18px; }
.contact-item span { font-weight: 700; color: var(--ink); font-size: 15px; }
.booking-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.booking-form h3 { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 18px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--shell);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 4px rgba(13,107,94,.1);
  background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group textarea { resize: vertical; min-height: 90px; }
.booking-form .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* [19] CONTACT PAGE
   ============================================================ */
.page-hero .wrap { max-width: 860px; }
.page-hero-content { max-width: 760px; }
.page-hero .section-label {
  color: var(--sun);
  opacity: 0;
  animation: contactHeroSlide 0.65s ease-out 0.15s forwards;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  letter-spacing: -.03em;
  max-width: 760px;
  margin: 12px 0 20px;
  opacity: 0;
  animation: contactHeroSlide 0.75s ease-out 0.32s forwards;
}
.page-hero p {
  max-width: 640px;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
  opacity: 0;
  animation: contactHeroSlide 0.75s ease-out 0.5s forwards;
}
.page-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
  opacity: 0;
  animation: contactHeroSlide 0.75s ease-out 0.68s forwards;
}
.contact-page { background: var(--shell); }
.contact-form-wrap { max-width: 760px; }
.contact-page-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: start;
}
.contact-panel { padding-top: 8px; }
.contact-list-large { margin-top: 30px; }
.contact-list-large .contact-item { min-height: 62px; }
.contact-form-card textarea { min-height: 132px; }

/* [20] FAQ SECTION
   ============================================================ */
.faq { background: #fff; }
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--shell);
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: #f0ede4; }
.faq-icon {
  min-width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  background: #fff;
  padding: 0 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 16px 22px; }

/* [21] FOOTER
   ============================================================ */
.footer { background: var(--primary); color: #fff; padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  text-align: center;
  justify-items: center;
}
.footer-brand .brand { color: #fff; margin-bottom: 14px; justify-content: center; }
.footer-brand p { color: rgba(255,255,255,.65); font-size: 14px; margin: 0 auto 20px; max-width: 280px; line-height: 1.65; }
.footer-social { display: flex; justify-content: center; gap: 10px; }
.footer-links h4,
.footer-contact h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--sun);
  margin-bottom: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-links ul { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--sun); }
.footer-contact p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  margin-bottom: 12px;
  text-align: center;
}
.footer-contact i { font-size: 15px; }
.footer-contact a { color: rgba(255,255,255,.9); }
.footer-contact a:hover { color: var(--sun); }
/* Footer Badges */
.footer-badges {
  background: rgba(255,255,255,.05);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.badge-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}
.badge-item i { color: var(--sun); font-size: 16px; }

/* Footer Bottom */
.footer-bottom {
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bottom p { margin: 0; }
.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,.6);
  font-size: 12px;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--sun); }
.footer-bottom-links .separator { color: rgba(255,255,255,.3); }

/* [22] WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  left: auto;
  z-index: 2000;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.42);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,.5); }
.wa-float i { font-size: 30px; color: #fff; }

/* [23] KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes contentParallax {
  from { transform: translateX(-12px) scale(1.01); }
  to   { transform: translateX(0) scale(1); }
}
@keyframes overlayShift {
  from { opacity: 0; background: linear-gradient(100deg, rgba(13,59,54,.95) 0%, rgba(13,59,54,.45) 60%, transparent 100%); }
  to   { opacity: 1; background: linear-gradient(100deg, rgba(13,59,54,.82) 0%, rgba(13,59,54,.35) 60%, transparent 100%); }
}
@keyframes slideZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
@keyframes heroFadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes contactHeroSlide {
  from { opacity: 0; transform: translateX(-34px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* [24] RESPONSIVE — 1024px (Tablets - Keep Desktop Nav)
   ============================================================ */
@media (max-width: 1024px) {
  .brand-logo {
    width: 130px;
    max-width: 130px;
    height: 38px;
  }
  .nav-links {
    gap: 3px;
    margin: 0 8px;
  }
  .nav-links a {
    font-size: 12px;
    padding: 6px 7px;
    gap: 3px;
  }
  .nav-cta {
    font-size: 11px;
    padding: 7px 12px;
  }
}

/* [25] RESPONSIVE — 768px (Mobile)
   ============================================================ */
@media (max-width: 768px) {
  .hamburger { display: flex; } 
  .nav-overlay { display: block; }
  .topbar-social { display: none; }
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0; right: 0; left: 0;
    width: 100%;
    max-width: 100vw;
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 24px;
    gap: 6px;
    box-shadow: none;
    transform: translate3d(100%, 0, 0);
    transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .32s ease;
    z-index: 120;
    border-left: none;
    border-radius: 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
  }
  .nav-links.open {
    display: flex !important;
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .nav-links li { width: 100%; list-style: none; }
  .nav-links a {
    width: min(100%, 320px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 14px;
    line-height: 1.3;
    background: transparent;
    border-radius: 12px;
    border: none;
    color: var(--primary);
    transition: background .18s, color .18s, transform .18s;
  }
  .nav-links a i {
    width: 34px; height: 34px;
    background: rgba(13,59,54,.07);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: background .18s, color .18s;
  }
  .nav-links a:hover {
    background: rgba(247,183,51,.12);
    color: var(--primary-2);
    transform: none;
  }
  .nav-links a:hover i {
    background: rgba(247,183,51,.25);
    color: var(--primary-2);
  }
  .nav-drawer-header,
  .nav-section-label,
  .nav-drawer-cta { display: flex; }
  .nav-drawer-header {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 10px;
    flex-shrink: 0;
  }
  .nav-drawer-brand { display: flex; align-items: center; gap: 8px; }
  .nav-drawer-brand img { height: 34px; width: auto; object-fit: contain; }
  .nav-drawer-close {
    width: 36px; height: 36px;
    background: rgba(13,59,54,.07);
    border: none; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 16px; color: var(--primary);
    transition: background .18s; flex-shrink: 0;
  }
  .nav-drawer-close:hover { background: rgba(247,183,51,.2); }
  .nav-section-label {
    display: block;
    font-size: 10px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--muted);
    padding: 4px 14px 2px; width: 100%;
  }
  .nav-drawer-cta {
    display: block;
    margin-top: auto; width: 100%;
    padding-top: 14px;
    border-top: 1px solid rgba(13,59,54,.08);
    flex-shrink: 0;
  }
  .nav-drawer-cta .btn {
    width: 100%; justify-content: center;
    font-size: 15px; padding: 12px 20px;
  }
  .nav-cta { display: none; }
  .hero { height: auto; min-height: auto; overflow: visible; }
  .slider { position: absolute; inset: 0; height: 100%; }
  .hero-copy-featured.active { grid-template-columns: 1fr; }
  .hero-content .wrap { grid-template-columns: 1fr; gap: 24px; margin-left: 0; margin-right: 0; padding-left: 20px; }
  .hero-search-form,
  .hero-booking-form { width: 100%; justify-self: stretch; border-radius: 16px; }
  .hero h1 { font-size: clamp(38px, 12vw, 56px); line-height: 1.04; }
  .hero p { font-size: 16px; line-height: 1.55; max-width: 100%; }
  .hero-copy-slider { min-height: 0; }
  .hero-extra-content { display: none; }
  .page-hero { padding: 72px 0 66px; }
  .car-grid { grid-template-columns: 1fr; }
  .fleet .section-head { margin-bottom: 22px; }
  .filter-tabs { margin-bottom: 22px; }
  .car-card { border-radius: 18px; }
  .car-detail-img { height: 160px; }
  .car-detail-img img { object-fit: contain; }
  .car-img { height: 180px;}
  .car-body { padding: 16px; }
  .car-name { font-size: 20px; margin: 8px 0 6px; }
  .car-price { font-size: 22px; margin-bottom: 12px; }
  .car-specs { gap: 7px; margin-bottom: 14px; }
  .spec-pill { padding: 5px 9px; font-size: 12px; }
  .how-grid { grid-template-columns: 1fr; }
  .how { padding: 48px 0; }
  .how .wrap > div:first-child { text-align: left !important; margin: 0 0 24px !important; max-width: 100% !important; }
  .how-step { padding: 16px; text-align: left; }
  .step-num { width: 38px; height: 38px; font-size: 16px; margin: 0 0 10px; }
  .why-us { padding: 48px 0; }
  .why-grid .section-label,
  .why-grid .section-title,
  .why-grid .section-sub { text-align: left; }
  .why-grid .section-sub { max-width: 100%; }
  .why-features { gap: 10px; }
  .why-feature { padding: 12px; gap: 10px; align-items: flex-start; }
  .why-icon { width: 34px; height: 34px; font-size: 17px; flex: 0 0 34px; }
  .faq-question { padding: 14px 16px; font-size: 15px; }
  .faq-answer { padding: 0 16px; font-size: 14px; }
  .faq-item.open .faq-answer { padding: 12px 16px; }
  .booking-grid { grid-template-columns: 1fr; gap: 28px; }
  .booking-form { width: 100%; padding: 24px; border-radius: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea { min-height: 50px; font-size: 16px; padding: 13px 14px; }
  .form-group textarea { min-height: 118px; }
  .contact-page { padding: 56px 0 66px; }
  .contact-form-wrap { width: min(100% - 24px, 760px); }
  .contact-form-card { margin: 0 auto; }
  .contact-item { align-items: flex-start; padding: 14px; }
  .contact-item span, .footer-contact p, .footer-contact a { overflow-wrap: anywhere; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-bar .wrap { grid-template-columns: repeat(2, 1fr); }
  .wa-float { right: 18px; left: auto; bottom: 18px; width: 52px; height: 52px; }
  .wa-float i { font-size: 26px; }
}

/* [26] RESPONSIVE — 480px (Small Mobile)
   ============================================================ */
@media (max-width: 480px) {
  .wrap { width: min(100% - 20px, 1160px); }
  section { padding: 42px 0; }
  .topbar-info{font-size: xx-small; }
  .topbar-info i { font-size: smaller;}
  .nav-inner { gap: 10px; }
  .brand-logo { height: 40px; max-width: 132px; }

  .hero { min-height: auto; }
  .hero-content { align-items: center; padding: 20px 0 50px; }
  .eyebrow { font-size: 11px; padding: 6px 10px; margin-bottom: 14px; }
  .hero h1 { font-size: clamp(34px, 13vw, 48px); margin-bottom: 16px; }
  .hero p { margin-bottom: 20px; }
  .hero-btns,
  .page-hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-btns .btn,
  .page-hero-actions .btn { width: 100%; justify-content: center; }
  .hero-copy-slider { min-height: 0; }
  .hero-search-form,
  .hero-booking-form { padding: 10px 12px; margin-top: 20px; }
  .hero-booking-form .form-group { margin-bottom: 10px; }
  .hero-date-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-input { min-height: 46px; }
  .hero-time-input { min-height: 40px; }
  .section-title { font-size: clamp(28px, 9vw, 38px); }
  .section-sub { font-size: 15px; }
  .trust-bar .wrap { grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-item { padding: 14px 8px; }
  .trust-item strong { font-size: 24px; }
  .filter-tabs { gap: 8px; }
  .filter-btn { padding: 9px 14px; font-size: 13px; }
  .car-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .car-grid { gap: 18px; }
  .car-img { height: 125px; }
  .car-body { padding: 14px; }
  .car-category { font-size: 11px; padding: 3px 9px; }
  .car-name { font-size: 18px; }
  .car-price { font-size: 20px; }
  .car-actions { gap: 8px; }
  .car-actions .btn { padding: 9px 10px; font-size: 13px; }
  .how-step { padding: 14px 12px; }
  .how-step h3, .why-feature h4 { font-size: 15px; }
  .how-step p, .why-feature p { font-size: 13px; line-height: 1.5; }
  .contact-item { padding: 12px; }
  .booking-form { padding: 18px; border-radius: 16px; }
  .booking-form h3 { font-size: 18px; margin-bottom: 18px; }
  .contact-page { padding: 42px 0 58px; }
  .contact-form-wrap { width: min(100% - 20px, 760px); }
  .footer { padding-top: 46px; }
  .footer-inner { gap: 28px; }
  .wa-float { position: fixed; right: 16px; left: auto; bottom: 16px; width: 46px; height: 46px; }
  .wa-float i { font-size: 22px; }
}

/* ============================================================
   ADDITIONAL STYLES — INNER PAGES
   About Us | Self Drive Car | Blogs | Contact
   ============================================================ */

/* [27] PAGE HERO (Shared — About, Blog, Self Drive, Contact)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(247,183,51,0.08)" stroke-width="0.5"/></svg>');
  background-size: 80px 80px;
  opacity: 0.5;
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; padding: 0 0 0 0; }
.page-hero .section-label { margin-bottom: 10px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { margin-bottom: 18px; max-width: 720px; }
.page-hero-actions { gap: 12px; margin-top: 18px; }
.page-hero-actions .btn { min-width: 150px; }
.page-hero h1 span { color: var(--accent); }

#locations.page-hero,
#location-detail.page-hero {
  background: #fff;
  min-height: auto;
  padding: 40px 0 40px;
}
#locations.page-hero::before,
#location-detail.page-hero::before {
  content: none;
}
#locations.page-hero .page-hero-bg,
#location-detail.page-hero .page-hero-bg {
  display: none;
}
#locations.page-hero h1,
#location-detail.page-hero h1 {
  margin-bottom: 12px;
}
#locations.page-hero p,
#location-detail.page-hero p {
  margin-bottom: 14px;
  max-width: 700px;
}
#locations.page-hero .page-hero-actions,
#location-detail.page-hero .page-hero-actions {
  gap: 10px;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .page-hero-content { padding: 0 16px; }
  .page-hero-actions { margin-top: 14px; }
}

/* [28] ABOUT US — Story Section
   ============================================================ */
.about-story { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 6vw, 72px);
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(13,59,54,.18);
}
.about-img img { width: 100%; height: 520px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--accent);
  color: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(255,107,61,.3);
}
.about-img-badge strong { display: block; font-size: 36px; font-weight: 800; line-height: 1; }
.about-img-badge span { font-size: 13px; font-weight: 600; opacity: 0.9; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.about-stat {
  text-align: center;
  padding: 20px 12px;
  background: var(--shell);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.about-stat strong { display: block; font-size: 28px; color: var(--accent); font-weight: 800; line-height: 1; margin-bottom: 6px; }
.about-stat span { font-size: 12px; color: var(--muted); font-weight: 600; }

/* [29] ABOUT US — Mission Section
   ============================================================ */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mission-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
  transition: transform .25s, background .25s;
}
.mission-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.12); }
.mission-icon { font-size: 48px; margin-bottom: 18px; line-height: 1; }
.mission-card h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.mission-card p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.7; }

/* [30.1] ABOUT US  self driven car  / blogs — Why Features
   ============================================================ */    
.page-hero{
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.page-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark overlay */
.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* Content above image */
.page-hero-content{
  position: relative;
  z-index: 3;
}

/* Mobile */
@media (max-width:768px){

  .page-hero{
    min-height: 75vh;
    padding: 80px 0;
  }

  .page-hero-bg img{
    object-position: center;
  }

}
/* [30] ABOUT US — Why Features Detailed
   ============================================================ */
.why-features-detailed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-feature-detailed {
  padding: 28px;
  border-radius: 18px;
  background: var(--shell);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.why-feature-detailed:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(13,59,54,.1); }
.why-feature-detailed .why-icon { font-size: 36px; margin-bottom: 14px; line-height: 1; }
.why-feature-detailed h4 { font-size: 17px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.why-feature-detailed p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* [31] ABOUT US — Team Section
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 600px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(13,59,54,.07);
}
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--sun);
}
.team-card h3 { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--accent); font-weight: 700; margin-bottom: 16px; }
.team-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.team-contact { display: flex; justify-content: center; gap: 10px; }

/* ============================================================
   [32] SELF DRIVE CAR — Why Self Drive Section
============================================================ */
/* ============================================================
   WHY SELF DRIVE SECTION
============================================================ */

.why-self-drive{
  background:#fff;
  padding:72px 0;
}

.why-self-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

/* CARD */
.why-self-card{
  padding:32px 24px;
  border-radius:20px;

  background:var(--shell);
  border:1px solid var(--border);

  text-align:center;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;

  height:100%;
}

.why-self-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 54px rgba(13,59,54,.13);
  background:#fff;
}

/* ICON */
.why-self-icon{
  width:70px;
  height:70px;

  margin:0 auto;

  border-radius:18px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(13,59,54,.08);

  color:var(--primary);

  font-size:26px;

  flex-shrink:0;

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.why-self-card:hover .why-self-icon{
  background:var(--primary);
  color:#fff;
  transform:scale(1.05);
}

/* TITLE */
.why-self-card h3{
  font-size:18px;
  font-weight:800;
  color:var(--primary);
  margin:0;
  line-height:1.3;
}

/* DESC */
.why-self-card p{
  font-size:14px;
  color:var(--muted);
  line-height:1.75;
  margin:0;
}


/* ============================================================
   TABLET RESPONSIVE
============================================================ */

@media (max-width:992px){

  .why-self-drive{
    padding:60px 0;
  }

  .why-self-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }

  .why-self-card{
    padding:26px 18px;
    border-radius:18px;
  }

  .why-self-icon{
    width:62px;
    height:62px;
    font-size:24px;
  }

  .why-self-card h3{
    font-size:17px;
  }

  .why-self-card p{
    font-size:13px;
    line-height:1.65;
  }

}


/* ============================================================
   MOBILE RESPONSIVE
============================================================ */

/* ============================================================
   MOBILE FIX — CARD HEIGHT + TEXT ALIGN
============================================================ */

@media (max-width:576px){

  .why-self-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .why-self-card{
    padding:16px;
    border-radius:16px;

    display:flex;
    flex-direction:row;
    align-items:flex-start;
    gap:14px;

    text-align:left;

    min-height:auto;
  }

  .why-self-icon{
    width:52px;
    height:52px;

    min-width:52px;

    border-radius:14px;

    font-size:20px;

    margin:0;
  }

  .why-self-card h3{
    font-size:18px;
    line-height:1.35;
    margin-bottom:6px;
  }

  .why-self-card p{
    font-size:14px;
    line-height:1.6;
  }

  /* CONTENT WRAPPER */
  .why-self-content{
    flex:1;
  }

}
/* ============================================================
   [34] LOCATIONS — Page Cards
============================================================ */
.locations-grid,
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.location-card,
.city-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 35px rgba(13,59,54,.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.location-badge,
.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(247,183,51,.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
}

.location-pin,
.city-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(13,59,84,.06);
  color: var(--primary);
  font-size: 16px;
}

.location-card h3,
.city-card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
}

.location-card p,
.city-card p {
  color: var(--muted);
  line-height: 1.8;
}

.location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--shell);
  color: var(--muted);
  font-size: 13px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.location-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 13px;
  padding: 10px 14px;
}

.cities-grid .btn {
  width: auto;
}

.city-card {
  min-height: 240px;
}

.city-card .city-icon {
  width: 56px;
  height: 56px;
  font-size: 20px;
}

.city-card .city-badge {
  background: var(--shell);
  color: var(--primary);
}

@media (max-width: 1024px) {
  .locations-grid,
  .cities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-card,
  .city-card {
    padding: 18px;
  }

  .location-actions .btn {
    flex: 1 1 100%;
    min-width: 0;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .booking-form {
    padding: 22px;
  }

  .page-hero { padding: 72px 0 60px; }
  .page-hero h1 { font-size: clamp(34px, 10vw, 48px); }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .locations-grid,
  .cities-grid {
    gap: 18px;
  }

  .location-card,
  .city-card {
    padding: 18px;
  }

  .location-badge,
  .city-badge {
    padding: 8px 12px;
    font-size: 12px;
  }

  .location-meta span {
    padding: 9px 12px;
    font-size: 12px;
  }

  .location-card h3,
  .city-card h3 {
    font-size: 20px;
  }

  .section-title { font-size: clamp(28px, 9vw, 36px); }
}


/* ============================================================
   [33] SELF DRIVE CAR — Car Detail Grid
============================================================ */
.car-detail-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.car-detail-card{
  background:#fff;
  border-radius:24px;
  border:1px solid var(--border);
  overflow:hidden;
  box-shadow:0 6px 20px rgba(13,59,54,.06);
  transition:0.3s ease;
}

.car-detail-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(13,59,54,.12);
}

.car-detail-img{
  position:relative;
  height:220px;
  overflow:hidden;
  background:#fff;
}

.car-detail-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  transition:0.4s ease;
}

.car-detail-card:hover .car-detail-img img{
  transform:scale(1.05);
}

.car-detail-badge{
  position:absolute;
  top:14px;
  left:14px;
  padding:6px 14px;
  border-radius:999px;
  background:var(--sun);
  color:var(--ink);
  font-weight:800;
  font-size:12px;
}

.car-detail-body{
  padding:22px;
}

.car-detail-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  margin-bottom:16px;
}

.car-detail-category{
  display:inline-block;
  padding:5px 12px;
  border-radius:999px;
  background:#e8f5f2;
  color:var(--primary-2);
  font-size:12px;
  font-weight:800;
  margin-bottom:8px;
}

.car-detail-name{
  font-size:22px;
  font-weight:800;
  color:var(--primary);
  letter-spacing:-.02em;
}

.car-detail-seats{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  font-weight:700;
  color:var(--muted);
  background:var(--shell);
  padding:7px 12px;
  border-radius:999px;
  white-space:nowrap;
}

.car-detail-variants{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:18px;
}

.car-variant{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 14px;
  background:var(--shell);
  border-radius:14px;
  border:1px solid var(--border);
}

.variant-trans{
  font-size:14px;
  font-weight:700;
  color:var(--primary);
}

.variant-price{
  font-size:16px;
  font-weight:800;
  color:var(--accent);
}

.variant-mileage{
  font-size:12px;
  color:var(--muted);
  font-weight:600;
}

.car-detail-features{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:20px;
}

.feature-tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 12px;
  border-radius:999px;
  background:#e8f5f2;
  color:var(--primary-2);
  font-size:12px;
  font-weight:700;
}

.car-detail-actions{
  display:flex;
  gap:12px;
}

.car-detail-actions .btn{
  flex:1;
  justify-content:center;
  padding:12px 14px;
  font-size:14px;
  white-space:nowrap;
}


/* ============================================================
   [34] SELF DRIVE CAR — Tips Section
============================================================ */
.tips-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.tip-card{
  padding:30px 24px;
  border-radius:20px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  text-align:center;
  transition:0.3s ease;
}

.tip-card:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.12);
}

.tip-icon{
  width:70px;
  height:70px;
  margin:0 auto 18px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:28px;
}

.tip-card h3{
  font-size:18px;
  font-weight:800;
  color:#fff;
  margin-bottom:10px;
}

.tip-card p{
  font-size:14px;
  color:rgba(255,255,255,.75);
  line-height:1.7;
}


/* ============================================================
   TABLET RESPONSIVE
============================================================ */
@media (max-width:992px){

  .why-self-grid,
  .tips-grid,
  .car-detail-grid{
    grid-template-columns:1fr 1fr;
  }

}


/* ============================================================
   MOBILE RESPONSIVE
============================================================ */
@media (max-width:768px){

  .why-self-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tips-grid,
  .car-detail-grid{
    grid-template-columns:1fr;
  }

  .why-self-card,
  .tip-card{
    padding:20px 16px;
  }

  .car-detail-card{
    border-radius:18px;
  }

  .car-detail-img{
    height:180px;
  }

  .car-detail-body{
    padding:14px;
  }

  .car-detail-header{
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:10px;
    gap:8px;
  }

  .car-detail-name{
    font-size:18px;
  }

  .car-detail-category{
    font-size:11px;
    padding:4px 10px;
    margin-bottom:5px;
  }

  .car-detail-seats{
    font-size:12px;
    padding:5px 10px;
  }

  .car-detail-variants{
    gap:6px;
    margin-bottom:12px;
  }

  .car-variant{
    padding:8px 10px;
    border-radius:10px;
    flex-direction:row;
  }

  .variant-trans{
    font-size:13px;
  }

  .variant-price{
    font-size:14px;
  }

  .variant-mileage{
    font-size:11px;
  }

  .car-detail-features{
    gap:6px;
    margin-bottom:14px;
  }

  .feature-tag{
    font-size:11px;
    padding:5px 10px;
  }

  /* BUTTONS ONE LINE */
  .car-detail-actions{
    display:flex;
    flex-direction:row !important;
    gap:8px;
  }

  .car-detail-actions .btn{
    flex:1;
    width:50%;
    white-space:nowrap;
    font-size:12px;
    padding:10px 8px;
    min-height:auto;
  }

  .why-self-icon,
  .tip-icon{
    width:62px;
    height:62px;
    font-size:24px;
  }

}


/* ============================================================
   EXTRA SMALL MOBILE
============================================================ */
@media (max-width:480px){

  .car-detail-name{
    font-size:17px;
  }

  .variant-price{
    font-size:13px;
  }

  .car-detail-actions .btn{
    font-size:11px;
    padding:9px 6px;
  }

}

/* [35] BLOGS — Featured Post
   ============================================================ */
.featured-post { background: var(--shell); padding: 60px 0; }
.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.featured-img { position: relative; height: 100%; min-height: 400px; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-badge {
  position: absolute;
  top: 20px; left: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(255,107,61,.3);
}
.featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-meta { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.featured-category {
  padding: 4px 12px;
  border-radius: 999px;
  background: #e8f5f2;
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 800;
}
.featured-date, .featured-read { font-size: 13px; color: var(--muted); font-weight: 600; }
.featured-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.featured-content p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }

/* [36] BLOGS — Blog Grid & Cards
   ============================================================ */
.blog-posts { background: #fff; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(13,59,54,.06);
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,59,54,.12); }
.blog-card.expanded { grid-column: 1 / -1; }
.blog-img { position: relative; height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-category {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
}
.blog-body { padding: 22px; }
.blog-meta { display: flex; gap: 8px; margin-bottom: 10px; font-size: 12px; color: var(--muted); font-weight: 600; }
.blog-body h3 { font-size: 17px; font-weight: 800; color: var(--primary); line-height: 1.3; margin-bottom: 10px; letter-spacing: -.01em; }
.blog-body > p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  transition: gap .2s;
}
.blog-read-more:hover { gap: 10px; }
.blog-full-content {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  animation: heroFadeSlideUp 0.4s ease;
}
.blog-full-content p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.blog-cta { margin-top: 16px; }

/* [37] BLOGS — Newsletter Section
   ============================================================ */
.newsletter { padding: 60px 0; }
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter-form { display: flex; justify-content: flex-end; }
.newsletter-input {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
}
.newsletter-input input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.newsletter-input input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-input input:focus { border-color: var(--sun); background: rgba(255,255,255,.15); }
.newsletter-input .btn { white-space: nowrap; }

/* [38] BLOGS — Filter Bar
   ============================================================ */
.blog-filter { margin-bottom: 36px; }

/* [39] RESPONSIVE — Inner Pages (1024px - Tablet)
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .about-img img { max-height: 380px; height: auto; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; }
  .why-features-detailed { grid-template-columns: repeat(2, 1fr); }
  .why-self-grid { grid-template-columns: repeat(2, 1fr); }
  .car-detail-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card { grid-template-columns: 1fr; }
  .featured-img { min-height: 280px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-grid { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-form { justify-content: stretch; }

  /* Product/Car Images for Tablet */
  .car-detail-img { height: 200px; }
  .car-detail-img img { object-fit: contain; }
  .car-img { height: 200px; }
}

/* [40] RESPONSIVE — Inner Pages (768px - Mobile)
   ============================================================ */
@media (max-width: 768px) {
  .page-hero { min-height: auto; padding: 100px 0 60px; }
  .page-hero h1 { font-size: clamp(34px, 10vw, 48px); }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .about-stat { padding: 16px 10px; }
  .about-stat strong { font-size: 22px; }
  .why-features-detailed { grid-template-columns: 1fr; }
  .why-self-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .featured-content { padding: 28px; }
  .featured-content h2 { font-size: 22px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-img { height: 180px; }
  .newsletter-input { flex-direction: column; }
  .newsletter-input .btn { width: 100%; justify-content: center; }
  .car-detail-actions { grid-template-columns: 1fr; }
  .car-variant { flex-wrap: wrap; gap: 6px; }

  /* Product/Car Images for Mobile */
  .car-detail-img { height: 180px; }
  .car-detail-img img { object-fit: contain; }
  .car-img { height: 270px; }
}

/* [41] RESPONSIVE — Inner Pages (480px)
   ============================================================ */
@media (max-width: 480px) {
  .about-img-badge { bottom: 16px; left: 16px; padding: 12px 18px; }
  .about-img-badge strong { font-size: 28px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .mission-card { padding: 28px 20px; }
  .why-feature-detailed { padding: 20px; }
  .tip-card { padding: 22px; }
  .featured-meta { gap: 10px; }
  .blog-body { padding: 18px; }
}

/* ============================================================
   [42] LOCATIONS LINK SECTION (index.php)
============================================================ */
.locations-link {
  padding: 16px 0 20px;
  background: var(--shell, #f8f4ef);
  border-top: 1px solid rgba(13,59,54,.07);
}
.locations-link h2 {
  font-size: clamp(22px, 4vw, 32px);
  color: var(--primary);
  margin-bottom: 8px;
}
.locations-link p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

/* ============================================================
   [43] LOCATION PAGE — Improved & Mobile Responsive
   ============================================================ */

/* Hero section top/bottom padding reduce */
#locations.page-hero {
  padding-top: 80px;
  padding-bottom: 60px;
}

/* All Locations section */
.all-locations {
  padding: 56px 0;
}

/* Taluka filter scroll on mobile */
.taluka-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: center;
}

/* Location cards - desktop baseline already set, enrich here */
.location-card {
  transition: transform .2s ease, box-shadow .2s ease;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(13,59,54,.13);
}

/* Why section on location page */
.why-south-goa {
  padding: 56px 0;
  background: var(--shell, #f8f4ef);
}
.why-south-goa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.why-south-goa-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 20px;
  border: 1px solid rgba(13,59,54,.07);
  box-shadow: 0 8px 24px rgba(13,59,54,.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, box-shadow .2s;
}
.why-south-goa-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(13,59,54,.12);
}
.why-south-goa-icon {
  width: 48px; height: 48px;
  background: rgba(13,59,54,.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
}
.why-south-goa-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}
.why-south-goa-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   MOBILE RESPONSIVE — Location page
   ============================================================ */

@media (max-width: 1024px) {
  .why-south-goa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #locations.page-hero {
    padding-top: 60px;
    padding-bottom: 44px;
  }
  .all-locations {
    padding: 40px 0;
  }
  .taluka-filter {
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .taluka-filter::-webkit-scrollbar { display: none; }
  .taluka-filter .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 14px;
  }
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .location-card {
    padding: 18px;
    border-radius: 18px;
  }
  .location-card h3 { font-size: 18px; }
  .location-card p { font-size: 14px; line-height: 1.7; }
  .location-badge { font-size: 12px; padding: 7px 11px; }
  .location-pin { width: 38px; height: 38px; font-size: 14px; }
  .location-meta span { font-size: 12px; padding: 7px 11px; }
  .location-actions { flex-direction: column; gap: 8px; }
  .location-actions .btn { flex: 1 1 100%; min-width: 0; text-align: center; justify-content: center; font-size: 13px; padding: 10px 14px; }
  .why-south-goa { padding: 40px 0; }
  .why-south-goa-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
  }
  .why-south-goa-card { padding: 18px 16px; }
  .locations-link { padding: 14px 0 16px; }
  .locations-link h2 { font-size: 20px; }
  .locations-link p { font-size: 14px; }
}

@media (max-width: 480px) {
  #locations.page-hero {
    padding-top: 48px;
    padding-bottom: 36px;
  }
  .all-locations { padding: 32px 0; }
  .locations-grid { gap: 14px; }
  .location-card { padding: 16px; border-radius: 16px; }
  .location-card h3 { font-size: 16px; }
  .location-meta { gap: 8px; }
  .why-south-goa-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .why-south-goa-icon { width: 42px; height: 42px; font-size: 17px; }
  .locations-link { padding: 12px 0 14px; }
  .locations-link h2 { font-size: 18px; margin-bottom: 6px; }
}
/* Location Card Action Buttons */
.location-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.location-actions .btn {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  border-radius: 50px;  /* Fully rounded pill shape */
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  justify-content: center;
  gap: 8px;
  transition: all .2s ease;
}

/* Rent Car Here - Orange */
.location-actions .btn-primary {
  background: #FF6B35;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,107,53,.3);
}

.location-actions .btn-primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,53,.4);
}

/* Book - Green WhatsApp */
.location-actions .btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37,211,102,.3);
}

.location-actions .btn-whatsapp:hover {
  background: #1fb859;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,.4);
}

/* Mobile: buttons stack vertically */
@media (max-width: 480px) {
  .location-actions {
    flex-direction: column;
    gap: 10px;
  }
  .location-actions .btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
  }
}
/* ============================================================
   [44] NAV DRAWER — Mobile Header Strip (hidden on desktop)
============================================================ */
/* These elements only appear inside the mobile drawer */
.nav-drawer-header,
.nav-section-label,
.nav-drawer-cta {
  display: none;
}

@media (max-width: 768px) {
  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 10px;
    flex-shrink: 0;
    list-style: none;
  }
  .nav-drawer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-drawer-brand img {
    height: 34px;
    width: auto;
    object-fit: contain;
  }
  .nav-drawer-close {
    display: none;   /* 👈 YEH ADD KARO */

  }
  .nav-drawer-close:hover { background: rgba(247,183,51,.2); }

  .nav-section-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted, #8a8f99);
    padding: 4px 14px 2px;
    width: 100%;
    list-style: none;
  }

  .nav-drawer-cta {
    display: block;
    margin-top: auto;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid rgba(13,59,54,.08);
    flex-shrink: 0;
    list-style: none;
  }
  .nav-drawer-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 12px 20px;
  }
}


/* ============================================================
   [45] LOCATION-DETAIL PAGE — Full CSS Overhaul + Mobile
============================================================ */

/* ── Hero section ── */
#location-detail.page-hero {
  padding-top: 80px;
  padding-bottom: 64px;
}
#location-detail.page-hero h1 { font-size: clamp(32px, 5vw, 58px); }
#location-detail.page-hero .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ── Why Self Drive section — padding already set in [32] ── */
.section-head-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* ── South Goa Cities / Highlights / Nearby sections ── */
.south-goa-cities {
  padding: 64px 0;
}

/* cities-grid already has 3-col, city-card improvements */
.city-card {
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(13,59,54,.13);
}
.city-card h3 { font-size: 20px; margin: 0; line-height: 1.25; }
.city-card p  { font-size: 14px; line-height: 1.75; margin: 0; flex: 1; }
.city-card .btn { margin-top: auto; }

/* Two-button layout inside city-card (nearby locations) */
.city-card .btn + .btn { margin-top: 8px; }

/* ── How It Works ── */
.how { padding: 64px 0; }

/* ── Booking section ── */
.booking { padding: 72px 0; }
