/* Kanchan Travel Agents — layout & theme */
:root {
  --bg: #0c0f14;
  --bg-elevated: #131820;
  --bg-card: #161c27;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8ecf1;
  --muted: #9aa3b2;
  --accent: #3d9fff;
  --accent-soft: rgba(61, 159, 255, 0.15);
  --accent-2: #c9a227;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

html[lang="hi"] body {
  font-family: "Noto Sans Devanagari", "DM Sans", system-ui, sans-serif;
}

html[lang="hi"] .hero h1,
html[lang="hi"] .section__head h2,
html[lang="hi"] .book__intro h2,
html[lang="hi"] .hero__card-lead {
  font-family: "Noto Sans Devanagari", "Instrument Serif", Georgia, serif;
  font-weight: 600;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #041018;
  font-weight: 600;
  z-index: 100;
}

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header — hidden over hero, appears on scroll */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(12, 15, 20, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Prevent content jump when header appears — only needed for non-hero pages */
body {
  scroll-padding-top: 72px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  line-height: 1.25;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img--footer {
  height: 36px;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-switch__btn {
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lang-switch__btn:hover {
  color: var(--text);
}

.lang-switch__btn.is-active {
  background: var(--accent-soft);
  color: var(--accent);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  color: var(--muted);
}

.site-nav a:not(.btn):hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto auto;
    top: 60px;
    right: 1.25rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn--primary {
  background: var(--accent);
  color: #041018;
}

.btn--primary:hover {
  background: #5aadff;
  color: #041018;
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
}

.btn--small {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero--media {
  min-height: min(92vh, 920px);
  padding: clamp(4rem, 12vw, 6.5rem) 0 clamp(4rem, 12vw, 7rem);
  display: flex;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    #0a0d12
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1920&q=80")
    center / cover no-repeat;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 15, 20, 0.93) 0%,
    rgba(12, 15, 20, 0.68) 42%,
    rgba(12, 15, 20, 0.4) 72%,
    rgba(12, 15, 20, 0.28) 100%
  );
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__grid--on-media {
  z-index: 1;
  width: 100%;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero--media {
    min-height: auto;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

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

.lede {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 1.75rem;
}

.hero--media .lede {
  color: rgba(200, 208, 218, 0.95);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
}

.hero__stats dt {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.hero__stats dd {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.hero--media .hero__stats {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.hero--media .hero__stats dd {
  color: rgba(168, 178, 192, 0.95);
}

@media (max-width: 520px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}

.hero__card {
  justify-self: end;
  width: min(100%, 340px);
}

.hero__card-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.hero--media .hero__card-inner {
  background: rgba(22, 28, 39, 0.82);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.1);
}

.hero__card-label {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__card-lead {
  margin: 0.45rem 0 0.65rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.hero__card-price {
  margin: 0.35rem 0 0.5rem;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero__card-price span:first-child {
  font-size: 1.5rem;
  vertical-align: super;
  margin-right: 0.1em;
}

.hero__card-price span:last-child {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.hero__card-price--inr {
  font-size: 2.65rem;
  letter-spacing: -0.04em;
}

.hero__card-price--inr span {
  font-size: 1.35rem;
  vertical-align: super;
  margin-right: 0.06em;
  font-weight: 600;
  color: rgba(232, 236, 241, 0.9);
}

.hero__card-note {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.hero__card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__card-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.btn--card-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background: var(--accent);
  color: #041018;
  border: 1px solid transparent;
  transition: background 0.15s;
  text-align: center;
}

.btn--card-primary:hover {
  background: #5aadff;
  color: #041018;
}

.btn--card-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
  text-align: center;
}

.btn--card-ghost:hover {
  border-color: rgba(61, 159, 255, 0.45);
  color: var(--accent);
}

.pill {
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--muted);
}

.pill--ok {
  border-color: rgba(61, 159, 255, 0.35);
  color: var(--accent);
  background: var(--accent-soft);
}

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

.section--alt {
  background: linear-gradient(180deg, #0a0d12 0%, var(--bg) 100%);
  border-block: 1px solid var(--border);
}

.section__head {
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.field textarea {
  resize: vertical;
  min-height: 88px;
}

/* Vehicle showcase */
.vehicle-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (max-width: 768px) {
  .vehicle-showcase {
    grid-template-columns: 1fr;
  }
}

.vehicle-showcase__photo-wrap {
  margin: 0;
  overflow: hidden;
  background: var(--bg-elevated);
  max-height: 420px;
}

.vehicle-showcase__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 60%; /* overridden per image via inline style */
  display: block;
}

@media (max-width: 768px) {
  .vehicle-showcase__photo-wrap {
    max-height: 280px;
  }
  .vehicle-showcase__img {
    height: 280px;
  }
}

.vehicle-showcase__body {
  padding: 2rem 2rem 2rem 0;
}

@media (max-width: 768px) {
  .vehicle-showcase__body {
    padding: 0 1.5rem 1.75rem;
  }
}

.vehicle-showcase__body h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.vehicle-showcase__list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.vehicle-showcase__list li {
  margin-bottom: 0.5rem;
}

/* Route cards (same pattern as original fleet grid) */
.fleet {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.fleet__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.fleet__card:hover {
  border-color: rgba(61, 159, 255, 0.35);
  transform: translateY(-2px);
}

.fleet__img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-elevated);
  overflow: hidden;
}

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

.fleet__card--placeholder .fleet__img--route img {
  opacity: 0.85;
}

.fleet__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  background: rgba(12, 15, 20, 0.85);
  border: 1px solid var(--border);
  z-index: 1;
}

.fleet__body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.fleet__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.fleet__meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.fleet__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  gap: 0.75rem;
}

.fleet__price {
  font-size: 1.35rem;
  font-weight: 700;
}

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

.fleet__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  flex-shrink: 0;
}

.fleet__link:hover {
  text-decoration: underline;
}

.rates-intro code {
  font-size: 0.85em;
  padding: 0.12em 0.35em;
  border-radius: 4px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.rates-toolbar {
  margin-bottom: 1.5rem;
  max-width: 420px;
}

.rates-search {
  width: 100%;
}

.rates-show-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.rates-show-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.rates-show-all:hover {
  border-color: rgba(61, 159, 255, 0.45);
  color: var(--accent);
}

.rates-show-all__chev {
  display: inline-block;
  font-size: 0.7rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.rates-show-all[aria-expanded="true"] .rates-show-all__chev {
  transform: rotate(180deg);
}

.fleet__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--muted);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  list-style: none;
}

/* Pricing */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: auto 1fr;
  align-items: start;
}

.pricing-card--solo {
  grid-template-columns: 1fr;
}

@media (max-width: 640px) {
  .pricing-card:not(.pricing-card--solo) {
    grid-template-columns: 1fr;
  }
}

.pricing-card__label {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.pricing-card__amount {
  margin: 0.25rem 0 0;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.pricing-card__amount .rupee {
  font-size: 1.5rem;
  vertical-align: super;
  margin-right: 0.06em;
  font-weight: 600;
}

.pricing-card__notes {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-card__notes li {
  margin-bottom: 0.65rem;
}

.pricing-card__notes strong {
  color: var(--text);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.gallery__item--wide {
  grid-column: 1 / -1;
}

.gallery__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.gallery__item:not(.gallery__item--wide) img {
  aspect-ratio: 4 / 3;
}

.gallery__item figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.steps li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}

.steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.steps h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

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

/* Locations */
.locations {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.locations li {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.locations h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

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

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

@media (max-width: 640px) {
  .locations--single {
    grid-template-columns: 1fr;
  }
}

.contact-wa {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.contact-wa:hover {
  text-decoration: underline;
}

/* Book */
.section--book {
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(61, 159, 255, 0.12), transparent 60%);
}

.book {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .book {
    grid-template-columns: 1fr;
  }
}

.book__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
}

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

.book__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

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

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

@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-hint {
  min-height: 1.5rem;
  margin: 0.75rem 0 1rem;
  font-size: 0.9rem;
}

.form-hint.is-ok {
  color: #7dcea0;
}

.form-hint.is-err {
  color: #f1948a;
}

.book__form .btn {
  width: 100%;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__tagline {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer__title {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer__fine {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

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

/* Deoghar Tour section */
.deoghar-tour__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .deoghar-tour__grid {
    grid-template-columns: 1fr;
  }
}

.deoghar-tour__photo-wrap {
  position: sticky;
  top: 100px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.deoghar-tour__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .deoghar-tour__photo-wrap {
    position: static;
    max-height: 320px;
    overflow: hidden;
  }
  .deoghar-tour__photo {
    aspect-ratio: 16 / 9;
  }
}

.tour-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}

@media (max-width: 560px) {
  .tour-cards {
    grid-template-columns: 1fr;
  }
}

.tour-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.tour-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}

.tour-card__tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(61, 159, 255, 0.25);
}

.tour-card__tag--full {
  background: rgba(201, 162, 39, 0.15);
  color: var(--accent-2);
  border-color: rgba(201, 162, 39, 0.3);
}

.tour-card__price {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.tour-card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.tour-card__list li {
  margin-bottom: 0.35rem;
}

/* Gallery video */
.gallery__item--video {
  position: relative;
  background: var(--bg-elevated);
}

.gallery__video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

.gallery__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.38);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.gallery__play-btn:hover {
  background: rgba(0, 0, 0, 0.55);
}

.gallery__play-btn.is-playing {
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.gallery__play-btn:hover.is-playing {
  opacity: 1;
  pointer-events: all;
  background: rgba(0, 0, 0, 0.35);
}

.gallery__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0c0f14;
  font-size: 1.5rem;
  padding-left: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  transition: transform 0.15s, background 0.15s;
}

.gallery__play-btn:hover .gallery__play-icon {
  transform: scale(1.08);
  background: #fff;
}

/* Hero logo above eyebrow */
.hero__logo-wrap {
  margin-bottom: 1.25rem;
}

.hero__logo {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
}

@media (max-width: 520px) {
  .hero__logo {
    height: 44px;
  }
}

/* Book CTA (no form) */
.book--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  max-width: 640px;
  margin-inline: auto;
}

.book--cta .book__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.book--cta .book__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.book__cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn--lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
}

.fleet__empty a {
  color: var(--accent);
  text-decoration: underline;
}

/* Variable badge for airport/railway cards */
.fleet__badge.is-variable {
  background: rgba(201, 162, 39, 0.18);
  border-color: rgba(201, 162, 39, 0.45);
  color: var(--accent-2);
}
