:root {
  --gold: #e6a000;
  --saffron: #f5b21a;
  --deep-red: #e01820;
  --maroon: #9f0f17;
  --cream: #fff7e8;
  --white: #ffffff;
  --charcoal: #202124;
  --muted-text: #6d6259;
  --ivory: #fffcf6;
  --blue: #1d2230;
  --blue-soft: #32394a;
  --maroon-dark: #46070b;
  --ink: var(--charcoal);
  --muted: var(--muted-text);
  --line: rgba(159, 15, 23, 0.14);
  --gold-line: rgba(230, 160, 0, 0.3);
  --shadow: 0 24px 70px rgba(31, 31, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-lock {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid rgba(217, 161, 43, 0.22);
  background: rgba(255, 252, 246, 0.9);
  color: var(--charcoal);
  box-shadow: 0 10px 34px rgba(31, 31, 31, 0.06);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.97);
  padding-block: 10px;
  box-shadow: 0 16px 40px rgba(31, 31, 31, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: clamp(230px, 20vw, 300px);
  height: 82px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.93rem;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.9;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--deep-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: clamp(28px, 5vw, 64px);
  padding: 160px clamp(18px, 5vw, 70px) 72px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(63, 7, 12, 0.9), rgba(63, 7, 12, 0.52), rgba(31, 31, 31, 0.45)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Dashashwamedh_Ghat%2C_Ganga%2C_Varanasi.jpg/1280px-Dashashwamedh_Ghat%2C_Ganga%2C_Varanasi.jpg") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.08), transparent 34%),
    radial-gradient(circle at 75% 24%, rgba(242, 180, 60, 0.34), transparent 32%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
}

.brand-tagline {
  margin: 0 0 12px;
  color: #fff2ce;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--saffron);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  max-width: 930px;
  color: #fff;
  font-size: clamp(2.95rem, 6.4vw, 6.3rem);
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--deep-red), var(--maroon));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(181, 18, 27, 0.25);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #271405;
  box-shadow: 0 16px 34px rgba(217, 161, 43, 0.28);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  border-color: var(--saffron);
  background: rgba(242, 180, 60, 0.16);
  color: #fff3cf;
}

.hero-panel {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(217, 161, 43, 0.36);
  border-radius: 8px;
  background: rgba(31, 31, 31, 0.34);
  color: #fff;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel span,
.hero-panel strong,
.hero-panel a {
  display: block;
}

.hero-panel span {
  color: var(--saffron);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  margin: 10px 0 18px;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.hero-panel a {
  color: #ffe0a2;
  font-weight: 850;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.trust-strip span {
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  color: var(--deep-red);
  font-weight: 850;
  text-align: center;
}

.section {
  padding: clamp(74px, 10vw, 126px) clamp(18px, 5vw, 70px);
}

.section-tinted {
  background: var(--cream);
}

.section-dark,
.section-maroon {
  color: #fff;
  background: var(--maroon-dark);
}

.section-intro {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-intro.center {
  margin-inline: auto;
  text-align: center;
}

h2 {
  color: var(--maroon);
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.section-dark h2,
.section-maroon h2 {
  color: #fff;
}

h3 {
  font-size: 1.35rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.about-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stats-grid div {
  min-height: 152px;
  padding: 24px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(94, 20, 37, 0.06);
}

.stats-grid strong {
  display: block;
  color: var(--deep-red);
  font-family: Georgia, serif;
  font-size: 2.2rem;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 700;
}

.feature-grid,
.circuit-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-grid article,
.circuit-grid article,
.testimonial-grid blockquote {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: #fff;
}

.feature-grid span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 900;
}

.feature-grid h3 {
  margin-top: 18px;
  color: var(--maroon);
}

.feature-grid p,
.circuit-grid p,
.testimonial-grid blockquote {
  color: var(--muted);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.destination-card {
  position: relative;
  min-height: 430px;
  grid-column: span 2;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.destination-card:first-child,
.destination-card:nth-child(2) {
  grid-column: span 3;
}

.destination-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover img {
  transform: scale(1.045);
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(63, 7, 12, 0.9));
}

.destination-card div {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  color: #fff;
}

.destination-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.section-maroon {
  background:
    linear-gradient(135deg, rgba(63, 7, 12, 0.98), rgba(127, 15, 22, 0.92)),
    linear-gradient(90deg, var(--maroon-dark), var(--charcoal));
}

.circuit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.circuit-grid article {
  border-color: rgba(217, 161, 43, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.circuit-grid h3 {
  color: #fff;
}

.circuit-grid p {
  color: rgba(255, 255, 255, 0.75);
}

.circuit-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: #ffcf7a;
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: #fff;
  color: var(--charcoal);
  font-weight: 800;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid blockquote {
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.testimonial-grid cite {
  display: block;
  margin-top: 18px;
  color: var(--deep-red);
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 850;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 58px clamp(18px, 5vw, 70px);
  background: linear-gradient(135deg, var(--maroon-dark), var(--deep-red));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(127, 15, 22, 0.14);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fffcf6;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 154, 62, 0.16);
  outline: none;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.contact-card {
  padding: 30px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--maroon-dark), var(--maroon));
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-bottom: 18px;
}

.contact-card a,
.contact-card span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.button-whatsapp {
  margin-top: 22px;
  background: #1fae59;
  color: #fff !important;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 260px 240px;
  gap: 36px;
  padding: 54px clamp(18px, 5vw, 70px);
  background: #170607;
  color: #fff;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  margin-bottom: 12px;
}

.site-footer a,
.site-footer span,
.site-footer p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
}

.site-footer a:hover {
  color: #ffcf7a;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1fae59;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 36px rgba(31, 174, 89, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(31, 174, 89, 0.42);
}

@media (max-width: 1060px) {
  .hero,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .circuit-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-card,
  .destination-card:first-child,
  .destination-card:nth-child(2) {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 18px;
  }

  .brand img {
    width: 190px;
    height: 60px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--ivory);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button,
  .contact-cta .button,
  .contact-card .button {
    width: auto;
  }

  .hero {
    min-height: 88vh;
    padding: 122px 18px 44px;
  }

  .brand-tagline {
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4.1rem);
  }

  .hero-panel {
    padding: 22px;
  }

  .trust-strip,
  .stats-grid,
  .feature-grid,
  .destination-grid,
  .circuit-grid,
  .service-grid,
  .testimonial-grid,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 68px;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .destination-card,
  .destination-card img {
    min-height: 360px;
  }

  .contact-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}
