/* ================================================================
   VISHAL TOURS & TRAVELS — Premium Stylesheet
   ================================================================ */

/* ── VARIABLES ─────────────────────────────────────────────────── */
:root {
  --maroon:        #8B0000;
  --maroon-dark:   #6B0000;
  --maroon-light:  #B30000;
  --saffron:       #FF9933;
  --saffron-dark:  #E07800;
  --gold:          #D4AF37;
  --gold-light:    #EDD060;
  --gold-dark:     #A88720;
  --cream:         #FFF8F0;
  --cream-dark:    #F5EAD5;
  --dark:          #1A1A1A;
  --dark-2:        #2A2A2A;
  --dark-3:        #3A3A3A;
  --white:         #ffffff;
  --text:          #333333;
  --text-light:    #666666;
  --border:        rgba(212, 175, 55, 0.25);
  --border-light:  rgba(255,255,255,0.15);
  --shadow-xs:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-sm:     0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:     0 16px 56px rgba(0,0,0,0.18);
  --shadow-gold:   0 8px 32px rgba(212,175,55,0.22);
  --shadow-maroon: 0 8px 32px rgba(139,0,0,0.28);
  --transition:    0.3s ease;
  --transition-slow: 0.5s ease;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
}

/* ── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: 0.95rem;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  font-weight: 700;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { color: var(--text-light); line-height: 1.8; }

/* ── CONTAINER ──────────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION SHARED ─────────────────────────────────────────────── */
.section { padding: 88px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.7;
}
.section-label--light { color: var(--gold-light); }
.section-label--light::before,
.section-label--light::after { background: var(--gold-light); }

.section-title { margin-bottom: 14px; }
.section-title span { color: var(--maroon); }
.section-title--light { color: var(--white); }
.section-title--light span { color: var(--gold); }
.section-subtitle { color: var(--text-light); max-width: 560px; margin: 0 auto; }
.section-subtitle--light { color: rgba(255,255,255,0.75); }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-maroon);
}
.btn-primary:hover {
  background: var(--maroon-dark);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(139,0,0,0.38);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1DB954;
  border-color: #1DB954;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.header-wa {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* ── PRELOADER ───────────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.preloader-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--maroon);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.preloader-bar {
  width: 160px;
  height: 3px;
  background: var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
}
.preloader-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--maroon), var(--saffron));
  border-radius: 4px;
  animation: preloaderFill 1.8s ease forwards;
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.07); opacity: 0.85; }
}
@keyframes preloaderFill {
  0% { width: 0; }
  80% { width: 90%; }
  100% { width: 100%; }
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 13px 20px 13px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 900;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.whatsapp-float i { font-size: 1.4rem; }
.whatsapp-float:hover {
  background: #1DB954;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  background: #25D366;
  opacity: 0.35;
  animation: waPulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.35; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ── BACK TO TOP ─────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--maroon);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-maroon);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  font-size: 0.9rem;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--maroon-dark);
  transform: translateY(-3px);
}

/* ── HEADER ──────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 12px 0;
  transition: all var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(26, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
  padding: 2px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-tagline {
  font-size: 0.68rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  font-weight: 400;
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 7px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-link.active { color: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 10;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Gradient fallback when image is not present */
  background-color: #1A0505;
  background-image: url('../HERO_result.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(45, 10, 10, 0.92) 0%,
    rgba(139, 0, 0, 0.68) 30%,
    rgba(196, 80, 0, 0.45) 60%,
    rgba(26, 26, 26, 0.95) 100%
  );
  z-index: 1;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}
.hero-container {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero-content {
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.hero-badge-om {
  font-size: 1.1rem;
  color: var(--saffron);
  font-weight: 700;
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.75;
}
.hero-subtitle strong { color: var(--gold-light); font-weight: 600; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 18px 24px;
  width: fit-content;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.hero-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-align: center;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-down:hover { color: var(--gold-light); }
.hero-scroll-down i { font-size: 1rem; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── BOOKING SECTION ─────────────────────────────────────────────── */
.booking-section {
  padding: 0 0 70px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(135deg, rgba(139,0,0,0.03), rgba(212,175,55,0.05));
  pointer-events: none;
}
.booking-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}
.booking-icon {
  font-size: 2rem;
  color: var(--maroon);
  margin-top: 2px;
  flex-shrink: 0;
}
.booking-title {
  font-size: 1.7rem;
  color: var(--maroon);
  margin-bottom: 4px;
}
.booking-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
}
.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.booking-form .form-group { margin-bottom: 0; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-group label i { color: var(--maroon); font-size: 0.85em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #E8DDD0;
  border-radius: var(--radius);
  font-size: 0.93rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--cream);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B0000' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* ── ABOUT SECTION ───────────────────────────────────────────────── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-visuals {
  position: relative;
  min-height: 480px;
}
.about-main-img {
  width: 85%;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--cream-dark);
}
.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #8B0000, #FF9933);
  min-height: 420px;
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--gold);
}
.about-badge-float i { color: var(--gold); font-size: 1.6rem; }
.about-badge-float strong { display: block; font-size: 0.9rem; color: var(--dark); }
.about-badge-float span { font-size: 0.78rem; color: var(--text-light); }
.about-office-img {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 52%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}
.about-office-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
}
.about-office-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(139,0,0,0.85), transparent);
  color: var(--white);
  font-size: 0.8rem;
  padding: 20px 12px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.about-content { padding-left: 10px; }
.about-text {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.97rem;
  line-height: 1.85;
}
.about-text em { color: var(--maroon); font-style: italic; font-weight: 500; }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  transition: all var(--transition);
}
.trust-card:hover {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.trust-card i {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ── SERVICES SECTION ───────────────────────────────────────────── */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
  transform: translateY(-6px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}
.service-icon--maroon  { background: linear-gradient(135deg, var(--maroon), #C00020); }
.service-icon--saffron { background: linear-gradient(135deg, #E07000, var(--saffron)); }
.service-icon--blue    { background: linear-gradient(135deg, #0D47A1, #1976D2); }
.service-icon--green   { background: linear-gradient(135deg, #1B5E20, #388E3C); }
.service-icon--purple  { background: linear-gradient(135deg, #4A148C, #7B1FA2); }
.service-icon--gold    { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--dark); }
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-link {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}
.service-link:hover { color: var(--saffron); gap: 10px; }
.service-link i { font-size: 0.8em; }

/* ── FLEET SECTION ───────────────────────────────────────────────── */
.fleet-section { background: var(--dark); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.fleet-card--featured {
  border: 2.5px solid var(--gold);
  box-shadow: 0 4px 20px rgba(212,175,55,0.25);
}
.fleet-card--featured:hover {
  box-shadow: 0 16px 48px rgba(212,175,55,0.4);
}
.fleet-ribbon {
  position: absolute;
  top: 18px;
  left: -30px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 36px 5px 40px;
  transform: rotate(-40deg);
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.fleet-img-area {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fleet-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
}
.fleet-img.loaded { opacity: 1; }
.fleet-icon-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: rgba(255,255,255,0.25);
  z-index: 1;
}
.fleet-sedan   { background: linear-gradient(135deg, #1A1A2E, #16213E); }
.fleet-crysta  { background: linear-gradient(135deg, #8B0000, #D4AF37); }
.fleet-tempo   { background: linear-gradient(135deg, #1B5E20, #388E3C); }
.fleet-urbania { background: linear-gradient(135deg, #0D47A1, #1976D2); }
.fleet-minicoach { background: linear-gradient(135deg, #4A148C, #7B1FA2); }
.fleet-bus     { background: linear-gradient(135deg, #2A2A2A, #555555); }
.fleet-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 3;
}
.fleet-badge--gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--dark);
}
.fleet-body {
  padding: 20px 22px 24px;
}
.fleet-body h3 {
  font-size: 1.12rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.fleet-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}
.fleet-pills span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.77rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}
.fleet-pills span i { color: var(--maroon); font-size: 0.8em; }
.fleet-best {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.fleet-best strong { color: var(--maroon); }

/* ── TEAM SECTION ────────────────────────────────────────────────── */
.team-section { background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.team-text {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.85;
}
.team-values {
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-value-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: all var(--transition);
}
.team-value-row:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}
.team-value-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.team-value-row strong {
  display: block;
  font-size: 0.93rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.team-value-row span {
  font-size: 0.83rem;
  color: var(--text-light);
}
.team-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.team-mini-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--transition);
}
.team-mini-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}
.team-mini-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(139,0,0,0.1), rgba(212,175,55,0.15));
  border: 1.5px solid var(--border);
  color: var(--maroon);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.team-mini-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.team-mini-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── NETWORK SECTION ─────────────────────────────────────────────── */
.network-section {
  background: linear-gradient(160deg, #6B0000 0%, #8B0000 40%, #1A0A0A 100%);
  position: relative;
  overflow: hidden;
}
.network-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.03'%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");
  pointer-events: none;
}
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.network-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
  transition: all var(--transition);
}
.network-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(212,175,55,0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.network-card--featured {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.55);
}
.network-icon {
  width: 60px;
  height: 60px;
  background: rgba(212,175,55,0.18);
  border: 1.5px solid rgba(212,175,55,0.4);
  color: var(--gold-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.network-card h3 {
  color: var(--gold-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.network-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.network-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.network-list { display: flex; flex-direction: column; gap: 9px; }
.network-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.network-list li i { color: var(--saffron); font-size: 0.75rem; flex-shrink: 0; }

/* ── PACKAGES SECTION ────────────────────────────────────────────── */
.packages-section { background: var(--white); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.package-img {
  height: 180px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
}
.package-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.55));
}
.package-card:hover .package-img { transform: none; }
.package-card:hover .package-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  z-index: 1;
  transition: all 0.4s;
}
/* Gradient shows as fallback; inline style URL overrides when image is present */
.pkg-varanasi  { background: linear-gradient(135deg, #8B0000, #FF9933); }
.pkg-kashi     { background: linear-gradient(135deg, #D4AF37, #8B0000); }
.pkg-ayodhya   { background: linear-gradient(135deg, #FF7F00, #CC3300); }
.pkg-prayagraj { background: linear-gradient(135deg, #003366, #00AACC); }
.pkg-buddhist  { background: linear-gradient(135deg, #3A6B35, #8BC34A); }
.pkg-bodhgaya  { background: linear-gradient(135deg, #8B4513, #D4AF37); }
.pkg-chitrakoot{ background: linear-gradient(135deg, #556B2F, #8B0000); }
.pkg-sarnath   { background: linear-gradient(135deg, #CC8400, #8B4513); }
.package-duration {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}
.package-body {
  padding: 18px 18px 20px;
}
.package-body h3 {
  font-size: 1.02rem;
  margin-bottom: 7px;
  color: var(--dark);
}
.package-body p {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ── WHY CHOOSE US ───────────────────────────────────────────────── */
.why-section { background: var(--cream); padding-bottom: 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 70px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--white);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-maroon);
}
.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 28px rgba(139,0,0,0.38);
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--dark); }
.why-card p  { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }

/* Stats Bar */
.stats-bar {
  background: var(--dark);
  padding: 50px 0;
  border-top: 3px solid var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--saffron);
  position: absolute;
  right: calc(50% - 46px);
  top: 3px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── TESTIMONIALS ────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--cream);
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238B0000' fill-opacity='0.025'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  border-left: 4px solid var(--gold);
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.testimonial-card:hover {
  border-color: var(--gold);
  border-left-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.testimonial-quote {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: var(--cream-dark);
  line-height: 1;
  font-weight: 800;
  pointer-events: none;
  user-select: none;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testimonial-stars i { color: var(--gold); font-size: 0.85rem; }
.testimonial-card p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--cream-dark);
  padding-top: 16px;
}
.author-avatar i {
  font-size: 2.4rem;
  color: var(--maroon);
  opacity: 0.5;
}
.testimonial-author strong { display: block; font-size: 0.92rem; color: var(--dark); }
.testimonial-author span  { font-size: 0.78rem; color: var(--text-light); }

/* ── CONTACT SECTION ─────────────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: all var(--transition);
}
.contact-detail-card:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.contact-detail-card > i {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-detail-card .fab.fa-whatsapp {
  background: linear-gradient(135deg, #1DA851, #25D366);
}
.contact-detail-card strong { display: block; font-size: 0.83rem; color: var(--text-light); margin-bottom: 3px; font-weight: 600; }
.contact-detail-card a,
.contact-detail-card p,
.contact-detail-card span {
  font-size: 0.93rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.5;
}
.contact-detail-card a:hover { color: var(--maroon); }
.map-embed {
  margin-top: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrapper {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.form-section-title {
  font-size: 1.5rem;
  color: var(--maroon);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer { background: var(--dark); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer-brand {}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(255,255,255,0.1);
  padding: 2px;
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 22px;
}
.footer-brand p em { color: var(--gold-light); }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.1);
}
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a i { font-size: 0.68rem; color: var(--maroon-light); transition: color var(--transition); }
.footer-links a:hover i { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-item > i {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-wa-btn { font-size: 0.85rem; padding: 10px 20px; }
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
  margin: 0 24px;
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.38);
}
.footer-heart { color: var(--saffron); margin: 0 2px; }

/* ── SCROLL ANIMATIONS ───────────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.18s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.26s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.38s; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */

/* Tablet – 1024px */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid       { grid-template-columns: repeat(2, 1fr); }
  .packages-grid    { grid-template-columns: repeat(2, 1fr); }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid       { gap: 40px; }
  .team-grid        { gap: 40px; }
  .contact-grid     { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-stats       { flex-wrap: wrap; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}

/* Tablet Small – 768px */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .booking-section { padding: 0 0 50px; }
  .booking-card { padding: 28px 24px; }
  .booking-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .booking-header { flex-direction: column; gap: 10px; }

  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(320px, 85vw);
    background: rgba(26, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    padding: 90px 30px 40px;
    transition: right 0.4s ease;
    z-index: 750;
    border-left: 1px solid rgba(212,175,55,0.2);
  }
  .nav.open { right: 0; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 6px; }
  .nav-link { font-size: 1.05rem; padding: 12px 0; color: rgba(255,255,255,0.85); }
  .nav-link::after { display: none; }
  .nav-link.active { color: var(--gold-light); }

  .header-wa .whatsapp-float-label { display: none; }
  .logo-tagline { display: none; }

  .about-grid  { grid-template-columns: 1fr; gap: 30px; }
  .about-visuals { min-height: 300px; }
  .about-main-img { width: 100%; height: 280px; }
  .about-office-img { display: none; }
  .about-content { padding-left: 0; }

  .team-grid    { grid-template-columns: 1fr; gap: 36px; }
  .team-cards-grid { grid-template-columns: 1fr 1fr; }

  .network-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-form-wrapper { padding: 28px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero-stats { display: none; }
  .hero-cta   { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid     { grid-template-columns: 1fr; }
  .fleet-grid        { grid-template-columns: 1fr 1fr; }
  .why-grid          { grid-template-columns: 1fr 1fr; }
}

/* Mobile – 480px */
@media (max-width: 480px) {
  h2 { font-size: 1.5rem; }
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
  .fleet-grid    { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .trust-grid    { grid-template-columns: 1fr; }
  .team-cards-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none !important; }
  .hero-title { font-size: 2rem; }
  .booking-card { padding: 22px 16px; }
  .whatsapp-float-label { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .whatsapp-float::before { border-radius: 50%; }
}
