/* =========================================================
   ಕರ್ನಾಟಕ ಟ್ರಾವೆಲ್ಸ್ — Premium Redesign
   Palette drawn from Mysore silk (wine + zari gold), the
   Western Ghats (deep forest) and sandalwood ivory paper.
   Display type: Tiro Kannada (serif) — heritage & elegance.
   Body type: Noto Sans Kannada. Utility/Latin: Poppins.
   Signature: a gold "zari thread" rule under every eyebrow,
   and temple-arch silhouettes on key photography.
   ========================================================= */

:root {
  --wine: #6b1e46;
  --wine-deep: #3d1029;
  --gold: #c9972e;
  --gold-light: #e8c766;
  --forest: #1f4d3a;
  --vermilion: #a5432e;
  --ink: #241a14;
  --text: #3a2c22;
  --muted: #7a6a5a;
  --bg: #f6efdd;
  --paper: #fffbf2;
  --surface: rgba(255, 251, 242, 0.86);
  --surface-solid: #fffdf7;
  --line: rgba(36, 26, 20, 0.13);
  --gold-line: rgba(201, 151, 46, 0.4);
  --shadow-soft: 0 18px 55px rgba(61, 16, 41, 0.14);
  --shadow-strong: 0 30px 80px rgba(61, 16, 41, 0.26);
  --radius: 10px;
  --radius-sm: 7px;
  --container: 1180px;
}

[data-theme="dark"] {
  --bg: #170f14;
  --paper: #201319;
  --surface: rgba(32, 19, 25, 0.88);
  --surface-solid: #241620;
  --ink: #f6ecd9;
  --text: #ecdfcf;
  --muted: #b8a68f;
  --line: rgba(232, 199, 102, 0.16);
  --gold-line: rgba(232, 199, 102, 0.32);
  --shadow-soft: 0 18px 55px rgba(0, 0, 0, 0.36);
  --shadow-strong: 0 30px 90px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(107, 30, 70, 0.07), transparent 60%),
    linear-gradient(180deg, rgba(31, 77, 58, 0.06), transparent 520px),
    var(--bg);
  color: var(--text);
  font-family: "Noto Sans Kannada", "Poppins", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.newsletter h2,
.offer-wrap h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Tiro Kannada", "Noto Sans Kannada", serif;
  font-size: 2.9rem;
  line-height: 1.24;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.section-heading p,
.section-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Eyebrow + signature "zari thread" rule -------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--forest);
  font-family: "Poppins", "Noto Sans Kannada", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 46px;
  height: 3px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 6px,
    transparent 6px,
    transparent 10px
  );
}

[data-theme="dark"] .eyebrow {
  color: var(--gold-light);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(107, 30, 70, 0.14), transparent 60%),
    var(--bg);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 10px 10px / 34% 34% 10px 10px;
  color: var(--gold-light);
  font-family: "Tiro Kannada", serif;
  font-size: 2.35rem;
  background: linear-gradient(150deg, var(--wine), var(--wine-deep));
  box-shadow: var(--shadow-soft);
  animation: pulse 1.4s ease-in-out infinite;
}

.loader p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--vermilion), var(--forest));
}

.custom-cursor {
  position: fixed;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  z-index: 9997;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

.custom-cursor.active {
  opacity: 0.75;
}

.custom-cursor.hover {
  width: 38px;
  height: 38px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  width: min(100% - 40px, 1260px);
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  background: rgba(255, 251, 242, 0.8);
  box-shadow: 0 18px 50px rgba(61, 16, 41, 0.16);
  backdrop-filter: blur(18px);
}

[data-theme="dark"] .navbar,
.site-header.scrolled .navbar {
  border-color: var(--line);
  background: var(--surface);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% var(--radius-sm) var(--radius-sm) / 34% 34% var(--radius-sm) var(--radius-sm);
  color: var(--gold-light);
  font-family: "Tiro Kannada", serif;
  font-size: 1.5rem;
  background: linear-gradient(150deg, var(--wine), var(--wine-deep));
  box-shadow: 0 12px 30px rgba(107, 30, 70, 0.34);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-family: "Tiro Kannada", serif;
  font-size: 1.18rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.1;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  padding: 10px 10px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--wine);
  background: rgba(107, 30, 70, 0.08);
  transform: translateY(-1px);
}

[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a.active {
  color: var(--gold-light);
  background: rgba(232, 199, 102, 0.1);
}

.theme-toggle,
.btn,
.btn-small,
.icon-button {
  border: 0;
  position: relative;
  overflow: hidden;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: rgba(201, 151, 46, 0.16);
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(107, 30, 70, 0.1);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 96svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 136px 0 108px;
  isolation: isolate;
}

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

.hero-bg {
  z-index: -4;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 7s ease;
}

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

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(100deg, rgba(23, 9, 15, 0.92) 0%, rgba(107, 30, 70, 0.62) 46%, rgba(31, 77, 58, 0.24) 100%),
    linear-gradient(0deg, rgba(246, 239, 221, 0.98) 0%, rgba(246, 239, 221, 0) 26%);
}

[data-theme="dark"] .hero-overlay {
  background:
    linear-gradient(100deg, rgba(10, 6, 8, 0.94) 0%, rgba(107, 30, 70, 0.56) 46%, rgba(31, 77, 58, 0.2) 100%),
    linear-gradient(0deg, rgba(23, 15, 20, 0.98) 0%, rgba(23, 15, 20, 0) 30%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 420px;
  align-items: center;
  gap: 56px;
}

.hero-copy {
  color: #fff;
  max-width: 790px;
}

.hero-copy .eyebrow {
  color: var(--gold-light);
}

.hero-copy h1 {
  min-height: 164px;
  margin: 0;
  font-family: "Tiro Kannada", serif;
  font-size: 4.7rem;
  line-height: 1.14;
  font-weight: 400;
  letter-spacing: 0.2px;
  text-wrap: balance;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.hero-copy h1 span::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.82em;
  margin-left: 7px;
  background: var(--gold);
  animation: blink 0.8s steps(2, start) infinite;
  vertical-align: -0.08em;
}

.hero-subtitle {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.17rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(232, 199, 102, 0.32);
  border-radius: var(--radius-sm);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-proof span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold-light);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  box-shadow: 0 18px 44px rgba(107, 30, 70, 0.36);
}

.btn-accent {
  color: #2a1a08;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 44px rgba(201, 151, 46, 0.32);
}

.btn-glass {
  color: #fff;
  border: 1px solid rgba(232, 199, 102, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.full {
  width: 100%;
}

.hero-card {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(232, 199, 102, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 251, 242, 0.14);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(24px);
  animation: floatY 5.5s ease-in-out infinite;
}

.hero-card-image {
  width: 100%;
  height: 184px;
  object-fit: cover;
  border-radius: 92px 92px var(--radius-sm) var(--radius-sm) / 50px 50px var(--radius-sm) var(--radius-sm);
}

.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 4px 10px;
  color: #fff;
}

.hero-card-head span {
  font-weight: 900;
}

.hero-card-head strong {
  min-width: 64px;
  min-height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: #2a1a08;
  background: var(--gold);
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

.hero-route {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 4px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

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

.search-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 251, 242, 0.94);
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--text);
  background: var(--surface-solid);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 151, 46, 0.18);
}

.hero-mini-gallery {
  position: absolute;
  right: min(4vw, 54px);
  bottom: 72px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 82px);
  gap: 10px;
}

.hero-mini-gallery img {
  width: 82px;
  height: 104px;
  object-fit: cover;
  border: 2px solid rgba(232, 199, 102, 0.5);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 46px;
  z-index: 4;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(232, 199, 102, 0.55);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  width: 100%;
  height: 92px;
  fill: var(--bg);
}

.trust-strip {
  position: relative;
  z-index: 4;
  padding: 0 0 22px;
  margin-top: -34px;
  background: transparent;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.trust-grid span {
  min-height: 62px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.trust-grid span:last-child {
  border-right: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 56px;
}

.about-media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-media:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 148px;
  min-height: 148px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(232, 199, 102, 0.36);
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
  background: rgba(61, 16, 41, 0.68);
  backdrop-filter: blur(18px);
}

.experience-badge strong {
  display: block;
  color: var(--gold-light);
  font-family: "Tiro Kannada", serif;
  font-size: 3rem;
  line-height: 1;
}

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

.stat-card,
.service-card,
.pricing-card,
.contact-form,
.map-card,
.testimonial,
.feature-card,
.faq-list,
.destination-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 46px rgba(61, 16, 41, 0.1);
  backdrop-filter: blur(18px);
}

.stat-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  color: var(--wine);
  font-family: "Tiro Kannada", serif;
  font-size: 2.65rem;
  line-height: 1;
}

[data-theme="dark"] .stat-card strong {
  color: var(--gold-light);
}

.stat-card span {
  color: var(--muted);
  font-weight: 900;
}

.destinations {
  background:
    linear-gradient(180deg, rgba(31, 77, 58, 0.08), transparent 40%),
    var(--bg);
}

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

.destination-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.destination-card img {
  width: 100%;
  height: 292px;
  object-fit: cover;
  border-radius: 148px 148px 0 0 / 92px 92px 0 0;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.destination-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.card-body {
  position: relative;
  padding: 24px;
}

.rating {
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
}

.card-body h3,
.service-card h3,
.pricing-card h3,
.feature-card h3,
.timeline-step h3 {
  margin: 8px 0;
  color: var(--ink);
  font-family: "Tiro Kannada", "Noto Sans Kannada", serif;
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: 400;
}

.card-body p,
.service-card p,
.feature-card p,
.timeline-step p {
  margin: 0;
  color: var(--muted);
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.card-meta strong,
.price {
  color: var(--wine);
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

[data-theme="dark"] .card-meta strong,
[data-theme="dark"] .price {
  color: var(--gold-light);
}

.btn-small {
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  font-weight: 900;
}

.packages {
  background: var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 20px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.pricing-card.featured {
  color: #fff;
  border-color: rgba(232, 199, 102, 0.3);
  background:
    linear-gradient(155deg, rgba(107, 30, 70, 0.97), rgba(61, 16, 41, 0.97));
  transform: translateY(-16px);
  box-shadow: var(--shadow-strong);
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(232, 199, 102, 0.3);
  border-radius: calc(var(--radius) - 3px);
  pointer-events: none;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured li {
  color: #fff;
}

.pricing-card.featured .price {
  color: var(--gold-light);
}

.package-tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 13px;
  border-radius: 999px;
  color: #2a1a08;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  margin: 8px 0 20px;
  font-size: 2.25rem;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.pricing-card li {
  color: var(--muted);
  font-weight: 800;
}

.pricing-card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 9px;
  border-radius: 50%;
  color: #2a1a08;
  background: rgba(201, 151, 46, 0.4);
}

.pricing-card.featured li::before {
  color: #2a1a08;
  background: var(--gold-light);
}

.pricing-card .btn {
  margin-top: auto;
}

.services {
  background:
    linear-gradient(135deg, rgba(165, 67, 46, 0.08), transparent 42%),
    var(--bg);
}

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

.service-card {
  padding: 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: rgba(201, 151, 46, 0.4);
  transform: translateY(-7px);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: #fff;
  background: linear-gradient(135deg, var(--vermilion), var(--gold));
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

.offer-band {
  padding: 58px 0;
}

.offer-wrap {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(100deg, rgba(23, 9, 15, 0.92), rgba(107, 30, 70, 0.8), rgba(31, 77, 58, 0.62)),
    url("https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=1400&q=85") center/cover;
  box-shadow: var(--shadow-strong);
}

.offer-wrap .eyebrow,
.offer-wrap h2 {
  color: #fff;
}

.offer-wrap .eyebrow {
  color: var(--gold-light);
}

.countdown {
  display: flex;
  gap: 10px;
}

.countdown span {
  min-width: 76px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(232, 199, 102, 0.32);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.countdown strong {
  display: block;
  color: var(--gold-light);
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.gallery-section {
  background: var(--paper);
}

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  color: var(--text);
  background: var(--surface);
  font-weight: 900;
}

.filter-btn.active,
.filter-btn:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 214px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item:hover {
  transform: translateY(-6px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.12);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 9, 15, 0.68), transparent 55%);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 15px;
  z-index: 2;
  color: #fff;
  font-weight: 900;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 48px;
}

.slider-controls {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: var(--surface-solid);
  box-shadow: 0 12px 30px rgba(61, 16, 41, 0.14);
}

.slider-controls .icon-button {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  font-size: 2rem;
}

.testimonial-slider {
  position: relative;
  min-height: 368px;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 40px;
  opacity: 0;
  transform: translateX(24px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.testimonial p {
  position: relative;
  margin: 18px 0;
  padding-left: 6px;
  color: var(--ink);
  font-family: "Tiro Kannada", serif;
  font-size: 1.4rem;
  line-height: 1.5;
}

.testimonial strong,
.testimonial small {
  display: block;
}

.testimonial small {
  color: var(--muted);
}

.timeline-section {
  background: linear-gradient(180deg, rgba(31, 77, 58, 0.08), transparent 55%);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 9%;
  right: 9%;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--forest));
}

.timeline-step {
  position: relative;
  z-index: 1;
  padding: 88px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
  box-shadow: 0 16px 42px rgba(61, 16, 41, 0.1);
}

.timeline-step span {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  transform: translateX(-50%);
}

.blog-events {
  background: var(--paper);
}

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

.feature-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-soft);
}

.feature-card img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  border-radius: 120px 120px 0 0 / 74px 74px 0 0;
}

.feature-card span,
.feature-card h3,
.feature-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.feature-card span {
  display: inline-flex;
  margin-top: 22px;
  padding: 6px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card p {
  margin-bottom: 24px;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-solid);
}

.faq-item button {
  width: 100%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
  text-align: left;
}

.faq-item button::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  transition: transform 0.2s ease;
}

.faq-item.active button::after {
  content: "−";
  background: var(--gold);
  color: #2a1a08;
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact {
  background:
    linear-gradient(135deg, rgba(201, 151, 46, 0.1), transparent 36%),
    var(--bg);
}

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

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-details p {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.map-card {
  grid-column: 1 / -1;
  min-height: 320px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(23, 9, 15, 0.78), rgba(31, 77, 58, 0.5)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1400&q=85") center/cover;
}

.map-card div {
  width: min(90%, 420px);
  padding: 26px;
  border: 1px solid rgba(232, 199, 102, 0.3);
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.map-card strong,
.map-card span {
  display: block;
}

.map-card strong {
  font-family: "Tiro Kannada", serif;
  font-size: 2rem;
}

.newsletter {
  padding: 68px 0;
  background:
    linear-gradient(100deg, rgba(23, 9, 15, 0.95), rgba(107, 30, 70, 0.9), rgba(31, 77, 58, 0.86));
}

.newsletter-wrap {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.8fr);
  align-items: center;
  gap: 28px;
  color: #fff;
}

.newsletter .eyebrow,
.newsletter h2 {
  color: #fff;
}

.newsletter .eyebrow {
  color: var(--gold-light);
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(232, 199, 102, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.newsletter input {
  border: 0;
  border-radius: 999px;
  background: #fff;
}

.newsletter .btn {
  border-radius: 999px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #150c11;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 0.9fr;
  gap: 30px;
  padding: 72px 0 44px;
}

.footer-brand {
  color: #fff;
}

.footer-brand strong {
  font-family: "Tiro Kannada", serif;
  color: #fff;
}

.footer-brand small {
  color: #fff;
}

.site-footer p {
  margin: 16px 0 0;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-family: "Tiro Kannada", serif;
  font-weight: 400;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 10px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(232, 199, 102, 0.14);
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 199, 102, 0.14);
  padding: 18px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-action {
  position: fixed;
  right: 22px;
  z-index: 901;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.whatsapp {
  bottom: 28px;
  background: #1f8f4f;
}

.call {
  bottom: 154px;
  background: var(--vermilion);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 8, 11, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-panel {
  width: min(100%, 500px);
  position: relative;
  padding: 30px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  background: var(--surface-solid);
  box-shadow: var(--shadow-strong);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.modal.open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.6rem;
}

.modal-panel h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Tiro Kannada", serif;
  font-weight: 400;
}

.modal-panel form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 2500;
  max-width: calc(100% - 32px);
  padding: 14px 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translate(-50%, 14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  transform: scale(0);
  animation: ripple 0.55s linear;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 22px);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@media (max-width: 1160px) {
  .section-heading h2,
  .section-copy h2,
  .newsletter h2,
  .offer-wrap h2 {
    font-size: 2.4rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-copy h1 {
    min-height: 134px;
    font-size: 3.8rem;
  }

  .hero-card {
    max-width: 560px;
  }

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

  .pricing-card.featured {
    transform: none;
  }

  .split-layout,
  .review-layout,
  .contact-grid,
  .newsletter-wrap {
    grid-template-columns: 1fr;
  }

  .offer-wrap {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-solid);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

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

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .container,
  .navbar {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .section-copy h2,
  .newsletter h2,
  .offer-wrap h2 {
    font-size: 1.95rem;
  }

  .navbar {
    min-height: 66px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    display: none;
  }

  .nav-links,
  .pricing-grid,
  .destination-grid,
  .service-grid,
  .feature-grid,
  .stats-grid,
  .trust-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 110px;
  }

  .hero-copy h1 {
    min-height: 124px;
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-proof {
    display: grid;
  }

  .hero-card {
    padding: 10px;
    animation: none;
  }

  .hero-card-image {
    height: 160px;
  }

  .hero-route {
    display: grid;
  }

  .hero-mini-gallery {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  .trust-strip {
    margin-top: -18px;
  }

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

  .trust-grid span:last-child {
    border-bottom: 0;
  }

  .about-media,
  .about-media img {
    min-height: 420px;
  }

  .experience-badge {
    width: 128px;
    min-height: 128px;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .destination-card img,
  .feature-card img {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .testimonial-slider {
    min-height: 430px;
  }

  .testimonial {
    padding: 26px;
  }

  .testimonial p {
    font-size: 1.1rem;
  }

  .countdown {
    flex-wrap: wrap;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .floating-action,
  .back-top {
    right: 14px;
  }

  .call {
    bottom: 142px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}