:root {
  color-scheme: light;
  --ink: #071f44;
  --muted: #596579;
  --navy: #052b63;
  --navy-2: #003f7a;
  --cream: #fff7e8;
  --cream-deep: #f3e0bd;
  --paper: #ffffff;
  --line: #d9e0ea;
  --gold: #c58a2c;
  --gold-soft: #efd7a4;
  --red: #b3372d;
  --shadow: 0 18px 50px rgba(7, 31, 68, 0.16);
  --rich-shadow: 0 28px 70px rgba(7, 31, 68, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(197, 138, 44, 0.12), transparent 28rem),
    linear-gradient(180deg, #fffdf8, #ffffff 42%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(5, 43, 99, 0.28);
  box-shadow: 0 10px 24px rgba(7, 31, 68, 0.12);
  transform: translateY(-160%);
  transition: transform 160ms ease;
  z-index: 60;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.93);
  border-bottom: 1px solid rgba(197, 138, 44, 0.24);
  box-shadow: 0 14px 36px rgba(7, 31, 68, 0.08);
  backdrop-filter: blur(16px);
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 18px clamp(20px, 4vw, 44px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 30;
}

.brand {
  display: grid;
  line-height: 1;
  position: relative;
}

.brand::before {
  color: var(--gold);
  content: "◇";
  font-size: 1rem;
  left: 50%;
  position: absolute;
  top: -14px;
  transform: translateX(-50%);
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-top: 7px;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2.4vw, 30px);
  justify-content: center;
}

.nav-links a {
  color: #07142b;
  font-size: 0.95rem;
  font-weight: 750;
  position: relative;
}

.nav-links a::after {
  background: var(--gold);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--navy-2);
}

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

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.icon-button,
.login-button {
  background: transparent;
  border: 0;
  color: #06152e;
  cursor: pointer;
  font-weight: 750;
}

.icon-button {
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1.8rem;
  height: 42px;
  width: 42px;
}

.user-menu-button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  position: relative;
}

.user-avatar {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 52%),
    linear-gradient(135deg, var(--gold), #f0c064);
  border: 1px solid rgba(5, 43, 99, 0.12);
  border-radius: 999px;
  display: block;
  height: 28px;
  width: 28px;
}

.user-menu {
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(197, 138, 44, 0.34);
  border-radius: 10px;
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 58px;
  z-index: 40;
}

.user-menu-head {
  border-bottom: 1px solid rgba(197, 138, 44, 0.22);
  margin-bottom: 8px;
  padding: 8px 10px 10px;
}

.user-menu-name {
  color: var(--ink);
  font-weight: 900;
}

.user-menu-email {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 2px;
}

.user-menu-item {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: #06152e;
  cursor: pointer;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  padding: 10px 10px;
  text-align: left;
  width: 100%;
}

.user-menu-item:hover,
.user-menu-item:focus-visible {
  background: rgba(5, 43, 99, 0.06);
  outline: none;
}

.user-menu-logout {
  color: var(--red);
}

.plan-button,
.primary-action,
.quick-search button {
  background: linear-gradient(135deg, var(--navy), #004987);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  box-shadow: 0 12px 28px rgba(5, 43, 99, 0.22);
}

.portal-view {
  display: none;
  min-height: calc(100vh - 85px);
  padding: clamp(32px, 6vw, 76px) clamp(20px, 4vw, 54px);
  position: relative;
}

.portal-view::before {
  border: 1px solid rgba(197, 138, 44, 0.24);
  content: "";
  inset: 24px;
  pointer-events: none;
  position: absolute;
}

.portal-view.is-active {
  display: block;
}

.portal-hero {
  margin: 0 auto 34px;
  max-width: 880px;
  text-align: center;
}

.eyebrow,
.script-label {
  color: var(--red);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  margin: 0;
}

.portal-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 8px 0 18px;
}

.portal-hero p:last-child {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.24rem);
  margin: 0 auto;
  max-width: 660px;
}

.city-tile-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.city-tile {
  align-items: flex-end;
  aspect-ratio: 4 / 5;
  background-position: center;
  background-size: cover;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--rich-shadow);
  color: #fff;
  cursor: pointer;
  display: flex;
  min-height: 380px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}

.city-tile::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(4, 19, 39, 0.58)),
    linear-gradient(135deg, rgba(197, 138, 44, 0.16), transparent 42%);
  content: "";
  inset: 0;
  position: absolute;
}

.city-tile-content {
  padding: 28px;
  position: relative;
  z-index: 1;
}

.city-tile-content strong {
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  display: inline-flex;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-top: 20px;
  padding-top: 13px;
  text-transform: uppercase;
}

.city-tile h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
  margin: 0 0 10px;
}

.city-tile p {
  font-size: 1.02rem;
  line-height: 1.45;
  margin: 0;
  max-width: 28ch;
}

.city-tile:hover {
  transform: translateY(-4px);
}

.kolkata-view {
  display: none;
  background:
    linear-gradient(180deg, #fffdf8, #ffffff 22%, #fffaf0 72%, #ffffff),
    #fff;
}

.kolkata-view.is-active {
  display: block;
}

.kolkata-hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.92), rgba(255, 248, 236, 0.55) 44%, rgba(255, 248, 236, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(197, 138, 44, 0.1)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Victoria%20Memorial%2C%20Monument%2C%20Kolkata%2C%20India.jpg")
      center / cover no-repeat,
    var(--cream);
  display: flex;
  min-height: 560px;
  padding: clamp(50px, 8vw, 96px) clamp(22px, 8vw, 132px) 120px;
  position: relative;
}

.kolkata-hero::before {
  border: 1px solid rgba(197, 138, 44, 0.38);
  content: "";
  inset: 26px;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.kolkata-hero::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), transparent);
  bottom: 0;
  content: "";
  height: 150px;
  left: 0;
  opacity: 0.95;
  position: absolute;
  width: 360px;
}

.kolkata-hero-copy {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.kolkata-hero h1 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 10vw, 7.8rem);
  letter-spacing: 0;
  line-height: 0.88;
  margin: 0;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.72);
}

.kolkata-hero h2 {
  color: #130f0d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  margin: 10px 0 16px;
}

.kolkata-hero-copy p:not(.script-label):not(.heritage-subtitle) {
  color: #18243a;
  font-size: 1.15rem;
  line-height: 1.55;
  margin: 0 0 26px;
  max-width: 550px;
}

.heritage-subtitle {
  color: var(--red);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-trust-strip span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(197, 138, 44, 0.36);
  border-radius: 999px;
  color: #2e2116;
  font-size: 0.84rem;
  font-weight: 850;
  padding: 9px 13px;
}

/* Kolkata-only: Moving header row (natural movement, equal intervals). */
.kolkata-hero .moving-heritage-lane {
  margin-top: 18px;
  pointer-events: none;
  position: relative;
  width: min(640px, 100%);
  height: 74px;
  overflow: hidden;
}

.kolkata-hero .moving-heritage-item {
  height: 64px;
  object-fit: contain;
  opacity: 0.98;
  width: auto;
  filter: drop-shadow(0 14px 18px rgba(7, 31, 68, 0.18));
}

.kolkata-hero .moving-heritage-track {
  align-items: flex-end;
  display: flex;
  gap: 10px; /* tighter gap */
  height: 100%;
  width: max-content;
  animation: heritageLoop 10s linear infinite;
  will-change: transform;
}

/* Continuous forward direction: left → right */
@keyframes heritageLoop {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .kolkata-hero .moving-heritage-track {
    animation: none;
  }
}

.search-shell {
  margin: -86px auto 0;
  max-width: 1120px;
  padding: 0 22px;
  position: relative;
  z-index: 4;
}

.search-tabs,
.quick-search {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(197, 138, 44, 0.28);
  box-shadow: var(--rich-shadow);
  backdrop-filter: blur(18px);
}

.search-tabs {
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 720px;
  overflow: hidden;
}

.search-tabs button {
  background: linear-gradient(180deg, #fffdf8, #fff7e8);
  border: 0;
  border-right: 1px solid rgba(197, 138, 44, 0.24);
  color: #06152e;
  cursor: pointer;
  font-weight: 800;
  min-height: 58px;
}

.search-tabs .is-selected {
  background: #fff;
  color: var(--navy);
  box-shadow: inset 0 -3px 0 var(--gold);
}

.quick-search {
  align-items: center;
  border-radius: 0 8px 8px 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 140px;
  padding: 22px 26px;
}

.quick-search label {
  border-right: 1px solid rgba(197, 138, 44, 0.24);
  display: grid;
  gap: 5px;
  min-height: 46px;
  padding-right: 18px;
}

.quick-search span {
  color: var(--muted);
  font-size: 0.85rem;
}

.quick-search strong {
  color: var(--ink);
  font-size: 1rem;
}

.quick-search input {
  border: 0;
  color: var(--ink);
  min-height: auto;
  padding: 0;
}

.content-section {
  margin: 0 auto;
  max-width: 1200px;
  padding: 72px 22px 0;
}

.section-title-row {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  margin-bottom: 22px;
}

.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  grid-column: 1 / -1;
  letter-spacing: 0.14em;
  margin: 0 0 -10px;
  text-transform: uppercase;
}

.section-title-row h2,
.why-band h2,
.cta-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0;
}

.section-title-row a {
  color: var(--navy);
  font-weight: 850;
  white-space: nowrap;
}

.experience-grid {
  display: grid;
  gap: 22px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-card img,
.itinerary-card img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.experience-card,
.itinerary-card {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(197, 138, 44, 0.22);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 31, 68, 0.08);
}

.experience-card {
  display: grid;
  overflow: hidden;
  padding: 10px 10px 16px;
}

.experience-card img {
  aspect-ratio: 4 / 3;
  box-shadow: inset 0 0 0 1px rgba(197, 138, 44, 0.16);
  filter: saturate(1.24) brightness(1.1) contrast(1.04);
}

.experience-card-copy {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 132px;
}

.experience-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  margin: 14px 8px 4px;
}

.experience-card p,
.experience-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
  margin: 0 8px;
}

.experience-card span {
  color: var(--navy);
  display: inline-block;
  font-weight: 700;
  margin-top: 10px;
}

.experience-card-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 8px 0;
}

.plan-toggle {
  background: #fff;
  border: 1px solid rgba(5, 43, 99, 0.42);
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  padding: 10px 14px;
}

.plan-toggle[aria-pressed="true"] {
  background: linear-gradient(135deg, rgba(197, 138, 44, 0.22), rgba(255, 255, 255, 0.8));
  border-color: rgba(197, 138, 44, 0.7);
  color: #2e2116;
}

.plan-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(239, 215, 164, 0.42);
}

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

.itinerary-card {
  overflow: hidden;
}

.itinerary-card img {
  filter: saturate(1.18) brightness(1.08) contrast(1.03);
}

.itinerary-collage {
  aspect-ratio: 4 / 3;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  padding: 10px;
}

.itinerary-collage img {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
  filter: saturate(1.18) brightness(1.08) contrast(1.03);
}

.itinerary-card-body {
  padding: 18px;
}

.badge {
  background: linear-gradient(135deg, var(--gold), #f0c064);
  border-radius: 999px;
  color: #07142b;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 10px;
  padding: 5px 9px;
  text-transform: uppercase;
}

.itinerary-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  margin: 0 0 8px;
}

.itinerary-card p,
.itinerary-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 12px;
}

.price-row {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.price-row strong {
  font-size: 1.7rem;
}

.details-button {
  background: #fff;
  border: 1px solid rgba(5, 43, 99, 0.42);
  border-radius: 7px;
  color: var(--navy);
  font-weight: 850;
  padding: 10px 14px;
}

.why-band {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 247, 232, 0.96), rgba(255, 255, 255, 0.84)),
    var(--cream);
  border-block: 1px solid rgba(197, 138, 44, 0.22);
  display: grid;
  gap: 36px;
  grid-template-columns: 0.9fr 1.6fr;
  margin-top: 54px;
  padding: 46px clamp(22px, 7vw, 86px);
}

.why-band p {
  color: var(--muted);
  margin: 10px 0 0;
}

.benefit-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-grid article {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(197, 138, 44, 0.2);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  display: grid;
  gap: 7px;
  padding: 16px 16px 16px 18px;
}

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

.cta-band {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 43, 99, 0.96), rgba(0, 85, 140, 0.94)),
    linear-gradient(135deg, rgba(197, 138, 44, 0.24), transparent 44%),
    var(--navy);
  color: #fff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 44px clamp(22px, 7vw, 86px);
}

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

.cta-band p {
  margin: 9px 0 0;
}

.light-action {
  background: linear-gradient(135deg, #fff9ea, #f3d89e);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  color: var(--navy);
  font-weight: 900;
  padding: 14px 22px;
}

.site-footer {
  align-items: start;
  background:
    linear-gradient(180deg, #fff, #fff9ed),
    #fff;
  border-top: 1px solid rgba(197, 138, 44, 0.24);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  padding: 34px clamp(22px, 7vw, 86px);
}

.site-footer h2 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 8px;
}

.site-footer p {
  color: var(--muted);
  margin: 0;
  max-width: 420px;
}

.footer-columns {
  display: grid;
  gap: 8px 30px;
  grid-template-columns: repeat(2, max-content);
}

.footer-columns a {
  color: #10294f;
  font-weight: 700;
}

.whatsapp-link {
  align-items: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  color: inherit;
  display: inline-flex;
  height: auto;
  justify-content: center;
  padding: 8px;
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  width: auto;
  z-index: 50;
  transition: transform 180ms ease;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  transform: translateY(-2px) scale(1.02);
}

.whatsapp-link svg {
  display: block;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .city-tile-grid,
  .itinerary-grid,
  .why-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .quick-search {
    grid-template-columns: 1fr 1fr;
  }

  .quick-search label {
    border-right: 0;
  }

  .quick-search button {
    grid-column: 1 / -1;
  }

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

@media (max-width: 640px) {
  .header-actions,
  .section-title-row,
  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

  .city-tile {
    min-height: 300px;
  }

  .kolkata-hero {
    min-height: 620px;
    padding-bottom: 210px;
  }

  .moving-heritage-lane {
    bottom: 76px;
    height: 122px;
  }

  .real-tram {
    height: 72px;
  }

  .real-boat {
    height: 60px;
  }

  .real-taxi {
    height: 54px;
  }

  .real-rickshaw {
    height: 64px;
  }

  .search-tabs,
  .quick-search,
  .experience-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }


  .search-tabs {
    max-width: none;
  }

  .quick-search {
    border-radius: 0 0 8px 8px;
  }

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