/* =============================================
   SHREE AAVAD TOURIST - MAIN STYLESHEET
   Premium Taxi & Travel Website
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --yellow: #F5C518;
  --yellow-dark: #d4a80a;
  --yellow-light: #fff8e1;
  --yellow-glow: rgba(245, 197, 24, 0.3);
  --dark: #0f0f0f;
  --dark-2: #1a1a1a;
  --dark-3: #2a2a2a;
  --gray: #5a5a5a;
  --gray-light: #9a9a9a;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --border: #e8e8e8;

  --font-display: 'Poppins', sans-serif;
  --font-accent: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-yellow: 0 8px 32px rgba(245, 197, 24, 0.4);

  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

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

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

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

ul { list-style: none; }

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

.section-padding {
  padding: 100px 0;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--yellow-dark);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--yellow);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.section-title span {
  color: var(--yellow-dark);
  position: relative;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.8;
  margin-top: 16px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 197, 24, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-whatsapp:hover {
  background: #20b957;
  transform: translateY(-2px);
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  overflow: visible;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.58) 0%,
    rgba(0,0,0,0.28) 100%
  );
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 10px 35px rgba(0,0,0,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.header.scrolled {
  background: rgba(0,0,0,0.78);
}

.header.scrolled .nav-logo-text {
  color: var(--white);
}

.header.scrolled .nav-link {
  color: rgba(255,255,255,0.92);
}

.header.scrolled .nav-link:hover {
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  overflow: visible;
}

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

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* PNG brand logo: no yellow tile (yellow box is only for FA taxi icon on inner pages) */
.nav-logo-icon:has(.logo-img) {
  width: auto;
  height: auto;
  min-width: 0;
  background: transparent;
  border-radius: 0;
  font-size: inherit;
  line-height: 0;
  align-self: center;
  padding: 4px 0;
  box-sizing: content-box;
}

.nav-logo-icon .logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(280px, 72vw);
  object-fit: contain;
}

/* Header PNG: padding + slightly conservative height avoids top/bottom clipping on all viewports */
.header:has(.nav-logo-icon .logo-img) .nav {
  padding-top: 14px;
  padding-bottom: 14px;
}

.header .nav-logo-icon .logo-img {
  height: 64px;
  width: auto;
  max-width: min(340px, 82vw);
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
}

.footer-brand .nav-logo-icon .logo-img {
  height: 64px;
  max-width: min(340px, 92vw);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.22));
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: var(--transition);
}

.nav-logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.90);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--white);
}

.nav-link:focus-visible,
.nav-call-btn:focus-visible {
  outline: 2px solid rgba(255,255,255,0.85);
  outline-offset: 4px;
  border-radius: 12px;
}

.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow-yellow);
  transition: var(--transition);
  position: relative;
  z-index: 1002;
  pointer-events: auto;
}

.nav-call-btn:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hamburger:active {
  transform: scale(0.96);
}

.hamburger:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.hamburger.open {
  background: rgba(245, 197, 24, 0.16);
  border-color: rgba(245, 197, 24, 0.55);
  box-shadow:
    0 0 0 1px rgba(245, 197, 24, 0.35),
    0 8px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hamburger span {
  width: 22px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    background 0.25s ease,
    width 0.25s ease;
  display: block;
  transform-origin: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.header.scrolled .hamburger span {
  background: var(--white);
}

.hamburger.open span {
  background: var(--yellow);
  box-shadow: none;
}

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--dark);
  padding: 80px 32px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: -10px 0 60px rgba(0,0,0,0.5);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu .nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu .nav-link:last-child {
  border-bottom: none;
}

/* Mobile menu: keep active state bold (no yellow accent) */
.mobile-menu .nav-link.active {
  font-weight: 900;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-bottom-color: rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 16px 14px;
  margin: 2px 0;
}

.mobile-menu .btn.btn-primary {
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: none;
}

.mobile-menu .btn.btn-primary:hover {
  background: #111;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
}

.hero .container {
  max-width: 1280px;
}

.hero-text {
  max-width: min(960px, 100%);
  padding-top: 80px;
  padding-bottom: 24px;
}

.hero-text-inner {
  position: relative;
}

.hero-premium-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  animation: fadeInUp 0.75s ease both;
}

.hero-premium-rule {
  flex: 1;
  max-width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.85), transparent);
  opacity: 0.9;
}

.hero-heritage {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-wrap: balance;
}

.hero-heritage strong {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-lead {
  margin: 0 0 16px;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  max-width: min(720px, 100%);
  animation: fadeInUp 0.75s ease 0.08s both;
}

.hero-trust-row {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeInUp 0.75s ease 0.16s both;
}

.hero-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-trust-row li i {
  color: var(--yellow);
  font-size: 0.8rem;
  opacity: 0.95;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5.2vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-title span {
  color: var(--yellow);
  display: block;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.62;
  margin-bottom: 30px;
  max-width: min(640px, 100%);
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 42px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--yellow);
  width: 28px;
  border-radius: 4px;
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 997;
}

.floating-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-call {
  background: var(--yellow);
  color: var(--dark);
}

.floating-whatsapp {
  background: #25D366;
  color: var(--white);
}

/* Pulse animation */
.floating-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: pulse 2s ease infinite;
}

.floating-call::before { border-color: var(--yellow); }
.floating-whatsapp::before { border-color: #25D366; }

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* =============================================
   ABOUT PREVIEW
   ============================================= */
.about-preview {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-yellow);
}

.about-badge-num {
  font-family: var(--font-accent);
  font-size: 3rem;
  color: var(--dark);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-stats-banner {
  background: var(--yellow);
  padding: 60px 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  text-align: center;
}

.about-stats-grid .about-stat-num {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  color: var(--dark);
  line-height: 1;
}

.about-stats-grid .about-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  color: var(--dark-2);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
}

.about-feature-icon {
  width: 36px; height: 36px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.about-feature-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.about-feature-text span {
  font-size: 0.78rem;
  color: var(--gray);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  background: var(--off-white);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-desc {
  margin: 16px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--yellow);
  transition: height 0.4s ease;
}

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

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 64px; height: 64px;
  background: var(--yellow-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--yellow);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* =============================================
   SPECIAL PACKAGES (HOME) — same cards as .services-section
   ============================================= */
.special-packages-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.special-packages-section .services-header {
  margin-bottom: 60px;
}

.special-packages-section .services-header .section-desc {
  margin: 16px auto 0;
}

.special-packages-section .services-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .special-packages-section .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Route row under icon (inside .service-card) */
.package-route-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  margin: -6px 0 6px;
  line-height: 1.3;
}

.package-route-line i {
  color: var(--yellow-dark);
  font-size: 0.8rem;
}

.service-card .package-points {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .package-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

.service-card .package-points li i {
  color: var(--yellow-dark);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 0.72rem;
}

.service-card .package-speciality {
  margin-top: 8px;
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.service-card .package-speciality strong {
  color: var(--dark);
  font-weight: 600;
}

/* Services page — hotel & resort add-on (prominent block) */
.services-hotel-extra {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--yellow-light) 40%, rgba(255, 248, 225, 0.65) 100%);
  border-top: 1px solid rgba(245, 197, 24, 0.35);
  border-bottom: 1px solid rgba(245, 197, 24, 0.25);
}

.services-hotel-extra-card {
  display: grid;
  grid-template-columns: minmax(200px, 240px) 1fr;
  gap: 36px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(245, 197, 24, 0.45);
  border-left: 6px solid var(--yellow);
  position: relative;
  overflow: hidden;
}

.services-hotel-extra-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 45%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(245, 197, 24, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.services-hotel-extra-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  z-index: 1;
}

.services-hotel-extra-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  background: var(--yellow-light);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 24, 0.5);
}

.services-hotel-icon-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--yellow-light) 0%, rgba(245, 197, 24, 0.35) 100%);
  border: 3px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--dark);
  box-shadow: var(--shadow-yellow);
}

.services-hotel-icon-float {
  position: absolute;
  bottom: 6px;
  right: 8px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--dark);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: var(--shadow-md);
}

.services-hotel-extra-body {
  position: relative;
  z-index: 1;
}

.services-hotel-extra-title {
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  margin-bottom: 10px;
}

.services-hotel-extra-lead {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--gray);
  margin: 0 0 16px;
  max-width: 36em;
}

.services-hotel-extra-lead strong {
  color: var(--dark);
}

.services-hotel-extra-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-hotel-extra-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--dark);
}

.services-hotel-extra-list i {
  color: var(--yellow-dark);
  margin-top: 3px;
  flex-shrink: 0;
  width: 1.2em;
  text-align: center;
}

.services-hotel-extra-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.services-hotel-extra-btn {
  padding: 12px 22px;
  font-size: 0.9rem;
}

/* =============================================
   FLEET PREVIEW
   ============================================= */
.fleet-section {
  background: var(--white);
}

.fleet-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

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

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

.fleet-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--off-white);
}

.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.08);
}

.fleet-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fleet-body {
  padding: 24px;
}

.fleet-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.fleet-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.fleet-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray);
}

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

.fleet-price {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  color: var(--dark);
}

.fleet-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 400;
}

/* =============================================
   POPULAR ROUTES
   ============================================= */
.routes-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.routes-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 70%);
}

.routes-header {
  text-align: center;
  margin-bottom: 60px;
}

.routes-header .section-title {
  color: var(--white);
}

.routes-header .section-tag {
  color: var(--yellow);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.route-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.route-card:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.route-card:hover .route-from,
.route-card:hover .route-to,
.route-card:hover .route-price,
.route-card:hover .route-arrow {
  color: var(--dark);
}

.route-card:hover .route-distance {
  color: rgba(0,0,0,0.6);
}

.route-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.route-from {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.route-arrow {
  font-size: 1.2rem;
  color: var(--yellow);
  margin: 8px 0;
  display: block;
  transition: var(--transition);
}

/* Icons inside dark "Popular Routes" section */
.routes-section .route-icon i {
  color: var(--white);
}

.routes-section .route-card:hover .route-icon i {
  color: var(--dark);
}

.route-to {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.route-distance {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  transition: var(--transition);
}

.route-price {
  display: inline-block;
  background: rgba(245, 197, 24, 0.15);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
  transition: var(--transition);
}

.route-card:hover .route-price {
  background: rgba(0,0,0,0.15);
  color: var(--dark);
}

/* =============================================
   GALLERY PREVIEW
   ============================================= */
.gallery-section {
  background: var(--off-white);
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  height: 300px;
}

.gallery-item:nth-child(n+2) {
  height: 200px;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(0,0,0,0.5);
}

.gallery-item-overlay span {
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay span {
  opacity: 1;
  transform: scale(1);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--yellow) 0%, #e8b800 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  font-size: 300px;
  opacity: 0.06;
  bottom: -60px;
  right: -40px;
  line-height: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.65);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.testimonial-quote {
  font-size: 60px;
  color: var(--yellow);
  font-family: var(--font-display);
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-display);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial-city {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-top: 2px;
}

.testimonial-stars {
  position: absolute;
  top: 28px; right: 28px;
  color: var(--yellow);
  font-size: 0.85rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .nav-logo-text {
  color: var(--white);
  font-size: 1.3rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin: 20px 0 28px;
  max-width: 280px;
}

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

.footer-social {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

/* Keep footer social icons visible on dark background */
.footer-social i {
  color: var(--white);
}

.footer-social:hover i {
  color: var(--dark);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-links a::before {
  content: '→';
  font-size: 12px;
}

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

.footer-contact-icon {
  width: 36px; height: 36px;
  background: rgba(245, 197, 24, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* Phone & location icons inside dark footer */
.footer-contact-icon i {
  color: var(--white);
}

.footer-contact-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-contact-text strong {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-seo-text {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-seo-text p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.8;
  text-align: center;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  height: 360px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5C518' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero::after {
  content: '';
  position: absolute;
  left: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-title span {
  color: var(--yellow);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: var(--yellow);
}

.breadcrumb span { opacity: 0.4; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px var(--yellow-glow);
}

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

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--yellow);
  background: var(--yellow-light);
}

.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-light);
  font-weight: 600;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 2px;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-md);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-inner {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: -50px; right: 0;
  background: var(--yellow);
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--white);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }

/* =============================================
   VEHICLE BOOKING PAGE
   ============================================= */
.book-page-hero {
  position: relative;
  min-height: clamp(420px, 62vh, 640px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 0 0;
  overflow: hidden;
  background: var(--dark);
}

.book-page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.55) 45%, rgba(15,15,15,0.25) 100%),
    var(--book-hero-img);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.book-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 400px);
  gap: 40px;
  align-items: end;
  padding-bottom: 40px;
}

.book-page-hero-copy {
  color: var(--white);
  padding-bottom: 8px;
}

.book-page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 12px 0 16px;
}

.book-page-title span {
  color: var(--yellow);
}

.book-page-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 24px;
}

.book-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.book-page-hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.book-page-hero-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.book-page-hero-card-body {
  padding: 20px 22px 24px;
}

.book-page-meta-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--gray);
}

.book-page-meta-list i {
  color: var(--yellow-dark);
  margin-right: 8px;
  width: 1em;
}

.book-page-price {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.book-page-price-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
}

.book-page-price-sub {
  font-size: 0.82rem;
  color: var(--gray-light);
  margin-top: 4px;
  display: block;
}

.book-breadcrumb-wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
}

.book-breadcrumb {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

.book-breadcrumb a {
  color: rgba(255,255,255,0.9);
}

.book-breadcrumb a:hover {
  color: var(--yellow);
}

.book-page-form-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 28%);
}

.book-page-grid {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 48px;
  align-items: start;
}

.book-page-aside-stack {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.book-aside-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
}

.book-pricing-card {
  border: 2px solid rgba(245, 197, 24, 0.55);
  border-radius: var(--radius-lg);
  padding: 20px 22px 22px;
  box-shadow: var(--shadow-sm);
  background: linear-gradient(165deg, #fffef7 0%, var(--white) 45%, var(--yellow-light) 100%);
}

.book-pricing-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245, 197, 24, 0.35);
  color: var(--dark);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.book-pricing-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 6px;
}

.book-pricing-card-vehicle {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
  line-height: 1.3;
}

.book-pricing-card-amount {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin: 0 0 6px;
}

.book-pricing-card-sub {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0 0 10px;
}

.book-pricing-card-note {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--dark);
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(245, 197, 24, 0.18);
  border-left: 3px solid var(--yellow-dark);
}

.book-pricing-card-note strong {
  color: var(--dark);
}

.book-pricing-card-footnote {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 197, 24, 0.35);
  font-style: italic;
}

.book-aside-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.book-aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}

.book-aside-list i {
  color: var(--yellow);
  margin-right: 10px;
  width: 1.1em;
}

.book-aside-cta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.book-aside-cta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.book-aside-phone {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--yellow);
}

.book-aside-phone:hover {
  color: var(--white);
}

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

.book-req { color: var(--yellow-dark); }
.book-opt { font-weight: 400; color: var(--gray-light); font-size: 0.88em; }

/* =============================================
   FLASH TOAST (Django messages — booking, contact, etc.)
   ============================================= */
.site-flash-toast {
  position: fixed;
  top: 92px;
  left: 50%;
  z-index: 10050;
  width: min(540px, calc(100vw - 28px));
  transform: translateX(-50%) translateY(-16px);
  opacity: 0;
  animation: siteFlashToastIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
  pointer-events: none;
}

.site-flash-toast-panel {
  position: relative;
  pointer-events: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 18px 44px 18px 20px;
}

.site-flash-toast--tone-success .site-flash-toast-panel,
.site-flash-toast--tone-debug .site-flash-toast-panel {
  border-left: 5px solid var(--yellow);
}

.site-flash-toast--tone-error .site-flash-toast-panel {
  border-left: 5px solid #c94a4a;
}

.site-flash-toast--tone-warning .site-flash-toast-panel {
  border-left: 5px solid #c98a2a;
}

.site-flash-toast--tone-info .site-flash-toast-panel {
  border-left: 5px solid var(--gray-light);
}

.site-flash-toast-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--gray);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.site-flash-toast-close:hover {
  background: var(--yellow-light);
  color: var(--dark);
}

.site-flash-toast-body {
  margin: 0;
  padding: 0;
}

.site-flash-toast-line {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--dark);
}

.site-flash-toast-line + .site-flash-toast-line {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.site-flash-toast-line--error {
  color: #7a2222;
}

.site-flash-toast--out {
  animation: siteFlashToastOut 0.38s ease forwards;
}

@keyframes siteFlashToastIn {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes siteFlashToastOut {
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px);
  }
}

.book-submit-row {
  margin-top: 8px;
}

.book-submit-btn {
  padding: 16px 32px;
  font-size: 1rem;
  width: 100%;
  max-width: 360px;
}

.book-submit-hint {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--gray-light);
  max-width: 520px;
  line-height: 1.6;
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (max-width: 992px) {
  .book-page-hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 24px;
  }

  .book-page-hero-card {
    max-width: 420px;
  }

  .book-page-grid {
    grid-template-columns: 1fr;
  }

  .book-page-aside-stack {
    position: relative;
    top: 0;
  }
}

@media (max-width: 600px) {
  .book-form-grid-2 {
    grid-template-columns: 1fr;
  }

  .book-page-hero {
    min-height: auto;
    padding-top: 100px;
  }
}
