:root {
  --indigo: #143f6b;
  --indigo-deep: #071f38;
  --bluecity: #2f6f9f;
  --sand: #c48a37;
  --sand-light: #f0c06a;
  --marigold: #d58a2a;
  --paper: #f8f2e8;
  --paper-2: #efe3d0;
  --panel: #fffaf2;
  --ink: #17212c;
  --ink-soft: #64707c;
  --line: #e2d3be;
  --shadow: 0 24px 70px rgba(7, 31, 56, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(20, 63, 107, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf2 0, var(--paper) 620px);
  background-size: 84px 84px, auto;
  font-family: "Mulish", sans-serif;
  line-height: 1.6;
}

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

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

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

h1,
h2,
h3,
.display {
  font-family: "Marcellus", serif;
  font-weight: 400;
  line-height: 1.08;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sand-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section .eyebrow,
.contact .eyebrow {
  color: var(--marigold);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section {
  padding: 86px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head h2 {
  max-width: 680px;
  margin: 0.55rem 0 0.75rem;
  color: var(--indigo-deep);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-head p {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

:focus-visible {
  outline: 3px solid var(--sand-light);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Header */
.topstrip {
  background: var(--indigo-deep);
  color: #cfe0ef;
  font-size: 0.79rem;
  padding: 8px 0;
}

.topstrip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.topstrip a {
  color: var(--sand-light);
  font-weight: 850;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(226, 211, 190, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

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

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: end center;
  padding-bottom: 8px;
  border-radius: 50%;
  border: 1px solid rgba(240, 192, 106, 0.55);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #0b5f9f, var(--indigo));
  color: var(--sand-light);
  font-family: "Marcellus", serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  box-shadow:
    inset 0 0 0 2px rgba(7, 31, 56, 0.16),
    0 10px 24px rgba(20, 63, 107, 0.2);
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 25px;
  height: 13px;
  transform: translateX(-50%);
  background: var(--sand-light);
  clip-path: polygon(0 100%, 0 45%, 18% 72%, 32% 20%, 50% 65%, 68% 20%, 82% 72%, 100% 45%, 100% 100%);
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 24px;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(240, 192, 106, 0.85);
}

.brand-name {
  color: var(--indigo-deep);
  font-family: "Marcellus", serif;
  font-size: 1.32rem;
}

.brand-name small {
  display: block;
  color: var(--marigold);
  font-family: "Mulish", sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.nav-links a {
  color: #344452;
  font-size: 0.8rem;
  font-weight: 850;
}

.nav-links a:hover {
  color: var(--indigo);
}

.nav-links .nav-call {
  padding: 7px 12px;
  border: 1px solid var(--indigo);
  border-radius: 999px;
  color: var(--indigo);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--indigo-deep);
  cursor: pointer;
  font-size: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.btn-gold {
  background: var(--sand-light);
  color: #2a1a05;
  box-shadow: 0 12px 24px rgba(196, 138, 55, 0.22);
}

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

.btn-line {
  border: 1.5px solid var(--indigo);
  color: var(--indigo);
  background: transparent;
}

.btn-line:hover {
  background: var(--indigo);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--indigo-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 56, 0.9), rgba(7, 31, 56, 0.58), rgba(7, 31, 56, 0.2)),
    linear-gradient(180deg, rgba(7, 31, 56, 0.28), rgba(7, 31, 56, 0.92)),
    url("../assets/marwar-photos/marwar-hero-blue-city.jpg")
      center / cover;
  transform: scale(1.02);
}

.hero-sky {
  position: relative;
  z-index: 1;
  color: #f5f7fb;
  padding: 86px 0 168px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.hero h1 {
  max-width: 760px;
  margin: 0.75rem 0 1rem;
  color: #fff;
  font-size: clamp(3rem, 6.8vw, 5.9rem);
}

.hero h1 em {
  color: var(--sand-light);
  font-style: normal;
}

.hero p.lead {
  max-width: 52ch;
  color: rgba(245, 247, 251, 0.84);
  font-size: 1.12rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 640px;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.hero-points li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--sand-light);
}

.skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  opacity: 0.72;
  pointer-events: none;
}

/* Booking */
.book-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.95);
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.book-card::before {
  content: "";
  display: block;
  height: 7px;
  background: linear-gradient(90deg, var(--sand-light), var(--marigold), var(--bluecity));
}

.book-head {
  padding: 24px 26px 8px;
}

.book-head h2 {
  color: var(--indigo-deep);
  font-size: 1.52rem;
}

.book-head p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 22px 0;
}

.tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #52606d;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 950;
}

.tab[aria-selected="true"] {
  border-color: var(--indigo);
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 12px 28px rgba(20, 63, 107, 0.22);
}

.book-body {
  padding: 18px 24px 26px;
}

.fgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

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

.field label {
  color: #495662;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #d8c8b3;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 0.92rem;
  outline: none;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(20, 63, 107, 0.13);
}

.field .err {
  display: none;
  color: #b3261e;
  font-size: 0.72rem;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #b3261e;
}

.field.invalid .err {
  display: block;
}

.book-actions {
  display: grid;
  gap: 9px;
  margin-top: 17px;
}

.btn-wa {
  width: 100%;
  background: #128c4a;
  color: #fff;
  box-shadow: 0 14px 30px rgba(18, 140, 74, 0.26);
}

.book-note {
  color: var(--ink-soft);
  font-size: 0.76rem;
  text-align: center;
}

/* Trust */
.trustband {
  position: relative;
  z-index: 3;
  margin-top: -54px;
  padding: 0 0 24px;
}

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

.trust {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(226, 211, 190, 0.9);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 18px 44px rgba(7, 31, 56, 0.1);
}

.trust .ic {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--indigo-deep);
  color: var(--sand-light);
  font-size: 0.78rem;
  font-weight: 950;
}

.trust b {
  display: block;
  color: var(--indigo-deep);
  font-size: 0.94rem;
}

.trust span {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

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

.svc {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(7, 31, 56, 0.08);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.svc:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(7, 31, 56, 0.13);
}

.svc-visual {
  position: relative;
  min-height: 225px;
  display: flex;
  align-items: end;
  padding: 18px;
  background-size: cover;
  background-position: center;
}

.svc-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 31, 56, 0.05), rgba(7, 31, 56, 0.82));
}

.svc-visual span {
  position: relative;
  z-index: 1;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.16);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.svc-visual.v-car {
  background-image: url("../assets/cars/car-hatchback.jpg");
}

.svc-visual.v-tour {
  background-image: url("../assets/tours/mehrangarh.jpg");
}

.svc-visual.v-hotel {
  background-image: url("../assets/marwar-photos/marwar-heritage-hotel.jpg");
}

.svc-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 23px;
}

.svc-body h3 {
  color: var(--indigo-deep);
  font-size: 1.52rem;
}

.svc-body p {
  flex: 1;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.svc-list {
  display: grid;
  gap: 7px;
  list-style: none;
  color: #344452;
  font-size: 0.86rem;
}

.svc-list li {
  position: relative;
  padding-left: 18px;
}

.svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 2px;
  background: var(--sand);
}

.svc-price {
  color: var(--marigold);
  font-size: 0.8rem;
  font-weight: 950;
}

/* Curated image journey */
.visual-journey {
  background: #fffaf2;
  border-top: 1px solid var(--line);
}

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

.journey-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--indigo-deep);
  box-shadow: 0 18px 46px rgba(7, 31, 56, 0.1);
}

.journey-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 516px;
}

.journey-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.journey-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 31, 56, 0.06), rgba(7, 31, 56, 0.86));
}

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

.journey-card div {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
}

.journey-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--sand-light);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.journey-card h3 {
  max-width: 12ch;
  font-size: 1.35rem;
}

.journey-card.large h3 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

/* Packages */
.bg-indigo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 31, 56, 0.9), rgba(7, 31, 56, 0.92)),
    url("../assets/marwar-photos/marwar-desert-dunes.jpg")
      center / cover;
  color: #e7eef7;
}

.bg-indigo .section-head h2 {
  color: #fff;
}

.bg-indigo .section-head p {
  color: #c0d0e1;
}

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

.pkg {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(240, 192, 106, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.pkg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.pkg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 31, 56, 0.5), rgba(7, 31, 56, 0.92));
}

.pkg:nth-child(1)::before {
  background-image: url("../assets/tours/mehrangarh.jpg");
}

.pkg:nth-child(2)::before {
  background-image: url("../assets/marwar-photos/marwar-camel-safari.jpg");
}

.pkg:nth-child(3)::before {
  background-image: url("../assets/marwar-photos/marwar-desert-dunes.jpg");
}

.pkg:nth-child(4)::before {
  background-image: url("../assets/marwar-photos/marwar-jodhpur-market.jpg");
}

.pkg .tag {
  align-self: flex-start;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(240, 192, 106, 0.14);
  color: var(--sand-light);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pkg h3 {
  color: #fff;
  font-size: 1.58rem;
}

.pkg p {
  flex: 1;
  color: #c4d3e2;
  font-size: 0.9rem;
}

.pkg .from {
  color: #9db2c7;
  font-size: 0.8rem;
}

.pkg .from b {
  display: block;
  color: var(--sand-light);
  font-family: "Marcellus", serif;
  font-size: 1.78rem;
  font-weight: 400;
}

.pkg .btn {
  align-self: flex-start;
}

/* AI package builder */
.package-builder {
  background:
    linear-gradient(180deg, #fffaf2, #f4eadb);
  border-bottom: 1px solid var(--line);
}

.builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  gap: 26px;
  align-items: stretch;
}

.builder-panel,
.builder-result,
.hotel-shortlist {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 18px 46px rgba(7, 31, 56, 0.08);
}

.builder-panel {
  padding: 24px;
}

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

.interest-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(226, 211, 190, 0.9);
  border-radius: 18px;
  background: #fff;
}

.interest-box span {
  grid-column: 1 / -1;
  color: var(--indigo-deep);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.interest-box label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #344452;
  font-size: 0.88rem;
  font-weight: 800;
}

.interest-box input {
  accent-color: var(--indigo);
}

.builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.builder-result {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(7, 31, 56, 0.9), rgba(7, 31, 56, 0.94)),
    url("../assets/marwar-photos/marwar-umaid-bhawan.jpg") center / cover;
  color: #fff;
}

.result-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--sand-light);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.builder-result h3 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.result-summary {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.cost-band {
  display: grid;
  gap: 3px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(240, 192, 106, 0.35);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.1);
}

.cost-band span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cost-band b {
  color: var(--sand-light);
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.result-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.result-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.result-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 2px;
  background: var(--sand-light);
}

.hotel-shortlist {
  margin-top: 24px;
  padding: 24px;
}

.hotel-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.hotel-head h3 {
  color: var(--indigo-deep);
  font-size: 1.5rem;
}

.hotel-head p {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

.hotel-shortlist-link {
  width: fit-content;
  margin-top: 18px;
}

.hotel-card {
  overflow: hidden;
  display: grid;
  gap: 6px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(226, 211, 190, 0.9);
  border-radius: 18px;
  background: #fff;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
}

.hotel-card-visual {
  grid-template-rows: auto auto auto auto;
  padding: 0 0 18px;
}

.hotel-card-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-bottom: 1px solid rgba(226, 211, 190, 0.9);
}

.hotel-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 63, 107, 0.38);
  box-shadow: 0 16px 36px rgba(7, 31, 56, 0.09);
}

.hotel-card span {
  margin: 0 18px;
  color: var(--marigold);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hotel-card b {
  margin: 0 18px;
  color: var(--indigo-deep);
  font-family: "Marcellus", serif;
  font-size: 1.24rem;
  font-weight: 400;
}

.hotel-card small {
  margin: 0 18px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

/* Rates */
.rate-section {
  background: #fffaf2;
}

.rate-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(7, 31, 56, 0.08);
}

.rate-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  border-top: 1px solid var(--line);
}

.rate-row:first-child {
  border-top: 0;
}

.rate-row span {
  padding: 18px 20px;
  border-left: 1px solid var(--line);
  color: #344452;
  font-size: 0.93rem;
}

.rate-row span:first-child {
  border-left: 0;
  color: var(--indigo-deep);
  font-weight: 950;
}

.rate-head {
  background: var(--indigo-deep);
}

.rate-head span,
.rate-head span:first-child {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.suggestion-card {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.82)),
    url("../assets/marwar-photos/marwar-bishnoi-village.jpg") center / cover;
  box-shadow: 0 18px 46px rgba(7, 31, 56, 0.08);
}

.suggestion-card h3 {
  color: var(--indigo-deep);
  font-size: 1.45rem;
}

.suggestion-card p {
  max-width: 78ch;
  color: var(--ink-soft);
}

.suggestion-card .btn {
  width: fit-content;
}

/* Founder */
.founder-section {
  background:
    linear-gradient(90deg, rgba(7, 31, 56, 0.94), rgba(20, 63, 107, 0.82)),
    url("../assets/marwar-photos/marwar-jodhpur-market.jpg") center / cover;
  color: #fff;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.founder-portrait {
  overflow: hidden;
  min-height: 430px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 192, 106, 0.3);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.16), rgba(255, 250, 242, 0.05)),
    radial-gradient(circle at 50% 30%, rgba(240, 192, 106, 0.32), transparent 42%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
}

.founder-copy .eyebrow {
  color: var(--sand-light);
}

.founder-copy h2 {
  max-width: 760px;
  margin: 0.55rem 0 1rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.founder-copy p {
  max-width: 76ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
}

.founder-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.founder-points span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.founder-points b {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.founder-actions .btn-line {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
}

.founder-actions .btn-line:hover {
  border-color: #fff;
  background: #fff;
  color: var(--indigo-deep);
}

/* Why and assurance */
.why-grid,
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why,
.tst {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(7, 31, 56, 0.07);
}

.why {
  border-top: 5px solid var(--sand);
}

.why h3 {
  margin-bottom: 8px;
  color: var(--indigo-deep);
  font-size: 1.18rem;
}

.why p,
.tst p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.tst .stars {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--indigo-deep);
  color: var(--sand-light);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
}

.tst footer {
  margin-top: 16px;
  color: var(--indigo);
  font-size: 0.82rem;
  font-weight: 950;
}

/* Contact */
.contact {
  background:
    linear-gradient(90deg, rgba(248, 242, 232, 0.94), rgba(248, 242, 232, 0.82)),
    url("../assets/marwar-photos/marwar-jodhpur-market.jpg")
      center / cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.82fr);
  gap: 44px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(226, 211, 190, 0.96);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.contact-card .row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #344452;
  font-size: 0.93rem;
}

.contact-card .row .ic {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--indigo-deep);
  color: var(--sand-light);
  font-size: 0.68rem;
  font-weight: 950;
}

.contact-card .row.highlight {
  padding: 14px;
  border: 1px solid rgba(196, 138, 55, 0.45);
  border-radius: 16px;
  background: rgba(240, 192, 106, 0.12);
}

.contact-card a {
  color: var(--indigo);
  font-weight: 950;
}

footer.site {
  padding: 34px 0;
  background: var(--indigo-deep);
  color: #9fb6cc;
  font-size: 0.84rem;
}

footer.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

footer.site a {
  color: #d1deeb;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #128c4a;
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
  font-size: 0.78rem;
  font-weight: 950;
}

.wa-float:hover {
  transform: scale(1.05);
}

/* Car rental page */
.rental-hero {
  overflow: hidden;
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 56, 0.94), rgba(20, 63, 107, 0.78)),
    url("../assets/tours/mehrangarh.jpg") center / cover;
  color: #fff;
}

.rental-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.rental-hero h1 {
  max-width: 760px;
  margin: 0.65rem 0 1rem;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.rental-hero p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.04rem;
}

.rental-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.rental-hero-card {
  overflow: hidden;
  border: 1px solid rgba(240, 192, 106, 0.34);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.rental-hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.rental-hero-card div {
  display: grid;
  gap: 5px;
  padding: 22px;
}

.rental-hero-card span {
  color: var(--sand-light);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rental-hero-card b {
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 2rem;
  font-weight: 400;
}

.rental-hero-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.rental-section {
  background: #fffaf2;
}

.vehicle-list {
  display: grid;
  gap: 22px;
}

.vehicle-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(7, 31, 56, 0.08);
}

.vehicle-media {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: flex-start;
  padding: 18px;
  background: #fff url("../assets/marwar-photos/marwar-car-rental.jpg") center / contain no-repeat;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.vehicle-media::after {
  content: none;
}

.vehicle-media span {
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(20, 63, 107, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: var(--indigo-deep);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vehicle-media.hatchback {
  background-image: url("../assets/cars/car-hatchback.jpg");
  background-position: 48% 50%;
}

.vehicle-media.sedan {
  background-image: url("../assets/cars/car-hatchback.jpg");
  background-position: 58% 50%;
}

.vehicle-media.ertiga {
  background-image: url("../assets/cars/car-ertiga.jpg");
  background-position: center;
}

.vehicle-media.innova {
  background-image: url("../assets/cars/car-innova.jpg");
  background-position: center;
}

.vehicle-media.hycross,
.vehicle-media.suv {
  background-image: url("../assets/cars/car-fourtuner.jpg");
  background-position: center;
}

.vehicle-media.traveller {
  background-image: url("../assets/cars/car-tempo-traveller.jpg");
  background-position: center;
}

.vehicle-info {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.vehicle-title span {
  color: var(--marigold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vehicle-title h3 {
  margin-top: 6px;
  color: var(--indigo-deep);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

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

.vehicle-specs span {
  min-height: 74px;
  display: grid;
  gap: 4px;
  align-content: center;
  padding: 12px;
  border: 1px solid rgba(226, 211, 190, 0.9);
  border-radius: 14px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.vehicle-specs b {
  display: block;
  color: var(--indigo-deep);
  font-size: 0.9rem;
}

.rental-rate {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.rental-rate span {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-left: 1px solid var(--line);
}

.rental-rate span:first-child {
  border-left: 0;
}

.rental-rate small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rental-rate b {
  color: var(--indigo-deep);
  font-family: "Marcellus", serif;
  font-size: clamp(1.1rem, 2.4vw, 1.75rem);
  font-weight: 400;
}

.vehicle-info .btn {
  width: fit-content;
}

.rental-note {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.95), rgba(255, 250, 242, 0.84)),
    url("../assets/cars/car-innova.jpg") center / cover;
  box-shadow: 0 18px 46px rgba(7, 31, 56, 0.08);
}

.rental-note h2 {
  color: var(--indigo-deep);
  font-size: 1.6rem;
}

.rental-note p {
  max-width: 84ch;
  color: var(--ink-soft);
}

.rental-note .btn {
  width: fit-content;
}

/* Packages page */
.package-hero {
  overflow: hidden;
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 56, 0.94), rgba(20, 63, 107, 0.76)),
    url("../assets/marwar-photos/marwar-desert-dunes.jpg") center / cover;
  color: #fff;
}

.package-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.package-hero h1 {
  max-width: 760px;
  margin: 0.65rem 0 1rem;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.package-hero p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.04rem;
}

.package-hero-photo {
  overflow: hidden;
  border: 1px solid rgba(240, 192, 106, 0.34);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.package-hero-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.city-tour-hero .package-hero-photo img {
  object-fit: contain;
  background: #fff;
}

.package-page-section {
  background: #fffaf2;
}

.package-list {
  display: grid;
  gap: 24px;
}

.tour-package-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(7, 31, 56, 0.08);
}

.tour-package-img {
  position: relative;
  min-height: 360px;
  background: var(--indigo-deep);
}

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

.city-tour-page .tour-package-img {
  background: #fff;
}

.city-tour-page .tour-package-img::after {
  content: none;
}

.city-tour-page .tour-package-img img {
  object-fit: contain;
}

.city-tour-page .tour-package-img span {
  border: 1px solid rgba(20, 63, 107, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: var(--indigo-deep);
}

.tour-package-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 31, 56, 0.06), rgba(7, 31, 56, 0.74));
}

.tour-package-img span {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--indigo-deep);
  color: var(--sand-light);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-package-body {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 28px;
}

.tour-package-title span {
  color: var(--marigold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tour-package-title h3 {
  margin-top: 6px;
  color: var(--indigo-deep);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}

.tour-package-body p {
  max-width: 70ch;
  color: var(--ink-soft);
}

.tour-package-body ul {
  display: grid;
  gap: 9px;
  list-style: none;
  color: #344452;
  font-size: 0.92rem;
}

.tour-package-body li {
  position: relative;
  padding-left: 18px;
}

.tour-package-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 2px;
  background: var(--sand);
}

.package-price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.package-price-row span {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border-left: 1px solid var(--line);
}

.package-price-row span:first-child {
  border-left: 0;
}

.package-price-row small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-price-row b {
  color: var(--indigo-deep);
  font-family: "Marcellus", serif;
  font-size: clamp(1.1rem, 2.4vw, 1.75rem);
  font-weight: 400;
}

.tour-package-body .btn {
  width: fit-content;
}

/* Hotels page */
.hotel-page-hero {
  overflow: hidden;
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 56, 0.94), rgba(20, 63, 107, 0.76)),
    url("../assets/hotels/ratan-vilas.jpg") center / cover;
  color: #fff;
}

.hotel-page-hero h1 {
  max-width: 760px;
  margin: 0.65rem 0 1rem;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.hotel-page-hero p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.04rem;
}

.hotel-page-section {
  background: #fffaf2;
}

.hotel-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.hotel-detail-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(190px, 0.46fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(7, 31, 56, 0.08);
}

.hotel-detail-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.hotel-detail-card div {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
}

.hotel-detail-card span {
  color: var(--marigold);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hotel-detail-card h3 {
  color: var(--indigo-deep);
  font-size: 1.7rem;
}

.hotel-detail-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.hotel-detail-card b {
  color: var(--indigo-deep);
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.hotel-detail-card .btn {
  width: fit-content;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .founder-card,
  .builder-grid,
  .rental-hero-grid,
  .package-hero-grid,
  .vehicle-card,
  .tour-package-card,
  .hotel-detail-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-sky {
    padding-bottom: 118px;
  }

  .trust-grid,
  .svc-grid,
  .pkg-grid,
  .hotel-detail-grid,
  .hotel-grid,
  .journey-grid,
  .why-grid,
  .tst-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-card.large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 380px;
  }

  .book-card {
    max-width: 720px;
  }

  .founder-portrait {
    min-height: 300px;
  }

  .founder-points {
    grid-template-columns: 1fr;
  }

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

  .tour-package-img {
    min-height: 300px;
  }

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

  .rate-row span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .rate-row span:first-child {
    border-top: 0;
    background: rgba(20, 63, 107, 0.06);
  }

  .rate-head span {
    display: none;
  }

  .rate-head span:first-child {
    display: block;
    background: transparent;
  }
}

@media (max-width: 680px) {
  .wrap {
    padding: 0 18px;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px 18px;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
  }

  .menu-toggle {
    display: block;
  }

  .hero-sky {
    padding: 56px 0 96px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero p.lead {
    font-size: 1rem;
  }

  .trustband {
    margin-top: -34px;
  }

  .trust-grid,
  .svc-grid,
  .pkg-grid,
  .builder-fields,
  .interest-box,
  .hotel-grid,
  .journey-grid,
  .why-grid,
  .tst-grid,
  .fgrid {
    grid-template-columns: 1fr;
  }

  .journey-card,
  .journey-card.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .field.full {
    grid-column: auto;
  }

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

  .section {
    padding: 62px 0;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .btn {
    width: 100%;
  }

  .suggestion-card .btn {
    width: 100%;
  }

  .rental-actions,
  .vehicle-info .btn,
  .tour-package-body .btn,
  .hotel-detail-card .btn,
  .rental-note .btn {
    width: 100%;
  }

  .package-price-row,
  .rental-rate {
    grid-template-columns: 1fr;
  }

  .package-price-row span,
  .rental-rate span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .package-price-row span:first-child,
  .rental-rate span:first-child {
    border-top: 0;
  }

  .builder-actions {
    display: grid;
  }

  .hotel-head {
    display: grid;
  }

  .topstrip .wrap {
    justify-content: center;
    text-align: center;
  }
}
