: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: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(210,225,242,0.3) 0%, rgba(185,208,230,0.4) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image: url('./uttarakhand/images/uttarakhandtourismu.jpg'); */
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 3rem 2rem;
}

.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.4rem 1rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: "🕉"; font-size: 0.9rem; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700; line-height: 1.1;
  color: var(--ink); margin-bottom: 1rem;
}
.hero h1 em {
  font-style: italic; color: var(--saffron);
  display: block;
}

.hero-sub {
  font-size: 1.3rem; color: #ffffff;
  max-width: 700px; line-height: 2;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--saffron); color: #fff;
  padding: 0.95rem 2.5rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  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: var(--saffron); color: #fff;
  padding: 0.95rem 2.5rem; border-radius: 50px;
  font-weight: 500; font-size: 0.95rem;
  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: #800000; }

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

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

/* ══════════════════════════════
   FEATURED CARDS
══════════════════════════════ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: var(--ink);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(232,114,28,0.15);
}

.featured-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.featured-content {
  padding: 2rem;
}

.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.featured-text {
  font-size: 0.95rem;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--saffron);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}

.featured-link:hover {
  gap: 0.8rem;
}

/* ══════════════════════════════
   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);
opacity: 2; }

.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(163,214,230,0.6), rgba(240,233,222,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;
}

.itinerary-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(173,216,230,0.6), rgba(255,255,255,0));
}

.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; }

/* ══════════════════════════════
   DESTINATIONS GRID
══════════════════════════════ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.dest-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: var(--ink);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.dest-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.dest-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 50%);
}

.dest-content {
  padding: 1.5rem;
}

.dest-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.dest-desc {
  font-size: 0.88rem;
  color: var(--ink-60);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.dest-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--ink-60);
}

.dest-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ══════════════════════════════
   REVIEWS SLIDER
══════════════════════════════ */
.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: cover; 
  background-position: center;
  background-repeat: no-repeat;
}

.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-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;
}

/* ══════════════════════════════
   FORM
══════════════════════════════ */
.form-wrap { max-width: 700px; margin: 0 auto; }
.form-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 24px; padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--ink); margin-bottom: 1.5rem; }
.form-sub { font-size: 0.95rem; color: var(--ink-60); margin-bottom: 1.5rem; line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.full { grid-template-columns: 1fr; }
.form-field { position: relative; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  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: 100px; resize: vertical; }
.field-err { 
  display: none;
  color: #dc2626; 
  font-size: 0.75rem; 
  margin-top: 0.3rem; 
  font-weight: 500;
}
.field-err.show {
  display: block;
}
.form-submit {
  width: 100%; padding: 0.9rem;
  background: var(--saffron); color: #fff;
  border: none; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-size: 1rem; 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.75rem; color: var(--ink-60); line-height: 1.6; margin-top: 1rem; padding: 0.8rem 1rem; background: var(--cream); border-radius: 10px; border: 1px solid var(--ink-10); }
.form-response { padding: 0.9rem; border-radius: 10px; margin-bottom: 1rem; font-size: 0.9rem; }
.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-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--saffron); display: block; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.9rem; line-height: 1.8; max-width: 300px; color: #4a7a6e; }
.footer-col h5 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #2a4a40; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.88rem; 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.85rem; color: #4a7a6e; margin-bottom: 0.5rem; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 2rem; }
  .nav-links { gap: 0.3rem; }
  .nav-links a { font-size: 0.85rem; padding: 0.4rem 0.8rem; }
  .section { padding: 4rem 2rem; }
  .featured-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .itinerary-grid { grid-template-columns: 1fr; }
  .itinerary-left { min-height: 400px; }
  .rev-card { flex: 0 0 calc(50% - 0.75rem); }
  .slider-wrap { padding: 0 2.5rem; }
  .sl-prev { left: -10px; }
  .sl-next { right: -10px; }
}

@media (max-width: 640px) {
  nav { padding: 0 1rem; height: 60px; }
  .nav-logo { font-size: 1.2rem; }
  .nav-links { display: none; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.8rem; }
  .hero-content { padding: 2rem 1.5rem; }
  .hero h1 { font-size: 3rem; }
  .section { padding: 3rem 1.5rem; }
  .destinations-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  .form-field input, 
  .form-field select, 
  .form-field textarea {
    font-size: 16px;
  }
  .itinerary-left { min-height: 300px; }
  .itinerary-right { 
    max-height: 500px; 
    padding: 1.5rem; 
  }
  
  footer {
  padding: 2rem 2rem 2rem;
}
  
  /* Footer - neat grid layout on mobile */
  .footer-grid { 
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  /* Keep brand section normal */
  .footer-brand {
    margin-bottom: 1rem;
  }
  
  /* 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;
  }
  
  /* Reviews slider */
  .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; }
}