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

:root {
  --saffron: #E8681A;
  --deep-saffron: #C4510E;
  --gold: #D4A017;
  --dark-gold: #A07810;
  --green: #2D6A4F;
  --deep-green: #1B4332;
  --cream: #FDF6E3;
  --text-dark: #1A1A1A;
  --text-mid: #444;
  --text-light: #777;
  --white: #fff;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(26,26,26,0.97); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--white);
}
.nav-logo .om { font-size: 28px; color: var(--gold); }
.nav-logo span { font-size: 18px; font-weight: 700; letter-spacing: 0.5px; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--saffron); color: var(--white);
  border: none; padding: 10px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--deep-saffron); transform: translateY(-1px); }

/* ── HAMBURGER MENU BUTTON ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}
.nav-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--white);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* Toggle animations to form X */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background-color: var(--gold);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background-color: var(--gold);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.7) 100%),
    url('../assets/hero.png') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
}
.hero-inner { max-width: 760px; }
.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
#hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800; color: var(--white);
  line-height: 1.15; margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
#hero h1 span { color: var(--gold); }
#hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 40px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--saffron); color: var(--white);
  padding: 16px 36px; border-radius: 50px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(232,104,26,0.4);
}
.btn-primary:hover { background: var(--deep-saffron); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 14px 36px; border-radius: 50px;
  font-size: 16px; font-weight: 600; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(212,160,23,0.1); }

.hero-stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  margin-top: 64px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.stat { color: var(--white); text-align: center; }
.stat-num { font-size: 32px; font-weight: 800; color: var(--gold); display: block; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ── SECTION WRAPPER ── */
section { padding: 96px 24px; }
.container { max-width: 1120px; margin: 0 auto; }
.section-label {
  display: inline-block; color: var(--saffron);
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-mid); max-width: 560px;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ── DHAMS ── */
#dhams { background: var(--cream); }
.dhams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.dham-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
}
.dham-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.16); }
.dham-img {
  height: 220px; width: 100%;
  object-fit: cover; display: block;
}
.dham-body { padding: 24px; }
.dham-tag {
  display: inline-block; background: rgba(232,104,26,0.1);
  color: var(--saffron); border-radius: 50px;
  padding: 4px 14px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; margin-bottom: 10px;
}
.dham-body h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.dham-body p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.dham-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-light);
}
.dham-meta span { display: flex; align-items: center; gap: 4px; }

/* ── PACKAGES ── */
#packages { background: var(--white); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.pkg-card {
  border-radius: var(--radius); border: 1.5px solid #eee;
  padding: 32px; position: relative; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.pkg-card:hover { border-color: var(--saffron); box-shadow: var(--shadow); transform: translateY(-4px); }
.pkg-card.featured { border-color: var(--saffron); background: linear-gradient(135deg, #fff9f4 0%, #fff 100%); }
.pkg-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--saffron); color: var(--white);
  padding: 4px 14px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
}
.pkg-icon { font-size: 36px; margin-bottom: 16px; }
.pkg-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.pkg-card .pkg-desc { font-size: 14px; color: var(--text-mid); margin-bottom: 20px; }
.pkg-price {
  font-size: 34px; font-weight: 800; color: var(--saffron);
  margin-bottom: 4px;
}
.pkg-price span { font-size: 16px; color: var(--text-mid); font-weight: 400; }
.pkg-duration { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.pkg-features { list-style: none; margin-bottom: 28px; }
.pkg-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; padding: 7px 0;
  border-bottom: 1px solid #f0f0f0; color: var(--text-mid);
}
.pkg-features li:last-child { border: none; }
.pkg-features li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 13px; }
.btn-pkg {
  width: 100%; padding: 14px; border-radius: 50px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  text-align: center; text-decoration: none; display: block;
  transition: background 0.2s, transform 0.15s;
}
.btn-pkg-primary { background: var(--saffron); color: var(--white); border: none; }
.btn-pkg-primary:hover { background: var(--deep-saffron); transform: translateY(-1px); }
.btn-pkg-outline { background: transparent; color: var(--saffron); border: 2px solid var(--saffron); }
.btn-pkg-outline:hover { background: var(--saffron); color: var(--white); }

/* ── WHY US ── */
#why { background: var(--deep-green); }
#why .section-title { color: var(--white); }
#why .section-sub { color: rgba(255,255,255,0.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 32px;
  transition: background 0.25s, transform 0.25s;
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(232,104,26,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.why-card h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; }

/* ── ITINERARY ── */
#itinerary { background: var(--cream); }
.route-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; margin-bottom: 56px;
}
.route-stop {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; min-width: 130px;
}
.stop-dot {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--saffron); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  box-shadow: 0 4px 16px rgba(232,104,26,0.35);
}
.stop-name { font-size: 13px; font-weight: 700; color: var(--text-dark); text-align: center; }
.stop-alt { font-size: 11px; color: var(--text-light); }
.route-line {
  flex: 1; min-width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  margin-bottom: 28px;
}
.days-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.day-card {
  background: var(--white); border-radius: 12px;
  padding: 24px; border-left: 4px solid var(--saffron);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.day-num { font-size: 12px; font-weight: 700; color: var(--saffron); letter-spacing: 1px; margin-bottom: 6px; }
.day-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.day-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testi-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 28px; position: relative;
}
.testi-card::before {
  content: '"'; font-size: 80px; color: var(--gold);
  opacity: 0.3; position: absolute; top: 10px; left: 20px;
  line-height: 1; font-family: Georgia, serif;
}
.testi-text { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; position: relative; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px; font-weight: 800;
}
.testi-name { font-weight: 700; font-size: 15px; }
.testi-city { font-size: 12px; color: var(--text-light); }
.stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; }

/* ── CONTACT ── */
#contact {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--deep-saffron) 100%);
  padding: 96px 24px;
}
#contact .section-title { color: var(--white); }
#contact .section-sub { color: rgba(255,255,255,0.85); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
  margin-top: 0;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { color: var(--white); }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.c-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  flex-shrink: 0;
}
.c-label { font-size: 12px; color: rgba(255,255,255,0.65); margin-bottom: 4px; font-weight: 600; letter-spacing: 0.5px; }
.c-value { font-size: 15px; font-weight: 600; }
.contact-form {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #e0e0e0; border-radius: 10px;
  font-size: 14px; color: var(--text-dark);
  transition: border-color 0.2s; outline: none;
  font-family: inherit; background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--saffron); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--saffron); color: var(--white);
  border: none; border-radius: 50px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--deep-saffron); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: #111; color: rgba(255,255,255,0.65);
  padding: 64px 24px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1120px; margin: 0 auto 48px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .om { font-size: 32px; color: var(--gold); }
.footer-brand h3 { color: var(--white); font-size: 20px; margin: 8px 0; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 8px; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; max-width: 1120px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom span { color: var(--saffron); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--saffron); color: var(--white); }

/* ── FLOATING CTA ── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.1); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 80px 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    z-index: 105;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    width: 100%;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-links a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }
  
  /* Make sure CTA is visible and styled properly on mobile */
  .nav-cta {
    margin-right: 20px;
    padding: 8px 18px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  section { padding: 72px 20px; }
  
  .route-bar {
    flex-direction: column;
    gap: 20px;
  }
  
  .route-line {
    width: 3px;
    height: 40px;
    min-width: auto;
    margin-bottom: 0;
  }
}
