:root {
  --brand: #07545a;
  --brand-deep: #04353a;
  --brand-mint: #d5ece7;
  --accent: #f0c24b;
  --accent-deep: #c69217;
  --paper: #fffdf7;
  --ink: #11201f;
  --muted: #536c69;
  --card: #ffffff;
  --radius: 20px;
  --shadow-soft: 0 24px 48px rgba(7, 84, 90, 0.16);
  --shadow-crisp: 0 14px 30px rgba(18, 33, 31, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% -12%, rgba(240, 194, 75, 0.22), transparent 38%),
    radial-gradient(circle at 92% 10%, rgba(7, 84, 90, 0.16), transparent 32%),
    var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section-pad {
  padding: 4.8rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(7, 84, 90, 0.04), rgba(240, 194, 75, 0.09));
}

.eyebrow {
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.2;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.76rem 1.24rem;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-solid {
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-soft {
  background: linear-gradient(180deg, #fff8dd, #ffeeb5);
  color: var(--brand-deep);
  border-color: rgba(240, 194, 75, 0.45);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.btn.full {
  width: 100%;
}

.top-alert {
  background: linear-gradient(90deg, #fff2c1, #f9dd7d);
  border-bottom: 1px solid rgba(4, 53, 58, 0.12);
}

.top-alert-wrap {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-alert-wrap p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2a28;
}

.top-alert-wrap a {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(8px);
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid rgba(7, 84, 90, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
}

.brand small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
}

.brand-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 10%, transparent 12%),
    linear-gradient(130deg, var(--accent), var(--brand));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.main-nav a {
  font-weight: 700;
  color: var(--brand-deep);
}

.nav-cta {
  display: flex;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  background: none;
  border: 1.5px solid rgba(7, 84, 90, 0.22);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand-deep);
  line-height: 1;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(7, 84, 90, 0.06);
}

.hero {
  position: relative;
  overflow: clip;
  border-bottom: 4px solid rgba(240, 194, 75, 0.55);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #07545a url('asset/Homepage_Hero.png') center/cover no-repeat;
  clip-path: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(5, 45, 50, 0.90) 0%, rgba(7, 70, 76, 0.75) 55%, rgba(7, 60, 65, 0.65) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.2rem;
  color: #fff;
}

/* Eyebrow inside hero gets bright yellow so it reads on photo bg */
.hero .eyebrow {
  color: #ffe49d;
}

.hero-copy {
  padding-top: 2rem;
}

.hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.hero-copy p {
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.hero-sale-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.hero-sale-strip div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(240, 194, 75, 0.22);
  border-radius: 16px;
  padding: 0.8rem;
}

.hero-sale-strip strong {
  display: block;
  font-size: 1.15rem;
  color: #fff3c8;
}

.hero-sale-strip span {
  color: #d9ebe8;
  font-size: 0.9rem;
}

.hero-points {
  padding-left: 1.1rem;
  margin: 0;
  color: #d8ece8;
}

.hero-journey {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-journey span {
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(240, 194, 75, 0.24);
  font-size: 0.82rem;
  font-weight: 700;
  color: #e9f8f4;
}

.hero-card {
  align-self: center;
  background: rgba(5, 38, 42, 0.78);
  border: 1px solid rgba(240, 194, 75, 0.28);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

.hero-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.mini-pricing {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.mini-pricing article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 0.8rem;
}

.mini-pricing h3 {
  font-size: 1rem;
}

.mini-pricing p,
.mini-pricing small {
  margin: 0;
  color: #dcebe8;
}

.hero-proof {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(240, 194, 75, 0.14);
  color: #fff7de;
}

.hero-proof p {
  margin: 0;
}

.hero-proof p + p {
  margin-top: 0.25rem;
}

.hero-steps {
  margin: 0 0 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-steps h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.hero-steps ol {
  margin: 0;
  padding-left: 1.05rem;
}

.hero-steps li {
  color: #dff2ee;
  font-size: 0.92rem;
}

.trust-band {
  border-block: 1px solid rgba(7, 84, 90, 0.12);
  background: linear-gradient(90deg, #fffdf4, #fff3cb);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.8rem 0;
}

.trust-grid p {
  margin: 0;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.flow-grid article {
  background: #fff;
  border: 1px solid rgba(7, 84, 90, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-crisp);
  padding: 1rem;
}

.flow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--brand-deep);
  font-weight: 800;
  background: #ffeeb8;
  border: 1px solid rgba(240, 194, 75, 0.5);
  margin-bottom: 0.65rem;
}

.flow-grid p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head p {
  max-width: 68ch;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.package-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-crisp);
  border: 1px solid rgba(7, 84, 90, 0.08);
  position: relative;
}

.package-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.card-top {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 84, 90, 0.08) 0%, rgba(7, 84, 90, 0.28) 100%);
}

.card-top.char {
  background-color: #0b6368;
  background-image: url('asset/Char_Dham.png');
}

.card-top.kedar {
  background-color: #0b565c;
  background-image: url('asset/Kedarnath_Card.png');
}

.card-top.badri {
  background-color: #094950;
  background-image: url('asset/Badrinath_Mana.png');
}

.card-top.dodham {
  background-color: #157069;
  background-image: url('asset/Do_Dham.png');
}

.card-top.mus {
  background-color: #26766f;
  background-image: url('asset/Mussoorie_Dhanaulti.png');
}

.card-top.chop {
  background-color: #205f63;
  background-image: url('asset/Chopta_Tungnath.png');
}

.card-body {
  padding: 1rem;
}

.card-tag {
  margin: 0 0 0.45rem;
  display: inline-block;
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand-deep);
  background: #ffefbd;
  border: 1px solid rgba(240, 194, 75, 0.48);
  padding: 0.22rem 0.52rem;
  border-radius: 999px;
}

.card-body .meta,
.card-body .cab {
  margin: 0.35rem 0;
  color: var(--muted);
}

.route-note {
  margin: 0.45rem 0 0.75rem;
  font-size: 0.88rem;
  color: #304b47;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.card-actions .btn {
  padding: 0.62rem 0.8rem;
  font-size: 0.9rem;
}

.price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-deep);
  margin: 0.5rem 0 0;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
}

.packages-cta {
  margin-top: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 194, 75, 0.4);
  background: linear-gradient(90deg, #fff8df, #fff2c8);
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.packages-cta p {
  margin: 0;
  font-weight: 700;
  color: #1e3432;
}

/* ── Explore All Pages ── */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.explore-group {
  background: #fff;
  border: 1.5px solid rgba(7, 84, 90, 0.1);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 4px 14px rgba(18, 33, 31, 0.07);
}

.explore-label {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
}

.explore-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.explore-links li a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.18s;
}

.explore-links li a::before {
  content: "→";
  font-size: 0.85rem;
  color: var(--brand);
  flex-shrink: 0;
}

.explore-links li a:hover {
  color: var(--brand);
}

@media (max-width: 720px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }
}

.compare-box {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 84, 90, 0.14);
  box-shadow: var(--shadow-crisp);
  overflow: auto;
}

.compare-box table {
  width: 100%;
  border-collapse: collapse;
}

.compare-box th,
.compare-box td {
  text-align: left;
  padding: 0.75rem 0.65rem;
  border-bottom: 1px solid rgba(7, 84, 90, 0.1);
  white-space: normal;
  vertical-align: top;
}

.compare-box thead {
  background: linear-gradient(90deg, #edf9f7, #fff5d7);
}

.compare-box th {
  font-size: 0.9rem;
}

.compare-box td {
  font-size: 0.92rem;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.destination-group {
  background: #fff;
  border: 1px solid rgba(7, 84, 90, 0.1);
  box-shadow: var(--shadow-crisp);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.destination-group h3 {
  margin-bottom: 0.55rem;
}

.destination-group p {
  margin: 0;
  color: var(--muted);
}

/* ── Local Cab Routes -horizontal row list ── */
.cab-routes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cab-route {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  align-items: center;
  gap: 1.2rem 1.4rem;
  background: #fff;
  border: 1.5px solid rgba(7, 84, 90, 0.1);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  box-shadow: 0 4px 14px rgba(18, 33, 31, 0.07);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.cab-route:hover {
  border-color: rgba(7, 84, 90, 0.28);
  box-shadow: 0 8px 28px rgba(7, 84, 90, 0.14);
  transform: translateY(-2px);
}

.cab-route-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 12px;
  background: var(--brand-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cab-route-info {
  min-width: 0;
}

.cab-route-info h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cab-route-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.cab-route-btn {
  flex-shrink: 0;
  font-size: 0.88rem;
  padding: 0.55rem 1.2rem;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .cab-route {
    grid-template-columns: 2.8rem 1fr;
    grid-template-rows: auto auto;
    row-gap: 0.8rem;
  }

  .cab-route-icon {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.25rem;
    border-radius: 10px;
  }

  .cab-route-info h3 {
    white-space: normal;
  }

  .cab-route-btn {
    grid-column: 1 / -1;
    text-align: center;
    justify-content: center;
  }
}

.route-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.route-strip span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fff4cf;
  border: 1px solid rgba(240, 194, 75, 0.45);
  color: var(--brand-deep);
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.itinerary {
  padding-left: 1.1rem;
}

.pricing-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-crisp);
  border: 1px solid rgba(7, 84, 90, 0.12);
}

.pricing-box table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-box th,
.pricing-box td {
  text-align: left;
  padding: 0.6rem 0.45rem;
  border-bottom: 1px solid rgba(7, 84, 90, 0.12);
}

.include-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.include-boxes div {
  padding: 0.7rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #fdf6db, var(--brand-mint));
}

.include-boxes ul {
  padding-left: 1rem;
  margin: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.why-grid article {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid rgba(7, 84, 90, 0.12);
  box-shadow: var(--shadow-crisp);
}

.sales-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.sales-points div {
  padding: 1rem;
  background: linear-gradient(180deg, #fff, #fff7de);
  border: 1px solid rgba(240, 194, 75, 0.35);
  border-radius: var(--radius);
}

.sales-points p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

blockquote {
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 84, 90, 0.12);
  box-shadow: var(--shadow-crisp);
  padding: 1rem;
  font-weight: 500;
}

blockquote cite {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.narrow {
  width: min(880px, calc(100% - 2rem));
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(7, 84, 90, 0.14);
  border-radius: 12px;
  margin-bottom: 0.7rem;
  padding: 0.8rem 0.9rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.close-sale {
  text-align: center;
  background: linear-gradient(160deg, #083d43, #054046);
  border-radius: 26px;
  color: #fff;
  padding: 2rem;
  border: 1px solid rgba(240, 194, 75, 0.24);
  box-shadow: var(--shadow-soft);
}

.close-sale .eyebrow {
  color: #ffe5a1;
}

.close-sale h2 {
  margin-bottom: 0.7rem;
}

.close-sale p {
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}

.close-sale .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 2.4rem 0 5.8rem;
  color: #effaf7;
  background: linear-gradient(160deg, #063a3f, #04282c);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.site-footer a {
  display: block;
  color: #d7ede9;
  margin-bottom: 0.4rem;
}

.copyright {
  text-align: center;
  margin: 1.2rem 0 0;
  color: #bdd8d2;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 253, 247, 0.98);
  border-top: 1px solid rgba(7, 84, 90, 0.18);
  z-index: 180;
}

.sticky-cta .btn {
  flex: 1;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.56s ease, transform 0.56s ease;
}

.reveal-up.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.18s;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-grid,
  .two-col,
  .why-grid,
  .sales-points,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .packages-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile nav open state */
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 253, 247, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--brand);
    box-shadow: 0 16px 40px rgba(7, 84, 90, 0.14);
    padding: 0.5rem 1.5rem 1rem;
    gap: 0;
    z-index: 100;
  }

  .site-header.nav-open .main-nav a {
    display: block;
    padding: 0.88rem 0;
    border-bottom: 1px solid rgba(7, 84, 90, 0.08);
    font-size: 1rem;
    color: var(--brand-deep);
  }

  .site-header.nav-open .main-nav a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 720px) {
  .top-alert-wrap {
    min-height: auto;
    padding: 0.55rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .section-pad {
    padding: 3.8rem 0;
  }

  .nav-cta {
    display: none;
  }

  .hero-bg {
    clip-path: none;
  }

  .hero-copy {
    padding-top: 0;
  }

  .packages-grid,
  .reviews-grid,
  .include-boxes,
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-box th,
  .compare-box td {
    min-width: 130px;
  }

  .packages-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-journey {
    gap: 0.45rem;
  }

  .sticky-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 5.8rem;
  }
}

@media (max-width: 420px) {
  .hero-sale-strip {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 2.4rem 0;
  }

  .close-sale {
    padding: 1.4rem 1rem;
    border-radius: 18px;
  }

  .compare-box th,
  .compare-box td {
    font-size: 0.8rem;
    padding: 0.5rem 0.35rem;
    min-width: 90px;
  }

  .card-body {
    padding: 0.85rem;
  }

  .price {
    font-size: 1.3rem;
  }
}
