:root {
  --saffron: #E8721C;
  --saffron-light: #F5A05A;
  --saffron-pale: #FEF3E8;
  --forest: #2D5A3D;
  --forest-light: #4A8C62;
  --forest-pale: #EBF5EF;
  --cream: #FDFAF4;
  --warm-white: #FFFEF9;
  --ink: #1C1A17;
  --ink-60: rgba(28,26,23,0.6);
  --ink-30: rgba(28,26,23,0.3);
  --ink-10: rgba(28,26,23,0.08);
  --gold: #C9922A;
  --gold-pale: #FDF4E1;
  --border: rgba(28,26,23,0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--saffron-light); border-radius: 3px; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,250,244,0.92); /* Slightly lowered opacity for better blur effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  border-bottom: 1px solid var(--border);
  padding: 0 5%; /* Percentage-based padding is safer for wide screens */
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  box-sizing: border-box; /* Ensures padding doesn't break the 100% width */
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; /* Bumped up slightly for better hierarchy */
  font-weight: 700;
  color: var(--saffron);
  letter-spacing: -0.02em; /* Tighter tracking for elegant serifs */
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
}

.nav-links {
  display: flex; align-items: center; gap: 0.5rem; /* Increased gap slightly */
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem; /* Standard nav size */
  font-weight: 500;
  color: var(--ink-60); 
  text-decoration: none;
  padding: 0.5rem 0.9rem; 
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother curve */
}

.nav-links a:hover {
  color: var(--saffron);
  background: var(--saffron-pale);
}

/* Active state for when the link is clicked */
.nav-links a:active {
  transform: scale(0.96);
}

.nav-cta {
  background: var(--saffron); 
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 50px; 
  font-weight: 600; 
  font-size: 0.85rem;
  cursor: pointer; 
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2); /* Subtle glow */
}

.nav-cta:hover { 
  background: #d0620f; 
  transform: translateY(-2px); 
  box-shadow: 0 6px 15px rgba(230, 126, 34, 0.3);
}

/* 1. Position the parent item */
.nav-links li.dropdown {
  position: relative;
}

/* 2. Style the Dropdown Menu Container */
.dropdown-content {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%; /* Sits right below the nav bar */
  left: 0;
  min-width: 200px;
  background: rgba(253, 250, 244, 0.98); /* Matching your nav background */
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 0.3rem; /* Small gap from the nav bar */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  list-style: none;
  z-index: 1100;
  
  /* Animation preparation */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* 3. Show the menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* 4. Style the links inside the dropdown */
.dropdown-content li a {
  display: block;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-60);
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap; /* Prevents text wrapping */
}

/* 5. Hover state for dropdown links */
.dropdown-content li a:hover {
  color: var(--saffron);
  background: var(--saffron-pale);
  transform: translateX(4px); /* Subtle slide effect on hover */
}

/* Optional: Add a small arrow to the parent link */
.dropbtn::after {
  content: '▾';
  margin-left: 5px;
  font-size: 0.8rem;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.2s;
}

.dropdown:hover .dropbtn::after {
  transform: rotate(180deg);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 75%;
  background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 3rem 5rem 4rem;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--saffron-pale); border: 1px solid rgba(232,114,28,0.25);
  color: var(--saffron); padding: 0.35rem 0.9rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-eyebrow::before { content: "🕉"; font-size: 0.85rem; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 700; line-height: 1.0;
  color: var(--ink); margin-bottom: 0.5rem;
}
.hero h1 em {
  font-style: italic; color: var(--saffron);
  display: block;
}

.hero-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-sub {
  font-size: 1rem; color: var(--ink-60);
  max-width: 440px; line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-price-badge {
  display: inline-flex; align-items: baseline; gap: 0.4rem;
  background: var(--forest-pale); border: 1px solid rgba(45,90,61,0.2);
  border-radius: 12px; padding: 0.6rem 1.2rem; margin-bottom: 2rem;
  width: fit-content;
}
.hero-price-badge .label { font-size: 0.78rem; color: var(--forest); font-weight: 500; }
.hero-price-badge .old { font-size: 0.9rem; color: var(--ink-30); text-decoration: line-through; }
.hero-price-badge .price { font-size: 1.5rem; font-weight: 700; color: var(--forest); font-family: 'Cormorant Garamond', serif; }
.hero-price-badge .nights { font-size: 0.78rem; color: var(--ink-60); }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary {
  background: var(--saffron); color: #fff;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 20px rgba(232,114,28,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,114,28,0.45); }
.btn-secondary {
  background: transparent; color: var(--ink);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-weight: 500; font-size: 0.9rem;
  border: 1.5px solid var(--border);
  cursor: pointer; font-family: 'Outfit', sans-serif;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--saffron); color: var(--saffron); }
.hero-stats { display: flex; gap: 2rem; }
.hero-stat-item { }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--saffron);
  line-height: 1;
}
.hero-stat-label { font-size: 0.80rem; color: var(--ink-60); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; }

/* Hero right */
.hero-right {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(210,225,242,0.3) 0%, rgba(185,208,230,0.4) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.hero-dhams-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 700px;
  width: 100%;
}
.dham-panel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  display: flex; 
  flex-direction: column; 
  justify-content: flex-end;
  cursor: pointer; 
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 320px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.dham-panel:hover { 
  transform: translateY(-10px); 
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.dham-panel::after {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 60%);
  z-index: 2;
}
.dham-panel::before {
  content: ''; 
  position: absolute; 
  inset: 0;
  box-shadow: inset 0 0 50px 25px rgba(45,70,110,0.4);
  border-radius: 20px; 
  z-index: 3; 
  pointer-events: none;
}
.dham-bg {
  position: absolute; 
  inset: 0;
  background-size: cover; 
  background-position: center;
  transition: transform 0.5s ease;
  opacity: 0.9;
}
.dham-panel:hover .dham-bg { transform: scale(1.08); }

.dp-yamuno   .dham-bg { background-image: url('./images/yamunotriu.jpg'); }
.dp-gangotri .dham-bg { background-image: url('./images/gangotriu.webp'); }
.dp-kedarnath .dham-bg{ background-image: url('./images/kedarnathu.webp'); }
.dp-badrinath .dham-bg{ background-image: url('./images/badrinathu100.webp'); }

.dham-panel-content {
  position: relative; 
  z-index: 4;
  padding: 1.8rem 1.5rem;
}
.dham-num { 
  font-size: 0.75rem; 
  font-weight: 600; 
  letter-spacing: 2.5px; 
  text-transform: uppercase; 
  color: rgba(255,255,255,0.7); 
  margin-bottom: 0.5rem; 
}
.dham-name { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.8rem; 
  font-weight: 700; 
  color: #fff; 
  line-height: 1.1; 
  margin-bottom: 0.3rem;
}
.dham-alt { 
  font-size: 0.85rem; 
  color: rgba(255,255,255,0.8); 
  margin-top: 0.3rem; 
}

/* ══════════════════════════════
   SECTION HELPERS
══════════════════════════════ */
.section { padding: 5.5rem 4rem; }
.section-alt { background: #fff; }
.section-warm { background: linear-gradient(135deg, #fff8ee, #fef5e4); }
.section-forest { background: linear-gradient(135deg, #f0f7f2, #e6f4ec); }

.section-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 0.6rem;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--ink);
  line-height: 1.1; margin-bottom: 0.8rem;
}
.section-heading em { font-style: italic; color: var(--saffron); }
.section-body { font-size: 0.95rem; color: var(--ink-60); max-width: 600px; line-height: 1.8; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-body { margin: 0 auto; }

/* ══════════════════════════════
   ABOUT / INTRO
══════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; max-width: 1200px; margin: 0 auto;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  min-height: 580px;
}
.about-left {
  position: relative; overflow: hidden;
  /* background-image: url('./images/gangotri01.jpg'); */
  background-size: cover; background-position: center;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.about-left::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.75) 0%, rgba(235,240,245,0.85) 100%);
}
.about-left-content {
  position: relative; z-index: 2;
  padding: 2.5rem;
}
.about-left-content .section-eyebrow { color: var(--saffron); }
.about-left-content .section-heading { color: var(--ink); }
.about-left-content .section-heading em { color: var(--saffron); }
.about-left-content p { font-size: 0.92rem; color: var(--ink-60); line-height: 1.85; margin-bottom: 1rem; }
.about-left-content p:last-child { margin-bottom: 0; }
.highlight-quote {
  border-left: 3px solid var(--saffron); padding: 1rem 1.3rem;
  background: rgba(232,114,28,0.08);
  backdrop-filter: blur(4px);
  border-radius: 0 12px 12px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic; color: var(--ink);
  line-height: 1.6; margin: 1.2rem 0;
}
.about-right {
  background: #fff;
  display: flex; flex-direction: column;
}
.altitude-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; flex: 1;
}
.alt-card {
  padding: 2.2rem 1.8rem;
  transition: filter 0.2s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 145px;
  border: none; border-radius: 0;
}
.alt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
}
.alt-card > * {
  position: relative;
  z-index: 1;
}
.alt-card:hover { filter: brightness(1.05); }
.alt-card.c1 { background: linear-gradient(135deg, #dce9f5, #b5d4f4); border-right: 1px solid rgba(255,255,255,0.4); border-bottom: 1px solid rgba(255,255,255,0.4); }
.alt-card.c1::before {
  background-image: url('./images/yamunotriw1.webp');
}
.alt-card.c2 { background: linear-gradient(135deg, #e8e6fc, #cbc8f5); border-bottom: 1px solid rgba(255,255,255,0.4); }
.alt-card.c2::before {
  background-image: url('./images/gangotriuw.webp');
}
.alt-card.c3 { background: linear-gradient(135deg, #d4eddd, #9fe1cb); border-right: 1px solid rgba(255,255,255,0.4); }
.alt-card.c3::before {
  background-image: url('./images/kedarnathuw.webp');
}
.alt-card.c4 { background: linear-gradient(135deg, #fdf1d8, #f9c86e); }
.alt-card.c4::before {
  background-image: url('./images/badrinathuw.webp');
}
.alt-card-num {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; opacity: 0.5; margin-bottom: 0.5rem;
  color: var(--ink);
}
.alt-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--ink);
  margin-bottom: 0.2rem; line-height: 1;
}
.alt-card-deity { font-size: 0.78rem; color: var(--ink-60); margin-bottom: 0.8rem; }
.alt-card-alt {
  font-size: 2rem; font-weight: 700; color: var(--ink);
  font-family: 'Cormorant Garamond', serif; line-height: 1;
}
.alt-card-unit { font-size: 0.72rem; color: var(--ink-60); display: block; margin-top: 0.2rem; }


/* ══════════════════════════════
   PACKAGES
══════════════════════════════ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.package-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(232,114,28,0.15);
}
.package-card.featured {
  border: 2px solid var(--saffron);
}
.package-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--saffron);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
.package-header {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.package-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.package-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.package-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.package-duration {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.package-price {
  text-align: center;
  padding: 2rem;
  background: var(--saffron-pale);
}
.package-price-label {
  font-size: 0.8rem;
  color: var(--ink-60);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.package-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--saffron);
}
.package-price-person {
  font-size: 0.85rem;
  color: var(--ink-60);
}
.package-highlights {
  padding: 2rem;
}
.package-highlights h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.package-highlights ul {
  list-style: none;
}
.package-highlights li {
  font-size: 0.88rem;
  color: var(--ink-60);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.package-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--saffron);
  font-weight: 700;
}
.package-cta {
  padding: 0 2rem 2rem;
}
.package-btn {
  display: block;
  width: 100%;
  background: var(--saffron);
  color: #fff;
  text-align: center;
  padding: 0.9rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.package-btn:hover {
  background: #d0620f;
  transform: translateY(-2px);
}

/* ══════════════════════════════
  Masonry-style gallery 
══════════════════════════════ */

.gallery {
  margin: 0 auto;
  align-items: center;
}
.gallery-item {
  width: 250px;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
  .gallery-item { width: 200px; }
}
@media (max-width: 768px) {
  .gallery-item { width: 150px; }
}
@media (max-width: 480px) {
  .gallery-item { width: 100%; }
  .gallery { padding: 0 1rem; }
}



/* ══════════════════════════════
   ITINERARY / ROAD
══════════════════════════════ */
.itinerary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1200px; margin: 0 auto; border-radius: 24px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.12); }
.itinerary-left {
  position: relative; overflow: hidden;
  min-height: 580px;
  /* background-image: url('./images/kedarnath/kedarnath.jpg'); */
  background-size: cover; background-position: center;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.itinerary-left::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(173,216,230,0.6), rgba(255,255,255,0));
}
.itinerary-left-content {
  position: relative; z-index: 2;
  padding: 2.5rem;
}
.itinerary-left-content .section-eyebrow { color: var(--saffron); font-size: 1rem; }
.itinerary-left-content .section-heading { color: #000; margin-bottom: 1rem; }
.itinerary-left-content .section-heading em { color: var(--saffron-light); }
.itinerary-left-content p { font-size: 0.92rem; line-height: 1.8; margin-bottom: 0.8rem; color: #fff; }
.info-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.info-chip {
  background: rgba(173,216,230,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px; padding: 0.5rem 0.9rem;
  font-size: 0.82rem; 
  display: flex; align-items: center; gap: 0.4rem;
}
.info-chip strong { color: var(--saffron-light); font-weight: 600; }
.itinerary-right {
  background: #fff; padding: 2.5rem;
  overflow-y: auto; max-height: 700px;
}
.days-list { list-style: none; }
.day-item {
  display: flex; gap: 1rem; padding: 0.8rem 0;
  border-bottom: 1px solid var(--ink-10);
  align-items: flex-start;
}
.day-item:last-child { border-bottom: none; }
.day-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--saffron-pale); color: var(--saffron);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
}
.day-content { flex: 1; }
.day-route { font-weight: 600; font-size: 0.88rem; color: var(--ink); margin-bottom: 0.15rem; }
.day-detail { font-size: 0.78rem; color: var(--ink-60); }
.day-badge {
  font-size: 0.65rem; font-weight: 600; padding: 0.15rem 0.5rem;
  border-radius: 50px; background: var(--forest-pale); color: var(--forest);
  text-transform: uppercase; letter-spacing: 0.5px; flex-shrink: 0;
}
.day-badge.trek { background: #fef9c3; color: #854d0e; }

/* ══════════════════════════════
   WINTER DHAM
══════════════════════════════ */
.winter-slider-wrap {
  position: relative; max-width: 1200px; margin: 0 auto;
  padding: 0 3rem;
}
.winter-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.4s ease;
}
.winter-card {
  flex: 0 0 calc(40% - 0.75rem);
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.winter-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.12); }

.winter-card-img {
  height: 280px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  /* background-image: url('./images/gangotri01.jpg'); */
  background-size: cover; 
  background-position: center;
  object-fit: cover;           /* ADD THIS */
  overflow: hidden;
}

.winter-card-content { padding: 0.8rem 1rem; }
.winter-card-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--saffron); margin-bottom: 0.5rem; }
.winter-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.winter-arrow { font-size: 1.2rem; color: var(--ink-30); margin: 0 0.5rem; }
.winter-winter { font-size: 0.9rem; color: var(--ink-60); }
.w-sl-prev, .w-sl-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: background 0.2s, border-color 0.2s;
}
.w-sl-prev:hover, .w-sl-next:hover { background: var(--saffron-pale); border-color: var(--saffron); }
.w-sl-prev { left: 0; }
.w-sl-next { right: 0; }
.w-sl-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 1.5rem;
}
.w-sl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: background 0.2s;
}
.w-sl-dot.active { background: var(--saffron); }

/* ══════════════════════════════
   GUIDE LINKS
══════════════════════════════ */
.guide-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1rem; 
  max-width: 1200px; 
  margin: 0 auto; 
}
.guide-card {
  background: #fff; 
  border: 1px solid var(--border); 
  border-radius: 14px;
  padding: 1.2rem 1.3rem; 
  text-decoration: none; 
  color: var(--ink);
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.guide-card:hover { 
  border-color: var(--saffron); 
  box-shadow: 0 4px 20px rgba(232,114,28,0.1); 
  transform: translateX(3px); 
}
.guide-card-left { 
  display: flex; 
  align-items: center; 
  gap: 0.8rem; 
}
.guide-icon { 
  width: 36px; 
  height: 36px; 
  border-radius: 10px; 
  background: var(--saffron-pale); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1rem; 
  flex-shrink: 0; 
}
.guide-text-title { 
  font-weight: 600; 
  font-size: 0.88rem; 
  color: var(--ink); 
  margin-bottom: 0.1rem; 
}
.guide-text-sub { 
  font-size: 0.75rem; 
  color: var(--ink-60); 
}
.guide-arrow { 
  color: var(--saffron); 
  font-size: 1rem; 
}

/* ══════════════════════════════
   EXCURSIONS
══════════════════════════════ */
.exc-wrap { 
  max-width: 1100px; 
  margin: 0 auto; 
}
.exc-group-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; 
  font-weight: 700; 
  color: var(--ink);
  margin-bottom: 1.2rem;
  display: flex; 
  align-items: center; 
  gap: 0.8rem;
}
.exc-group-label::after {
  content: ''; 
  flex: 1; 
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
}
.exc-grid {
  display: grid; 
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem; 
  margin-bottom: 0.5rem;
}
.exc-card {
  background: #fff; 
  border: 1px solid var(--border);
  border-radius: 18px; 
  padding: 1.4rem 0.8rem;
  text-align: center; 
  text-decoration: none; 
  color: var(--ink);
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 0.7rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.exc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(232,114,28,0.15);
  border-color: var(--saffron);
}
.exc-card-featured { 
  border-color: rgba(232,114,28,0.3); 
  background: var(--saffron-pale); 
}
.exc-icon {
  width: 54px; 
  height: 54px; 
  border-radius: 16px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.exc-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.exc-sub {
  font-size: 0.7rem;
  color: var(--ink-60);
  line-height: 1.4;
}

/* ══════════════════════════════
   REVIEWS
══════════════════════════════ */
.reviews-section { position: relative; overflow: hidden; }
.slider-wrap {
  position: relative; max-width: 1200px; margin: 0 auto;
  padding: 0 3rem;
}
.reviews-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.4s ease;
  overflow: visible;
}
.rev-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
  position: relative;
  min-height: 350px;
}
.rev-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 16px 50px rgba(0,0,0,0.12); 
}

.rev-photo {
  position: absolute;
  inset: 0;
  bottom: 90px;
  background-size: 96%; 
  background-position: center;
  background-repeat: no-repeat;
  /* border-radius: 20px 20px 0 0; */
}

.rev-initials {
  position: absolute;
  inset: 0;
  bottom: 90px;
  /* background: linear-gradient(135deg, var(--saffron), var(--saffron-light)); */
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; 
  font-weight: 700; 
  color: #fff;
  border-radius: 20px 20px 0 0;
}

.rev-content { 
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.5rem; 
  background: #fff;
  z-index: 10;
  border-radius: 0 0 20px 20px;
}
.rev-stars { display: none; }
.rev-text { display: none; }
.rev-author {
  font-weight: 600; color: var(--ink);
  font-size: 1rem; margin-bottom: 0.3rem;
}
.rev-trip {
  font-size: 0.85rem; color: var(--ink-60);
}

.sl-prev, .sl-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  font-size: 1.5rem; color: var(--ink);
  transition: background 0.2s, border-color 0.2s;
}
.sl-prev:hover, .sl-next:hover { 
  background: var(--saffron-pale); 
  border-color: var(--saffron); 
}
.sl-prev { left: -20px; }
.sl-next { right: -20px; }

.sl-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 2rem;
}
.sl-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.sl-dot.active { 
  background: var(--saffron); 
  width: 30px; 
  border-radius: 5px;
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  padding: 1.2rem 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 0.95rem; color: var(--ink);
  list-style: none; user-select: none;
}
.faq-q:hover { color: var(--saffron); }
.faq-q::after { content: "+"; font-size: 1.3rem; color: var(--saffron); flex-shrink: 0; transition: transform 0.3s; font-weight: 300; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 0.9rem; color: #555; line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.2rem; }

/* ══════════════════════════════
   FORM
══════════════════════════════ */
.form-wrap { max-width: 700px; margin: 0 auto; }
.form-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 24px; padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 1.2rem; }
.form-sub { font-size: 0.88rem; color: var(--ink-60); margin-bottom: 1.2rem; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }
.form-row.full { grid-template-columns: 1fr; }
.form-field { position: relative; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.6rem 0.9rem;
  border: 1px solid var(--border); border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #FAFAF8;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232,114,28,0.1);
}
.form-field input.error, .form-field select.error, .form-field textarea.error {
  border-color: #dc2626;
  background: #fef2f2;
}
.form-field textarea { min-height: 80px; resize: vertical; }
.field-err { 
  display: none;
  color: #dc2626; 
  font-size: 0.7rem; 
  margin-top: 0.25rem; 
  font-weight: 500;
}
.field-err.show {
  display: block;
}
.math-captcha-row { display: flex; align-items: center; gap: 0.8rem; }
.math-question { font-weight: 600; font-size: 0.85rem; }
.spam-notice {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--saffron-pale); border: 1px solid rgba(232,114,28,0.2);
  padding: 0.6rem 0.8rem; border-radius: 10px;
  font-size: 0.75rem; color: var(--ink-60);
  margin-bottom: 1rem;
}
.spam-icon { font-size: 1rem; }
.form-submit {
  width: 100%; padding: 0.8rem;
  background: var(--saffron); color: #fff;
  border: none; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: #d0620f; }
.form-submit:disabled {
  background: var(--ink-30);
  cursor: not-allowed;
}
.form-note { font-size: 0.72rem; color: var(--ink-60); line-height: 1.5; margin-top: 0.8rem; padding: 0.7rem 0.9rem; background: var(--cream); border-radius: 10px; border: 1px solid var(--ink-10); }
.form-response { padding: 0.8rem; border-radius: 10px; margin-bottom: 0.8rem; font-size: 0.85rem; }
.form-response.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-response.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #e8f4f0;
  color: #3a5a50;
  padding: 4rem 4rem 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-brand { }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--saffron); display: block; margin-bottom: 0.8rem; }
.footer-tagline { font-size: 0.85rem; line-height: 1.7; max-width: 260px; color: #4a7a6e; }
.footer-col h5 { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #2a4a40; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.83rem; color: #5a8a7e; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--saffron); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(45,90,80,0.18); text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: #4a7a6e; margin-bottom: 0.5rem; }
.footer-disclaimer { font-size: 0.75rem; color: #7aaa9e; max-width: 500px; line-height: 1.5; margin: 0 auto; }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity:0; }
.delay-2 { animation-delay: 0.2s; opacity:0; }
.delay-3 { animation-delay: 0.35s; opacity:0; }
.delay-4 { animation-delay: 0.5s; opacity:0; }
.delay-5 { animation-delay: 0.65s; opacity:0; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 60vh; padding: 3rem 1.5rem; }
  .hero-dhams-grid { max-width: 550px; gap: 1.5rem; }
  .dham-panel { min-height: 260px; }
  .about-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .itinerary-grid { grid-template-columns: 1fr; }
  .itinerary-left { min-height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .section { padding: 4rem 2rem; }
  .rev-card { flex: 0 0 calc(50% - 0.75rem); }
  .slider-wrap { padding: 0 2.5rem; }
  .sl-prev { left: -10px; }
  .sl-next { right: -10px; }
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .exc-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  nav { padding: 0 1rem; height: 56px; }
  .nav-logo { font-size: 1rem; }
  .nav-cta { padding: 0.4rem 0.9rem; font-size: 0.75rem; }
  .hero-left { padding: 2.5rem 1.2rem 3rem; }
  .hero h1 { font-size: 2.8rem; }
  .hero-stats { 
    gap: 1rem; 
    flex-wrap: wrap; 
    justify-content: space-between; 
  }
  .hero-stat-item { flex: 0 0 calc(50% - 0.5rem); }
  .hero-right { min-height: 50vh; padding: 2rem 1rem; }
  .hero-dhams-grid { gap: 1rem; max-width: 100%; }
  .dham-panel { min-height: 200px; }
  .dham-name { font-size: 1.4rem; }
  .dham-alt { font-size: 0.75rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .itinerary-left { min-height: 300px; }
  .itinerary-right { 
    max-height: 500px; 
    padding: 1.5rem; 
  }
  .winter-card-img { height: 250px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.2rem; }
  .form-field input, 
  .form-field select, 
  .form-field textarea {
    font-size: 16px;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.2rem; }
  .rev-card { flex: 0 0 100%; }
  .slider-wrap { padding: 0 1rem; }
  .sl-prev { left: -5px; width: 36px; height: 36px; font-size: 1.2rem; }
  .sl-next { right: -5px; width: 36px; height: 36px; font-size: 1.2rem; }
  .guide-grid { grid-template-columns: 1fr; }
  .exc-grid { grid-template-columns: repeat(2, 1fr); }
  .exc-icon { width: 44px; height: 44px; font-size: 1.2rem; border-radius: 12px; }
  .exc-name { font-size: 0.72rem; }
  .exc-sub { font-size: 0.62rem; }
  
  /* Make each footer column a neat grid */
  .footer-col ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 0.8rem 1rem; /* row gap, column gap */
    margin-top: 0.5rem;
  }
  
  .footer-col li {
    margin-bottom: 0;
  }
  
  .footer-col a {
    font-size: 0.85rem;
    display: block;
    padding: 0.3rem 0;
  }
  
  .footer-col h5 {
    margin-bottom: 1rem;
  }
  
  
}