/* Vrindavan TravelSmart — modern saffron theme */

:root {
  --saffron: #E8640A;
  --saffron-light: #FFF3EA;
  --saffron-dark: #B84D06;
  --gold: #C9890A;
  --text: #1A1A1A;
  --muted: #5A5A5A;
  --border: #E8E8E8;
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --ink-soft: #2C241C;
  --overlay: linear-gradient(105deg, rgba(26, 18, 10, 0.72) 0%, rgba(26, 18, 10, 0.45) 48%, rgba(232, 100, 10, 0.28) 100%);
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-lift: 0 18px 40px rgba(184, 77, 6, 0.16);
  --radius: 14px;
  --header-h: 76px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(232, 100, 10, 0.08), transparent 60%),
    radial-gradient(900px 400px at 90% 8%, rgba(201, 137, 10, 0.07), transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--saffron-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--saffron);
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--saffron);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container.narrow {
  width: min(760px, calc(100% - 2.5rem));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 250, 250, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
}

.header-inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-text em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav a:hover {
  background: var(--saffron-light);
  color: var(--saffron-dark);
}

.nav-cta {
  background: var(--saffron) !important;
  color: #fff !important;
  margin-left: 0.35rem;
  padding-inline: 1rem !important;
}

.nav-cta:hover {
  background: var(--saffron-dark) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s var(--ease), transform 7s ease;
}

.hero-img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 2.5rem));
  margin: 0 auto 12vh;
  padding-top: 18vh;
}

.hero-brand {
  margin: 0 0 0.85rem;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffd7b5;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.hero h1 em {
  font-style: italic;
  color: #ffc48a;
}

.hero-lede {
  margin: 1.15rem 0 0;
  max-width: 38ch;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.25s var(--ease), background 0.25s var(--ease);
}

.hero-dot.is-active {
  width: 28px;
  background: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

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

.btn-primary {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 100, 10, 0.28);
}

.btn-primary:hover {
  background: var(--saffron-dark);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-sm {
  padding: 0.65rem 1rem;
  background: var(--saffron);
  color: #fff;
  font-size: 0.88rem;
}

.btn-sm:hover {
  background: var(--saffron-dark);
  color: #fff;
}

.btn-block {
  width: 100%;
}

/* Trust */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.35rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--saffron-light);
  color: var(--saffron-dark);
  font-weight: 700;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head h2,
.about-copy h2,
.transport-copy h2,
.contact-copy h2,
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0.2rem 0 0.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  margin: 0;
  color: var(--saffron);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* About */
.about {
  background: linear-gradient(180deg, #fff 0%, var(--saffron-light) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-media-main {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.about-media-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px 24px 24px 80px;
  box-shadow: var(--shadow-lift);
}

.about-float {
  position: absolute;
  width: 48%;
  padding: 0;
  border: 5px solid #fff;
  background: transparent;
  border-radius: 18px;
  right: -6%;
  bottom: -8%;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-float img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.about-copy p {
  color: var(--muted);
}

.feature-row {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-row li {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(232, 100, 10, 0.12);
  border-radius: 12px;
}

.feature-row strong {
  display: block;
  margin-bottom: 0.15rem;
}

.feature-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Packages */
.package-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.filter-btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.package {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.3s;
}

.package:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.package.is-hidden {
  display: none;
}

.package-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.package:hover .package-media img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--saffron);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.badge-gold {
  background: var(--gold);
}

.package-body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-tag {
  margin: 0;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.package h3 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 600;
}

.meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.meta li {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
}

.package-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.price {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--saffron-dark);
}

.price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

/* Destinations */
.destinations {
  background: #fff5f0;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.dest {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
}

.dest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.dest::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 10, 0.78), transparent 55%);
}

.dest div {
  position: absolute;
  z-index: 1;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
}

.dest h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.dest p {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.dest:hover img {
  transform: scale(1.08);
}

/* Premium transport */
.transport-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.transport-visual img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-lift);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.check-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.7rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: var(--saffron);
  font-weight: 700;
}

.check-list strong {
  color: var(--text);
}

.fleet {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.fleet span {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--saffron-light);
  color: var(--saffron-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Services */
.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.service {
  padding: 1.35rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fffaf6);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.service:hover {
  border-color: rgba(232, 100, 10, 0.35);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 1.5rem;
}

.service h3 {
  margin: 0.7rem 0 0.4rem;
  font-size: 1.1rem;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), opacity 0.3s;
}

.gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.2rem 1rem 0.9rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.gallery-item:hover img {
  transform: scale(1.07);
  opacity: 0.9;
}

/* Reviews */
.reviews {
  background: linear-gradient(180deg, var(--saffron-light), #fff);
}

.rating-line {
  color: var(--saffron-dark) !important;
  font-weight: 500;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: var(--shadow);
}

.review p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  font-style: italic;
}

.review footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--saffron);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.review strong {
  display: block;
  font-size: 0.95rem;
}

.review footer span:not(.avatar) {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Cities */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.city {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.city h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--saffron-dark);
}

.city ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.city li + li {
  border-top: 1px solid var(--border);
}

.city a {
  display: block;
  padding: 0.75rem 0;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.city a:hover {
  color: var(--saffron);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 1.15rem;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(232, 100, 10, 0.35);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.5rem 1.1rem 0;
  font-weight: 600;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--saffron);
  font-size: 1.35rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

/* Contact */
.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.contact-points li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-points .social-follow .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

.contact-points .social-links a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-points .social-links a:hover {
  color: var(--saffron-dark);
}

.contact-points strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.2rem;
}

.enquiry-form {
  background: var(--saffron-light);
  border: 1px solid rgba(232, 100, 10, 0.15);
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  gap: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.enquiry-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232, 100, 10, 0.15);
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.form-status {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

.form-status.is-pending {
  background: #fff8f0;
  color: var(--saffron-dark);
  border: 1px solid rgba(232, 100, 10, 0.2);
}

.form-status.is-success {
  background: #eef9f1;
  color: #1f6b3a;
  border: 1px solid #b7e0c2;
}

.form-status.is-error {
  background: #fff1f0;
  color: #9b1c1c;
  border: 1px solid #f0c2c0;
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(120deg, rgba(184, 77, 6, 0.92), rgba(232, 100, 10, 0.88)),
    url("../images/hero-vrindavan-ghat.jpg") center / cover;
  color: #fff;
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.9);
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--saffron-dark);
  box-shadow: none;
}

.cta-band .btn-primary:hover {
  background: var(--saffron-light);
  color: var(--saffron-dark);
}

/* Footer */
.site-footer {
  background: #1a120c;
  color: rgba(255, 255, 255, 0.82);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand img {
  margin-bottom: 0.75rem;
  background: #fff;
  border-radius: 12px;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
}

.site-footer h3 {
  margin: 0 0 1rem;
  color: #ffc48a;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

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

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  margin-top: 1.1rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-socials a:hover {
  color: #ffc48a;
}

.footer-socials svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 0 1.5rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.trust-pills span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
}

/* Scroll top */
.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--saffron);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 90;
  box-shadow: 0 8px 20px rgba(232, 100, 10, 0.35);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 6, 3, 0.9);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  overflow: auto;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-panel {
  width: min(920px, 100%);
  background: #1a120c;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-panel img {
  width: 100%;
  max-height: 52vh;
  object-fit: cover;
  display: block;
}

.lightbox-copy {
  padding: 1.15rem 1.35rem 1.4rem;
  color: #fff;
}

.lightbox-copy h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: #ffc48a;
}

.lightbox-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  font-size: 0.98rem;
}

.hero-proof {
  margin: 1.25rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 215, 170, 0.95);
  letter-spacing: 0.02em;
}

/* Experience strip */
.experience-strip {
  background: linear-gradient(90deg, var(--saffron-dark), var(--saffron));
  color: #fff;
  padding: 1.75rem 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.experience-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.experience-grid span {
  font-size: 0.88rem;
  opacity: 0.92;
}

/* Places */
.places {
  background: #fff;
}

/* Krishna leelas */
.leelas {
  background: linear-gradient(180deg, var(--saffron-light), #fff);
}

.leela-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.leela-card {
  margin: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.leela-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.leela-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.leela-card:hover img {
  transform: scale(1.05);
}

.leela-body {
  display: block;
  padding: 1rem 1.1rem 1.2rem;
  pointer-events: none;
}

.leela-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.leela-card p {
  margin: 0.35rem 0 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.leela-card em {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--saffron-dark);
}

/* Story video */
.story-video {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232, 100, 10, 0.12), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--saffron-light) 100%);
}

.video-frame {
  position: relative;
  width: min(960px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #1a120c;
  box-shadow: 0 24px 50px rgba(26, 18, 12, 0.18);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #1a120c;
}

.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 48px;
  border-radius: 14px;
  background: #e8640a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.yt-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}

.yt-facade:hover .yt-play {
  background: #b84d06;
  transform: scale(1.05);
}

.video-fallback {
  margin: 1rem 0 0;
  text-align: center;
}

.video-fallback a {
  color: var(--saffron-dark);
  font-weight: 600;
  text-decoration: none;
}

.video-fallback a:hover {
  text-decoration: underline;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.place-card {
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.place-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.place-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.place-card:hover img {
  transform: scale(1.05);
}

.place-card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.place-area {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.25rem;
}

.place-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.place-card p {
  margin: 0.4rem 0 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.place-more {
  color: var(--saffron-dark);
  font-weight: 600;
  font-size: 0.88rem;
}

/* Place modal */
.place-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(20, 12, 6, 0.72);
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.place-modal[hidden] {
  display: none;
}

.place-modal-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem 1.35rem 1.5rem;
  animation: modalIn 0.35s var(--ease);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.place-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.85rem;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}

.place-modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.place-modal-dialog h3 {
  margin: 0.2rem 0;
  font-family: var(--font-display);
  font-size: 2rem;
}

.place-tagline {
  color: var(--saffron-dark);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0.3rem 0 1rem;
}

.place-modal-dialog h4 {
  margin: 1rem 0 0.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--saffron);
}

.place-help {
  margin: 0.4rem 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.place-help li + li {
  margin-top: 0.35rem;
}

.place-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Support */
.support {
  background: var(--saffron-light);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.support-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  border: 1px solid rgba(232, 100, 10, 0.12);
}

.support-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Builder */
.builder {
  background:
    radial-gradient(700px 300px at 0% 0%, rgba(232, 100, 10, 0.08), transparent 60%),
    #fff;
}

.builder-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.builder-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: start;
}

.builder-label {
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.day-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.day-chip {
  min-width: 72px;
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 0.7rem 0.85rem;
  cursor: pointer;
  transition: all 0.22s var(--ease);
}

.day-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  color: var(--text);
}

.day-chip span {
  font-size: 0.75rem;
  color: var(--muted);
}

.day-chip:hover,
.day-chip.is-active {
  border-color: var(--saffron);
  background: var(--saffron);
  transform: translateY(-2px);
}

.day-chip:hover strong,
.day-chip.is-active strong,
.day-chip:hover span,
.day-chip.is-active span {
  color: #fff;
}

.tour-summary {
  background: var(--saffron-light);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
}

.tour-summary h3 {
  margin: 0.2rem 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.tour-summary p {
  margin: 0.25rem 0;
  color: var(--muted);
}

.tour-highlight {
  color: var(--saffron-dark) !important;
  font-weight: 600;
}

.itinerary-out {
  display: grid;
  gap: 0.9rem;
}

.itin-day {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  animation: dayIn 0.45s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 0.07s);
  background: linear-gradient(180deg, #fff, #fffaf6);
}

@keyframes dayIn {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.itin-day header {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.itin-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}

.itin-day h4 {
  margin: 0;
  font-size: 1.05rem;
}

.itin-day header p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.itin-places {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.itin-place {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 0.25rem 0.75rem 0.25rem 0.25rem;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.itin-place:hover {
  border-color: var(--saffron);
  transform: translateY(-2px);
}

.itin-place img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.itin-place span {
  font-size: 0.85rem;
  font-weight: 600;
}

.builder-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.builder-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 42ch;
}

/* Festivals */
.festivals {
  background: #fff5f0;
}

.festival-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.festival-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.festival-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.festival-media {
  position: relative;
  min-height: 220px;
}

.festival-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.festival-when {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background: rgba(26, 18, 10, 0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  z-index: 1;
}

.festival-body {
  padding: 1.2rem 1.25rem 1.35rem;
}

.festival-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.festival-vibe {
  color: var(--saffron-dark);
  font-weight: 600;
  margin: 0.3rem 0 0.6rem;
  font-size: 0.92rem;
}

.festival-body p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 0.65rem;
}

.festival-custom {
  background: var(--saffron-light);
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
}

.festival-body .btn {
  margin-top: 0.35rem;
}

/* Past tours */
.past-tours {
  background: #fff;
}

.past-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.past-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: linear-gradient(165deg, #fff, var(--saffron-light));
}

.past-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.past-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.past-result {
  margin-top: 0.75rem !important;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem !important;
  color: var(--saffron-dark) !important;
}

.past-banner {
  margin-top: 2rem;
  padding: 1.75rem;
  border-radius: 18px;
  background: linear-gradient(110deg, var(--saffron-dark), var(--saffron));
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.past-banner p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.3;
  max-width: 28ch;
}

.past-banner .btn-primary {
  background: #fff;
  color: var(--saffron-dark);
  box-shadow: none;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  left: 1.15rem;
  bottom: 1.25rem;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #25d366;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.05rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  color: #fff !important;
}

.wa-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1100px) {
  .package-grid,
  .dest-grid,
  .gallery-grid,
  .places-grid,
  .leela-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .review-track,
  .trust-grid,
  .support-grid,
  .past-grid,
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .festival-grid {
    grid-template-columns: 1fr;
  }

  .service-grid .service:nth-child(4),
  .service-grid .service:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.2rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 1rem;
  }

  .nav-cta {
    margin: 0.4rem 0 0 !important;
    text-align: center;
  }

  .about-grid,
  .transport-grid,
  .contact-grid,
  .footer-grid,
  .city-grid,
  .builder-top,
  .festival-card {
    grid-template-columns: 1fr;
  }

  .festival-media {
    min-height: 180px;
    position: relative;
  }

  .festival-media img {
    position: relative;
    height: 180px;
  }

  .about-float {
    width: 42%;
    right: 4%;
    bottom: -6%;
  }

  .trust-grid,
  .service-grid,
  .review-track,
  .support-grid,
  .past-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    margin-bottom: 16vh;
  }
}

@media (max-width: 640px) {
  .package-grid,
  .dest-grid,
  .gallery-grid,
  .places-grid,
  .leela-grid,
  .trust-grid,
  .service-grid,
  .review-track,
  .support-grid,
  .past-grid,
  .experience-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .brand-text em {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero h1 {
    max-width: none;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    left: 0.85rem;
    bottom: 5rem;
    padding: 0.7rem 0.9rem;
  }

  .builder-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
