
/* Fast load fix: disable blocking loader */
#preloader,.preloader{display:none!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important}
/* SAN TRAVELS - Main Stylesheet */
:root {
  --site-topbar: 0px;
  --site-header: 80px;
  --site-top: calc(var(--site-topbar) + var(--site-header));
  --yellow: #d4af37; /* Luxury Gold */
  --yellow-light: #f1d279;
  --yellow-dark: #aa8c2e;
  --yellow-glow: rgba(212, 175, 55, 0.3);
  --brand-gold: #c5a021;
  --black: #0a0a0a;
  --dark: #121212;
  --dark-soft: #1e1e1e;
  --grey: #4a4a4a;
  --light-grey: #8a8a8a;
  --white: #ffffff;
  --bg-page: #ffffff;
  --bg-section: #f9f9f9;
  --border: rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
  --radius: 24px;
  --radius-sm: 12px;
  --font: 'Montserrat', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

main section[id]:not(#home) {
  scroll-margin-top: calc(var(--site-header) + 12px);
}

#home {
  scroll-margin-top: var(--site-header);
}

html,
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== HEADER ========== */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

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

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

.nav a {
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}

.nav a:hover {
  color: var(--yellow-dark);
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active {
  color: var(--yellow-dark);
  font-weight: 700;
}

.nav a.active::after {
  width: 100%;
}

.btn-book {
  display: inline-block;
  background: var(--black);
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  border: 1px solid var(--black);
}

.btn-book:hover {
  background: transparent;
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--black);
  font-size: 24px;
  cursor: pointer;
}

/* ========== HERO (HOME) — Module 1 full viewport ========== */
.hero {
  position: relative;
  min-height: calc(100svh - var(--site-header));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--black);
}

@media (max-width: 1024px) {
  .hero {
    min-height: 80vh;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 20px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroScale 20s infinite alternate linear;
}

@keyframes heroScale {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2;
}

.hero-module {
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(4px, 1vh, 14px) 20px clamp(10px, 1.5vh, 18px);
  box-sizing: border-box;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title-luxury {
  font-family: var(--font-serif);
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title-luxury span {
  display: block;
  font-family: var(--font);
  font-size: clamp(14px, 2vw, 18px);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--yellow);
  font-weight: 500;
  margin-top: 10px;
}

.hero-subtitle-luxury {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(16px, 2vw, 20px);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  color: var(--black);
  padding: 18px 36px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 50px;
  box-shadow: 0 10px 30px var(--yellow-glow);
  transition: var(--transition);
}

.btn-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--yellow-glow);
  background: #fff;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

/* ========== FEATURE BAR (Module 2 — mockup reference) ========== */
.feature-bar {
  background: #111111;
  padding: 0;
  border-top: none;
  border-bottom: none;
}

.feature-bar-inner {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 18px 12px;
  border-right: 1px solid rgba(212, 175, 55, 0.35);
  min-height: 88px;
}

.feature-item:last-child {
  border-right: none;
}

.feature-item i {
  font-size: 22px;
  color: var(--yellow);
  line-height: 1;
}

.feature-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1.15;
}

.feature-label span {
  display: block;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.feature-label span:first-child {
  font-size: 11px;
  letter-spacing: 1.5px;
}

/* Fleet features bar — same label styling as Module 2 */
#fleet-features .feature-label span {
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.25;
  -webkit-text-fill-color: #ffffff;
}

/* ========== PAGE SECTIONS ========== */
body.subpage {
  background: var(--black);
  color: var(--white);
}

.subpage-main {
  padding-top: var(--site-header);
}

.subpage-main .page-section:first-child {
  padding-top: 40px;
}

@media (max-width: 768px) {
  .subpage-main {
    padding-top: 70px; /* Standard mobile header height */
  }
}

.page-section {
  padding: 80px 20px;
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

#home {
  content-visibility: visible;
}

.stats-bar,
.feature-bar,
.trust-marquee {
  content-visibility: auto;
  contain-intrinsic-size: auto 120px;
}

/* Contact — keep full layout (no content-visibility clipping) */
#contact,
#contact .contact-grid,
#contact .contact-form-wrap,
.contact-map {
  content-visibility: visible;
  contain-intrinsic-size: none;
}

#about,
#packages,
#gallery,
#contact {
  background: var(--bg-section);
}

#services,
#fleet,
#reviews {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--yellow-dark);
  margin-bottom: 12px;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0;
}

.page-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--yellow);
  margin: 20px auto 0;
}

/* ========== ABOUT PAGE ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 901px) {
  .about-grid {
    align-items: stretch;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 1px;
  color: var(--black);
}

.about-content h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--yellow);
  margin-top: 12px;
}

.about-content p {
  color: var(--light-grey);
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.8;
}

/* About — gold frame box + image fit inside */
.about-image.luxury-frame {
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
  align-self: center;
}

.about-image-fit {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 2;
  min-height: 280px;
  overflow: hidden;
  background: #f7f3e9;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 4px;
}

.about-image-fit img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.stats-bar {
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
  padding: 48px 20px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.stat-item i {
  font-size: 36px;
  color: var(--yellow);
}

.stat-item span {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

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

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

/* 24/7 Service — premium gold image area */
.service-card--247 .service-card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(160deg, #ffe082 0%, #ffc107 42%, #f7ba09 100%);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.service-card--247 .service-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(229, 168, 0, 0.2) 100%
  );
}

.service-card--247 .service-card-img-wrap img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background-color: #f7ba09;
}

.service-card--247:hover .service-card-img-wrap img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 32px 24px;
  text-align: center;
}

.service-card-body i {
  font-size: 20px;
  color: var(--yellow-dark);
  margin-bottom: 20px;
  background: var(--bg-section);
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.service-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.service-card-body p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

/* ========== TOUR PACKAGES ========== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}

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

.package-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.package-card-body {
  padding: 32px 24px;
  text-align: center;
}

.package-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.package-duration {
  font-size: 13px;
  color: var(--light-grey);
  margin-bottom: 12px;
  display: block;
}

.package-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
}

.btn-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 12px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-yellow:hover {
  background: var(--black);
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.custom-banner {
  position: relative;
  overflow: hidden;
  width: min(100%, 42rem);
  max-width: 42rem;
  margin: 0 auto 3rem;
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1.25rem, 4vw, 2rem);
  border-radius: var(--radius);
  border: 3px solid var(--yellow);
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-soft) 60%, #2d2400 100%);
  box-sizing: border-box;
}

.custom-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.custom-banner-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.custom-banner-text {
  flex: 1 1 auto;
  min-width: 0;
}

.custom-banner-text h3 {
  color: var(--white);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.custom-banner-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.75rem, 1.6vw, 0.8125rem);
  margin-top: 4px;
  line-height: 1.45;
}

.custom-banner .btn-yellow {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .custom-banner {
    width: calc(100% - 2rem);
    max-width: 22rem;
    margin-bottom: 2.5rem;
  }

  .custom-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .custom-banner .btn-yellow {
    width: 100%;
    max-width: 14rem;
    justify-content: center;
  }
}

/* Tablet + laptop — full width, touches both sides */
@media (min-width: 768px) {
  .custom-banner {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: 4px solid var(--yellow);
    border-bottom: 4px solid var(--yellow);
    border-width: 4px 0;
    padding-left: clamp(1.5rem, 4vw, 2.5rem);
    padding-right: clamp(1.5rem, 4vw, 2.5rem);
  }

  .custom-banner-inner {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========== FLEET PAGE ========== */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--black);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.fleet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--yellow);
}

.fleet-card-media {
  width: 100%;
  height: 168px;
  margin-bottom: 16px;
  padding: 8px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 0;
  background: #ffffff;
}

/* Toyota Etios — solid white image area */
.fleet-card-media--etios {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

.fleet-card-media--etios img {
  background: #ffffff;
  background-color: #ffffff;
}

/* Crop studio grey floor/shadow under car (Wagon R, Etios, Innova) */
.fleet-card-media--trim {
  padding: 4px 8px 0;
  background: #ffffff !important;
}

.fleet-card-media--trim img {
  width: 108%;
  height: 118%;
  max-width: none;
  object-fit: cover;
  object-position: center 22%;
  transform: translate(-4%, -2%);
  background: #ffffff;
}

.fleet-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.fleet-card .seats {
  font-size: 12px;
  color: var(--light-grey);
  margin-bottom: 16px;
}

.fleet-card .btn-yellow {
  margin-top: auto;
  width: 100%;
}

.fleet-card.hidden {
  display: none;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.hidden {
  display: none;
}

/* ========== REVIEWS (continuous marquee) ========== */
.reviews-marquee {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.reviews-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee-track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    transform: none !important;
  }

  .reviews-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.review-card {
  flex: 0 0 340px !important;
  width: 340px !important;
  min-width: 340px !important;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 280px !important;
    width: 280px !important;
    min-width: 280px !important;
    padding: 20px;
  }
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--yellow-light);
}

.review-stars {
  color: var(--yellow);
  font-size: 16px;
  margin-bottom: 16px;
}

.review-stars i {
  text-shadow: 0 1px 4px var(--yellow-glow);
}

.review-text {
  font-size: 14px;
  color: var(--light-grey);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  min-height: 100px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author-info h4 {
  font-size: 14px;
  font-weight: 700;
}

.review-author-info span {
  font-size: 12px;
  color: var(--light-grey);
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-info h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  margin-top: 12px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item i {
  font-size: 20px;
  color: var(--black);
  background: var(--yellow);
  margin-top: 4px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--light-grey);
}

.contact-form-wrap {
  position: relative;
}

.contact-form {
  position: relative;
  z-index: 1;
}

/* Legacy plain form fallback (if --luxury class removed) */
.contact-form:not(.contact-form--luxury) {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.contact-form:not(.contact-form--luxury) input,
.contact-form:not(.contact-form--luxury) textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  background: var(--bg-page);
  transition: var(--transition);
}

.contact-form:not(.contact-form--luxury) textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form:not(.contact-form--luxury) input:focus,
.contact-form:not(.contact-form--luxury) textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-glow);
  background: var(--white);
}

.btn-send:not(.btn-send--luxury) {
  width: 100%;
  background: var(--black);
  color: var(--yellow);
  padding: 15px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--black);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-send:not(.btn-send--luxury):hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-map {
  margin-top: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(1rem, 3vw, 1.25rem) 0;
  width: 100%;
}

.contact-map-title {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold, #f7ba09);
  text-align: center;
  margin-bottom: 1rem;
}

.contact-map iframe {
  width: 100%;
  height: clamp(260px, 40vw, 380px);
  min-height: 260px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
  background: #e8e8e8;
}

/* ========== SEO CONTENT SECTION ========== */
.seo-content-section {
  background: var(--white);
  padding: 100px 20px;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}

.seo-item {
  padding: 40px;
  border-radius: var(--radius);
  background: var(--bg-section);
  border: 1px solid transparent;
  transition: var(--transition);
}

.seo-item:hover {
  background: #fff;
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.seo-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
}

.seo-item h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black);
}

.seo-item p {
  font-size: 14px;
  color: var(--light-grey);
  line-height: 1.7;
  margin-bottom: 12px;
}

.seo-item p strong {
  color: var(--red);
}

@media (max-width: 768px) {
  .seo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(180deg, var(--dark-soft) 0%, var(--black) 100%);
  color: var(--white);
  padding: 60px 20px 0;
  border-top: 5px solid var(--yellow);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-about p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 16px 0 20px;
  line-height: 1.7;
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: translateY(-4px) scale(1.05);
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 16px var(--yellow-glow);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--yellow);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--yellow);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

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

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

.logo-img {
  max-width: 160px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-img {
    max-width: 140px;
  }
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom .heart {
  color: var(--red);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .hero-content {
    max-width: 90%;
  }
  .hero-title-luxury {
    font-size: clamp(36px, 6vw, 56px);
  }
}

@media (max-width: 1024px) {
  .packages-grid,
  .fleet-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --site-header: 70px;
  }
  
  .header-inner {
    padding: 10px 20px;
  }
  
  .logo-img {
    width: 130px;
    height: auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border);
    z-index: 1000;
  }
  
  .nav.open {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .hero {
    padding: 120px 20px 60px;
    text-align: center;
    min-height: 100vh;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .btn-whatsapp, .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .page-section {
    padding: 60px 20px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .feature-bar-inner,
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item,
  .stat-item {
    border-right: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }
  
  .feature-item:nth-child(2n),
  .stat-item:nth-child(2n) {
    border-right: none;
  }
  
  .services-grid,
  .packages-grid,
  .fleet-grid,
  .gallery-grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title-luxury {
    font-size: 32px;
  }
  .page-title {
    font-size: 28px;
  }
  .hero-badge {
    font-size: 10px;
    padding: 6px 16px;
  }
  .stats-inner,
  .feature-bar-inner {
    grid-template-columns: 1fr;
  }
  .feature-item,
  .stat-item {
    border-right: none !important;
  }
}

/* ========== FLOATING: Up arrow + WhatsApp (side by side) ========== */
.float-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  pointer-events: none;
}

.float-actions > * {
  pointer-events: auto;
}

.float-wa {
  position: relative;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.float-wa:hover {
  transform: scale(1.08);
  color: #fff;
}

.float-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  pointer-events: none;
}

.back-top {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  background: #111;
  border: 1px solid #d4af37;
  color: #d4af37;
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  min-width: 48px;
  overflow: hidden;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  width: 48px;
  min-width: 48px;
  border-width: 1px;
}

.back-top:hover {
  background: #d4af37;
  color: #111;
}

.back-top .back-top-fallback {
  display: none;
  font-weight: 700;
  font-size: 20px;
}

@media (max-width: 768px) {
  .float-actions {
    bottom: 12px;
    right: 10px;
    gap: 8px;
  }

  .float-wa {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .back-top,
  .back-top.visible {
    width: 40px;
    min-width: 40px;
    height: 40px;
    font-size: 15px;
  }
}

/* ===== Home hero request fix: Airport Pickup & Drop image + laptop text lift ===== */
#home.hero .hero-bg {
  background-image: url('../images/hero.jpg?v=14') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #050505 !important;
}

@media (min-width: 1024px) {
  #home.hero .hero-bg {
    background-position: 58% center !important;
  }

  #home.hero .hero-module {
    padding-top: clamp(0.35rem, 1.5vh, 1rem) !important;
  }

  #home.hero .hero-content {
    margin-top: clamp(0.25rem, 2vh, 1.25rem) !important;
    padding-top: 0 !important;
  }

  #home.hero .hero-title-luxury .hero-line--white {
    font-size: clamp(30px, 4.2vw, 46px) !important;
  }

  #home.hero .hero-title-luxury .hero-line--gold {
    font-size: clamp(42px, 5.8vw, 62px) !important;
  }

  #home.hero .hero-desc-mobile {
    margin-bottom: 8px !important;
  }

  #home.hero .hero-actions-mobile {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }
}



/* ===== Mobile hero background fix: show full Airport Pickup & Drop car, no zoom crop ===== */
@media (max-width: 767px) {
  #home.hero {
    background: #050505 !important;
  }

  #home.hero .hero-bg {
    background-image: url('../images/hero.jpg?v=14') !important;
    background-color: #050505 !important;
    background-repeat: no-repeat !important;
    background-size: 92vw auto !important;
    background-position: center 78px !important;
    transform: none !important;
    animation: none !important;
    opacity: 0.78 !important;
  }

  #home.hero::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.22) 0%,
      rgba(0, 0, 0, 0.38) 34%,
      rgba(0, 0, 0, 0.72) 66%,
      rgba(0, 0, 0, 0.92) 100%
    ) !important;
  }
}

@media (max-width: 430px) {
  #home.hero .hero-bg {
    background-size: 96vw auto !important;
    background-position: center 84px !important;
  }
}

@media (max-width: 360px) {
  #home.hero .hero-bg {
    background-size: 100vw auto !important;
    background-position: center 88px !important;
  }
}


/* ===== Final mobile hero update: full visible car image + 2x2 service cards ===== */
@media (max-width: 767px) {
  #home.hero {
    background: #050505 !important;
  }

  #home.hero .hero-bg {
    background-image: url('../images/hero.jpg?v=15') !important;
    background-color: #050505 !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center 82px !important;
    transform: none !important;
    animation: none !important;
    opacity: 0.98 !important;
    filter: brightness(1.22) contrast(1.16) saturate(1.12) !important;
  }

  #home.hero::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.18) 32%,
      rgba(0, 0, 0, 0.68) 64%,
      rgba(0, 0, 0, 0.94) 100%
    ) !important;
  }

  .hero-services-mobile {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 10px !important;
  }

  .hero-service-item {
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 8px 6px !important;
    border-radius: 12px !important;
    background: rgba(0, 0, 0, 0.46) !important;
    border: 1px solid rgba(247, 186, 9, 0.28) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28) !important;
    backdrop-filter: blur(6px) !important;
  }

  .hero-service-item i {
    font-size: clamp(15px, 4vw, 18px) !important;
    color: #F7BA09 !important;
  }

  .hero-service-item span {
    font-size: clamp(9px, 2.7vw, 11px) !important;
    line-height: 1.18 !important;
    letter-spacing: 0.04em !important;
  }
}

@media (max-width: 430px) {
  #home.hero .hero-bg {
    background-size: 100vw auto !important;
    background-position: center 86px !important;
  }
}

@media (max-width: 360px) {
  #home.hero .hero-bg {
    background-size: 100vw auto !important;
    background-position: center 92px !important;
  }
}


/* Mobile-only customer review card below hero feature card */
.mobile-hero-review-card {
  display: none;
}

@media (max-width: 767px) {
  .hero-services-mobile {
    display: none !important;
  }

  .mobile-hero-review-card {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    width: min(92%, 330px);
    margin: 10px auto 0;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(247, 186, 9, 0.32);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.78), rgba(26, 18, 3, 0.62));
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    text-align: left;
  }

  .mobile-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .mobile-review-stars {
    color: #f7ba09;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1;
    text-shadow: 0 0 12px rgba(247, 186, 9, 0.45);
  }

  .mobile-review-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
  }

  .mobile-hero-review-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1.42;
  }

  .mobile-hero-review-card strong {
    color: #f7ba09;
    font-size: 11px;
    font-weight: 800;
  }
}


/* ===== Final Divya mobile request fix: full top image, 2x2 service cards, 1000+ card ===== */
@media (max-width: 767px) {
  html body #home.hero {
    background: #050505 !important;
    overflow: hidden !important;
  }

  html body #home.hero .hero-bg {
    position: absolute !important;
    inset: 0 0 auto 0 !important;
    width: 100% !important;
    height: clamp(230px, 67vw, 315px) !important;
    background-image: url('../images/hero.jpg?v=18') !important;
    background-size: 100vw auto !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    background-color: #050505 !important;
    opacity: 1 !important;
    filter: brightness(1.36) contrast(1.2) saturate(1.18) !important;
    transform: none !important;
    animation: none !important;
  }

  html body #home.hero::before {
    background: linear-gradient(180deg, rgba(0,0,0,.03) 0%, rgba(0,0,0,.08) 32%, rgba(0,0,0,.78) 58%, #050505 100%) !important;
  }

  html body #home.hero .hero-module {
    padding-top: clamp(245px, 72vw, 335px) !important;
    justify-content: flex-start !important;
  }

  html body .hero-services-mobile {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: calc(100% - 20px) !important;
    max-width: 460px !important;
    margin: 8px auto 10px !important;
  }

  html body .hero-service-item {
    min-width: 0 !important;
    min-height: 46px !important;
    padding: 8px 6px !important;
    border-radius: 13px !important;
    background: rgba(0, 0, 0, 0.58) !important;
    border: 1px solid rgba(247, 186, 9, 0.3) !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.3) !important;
  }

  html body .hero-service-item i {
    font-size: 16px !important;
    color: #f7ba09 !important;
  }

  html body .hero-service-item span {
    font-size: 10px !important;
    line-height: 1.12 !important;
    letter-spacing: .05em !important;
  }

  html body .mobile-hero-review-card {
    display: none !important;
  }

  html body .mobile-happy-customer-card {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: calc(100% - 20px) !important;
    max-width: 460px !important;
    min-height: 58px !important;
    margin: 10px auto 0 !important;
    padding: 12px 16px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(247,186,9,.36) !important;
    background: linear-gradient(135deg, rgba(0,0,0,.82), rgba(32,22,3,.78)) !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.38) !important;
    color: #fff !important;
  }

  html body .mobile-happy-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(247,186,9,.16) !important;
    color: #f7ba09 !important;
    flex: 0 0 38px !important;
  }

  html body .mobile-happy-text {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.05 !important;
  }

  html body .mobile-happy-text strong {
    color: #f7ba09 !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    letter-spacing: .02em !important;
  }

  html body .mobile-happy-text span {
    color: rgba(255,255,255,.9) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
  }
}

@media (max-width: 360px) {
  html body #home.hero .hero-bg {
    height: 240px !important;
  }
  html body #home.hero .hero-module {
    padding-top: 250px !important;
  }
}


/* ===== Divya final fix: remove mobile hero service cards + ensure Book page mobile navbar icon ===== */
@media (max-width: 767px) {
  html body #home.hero .hero-services-mobile {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
}

@media (max-width: 768px) {
  body.book-page .header--book {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    background: rgba(5, 5, 5, 0.96) !important;
    border-bottom: 1px solid rgba(247, 186, 9, 0.18) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }

  body.book-page .header--book .header-inner {
    position: relative !important;
    min-height: 66px !important;
    padding: 10px 16px !important;
  }

  body.book-page .header--book .logo-img--book {
    width: 132px !important;
    height: auto !important;
    max-height: 46px !important;
    object-fit: contain !important;
  }

  body.book-page .header--book .menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(247, 186, 9, 0.42) !important;
    background: rgba(0, 0, 0, 0.56) !important;
    color: #f7ba09 !important;
    font-size: 0 !important;
    line-height: 1 !important;
    z-index: 10001 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28) !important;
  }

  body.book-page .header--book .menu-toggle i {
    display: none !important;
  }

  body.book-page .header--book .menu-toggle .menu-fallback,
  body.book-page .header--book .menu-toggle::before {
    display: block !important;
    color: #f7ba09 !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
  }

  body.book-page .header--book .menu-toggle::before {
    content: "☰" !important;
  }

  body.book-page .header--book .menu-toggle .menu-fallback {
    display: none !important;
  }

  body.book-page .header--book .nav {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 10px !important;
    border-radius: 18px !important;
    background: rgba(7, 7, 7, 0.98) !important;
    border: 1px solid rgba(247, 186, 9, 0.22) !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.52) !important;
    z-index: 10000 !important;
  }

  body.book-page .header--book .nav.open {
    display: flex !important;
  }

  body.book-page .header--book .nav a {
    display: block !important;
    width: 100% !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-align: left !important;
    letter-spacing: 0.04em !important;
  }

  body.book-page .header--book .nav a:hover,
  body.book-page .header--book .nav a.active {
    background: rgba(247, 186, 9, 0.12) !important;
    color: #f7ba09 !important;
  }
}

/* Divya mobile first screen fit v101 */
@media (max-width: 767px) {
      html, body { background: #050505 !important; }
      html body #home.hero {
        height: 100svh !important;
        min-height: 100svh !important;
        max-height: 100svh !important;
        overflow: hidden !important;
        background: #050505 !important;
        padding: 0 !important;
      }

      /* Full car image visible at top; no zoom/crop. Remaining hero area stays black. */
      html body #home.hero .hero-bg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        width: 100% !important;
        height: clamp(210px, 66.8vw, 280px) !important;
        background-image: url('/images/hero.jpg?v=21') !important;
        background-size: 100% auto !important;
        background-position: top center !important;
        background-repeat: no-repeat !important;
        background-color: #050505 !important;
        opacity: 1 !important;
        filter: brightness(1.42) contrast(1.24) saturate(1.20) !important;
        transform: none !important;
        animation: none !important;
      }

      html body #home.hero::before {
        background: linear-gradient(180deg,
          rgba(0,0,0,0.00) 0%,
          rgba(0,0,0,0.06) 34%,
          rgba(0,0,0,0.42) 49%,
          #050505 62%,
          #050505 100%) !important;
      }

      html body #home.hero .hero-module {
        width: 100% !important;
        min-height: 100svh !important;
        height: 100svh !important;
        padding: clamp(212px, 67vw, 282px) 10px 8px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        overflow: hidden !important;
      }

      html body #home.hero .hero-content {
        width: 100% !important;
        max-width: 430px !important;
        margin: 0 auto !important;
        padding: 0 6px !important;
        text-align: center !important;
      }

      /* Hide only extra decorative parts so the requested content fits on first mobile screen. */
      html body #home.hero .hero-badge,
      html body #home.hero .hero-accent-line,
      html body #home.hero .hero-scroll,
      html body #home.hero .hero-orbs,
      html body #home.hero .hero-sparkles,
      html body #home.hero .hero-grain { display: none !important; }

      html body #home.hero .hero-title-luxury {
        margin: 0 auto 5px !important;
        padding: 0 !important;
        max-width: 380px !important;
        font-size: clamp(24px, 7.2vw, 31px) !important;
        line-height: .93 !important;
        letter-spacing: -0.03em !important;
      }
      html body #home.hero .hero-title-luxury .hero-line,
      html body #home.hero .hero-title-luxury span {
        line-height: .93 !important;
      }

      html body #home.hero .hero-desc-mobile {
        display: block !important;
        max-width: 350px !important;
        margin: 5px auto 8px !important;
        font-size: clamp(11.5px, 3.25vw, 13.5px) !important;
        line-height: 1.28 !important;
        color: rgba(255,255,255,.90) !important;
      }

      html body #home.hero .hero-actions-mobile {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto 8px !important;
        padding: 0 !important;
      }
      html body #home.hero .hero-actions-mobile a {
        min-height: 38px !important;
        height: 38px !important;
        padding: 0 8px !important;
        border-radius: 999px !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        white-space: nowrap !important;
      }

      html body #home.hero .hero-features-card {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 6px !important;
        width: calc(100% - 12px) !important;
        max-width: 420px !important;
        margin: 0 auto 7px !important;
        padding: 7px !important;
        border-radius: 18px !important;
        background: rgba(0,0,0,.58) !important;
        border: 1px solid rgba(255,255,255,.10) !important;
        box-shadow: 0 12px 28px rgba(0,0,0,.34) !important;
        backdrop-filter: blur(10px) !important;
      }
      html body #home.hero .hero-feature-col {
        min-height: 58px !important;
        padding: 6px 4px !important;
        border-radius: 13px !important;
        background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025)) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2px !important;
        text-align: center !important;
      }
      html body #home.hero .hero-feature-col i {
        font-size: 13px !important;
        margin: 0 !important;
        color: #f7ba09 !important;
      }
      html body #home.hero .hero-feature-col strong {
        display: block !important;
        font-size: clamp(9px, 2.65vw, 10.8px) !important;
        line-height: 1.05 !important;
        font-weight: 900 !important;
        color: #fff !important;
        margin: 0 !important;
      }
      html body #home.hero .hero-feature-col span {
        display: block !important;
        font-size: clamp(8px, 2.35vw, 9.4px) !important;
        line-height: 1.08 !important;
        color: rgba(255,255,255,.76) !important;
        margin: 0 !important;
      }

      html body #home.hero .mobile-happy-customer-card {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        width: calc(100% - 12px) !important;
        max-width: 420px !important;
        min-height: 42px !important;
        margin: 0 auto !important;
        padding: 7px 12px !important;
        border-radius: 15px !important;
        border: 1px solid rgba(247,186,9,.40) !important;
        background: linear-gradient(135deg, rgba(0,0,0,.82), rgba(30,20,2,.80)) !important;
        box-shadow: 0 12px 28px rgba(0,0,0,.34) !important;
        color: #fff !important;
      }
      html body #home.hero .mobile-happy-icon {
        width: 30px !important;
        height: 30px !important;
        flex: 0 0 30px !important;
        font-size: 12px !important;
      }
      html body #home.hero .mobile-happy-text { line-height: 1 !important; }
      html body #home.hero .mobile-happy-text strong {
        font-size: 21px !important;
        line-height: .95 !important;
      }
      html body #home.hero .mobile-happy-text span {
        font-size: 10px !important;
        line-height: 1 !important;
      }
    }

    @media (max-width: 360px) {
      html body #home.hero .hero-module { padding-top: clamp(200px, 66.8vw, 242px) !important; }
      html body #home.hero .hero-title-luxury { font-size: clamp(22px, 7vw, 25px) !important; }
      html body #home.hero .hero-desc-mobile { font-size: 11px !important; margin-bottom: 6px !important; }
      html body #home.hero .hero-actions-mobile a { height: 35px !important; min-height: 35px !important; font-size: 11px !important; }
      html body #home.hero .hero-feature-col { min-height: 53px !important; padding: 5px 3px !important; }
      html body #home.hero .mobile-happy-customer-card { min-height: 38px !important; }
    }

/* End Divya mobile first screen fit v101 */


/* Divya mobile final fix v105: four hero trust items in one straight row like laptop view */
@media (max-width: 767px) {
  html body #home.hero .hero-features-card {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-flow: column !important;
    gap: 4px !important;
    width: min(100%, 390px) !important;
    max-width: 390px !important;
    margin: 0 0 5px !important;
    padding: 5px !important;
    border-radius: 14px !important;
    background: rgba(0,0,0,.52) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    box-shadow: 0 12px 26px rgba(0,0,0,.32) !important;
    backdrop-filter: blur(8px) !important;
    box-sizing: border-box !important;
  }
  html body #home.hero .hero-feature-col {
    min-width: 0 !important;
    min-height: 50px !important;
    padding: 4px 2px !important;
    border-radius: 10px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.026)) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1px !important;
    text-align: center !important;
    overflow: hidden !important;
  }
  html body #home.hero .hero-feature-col i {
    width: auto !important;
    flex: 0 0 auto !important;
    font-size: 10px !important;
    line-height: 1 !important;
    margin: 0 0 1px !important;
    color: #f7ba09 !important;
    text-align: center !important;
  }
  html body #home.hero .hero-feature-col strong {
    display: block !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(6.5px, 1.78vw, 7.8px) !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
  html body #home.hero .hero-feature-col span {
    display: block !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    color: rgba(255,255,255,.82) !important;
    font-size: clamp(5.5px, 1.48vw, 6.6px) !important;
    line-height: 1.04 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
}
@media (max-width: 360px) {
  html body #home.hero .hero-features-card { gap: 3px !important; padding: 4px !important; width: min(100%, 350px) !important; }
  html body #home.hero .hero-feature-col { min-height: 46px !important; padding: 3px 1px !important; }
  html body #home.hero .hero-feature-col i { font-size: 9px !important; }
  html body #home.hero .hero-feature-col strong { font-size: 6.1px !important; line-height: 1.03 !important; }
  html body #home.hero .hero-feature-col span { font-size: 5.1px !important; line-height: 1.03 !important; }
}

/* ===== Divya final content/image/map/mobile fixes v121 ===== */
.contact-map,
body .contact-map {
  background: transparent !important;
  box-shadow: none !important;
}
.contact-map iframe {
  background: #ffffff !important;
}
@media (max-width: 767px) {
  .custom-banner {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 18px 14px !important;
    box-sizing: border-box !important;
    border-width: 2px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }
  .custom-banner-inner {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center !important;
    gap: 12px !important;
    box-sizing: border-box !important;
  }
  .custom-banner-text,
  .custom-banner-text h3,
  .custom-banner-text p {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }
  .custom-banner .btn-yellow {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
  .contact-map {
    margin-top: 1.25rem !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .contact-map-title {
    margin-bottom: 0.75rem !important;
  }
}


/* Final fix: show only one mobile menu icon */
.menu-toggle {
  position: relative;
}
.menu-toggle i,
.menu-toggle .menu-fallback,
.menu-toggle::before,
body.book-page .header--book .menu-toggle i,
body.book-page .header--book .menu-toggle .menu-fallback,
body.book-page .header--book .menu-toggle::before {
  display: none !important;
  content: none !important;
}
.menu-toggle .menu-icon,
body.book-page .header--book .menu-toggle .menu-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #f7ba09 !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

/* Customer review photos */
.review-author img {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center !important;
  border: 2px solid rgba(247, 186, 9, 0.85) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18) !important;
  background: #111 !important;
}
