/* =========================================================
   Rajasthan Tour Packages — Fresh Design System
   Color Palette: Deep Teal + Saffron Orange
   Fonts: Outfit (body) + Lora (headings)
   ========================================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Lora:ital,wght@0,600;0,700;1,500;1,600&display=swap');

/* --- Root Tokens --- */
:root {
  --primary:      #0d4f4f;
  --primary-light:#1a6b6b;
  --primary-dark: #08312f;
  --accent:       #e85d04;
  --accent-light: #f48c06;
  --accent-pale:  #fff3e0;
  --success:      #0ea47a;
  --cream:        #f9f5ef;
  --light-grey:   #f4f7f6;
  --text-dark:    #0d1f1f;
  --text-muted:   #5f7a79;
  --border:       rgba(13,79,79,0.1);
  --shadow-sm:    0 2px 16px rgba(13,79,79,0.08);
  --shadow-md:    0 8px 40px rgba(13,79,79,0.14);
  --shadow-lg:    0 24px 70px rgba(13,79,79,0.18);
  --radius:       20px;
  --radius-sm:    12px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --font-body:    'Outfit', sans-serif;
  --font-heading: 'Lora', serif;
}

/* --- Base Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.5px;
  display: none;
}
.announcement-bar span { margin: 0 20px; }
.announcement-bar i { margin-right: 6px; color: var(--accent-light); }
@media (min-width: 768px) { .announcement-bar { display: block; } }

/* ─── NAVBAR ─── */
.navbar-main {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0;
  z-index: 1060;
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow var(--transition);
}
.navbar-main .navbar-brand img { height: 48px; }
.navbar-main .nav-link {
  color: var(--primary) !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 1.5rem 1rem !important;
  position: relative;
  transition: color var(--transition);
}
.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar-main .nav-link:hover::after { transform: scaleX(1); }
.navbar-main .nav-link:hover { color: var(--accent) !important; }
.nav-cta-btn {
  background: var(--accent);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.5rem 1.5rem !important;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(232,93,4,0.35);
  display: inline-block;
  text-decoration: none;
}
.nav-cta-btn:hover {
  background: var(--accent-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(232,93,4,0.45);
}
.navbar-main .navbar-toggler { border: none; color: var(--primary); }

/* ─── LIVE FOMO NOTIFICATION ─── */
.live-notif {
  position: fixed;
  bottom: 95px;
  left: 22px;
  z-index: 9999;
  background: #fff;
  border-left: 4px solid var(--success);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.16);
  padding: 13px 20px 13px 16px;
  display: none;
  align-items: center;
  gap: 12px;
  max-width: 310px;
  font-size: 0.82rem;
}
.live-notif .notif-pulse {
  width: 11px; height: 11px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseGreen 1.6s infinite;
}
.live-notif strong { display: block; font-size: 0.84rem; color: var(--primary); font-weight: 700; }
.live-notif span { color: var(--text-muted); }
.live-notif.show { display: flex; animation: slideUp 0.45s ease both; }
.live-notif.hide { animation: slideDown 0.4s ease forwards; }
@keyframes pulseGreen {
  0%,100% { box-shadow: 0 0 0 3px rgba(14,164,122,0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(14,164,122,0.08); }
}
@keyframes slideUp   { from{ opacity:0; transform:translateY(30px); } to{ opacity:1; transform:translateY(0); } }
@keyframes slideDown { from{ opacity:1; transform:translateY(0); } to{ opacity:0; transform:translateY(30px); } }

/* ─── HERO SECTION (Cinematic Full-Width) ─── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full-viewport background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/banner.webp') center / cover no-repeat;
  transform: scale(1.06);
  animation: heroBgZoom 24s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes heroBgZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14); }
}

/* Gradient overlay — darker on left, fades right */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(8, 49, 47, 0.93) 0%,
    rgba(13, 79, 79, 0.82) 40%,
    rgba(13, 60, 60, 0.65) 65%,
    rgba(6, 18, 18, 0.78) 100%
  );
}

/* Inner two-column grid */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 64px;
  align-items: center;
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 70px;
}

/* ── LEFT: Copy ── */
.hero-copy { display: flex; flex-direction: column; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
}
.hero-eyebrow i { color: var(--accent-light); }

.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero-h1 em { font-style: italic; color: var(--accent-light); }

.hero-subtext {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.76);
  max-width: 480px;
  margin-bottom: 2.2rem;
  line-height: 1.78;
}

/* Stats row – glassmorphism bar */
.hero-stats-row {
  display: inline-flex;
  gap: 0;
  margin-bottom: 2.4rem;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.hero-stat {
  text-align: center;
  padding: 16px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .hs-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading);
  line-height: 1;
}
.hero-stat .hs-lbl {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.4px;
}

/* CTA buttons */
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 1.8rem; }

.btn-primary-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 34px;
  font-weight: 700;
  font-size: 0.96rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(232, 93, 4, 0.5);
}
.btn-primary-cta:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(232, 93, 4, 0.55);
  color: #fff;
}

.btn-outline-hero {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Trust chips */
.hero-trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}
.hero-trust-chip i { color: #4ade80; font-size: 0.84rem; }

/* ── RIGHT: Form wrap + card ── */
.hero-form-wrap { display: flex; flex-direction: column; }

.hero-form-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-form-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 24px 28px 20px;
  text-align: center;
  color: #fff;
}
.hero-form-header .form-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.hero-form-header .form-sub { font-size: 0.79rem; color: rgba(255, 255, 255, 0.7); }
.hero-form-body { padding: 22px 26px 26px; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 390px; gap: 44px; }
}
@media (max-width: 900px) {
  .hero-section { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 52px;
    gap: 44px;
  }
  .hero-h1 { font-size: clamp(1.9rem, 6vw, 2.8rem); }
}
@media (max-width: 500px) {
  .hero-inner { padding-top: 100px; }
  .hero-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero-stat:nth-child(2) { border-right: none; }
}




/* Form inputs */
.form-input-new {
  border: 1.5px solid #dce6e5;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.89rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
}
.form-input-new:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,79,79,0.12);
}
.form-select-new {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235f7a79' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-form-submit {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-weight: 800;
  font-size: 0.96rem;
  font-family: var(--font-body);
  width: 100%;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,93,4,0.45); }
.form-note { text-align: center; font-size: 0.74rem; color: var(--text-muted); margin-top: 10px; }
.form-note i { color: var(--success); margin-right: 4px; }

/* ─── HERO RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-content-panel { padding: 120px 40px 60px 44px; }
  .hero-content-panel::before { width: 70px; }
}
@media (max-width: 991px) {
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 400px; }
  .hero-content-panel { padding: 60px 32px 56px; }
  .hero-content-panel::before { display: none; }
  .hero-visual-badges { bottom: 20px; left: 20px; }
}
@media (max-width: 767px) {
  .hero-content-panel { padding: 52px 20px 44px; }
  .hero-stats-row { gap: 8px; }
  .hero-stat { padding: 12px 14px; min-width: 80px; }
}

/* ─── SECTION COMMONS ─── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(232,93,4,0.2);
}
.section-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
}
.section-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.divider-line {
  display: block;
  width: 48px;
  height: 3.5px;
  background: var(--accent);
  border-radius: 2px;
  margin: 14px auto 0;
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── NUMBERS STRIP ─── */
.numbers-strip {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 52px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.num-item {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.num-item:last-child { border-right: none; }
.num-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}
.num-label {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  font-weight: 500;
}
.num-item .accent-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent-light);
  border-radius: 50%;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .num-item:nth-child(2) { border-right: none; }
}

/* ─── PLATFORM RATINGS ─── */
.ratings-section { padding: 80px 0; background: var(--cream); }
.platform-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}
.platform-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.platform-card .plat-score {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.platform-card .plat-out { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.platform-card .plat-name { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; font-weight: 500; }
.stars-saffron { color: var(--accent-light); font-size: 0.9rem; letter-spacing: 1.5px; }

/* ─── REVIEWS ─── */
.review-card-new {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px 24px;
  position: relative;
  transition: all var(--transition);
  height: 100%;
}
.review-card-new::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
}
.review-card-new:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.reviewer-circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: var(--primary);
  flex-shrink: 0;
}
.reviewer-name-new { font-weight: 700; font-size: 0.95rem; color: var(--primary-dark); }
.reviewer-from { font-size: 0.77rem; color: var(--text-muted); }
.review-body-text { font-size: 0.87rem; color: #3d5050; line-height: 1.75; font-style: italic; margin-top: 12px; }
.verified-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(14,164,122,0.1);
  padding: 4px 10px;
  border-radius: 50px;
  margin-top: 14px;
}

/* ─── PACKAGES SECTION ─── */
.packages-section { padding: 90px 0; background: var(--light-grey); }
.pkg-filter-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.pkg-filter-btn {
  border: 2px solid var(--border);
  background: #fff;
  color: var(--primary);
  border-radius: 50px;
  padding: 9px 26px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
}
.pkg-filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.pkg-filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.pkg-card-new {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1.5px solid transparent;
}
.pkg-card-new:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.pkg-img-wrap { position: relative; overflow: hidden; }
.pkg-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.65s ease;
  display: block;
}
.pkg-card-new:hover .pkg-img-wrap img { transform: scale(1.07); }
.pkg-duration-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.71rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.pkg-hot-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.71rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}
.pkg-body-new { padding: 22px 24px 20px; flex: 1; display: flex; flex-direction: column; }
.pkg-title-new {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 5px;
}
.pkg-route-new {
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.pkg-route-new i { color: var(--accent); margin-right: 4px; }
.pkg-stars-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.pkg-stars-row .rating-num { font-weight: 700; font-size: 0.9rem; color: var(--primary); }
.pkg-stars-row .review-ct { font-size: 0.77rem; color: var(--text-muted); }
.pkg-inclusions {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pkg-inclusions li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.83rem;
  color: #3d5050;
}
.pkg-inclusions li i { color: var(--accent); font-size: 0.76rem; margin-top: 3px; flex-shrink: 0; }
.btn-pkg-new {
  display: block;
  text-align: center;
  background: var(--accent-pale);
  color: var(--accent);
  border: 2px solid rgba(232,93,4,0.3);
  border-radius: 50px;
  padding: 11px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--transition);
  margin-top: auto;
}
.btn-pkg-new:hover, .btn-pkg-new.featured { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ─── DESTINATIONS ─── */
.destinations-section { padding: 90px 0; background: #fff; }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}
.dest-grid .dest-item:first-child { grid-column: 1; grid-row: 1 / 3; }
.dest-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.dest-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.dest-item:hover img { transform: scale(1.07); }
.dest-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,49,47,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: all var(--transition);
}
.dest-city-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.dest-city-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 6px;
}
.dest-item:first-child .dest-city-name { font-size: 1.8rem; }
.dest-highlights-new {
  list-style: none;
  padding: 0; margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}
.dest-highlights-new li { padding: 2px 0; }
.dest-highlights-new li::before { content: '✦ '; color: var(--accent-light); }
.dest-item:hover .dest-highlights-new { max-height: 150px; opacity: 1; margin-top: 8px; }
@media (max-width: 991px) {
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-grid .dest-item:first-child { grid-column: 1 / 3; grid-row: auto; }
}
@media (max-width: 575px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-grid .dest-item:first-child { grid-column: 1; }
}

/* ─── WHY CHOOSE US ─── */
.why-section { padding: 90px 0; background: var(--cream); }
.why-card-new {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}
.why-card-new:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.why-icon-new {
  width: 68px; height: 68px;
  background: rgba(13,79,79,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.55rem;
  color: var(--primary);
  transition: all var(--transition);
}
.why-card-new:hover .why-icon-new { background: var(--primary); color: var(--accent-light); }
.why-card-new h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.why-card-new p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--primary);
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/banner.webp') center/cover no-repeat;
  opacity: 0.06;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 350px; height: 350px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.08;
}
.cta-banner .cta-content { position: relative; z-index: 1; }
.cta-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.cta-h2 span { color: var(--accent-light); font-style: italic; }
.cta-subtext {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 2.4rem;
  line-height: 1.75;
}
.btn-cta-white {
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 15px 38px;
  font-weight: 800;
  font-size: 0.98rem;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 6px 30px rgba(0,0,0,0.25);
}
.btn-cta-white:hover { background: var(--accent-pale); color: var(--accent); transform: translateY(-2px); }
.btn-cta-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-cta-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.cta-perks { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.cta-perk { font-size: 0.82rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 7px; }
.cta-perk i { color: var(--accent-light); }

/* ─── FAQ ─── */
.faq-section { padding: 80px 0; background: #fff; }
.faq-item-new {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item-new.open { border-color: var(--primary); }
.faq-item-new.open .faq-q { color: var(--primary); background: rgba(13,79,79,0.04); }
.faq-q {
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 22px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition), background var(--transition);
}
.faq-icon-new { flex-shrink: 0; color: var(--accent); font-size: 0.82rem; transition: transform var(--transition); }
.faq-item-new.open .faq-icon-new { transform: rotate(180deg); }
.faq-ans { display: none; padding: 0 22px 18px; font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; }
.faq-item-new.open .faq-ans { display: block; }

/* ─── FOOTER ─── */
.site-footer-new {
  background: #060f0f;
  color: rgba(255,255,255,0.6);
  padding: 70px 0 30px;
}
.footer-brand img { height: 46px; }
.footer-desc { font-size: 0.84rem; line-height: 1.75; margin: 16px 0 22px; }
.gstin-block {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 16px;
}
.gstin-block small { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1.5px; display: block; color: rgba(255,255,255,0.35); }
.gstin-block span { font-size: 0.88rem; font-weight: 700; color: var(--accent-light); letter-spacing: 1px; }
.footer-head { font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-links-new { list-style: none; padding: 0; margin: 0; }
.footer-links-new li { margin-bottom: 9px; }
.footer-links-new a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color var(--transition); }
.footer-links-new a:hover { color: var(--accent-light); }
.footer-contact-new li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  align-items: flex-start;
}
.footer-contact-new li i { color: var(--accent-light); margin-top: 2px; flex-shrink: 0; }
.footer-contact-new li a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--transition); }
.footer-contact-new li a:hover { color: var(--accent-light); }
.footer-social-new { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-new a {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social-new a:hover { border-color: var(--accent-light); color: var(--accent-light); }
.footer-cert-logos { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.footer-cert-logos img { height: 38px; filter: brightness(1) invert(0.2); transition: filter var(--transition); }
.footer-cert-logos img:hover { filter: brightness(1) invert(0); }
.footer-bottom-new {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom-new { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }
}
.footer-bottom-new p { font-size: 0.79rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom-new a { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 0.79rem; }
.footer-bottom-new a:hover { color: var(--accent-light); }

/* ─── MOBILE STICKY BAR ─── */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary-dark);
  padding: 12px 16px;
  display: none;
  z-index: 1050;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  gap: 10px;
}
.sticky-mobile-bar a {
  flex: 1;
  text-align: center;
  border-radius: 50px;
  padding: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  font-family: var(--font-body);
}
.smb-quote { background: var(--accent); color: #fff; }
.smb-phone { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.18); }
@media (max-width: 767px) {
  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: 68px; }
}
