:root {
  --bg: #fff1f6;
  --bg-soft: #fff7fa;
  --green: #365c21;
  --green-deep: #0d2231;
  --green-dark: #173424;
  --lime: #a6c239;
  --text: #10212a;
  --muted: #5f696d;
  --line: rgba(16, 33, 42, 0.08);
  --white: #ffffff;
  --header-brand: #ffffff;
  --header-ink: #eaf7ff;
  --header-ink-soft: #c7e8ff;
  --header-active: #ffffff;
  --header-accent: #7fd4ff;
  --shadow: 0 22px 60px rgba(11, 28, 36, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --page-width: min(1240px, calc(100% - 3rem));
  --page-padding: 3.5vw;
  --hero-banner-min-height: 760px;
  --hero-banner-padding-top: 11rem;
  --hero-banner-padding-bottom: 6rem;
  --hero-banner-mobile-min-height: 620px;
  --hero-banner-mobile-padding-top: 13.5rem;
  --hero-banner-mobile-padding-bottom: 4rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 173, 202, 0.22), transparent 26%),
    linear-gradient(180deg, #fff8fb 0%, #ffeaf2 100%);
  color: var(--text);
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.9rem var(--page-padding);
  background: linear-gradient(90deg, #073763 0 20%, #0b477a 20% 40%, #0f5a93 40% 60%, #126aa8 60% 80%, #1b7fbd 80% 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 34px rgba(7, 43, 82, 0.24);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease, transform 180ms ease;
}

.site-header.is-sticky {
  background: linear-gradient(90deg, rgba(7, 55, 99, 0.97) 0 20%, rgba(11, 71, 122, 0.97) 20% 40%, rgba(15, 90, 147, 0.97) 40% 60%, rgba(18, 106, 168, 0.97) 60% 80%, rgba(27, 127, 189, 0.97) 80% 100%);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 30px rgba(5, 36, 69, 0.24);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.86rem;
  color: var(--header-brand);
}

.brand-logo {
  width: 96px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.brand-logo-color {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: none;
  padding: 3px;
  border-radius: 14px;
  background: #ffffff;
}

.footer-brand .brand-logo {
  width: 78px;
}

.brand-copy {
  display: grid;
  gap: 0.16rem;
}

.brand-mark {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.08em;
  color: var(--header-brand);
}

.brand-tag {
  font-size: 0.88rem;
  color: var(--header-ink-soft);
  letter-spacing: 0.02em;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}

.header-tools-mobile {
  display: none;
}

.header-tool-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.95rem;
  height: 2.95rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  padding: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-tool-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.46);
  text-decoration: none;
}

.nav-tool-button {
  flex: 0 0 auto;
}

.tool-icon {
  display: inline-block;
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
}

.search-icon::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 3px solid var(--header-ink);
  border-radius: 50%;
  left: 0.3rem;
  top: 0.2rem;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 3px;
  background: var(--header-ink);
  border-radius: 999px;
  transform: rotate(45deg);
  right: 0.22rem;
  bottom: 0.42rem;
}

.user-icon::before {
  content: "";
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--header-ink);
  left: 0.75rem;
  top: 0.22rem;
}

.user-icon::after {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 0.95rem;
  border-radius: 1rem 1rem 0.45rem 0.45rem;
  background: var(--header-ink);
  left: 0.4rem;
  bottom: 0.28rem;
}

.user-link.is-signed-in {
  background: rgba(127, 212, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.58);
}

.package-search-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: calc(var(--page-padding) + 1.1rem);
  right: calc(var(--page-padding) + 1.1rem);
  z-index: 11;
  width: auto;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f2e1e, #264723);
  box-shadow: 0 24px 50px rgba(7, 18, 28, 0.24);
}

.header-search-panel {
  width: min(720px, calc(100% - 2rem));
  left: auto;
  right: var(--page-padding);
  padding: 0.9rem;
}

.header-search-form,
.header-booking-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.8rem;
  align-items: end;
}

.header-booking-form {
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(160px, 0.9fr);
}

.header-search-form-simple {
  grid-template-columns: minmax(0, 1fr) auto;
}

.header-booking-field {
  position: relative;
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #ffffff;
}

.header-booking-field span {
  color: #56646b;
  font-size: 0.85rem;
  font-weight: 800;
}

.header-booking-field input,
.header-booking-field select {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: #657177;
  font: inherit;
  outline: none;
}

.header-booking-field select {
  appearance: none;
  padding-right: 1.2rem;
}

.header-booking-select::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  bottom: 1.2rem;
  width: 0.58rem;
  height: 0.58rem;
  border-right: 2px solid #60706a;
  border-bottom: 2px solid #60706a;
  transform: rotate(45deg);
  pointer-events: none;
}

.header-booking-submit {
  min-height: 100%;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #486d2d, #2f5417);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-search-field {
  display: grid;
  gap: 0.45rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
}

.header-search-field input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(16, 33, 42, 0.14);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  background: #ffffff;
}

.header-search-submit,
.header-search-close {
  border: 0;
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-search-submit {
  background: #315427;
  color: #ffffff;
}

.header-search-close {
  background: rgba(16, 33, 42, 0.08);
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(138, 23, 79, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.52);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 1.2rem;
  height: 2px;
  background: var(--header-ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  color: var(--header-ink);
  font-size: 0.98rem;
  font-weight: 600;
}

.site-nav .nav-tool-button {
  display: inline-flex;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a.is-active {
  color: var(--header-active);
  border-bottom: 2px solid var(--header-accent);
  padding-bottom: 0.35rem;
}

.site-nav a {
  transition: color 160ms ease, opacity 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--header-active);
}

.explore-button:hover,
.cta-button:hover,
.package-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(29, 55, 21, 0.28);
}

.hero {
  background: #061112;
}

.hero.page-hero {
  min-height: 760px;
  padding: 10.5rem var(--page-padding) 10rem;
  display: block;
}

.hero-banner-shell {
  position: relative;
  width: 100%;
  min-height: var(--hero-banner-min-height);
  padding: var(--hero-banner-padding-top) var(--page-padding) var(--hero-banner-padding-bottom);
  overflow: hidden;
}

.page-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 11.5rem var(--page-padding) 5.5rem;
  display: flex;
  align-items: flex-end;
}

.hero-scene,
.scene-overlay,
.scene-stars,
.scene-cloud,
.scene-mountain,
.scene-river,
.scene-travelers {
  position: absolute;
}

.hero-scene {
  inset: 0;
}

.hero-banner-shell .hero-scene {
  background: url("../banners/assets-banner.png") center/cover no-repeat;
}

.hero-banner-shell .scene-overlay {
  background: linear-gradient(90deg, rgba(6, 18, 24, 0.28) 0%, rgba(6, 18, 24, 0.16) 34%, rgba(6, 18, 24, 0.06) 62%, rgba(6, 18, 24, 0) 100%);
}

.hero-banner-shell .scene-stars,
.hero-banner-shell .scene-cloud,
.hero-banner-shell .scene-mountain,
.hero-banner-shell .scene-river,
.hero-banner-shell .scene-travelers {
  display: none;
}

.scene-overlay {
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 14, 29, 0.18), rgba(3, 15, 21, 0.28) 58%, rgba(6, 14, 17, 0.62) 100%);
}

.scene-stars {
  inset: 0;
  background-image:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 77% 11%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1px),
    radial-gradient(circle at 61% 20%, rgba(255, 255, 255, 0.65) 0 1px, transparent 1px);
  animation: twinkle 6s ease-in-out infinite alternate;
}

.scene-cloud {
  width: 28rem;
  height: 8rem;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.24), transparent 35%),
    radial-gradient(circle at 55% 45%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 76% 36%, rgba(255, 255, 255, 0.14), transparent 26%);
  filter: blur(10px);
}

.scene-cloud-left {
  top: 16%;
  left: -6%;
  animation: drift 22s linear infinite;
}

.scene-cloud-right {
  top: 21%;
  right: -8%;
  animation: driftReverse 26s linear infinite;
}

.scene-mountain {
  left: -2%;
  right: -2%;
}

.scene-back {
  bottom: 28%;
  height: 34%;
  clip-path: polygon(0 100%, 0 58%, 14% 48%, 23% 56%, 35% 38%, 46% 58%, 58% 32%, 69% 52%, 80% 42%, 100% 62%, 100% 100%);
  background: linear-gradient(180deg, rgba(123, 148, 170, 0.72), rgba(59, 80, 93, 0.85));
}

.scene-mid {
  bottom: 18%;
  height: 44%;
  clip-path: polygon(0 100%, 0 64%, 14% 50%, 25% 72%, 40% 32%, 50% 54%, 61% 21%, 72% 57%, 84% 40%, 100% 68%, 100% 100%);
  background:
    linear-gradient(180deg, rgba(222, 232, 241, 0.92) 0%, rgba(107, 126, 143, 0.95) 42%, rgba(34, 55, 68, 1) 100%);
  animation: rise 10s ease-in-out infinite;
}

.scene-front {
  bottom: 0;
  height: 32%;
  clip-path: polygon(0 100%, 0 42%, 10% 52%, 18% 64%, 32% 44%, 43% 70%, 58% 40%, 70% 62%, 81% 46%, 100% 62%, 100% 100%);
  background: linear-gradient(180deg, rgba(43, 81, 52, 0.96), rgba(15, 34, 23, 1));
}

.scene-river {
  left: 47%;
  bottom: 6%;
  width: 13rem;
  height: 58%;
  transform: translateX(-50%) skewX(-16deg);
  background: linear-gradient(180deg, rgba(191, 231, 255, 0.68), rgba(72, 131, 173, 0.86));
  filter: blur(2px);
  clip-path: polygon(44% 0, 58% 0, 70% 24%, 58% 48%, 67% 100%, 19% 100%, 28% 60%, 23% 36%);
}

.scene-travelers {
  right: 14%;
  bottom: 7%;
  display: flex;
  gap: 1.3rem;
}

.traveler {
  position: relative;
  width: 4.8rem;
  height: 12rem;
  border-radius: 2rem 2rem 1rem 1rem;
  background: linear-gradient(180deg, #1f221f, #0f1010);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.traveler::before {
  content: "";
  position: absolute;
  top: -2.1rem;
  left: 1.15rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #141515;
}

.traveler::after {
  content: "";
  position: absolute;
  top: 1.7rem;
  right: -1.2rem;
  width: 2.6rem;
  height: 4.7rem;
  border-radius: 1rem;
}

.traveler-left::after {
  background: linear-gradient(180deg, #b96e28, #7e4918);
}

.traveler-right::after {
  background: linear-gradient(180deg, #56703a, #2d4520);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
  animation: fadeUp 600ms ease both;
}

.hero-script {
  margin: 0 0 0.6rem;
  font-family: "Allura", cursive;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  color: var(--lime);
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 8.6rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.hero h2 {
  margin: 0.7rem 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
}

.hero h2 span {
  color: var(--lime);
}

.hero-text {
  max-width: 620px;
  margin: 1.25rem 0 0;
  font-size: 1.3rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  margin-top: 1.5rem;
  color: rgba(244, 250, 236, 0.94);
  font-weight: 600;
}

.services-strip {
  width: var(--page-width);
  margin: 2.5rem auto 0;
  position: relative;
  z-index: 4;
  display: flex;
  gap: 1rem;
  padding: 1.45rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.services-strip::-webkit-scrollbar {
  display: none;
}

.service-pill {
  flex: 0 0 calc((100% - 7rem) / 8);
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  min-width: 0;
  scroll-snap-align: start;
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease;
}

.service-pill:hover {
  transform: translateY(-4px);
}

.service-icon {
  width: 4.25rem;
  height: 4.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(180deg, #fff8fb, #ffeaf2);
  border: 1px solid rgba(14, 31, 39, 0.08);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 1.25rem;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.service-pill p {
  margin: 0;
  font-size: clamp(0.72rem, 0.82vw, 0.92rem);
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.booking-bar {
  width: var(--page-width);
  margin: 1.3rem auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f2e1e, #264723);
  box-shadow: var(--shadow);
}

.field-card {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--white);
  display: grid;
  gap: 0.45rem;
}

.field-label,
.field-card label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #081118;
}

.booking-input {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

.field-select {
  position: relative;
}

.field-select::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  bottom: 1.2rem;
  width: 0.58rem;
  height: 0.58rem;
  border-right: 2px solid #60706a;
  border-bottom: 2px solid #60706a;
  transform: rotate(45deg);
  pointer-events: none;
}

.field-select .booking-input {
  appearance: none;
  padding-right: 1rem;
}

.field-card span,
.field-card input,
.field-card select {
  color: #657177;
}

.booking-submit {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.package-filter-status,
.package-empty-state {
  margin: 1rem 0 0;
  text-align: center;
  color: #60706a;
}

.package-card[hidden],
.package-page-card[hidden] {
  display: none;
}

.explore-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #486d2d, #2f5417);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(21, 48, 14, 0.28);
}

.explore-button {
  min-height: 100%;
}

.section {
  width: var(--page-width);
  margin: 0 auto;
  padding: 3.2rem 0 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
  position: relative;
}

.section-title span {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #93b267, transparent);
}

.section-title h3,
.budget-shell h3,
.stats-content h3,
.cta-copy h3 {
  margin: 0;
}

.section-title h3,
.budget-shell h3 {
  font-size: 2rem;
  letter-spacing: 0.02em;
}

.section-see-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  min-height: 2.45rem;
  padding: 0.62rem 1.25rem;
  border-radius: 999px;
  background: #0b477a;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(11, 71, 122, 0.18);
}

.package-row,
.kit-grid {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.15rem 0 1rem;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.package-row::-webkit-scrollbar,
.kit-grid::-webkit-scrollbar {
  display: none;
}

.package-card,
.kit-card {
  flex: 0 0 calc((var(--page-width) - 3rem) / 4);
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 33, 42, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.package-card:hover,
.service-detail-card:hover,
.package-page-card:hover,
.destination-card:hover,
.contact-info-card:hover,
.contact-form-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(11, 28, 36, 0.16);
}

.package-visual {
  position: relative;
  height: 184px;
  padding: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.package-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.24));
}

.package-visual span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(45, 77, 31, 0.88);
}

.visual-trekking {
  background: linear-gradient(180deg, rgba(53, 102, 141, 0.45), rgba(30, 40, 48, 0.2)),
    linear-gradient(135deg, #5d86a7, #233547 58%, #416640);
}

.visual-pilgrimage {
  background: linear-gradient(135deg, #aab7c4, #7f6b56 52%, #3f4d56);
}

.visual-adventure {
  background: linear-gradient(135deg, #5aaac0, #227b5f 45%, #214256);
}

.visual-romantic {
  background: linear-gradient(135deg, #f2b48d, #d96f61 50%, #8a5043);
}

.visual-honeymoon {
  background: linear-gradient(135deg, #7fd4e5, #4396bc 52%, #1f4d6d);
}

.visual-spiritual {
  background: linear-gradient(135deg, #a0b4c8, #758697 48%, #414a54);
}

.package-content {
  padding: 1rem 1rem 1.15rem;
}

.package-content h4 {
  margin: 0;
  font-size: 1.15rem;
}

.package-content p,
.budget-card p,
.budget-card span {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.package-content strong {
  display: block;
  margin-top: 0.9rem;
  font-size: 1.65rem;
  color: #0e2b55;
}

.package-content small {
  display: block;
  margin-top: 0.25rem;
  color: #5e6872;
}

.package-content a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(45, 77, 31, 0.24);
  font-weight: 700;
}

.kit-section {
  padding-top: 2.5rem;
}

.kit-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 33, 42, 0.08);
}

.kit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(11, 28, 36, 0.16);
}

.kit-media {
  height: 184px;
  padding: 0.8rem;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.kit-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 16, 18, 0.04), rgba(4, 16, 18, 0.34));
}

.kit-media span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #21412d;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.kit-trekking .kit-media {
  background:
    linear-gradient(135deg, rgba(93, 134, 167, 0.72), rgba(35, 53, 71, 0.76)),
    url("../images/services/trekking.png") center/cover no-repeat;
}

.kit-camping .kit-media {
  background:
    linear-gradient(135deg, rgba(17, 40, 63, 0.76), rgba(182, 109, 27, 0.62)),
    url("../images/services/camping.png") center/cover no-repeat;
}

.kit-adventure .kit-media {
  background:
    linear-gradient(135deg, rgba(144, 195, 234, 0.76), rgba(39, 80, 109, 0.72)),
    url("../images/services/adventure.webp") center/cover no-repeat;
}

.kit-holiday .kit-media {
  background:
    linear-gradient(135deg, rgba(138, 213, 234, 0.72), rgba(239, 195, 123, 0.58)),
    url("../images/services/holiday.jpg") center/cover no-repeat;
}

.kit-copy {
  padding: 1rem 1rem 1.15rem;
}

.kit-copy h4 {
  margin: 0;
  font-size: 1.15rem;
  color: #142832;
}

.kit-copy p {
  min-height: 3.2rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.kit-copy a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #486d2d, #2f5417);
  color: #ffffff;
  font-weight: 800;
}

.kit-copy strong {
  display: block;
  margin-top: 0.9rem;
  color: #0e2b55;
  font-size: 1.1rem;
}

.kits-page {
  background: linear-gradient(180deg, #fff8fb 0%, #ffeaf2 100%);
}

.kits-hero {
  background:
    radial-gradient(circle at 76% 16%, rgba(127, 212, 255, 0.28), transparent 24%),
    linear-gradient(180deg, #073763 0%, #126aa8 48%, #ffeaf2 100%);
}

.kits-list-section {
  padding-top: 1.5rem;
}

.all-kits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1rem;
}

.all-kits-grid .kit-card {
  flex-basis: auto;
}

.kit-detail-hero {
  padding-top: 10rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: stretch;
}

.kit-detail-media {
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.kit-detail-media .kit-media {
  height: 100%;
  min-height: 520px;
  border-radius: 0;
}

.kit-detail-copy {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kit-detail-copy .hero-script {
  font-size: 2.8rem;
}

.kit-detail-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.04;
}

.kit-detail-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.kit-detail-copy strong {
  margin-top: 1rem;
  font-size: 1.8rem;
  color: #21412d;
}

.kit-detail-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.75;
}

.kit-gallery-section,
.related-kit-section {
  padding-top: 1.5rem;
}

.kit-gallery-section h2 {
  margin: 0 0 1rem;
}

.kit-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.kit-gallery-item {
  min-height: 190px;
  padding: 0.9rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.kit-gallery-item span {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #21412d;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.budget-section {
  padding-top: 2rem;
}

.budget-shell {
  padding: 2rem;
  background: linear-gradient(180deg, #ffffff, #fff1f6);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.budget-shell h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

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

.budget-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.budget-icon {
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #204126;
  color: var(--white);
  font-weight: 800;
}

.budget-icon.mid {
  background: #c38326;
}

.budget-icon.premium {
  background: #8f63c7;
}

.budget-card h4 {
  margin: 0;
  color: #23463d;
}

.stats-band {
  position: relative;
  margin-top: 3rem;
  padding: 4rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(4, 14, 27, 0.74), rgba(4, 14, 27, 0.74)),
    linear-gradient(135deg, #0d2030, #16344c 45%, #254025);
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 100%, rgba(235, 162, 75, 0.2), transparent 20%),
    radial-gradient(circle at 85% 100%, rgba(218, 175, 92, 0.18), transparent 18%);
}

.stats-content {
  position: relative;
  z-index: 1;
  width: var(--page-width);
  margin: 0 auto;
  color: var(--white);
  text-align: center;
}

.stats-content h3 {
  font-size: 2.4rem;
}

.stats-content h3 span {
  color: var(--lime);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stats-grid article {
  padding: 1.2rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid strong {
  display: block;
  font-size: 2.1rem;
}

.stats-grid p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.reviews-section {
  overflow: hidden;
}

.reviews-slider {
  margin-top: 2rem;
  overflow: hidden;
  padding: 0.6rem 0;
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: reviewsSlide 28s linear infinite;
}

.reviews-section:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  width: min(340px, calc(100vw - 4rem));
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 243, 235, 0.96));
  border: 1px solid rgba(16, 33, 42, 0.06);
  box-shadow: var(--shadow);
}

.review-stars {
  color: #d5a126;
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.review-text {
  margin: 0.95rem 0 1.1rem;
  color: #34424a;
  line-height: 1.75;
}

.review-card strong {
  display: block;
  font-size: 1rem;
  color: #183124;
}

.review-card span {
  display: block;
  margin-top: 0.25rem;
  color: #66806d;
  font-size: 0.92rem;
}

.bottom-cta {
  padding: 0 0 3rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 1rem;
  margin-top: -2rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta-copy {
  padding: 1.2rem;
}

.cta-copy h3 {
  font-size: 1.7rem;
  line-height: 1.4;
}

.cta-button {
  margin-top: 1.4rem;
  padding: 1rem 1.4rem;
  width: fit-content;
}

.cta-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}

.mini-card {
  min-height: 170px;
  display: flex;
  align-items: end;
  padding: 1rem;
  border-radius: 20px;
  overflow: hidden;
  color: var(--white);
  font-weight: 700;
  background-size: cover;
  background-position: center;
}

.mini-card span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 18, 0.68));
}

.mini-trek { background: linear-gradient(135deg, #819eb8, #354a60 56%, #2f5a30); }
.mini-camp { background: linear-gradient(135deg, #2b4158, #111820 55%, #ae6f26); }
.mini-wedding { background: linear-gradient(135deg, #ceb8a4, #675147 65%, #372a2a); }
.mini-honey { background: linear-gradient(135deg, #8ad1ec, #4d8baa 58%, #d8c0a6); }
.mini-dham { background: linear-gradient(135deg, #aeb7c2, #6f7f8d 58%, #5f625b); }
.mini-more { background: linear-gradient(135deg, #e3c493, #9f7743 60%, #46351e); }

.benefit-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2.2rem;
  margin-top: 1.4rem;
  color: #21412d;
  font-weight: 600;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(22%); }
}

@keyframes driftReverse {
  from { transform: translateX(0); }
  to { transform: translateX(-22%); }
}

@keyframes twinkle {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

@keyframes rise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reviewsSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.625rem));
  }
}

@media (max-width: 1200px) {
  .services-strip,
  .cta-gallery {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .package-card,
  .kit-card {
    flex-basis: calc((var(--page-width) - 2rem) / 3);
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.55rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-tools-mobile {
    display: flex;
  }

  .site-nav {
    width: 100%;
    order: 4;
    display: grid;
    gap: 0.35rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.92);
    color: #0b477a;
    border-radius: 16px;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease, margin 180ms ease;
  }

  .site-header.menu-open .site-nav {
    max-height: 24rem;
    opacity: 1;
    padding: 0.65rem;
    margin-top: 0.2rem;
  }

  .site-nav a {
    padding: 0.62rem 0.8rem;
    border-radius: 12px;
    background: rgba(235, 247, 255, 0.88);
    color: #0b477a;
  }

  .site-nav .nav-tool-button {
    display: none;
  }

  .site-nav a.is-active {
    padding-bottom: 0.62rem;
    border-bottom: 0;
    background: rgba(18, 106, 168, 0.12);
    color: #073763;
  }

  .hero {
    min-height: auto;
    padding-top: 13rem;
  }

  .scene-travelers {
    right: 8%;
    transform: scale(0.8);
    transform-origin: bottom right;
  }

  .services-strip {
    display: flex;
  }

  .services-strip::-webkit-scrollbar {
    display: none;
  }

  .service-pill {
    flex-basis: calc((100% - 3rem) / 4);
  }

  .booking-bar,
  .budget-grid,
  .stats-grid,
  .cta-panel,
  .cta-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card,
  .kit-card {
    flex-basis: calc((var(--page-width) - 1rem) / 2);
  }
}

@media (max-width: 640px) {
  :root {
    --page-width: calc(100% - 1.4rem);
    --page-padding: 1rem;
  }

  .site-header {
    justify-content: flex-start;
    gap: 0.4rem;
    padding: 0.48rem 0.65rem;
  }

  .site-header.is-sticky {
    padding-top: 0.44rem;
    padding-bottom: 0.44rem;
  }

  .brand {
    flex: 0 1 auto;
    gap: 0.45rem;
  }

  .brand-logo {
    width: 62px;
  }

  .brand-logo-color {
    height: 62px;
  }

  .brand-mark {
    font-size: 1.42rem;
    letter-spacing: 0.055em;
  }

  .brand-tag {
    font-size: 0.64rem;
  }

  .header-tool-button,
  .menu-toggle {
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 11px;
  }

  .tool-icon {
    width: 1.45rem;
    height: 1.45rem;
  }

  .search-icon::before {
    width: 0.72rem;
    height: 0.72rem;
    border-width: 2.5px;
    left: 0.16rem;
    top: 0.12rem;
  }

  .search-icon::after {
    width: 0.52rem;
    height: 2.5px;
    right: 0.16rem;
    bottom: 0.24rem;
  }

  .user-icon::before {
    width: 0.62rem;
    height: 0.62rem;
    left: 0.42rem;
    top: 0.08rem;
  }

  .user-icon::after {
    width: 1.12rem;
    height: 0.72rem;
    left: 0.17rem;
    bottom: 0.12rem;
  }

  .menu-toggle {
    gap: 0.2rem;
  }

  .menu-toggle span {
    width: 0.95rem;
    height: 2px;
  }

  .header-tools {
    gap: 0.38rem;
    margin-left: auto;
  }

  .package-search-panel {
    top: calc(100% + 0.45rem);
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    padding: 0.75rem;
    border-radius: 18px;
  }

  .header-booking-form,
  .header-search-form-simple {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .header-booking-field {
    padding: 0.72rem 0.85rem;
    border-radius: 12px;
    gap: 0.24rem;
  }

  .header-booking-field span {
    font-size: 0.72rem;
  }

  .header-booking-field input,
  .header-booking-field select {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .header-booking-select::after {
    right: 0.85rem;
    bottom: 0.9rem;
    width: 0.46rem;
    height: 0.46rem;
  }

  .header-booking-submit {
    min-height: 2.25rem;
    border-radius: 999px;
    font-size: 0.9rem;
  }

  .header-search-field {
    gap: 0.28rem;
    font-size: 0.8rem;
  }

  .header-search-field input {
    border-radius: 11px;
    padding: 0.7rem 0.8rem;
    font-size: 0.9rem;
  }

  .header-search-submit,
  .header-search-close {
    border-radius: 11px;
    padding: 0.7rem 0.85rem;
    font-size: 0.9rem;
  }

  .header-search-form,
  .package-search-bar {
    grid-template-columns: 1fr;
  }

  .package-list-section {
    scroll-margin-top: 7rem;
  }

  .hero {
    padding: 13.5rem 1rem 13rem;
  }

  .hero.page-hero {
    min-height: 620px;
    padding: 10rem 1rem 7rem;
  }

  .page-hero {
    min-height: 420px;
    padding: 8.5rem 1rem 5.5rem;
  }

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

  .hero-points {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .budget-shell {
    padding: 1.25rem;
  }

  .budget-shell h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.35;
  }

  .services-strip {
    margin: 1.25rem auto 0;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.9rem;
  }

  .service-pill {
    gap: 0.55rem;
    flex-basis: calc((100% - 2.25rem) / 4);
  }

  .service-icon {
    width: 3.35rem;
    height: 3.35rem;
  }

  .service-pill p {
    width: 100%;
    font-size: clamp(0.58rem, 2.5vw, 0.72rem);
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .budget-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 280px);
    grid-template-columns: none;
    gap: 0.85rem;
    overflow-x: auto;
    justify-content: flex-start;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .budget-grid::-webkit-scrollbar,
  .stats-grid::-webkit-scrollbar {
    height: 0;
  }

  .budget-card {
    padding: 1rem;
    gap: 0.8rem;
    scroll-snap-align: start;
  }

  .budget-icon {
    width: 3.4rem;
    height: 3.4rem;
    flex: 0 0 3.4rem;
    font-size: 1.05rem;
  }

  .budget-card h4 {
    font-size: 0.82rem;
  }

  .budget-card p,
  .budget-card span {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .stats-band {
    margin-top: 2rem;
    padding: 2.25rem 0.9rem;
  }

  .stats-content h3 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .stats-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(170px, 190px);
    grid-template-columns: none;
    gap: 0.85rem;
    margin-top: 1.25rem;
    overflow-x: auto;
    justify-content: flex-start;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .stats-grid article {
    padding: 1rem 0.85rem;
    min-height: 120px;
    scroll-snap-align: start;
  }

  .stats-grid strong {
    font-size: 1.5rem;
  }

  .stats-grid p {
    font-size: 0.82rem;
  }

  .booking-bar {
    margin: 0.7rem auto 0;
    gap: 0.7rem;
    padding: 0.8rem;
    border-radius: 18px;
  }

  .booking-bar,
  .cta-panel,
  .cta-gallery {
    grid-template-columns: 1fr;
  }

  .package-row,
  .kit-grid {
    margin-inline: -0.45rem;
    padding: 0.05rem 0.45rem 0.9rem;
    scroll-padding-inline: 0.45rem;
  }

  .package-card,
  .kit-card {
    flex-basis: calc(100% - 0.9rem);
    border-radius: 18px;
  }

  .package-visual,
  .kit-media {
    height: 150px;
  }

  .package-content,
  .kit-copy {
    padding: 0.95rem;
  }

  .package-content h4,
  .kit-copy h4 {
    font-size: 1.05rem;
  }

  .package-content strong {
    font-size: 1.45rem;
  }

  .kit-media {
    padding: 0.7rem;
  }

  .kit-media span {
    padding: 0.32rem 0.55rem;
    font-size: 0.65rem;
  }

  .kit-copy p {
    min-height: 0;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .kit-copy a {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .kit-detail-hero,
  .kit-gallery-grid {
    grid-template-columns: 1fr;
  }

  .kit-detail-hero {
    padding-top: 7rem;
    gap: 1rem;
  }

  .kit-detail-copy {
    padding: 1.25rem;
  }

  .kit-detail-copy .hero-script {
    font-size: 2.1rem;
  }

  .kit-detail-copy h1 {
    font-size: 2.2rem;
  }

  .kit-gallery-item {
    min-height: 140px;
  }

  .field-card {
    padding: 0.72rem 0.85rem;
    border-radius: 12px;
    gap: 0.24rem;
  }

  .field-label,
  .field-card label {
    font-size: 0.72rem;
  }

  .booking-input {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .field-select::after {
    right: 0.85rem;
    bottom: 0.9rem;
    width: 0.46rem;
    height: 0.46rem;
  }

  .booking-submit {
    min-height: 2.05rem;
    padding: 0.38rem 0.85rem;
    border-radius: 999px;
    font-size: 0.9rem;
  }

  .section,
  .services-strip,
  .booking-bar {
    width: var(--page-width);
  }

  .section-title {
    gap: 0.6rem;
    margin-bottom: 1.1rem;
    padding-right: 5rem;
  }

  .section-title span {
    width: 28px;
  }

  .section-title h3,
  .budget-shell h3 {
    max-width: none;
    font-size: 1.18rem;
    line-height: 1.18;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .section-see-all {
    min-height: 2.05rem;
    padding: 0.48rem 0.8rem;
    font-size: 0.82rem;
  }

  .scene-travelers {
    display: none;
  }
}

.section-shell {
  width: var(--page-width);
  margin: 0 auto;
}

.about-page {
  background: linear-gradient(180deg, #fff8fb 0%, #ffeaf2 100%);
}

.services-page {
  background: linear-gradient(180deg, #fff8fb 0%, #ffeaf2 100%);
}

.packages-page {
  background: linear-gradient(180deg, #fff8fb 0%, #ffeaf2 100%);
}

.contact-page,
.destinations-page {
  background: linear-gradient(180deg, #fff8fb 0%, #ffeaf2 100%);
}

.auth-page {
  background:
    radial-gradient(circle at 20% 18%, rgba(127, 212, 255, 0.22), transparent 26%),
    linear-gradient(180deg, #f4fbff 0%, #ffeaf2 100%);
}

.privacy-policy-page {
  background:
    radial-gradient(circle at 18% 10%, rgba(127, 212, 255, 0.24), transparent 28%),
    radial-gradient(circle at 82% 4%, rgba(255, 173, 202, 0.28), transparent 26%),
    linear-gradient(180deg, #f7fcff 0%, #fff7fa 48%, #ffeaf2 100%);
}

.policy-page-main {
  padding: 9rem 0 4rem;
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.5rem;
  align-items: end;
  padding: 3rem 0 2rem;
}

.policy-kicker,
.policy-hero-card span,
.policy-toc span {
  color: #126aa8;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.policy-hero h1 {
  margin: 0.5rem 0 1rem;
  max-width: 760px;
  color: #0d2231;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.policy-hero p {
  max-width: 780px;
  margin: 0;
  color: #4d5c64;
  font-size: 1.04rem;
  line-height: 1.8;
}

.policy-hero-card {
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 106, 168, 0.12);
  box-shadow: 0 22px 60px rgba(11, 28, 36, 0.12);
}

.policy-hero-card strong {
  display: block;
  margin-top: 0.45rem;
  color: #0d2231;
  font-size: 1.5rem;
}

.policy-hero-card p {
  margin-top: 0.75rem;
  font-size: 0.92rem;
}

.policy-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 33, 42, 0.08);
}

.policy-toc a {
  color: #44535b;
  font-weight: 700;
  font-size: 0.9rem;
}

.policy-content {
  display: grid;
  gap: 0.9rem;
}

.policy-content section {
  padding: 1.45rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 33, 42, 0.08);
  box-shadow: 0 16px 42px rgba(11, 28, 36, 0.07);
}

.policy-content h2 {
  margin: 0 0 0.65rem;
  color: #0d2231;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.policy-content p {
  margin: 0;
  color: #4d5c64;
  line-height: 1.8;
}

.policy-content p + p {
  margin-top: 0.7rem;
}

.policy-content a {
  color: #126aa8;
  font-weight: 800;
}

.policy-contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
}

.delete-account-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(127, 212, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #f7fcff 0%, #fff7fa 48%, #ffeaf2 100%);
}

.delete-account-main {
  padding: 9rem 0 4rem;
}

.delete-account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.5rem;
  align-items: end;
  padding: 3rem 0 2rem;
}

.delete-account-hero h1 {
  margin: 0.5rem 0 1rem;
  max-width: 760px;
  color: #0d2231;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 1;
}

.delete-account-hero p,
.delete-account-form p,
.delete-account-info p {
  color: #4d5c64;
  line-height: 1.8;
}

.delete-account-note,
.delete-account-form,
.delete-account-info section {
  border: 1px solid rgba(16, 33, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(11, 28, 36, 0.09);
}

.delete-account-note {
  display: grid;
  gap: 0.6rem;
  justify-items: start;
  padding: 1.35rem;
  border-radius: 24px;
}

.delete-account-note img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 18px;
}

.delete-account-note strong,
.delete-account-form h2,
.delete-account-info h2 {
  color: #0d2231;
}

.delete-account-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 1.5rem;
  align-items: start;
}

.delete-account-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 24px;
}

.delete-account-form h2,
.delete-account-info h2 {
  margin: 0;
}

.delete-account-form p {
  margin: -0.35rem 0 0.35rem;
}

.delete-account-form label {
  display: grid;
  gap: 0.45rem;
  color: #0d2231;
  font-weight: 800;
}

.delete-account-form label span {
  color: #6b7a82;
  font-weight: 700;
  font-size: 0.86rem;
}

.delete-account-form input,
.delete-account-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 33, 42, 0.14);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: #0d2231;
  background: #ffffff;
}

.delete-confirm {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 0.7rem !important;
  font-weight: 700 !important;
  color: #33444d !important;
}

.delete-confirm input {
  width: auto;
  margin-top: 0.25rem;
}

.delete-message {
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font-weight: 800;
}

.delete-message.success {
  color: #10613c;
  background: #e9fff4;
  border: 1px solid rgba(16, 97, 60, 0.18);
}

.delete-message.error {
  color: #9b1c1c;
  background: #fff0f0;
  border: 1px solid rgba(155, 28, 28, 0.16);
}

.delete-account-info {
  display: grid;
  gap: 1rem;
}

.delete-account-info section {
  padding: 1.25rem;
  border-radius: 22px;
}

.delete-account-info a {
  color: #126aa8;
  font-weight: 800;
}

.auth-shell {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 10rem 0 3rem;
}

.auth-panel {
  width: min(520px, 100%);
  padding: 2rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 33, 42, 0.08);
}

.auth-copy {
  text-align: center;
}

.auth-copy h1 {
  margin: 0;
  font-size: 2rem;
}

.auth-copy p:last-child {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.auth-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.auth-form label {
  display: grid;
  gap: 0.42rem;
  font-weight: 800;
}

.auth-form span {
  color: #253b4a;
  font-size: 0.9rem;
}

.auth-form input {
  width: 100%;
  border: 1px solid rgba(16, 33, 42, 0.16);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
}

.auth-form input:focus {
  border-color: #126aa8;
  box-shadow: 0 0 0 3px rgba(18, 106, 168, 0.12);
}

.auth-form button {
  min-height: 3.1rem;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b477a, #1b7fbd);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.auth-message {
  margin: 1rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: #fff1f1;
  color: #8f1f1f;
  font-weight: 700;
}

.auth-switch {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--muted);
}

.auth-switch a {
  color: #0b5f9f;
  font-weight: 800;
}

.about-hero {
  background:
    linear-gradient(180deg, rgba(7, 26, 20, 0.2), rgba(7, 26, 20, 0.2)),
    linear-gradient(135deg, #173423, #254633 50%, #2b4b37);
}

.about-hero.page-hero {
  min-height: 300px;
  padding: 8.8rem var(--page-padding) 5.5rem;
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: var(--white);
}

.about-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.08;
}

.about-hero-copy p:last-child {
  margin-top: 1rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.about-story {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 1.6rem;
  margin-top: -3.2rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 26px 60px rgba(14, 27, 20, 0.12);
  position: relative;
  z-index: 2;
}

.story-visual {
  min-height: 420px;
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(6, 16, 20, 0.08), rgba(6, 16, 20, 0.56)),
    linear-gradient(135deg, #8b98a8, #405a70 58%, #d18a42 100%);
  box-shadow: var(--shadow);
  color: var(--white);
}

.story-play {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.88);
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.08);
}

.story-visual p {
  margin: 1.6rem 0 0;
  font-family: "Allura", cursive;
  font-size: 3rem;
}

.mini-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.mini-heading span,
.center-heading span {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, #99b46d, #315427);
}

.mini-heading p {
  margin: 0;
  font-weight: 700;
  color: #35592a;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.story-copy h2 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.story-copy > p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.08rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.story-stats article,
.team-card,
.founder-card {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.story-stats article {
  padding: 1.1rem 0.8rem;
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(23, 52, 36, 0.07);
}

.stat-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf2e7;
  color: #21412d;
  font-weight: 800;
}

.story-stats strong {
  display: block;
  font-size: 1.6rem;
}

.story-stats span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.founders-section,
.team-section {
  margin-top: 2.5rem;
}

.center-heading {
  text-align: center;
}

.center-heading h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.center-heading span {
  display: inline-block;
  margin-top: 0.55rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(240px, 260px) 1fr;
  gap: 1.4rem;
  padding: 1.2rem;
  border-radius: 24px;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;
}

.founder-photo-man {
  background: linear-gradient(135deg, #7a8188, #32363b 65%, #151618);
}

.founder-photo-woman {
  background: linear-gradient(135deg, #cbbfb6, #8a6f67 60%, #46404a);
}

.founder-copy h4,
.team-card h4 {
  margin: 0;
  font-size: 1.25rem;
}

.founder-copy .role {
  margin: 0.45rem 0 0;
  color: #477036;
  font-weight: 700;
}

.founder-copy p:last-of-type {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.social-icon-chip {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 35, 23, 0.12);
}

.social-icon-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  padding: 0 0 1rem;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(16, 33, 42, 0.06);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 220px;
  background: linear-gradient(135deg, #b8c0c5, #6d7880 60%, #3d464d);
  background-position: center 18%;
}

.team-photo-one { background: linear-gradient(135deg, #a8b6c1, #53606d 60%, #2a323a); }
.team-photo-two { background: linear-gradient(135deg, #c1bec4, #60636b 60%, #34353d); }
.team-photo-three { background: linear-gradient(135deg, #8a939f, #454b56 60%, #23252c); }
.team-photo-four { background: linear-gradient(135deg, #b9bdc3, #646b74 60%, #2f3640); }
.team-photo-five { background: linear-gradient(135deg, #9faab6, #56606d 60%, #29313a); }
.team-photo-six { background: linear-gradient(135deg, #c5b8be, #6d6872 60%, #393742); }
.team-photo-seven { background: linear-gradient(135deg, #b8c2ac, #6f7c63 60%, #2d392b); }

.team-card h4 {
  margin-top: 1rem;
  font-size: 1rem;
}

.team-card p {
  margin: 0.55rem 0 0;
  padding: 0 0.8rem;
  color: #4c6a42;
  line-height: 1.5;
  font-size: 0.88rem;
}

.team-action {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

.team-action a {
  padding: 0.9rem 2.8rem;
  border-radius: 14px;
  border: 1px solid #88a065;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.promise-band {
  margin-top: 2.8rem;
  padding: 2rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(4, 16, 18, 0.72), rgba(4, 16, 18, 0.72)),
    linear-gradient(135deg, #132c22, #1d3d33 48%, #203630);
  color: var(--white);
}

.promise-inner {
  width: min(1240px, calc(100% - 1rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: center;
}

.promise-copy {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.promise-badge {
  width: 118px;
  height: 118px;
  flex: 0 0 118px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.promise-badge img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.promise-copy .hero-script {
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
}

.promise-copy span {
  display: block;
  max-width: 620px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
}

.promise-points {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.promise-points span {
  padding: 0.8rem 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: #dce7be;
  font-weight: 600;
}

.about-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.8rem 0 3rem;
}

.footer-cta-copy h3 {
  margin: 0;
  font-size: 2rem;
}

.footer-cta-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.footer-cta-button {
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .about-story,
  .founders-grid,
  .promise-inner {
    grid-template-columns: 1fr;
  }

  .about-story {
    margin-top: -2rem;
  }

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

  .promise-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .promise-points,
  .about-footer-cta {
    grid-template-columns: 1fr;
  }

  .founders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    overflow: visible;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    overflow: visible;
  }

  .about-footer-cta {
    display: grid;
  }

  .founder-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-banner-shell {
    min-height: var(--hero-banner-mobile-min-height);
    padding: var(--hero-banner-mobile-padding-top) 1rem var(--hero-banner-mobile-padding-bottom);
  }

  .about-hero.page-hero {
    min-height: 240px;
    padding: 7.5rem 1rem 4rem;
  }

  .about-story {
    margin-top: -1.25rem;
    padding: 1rem;
    gap: 1rem;
  }

  .about-hero-copy p:last-child {
    font-size: 1rem;
  }

  .mini-heading p {
    font-size: 0.7rem;
  }

  .story-copy h2 {
    margin: 0.65rem 0 0.75rem;
    font-size: 1.6rem;
    line-height: 1.18;
  }

  .story-copy > p {
    margin-top: 0.7rem;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .story-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .story-stats article {
    padding: 0.85rem 0.65rem;
  }

  .stat-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.55rem;
    font-size: 0.88rem;
  }

  .story-stats strong {
    font-size: 1.45rem;
  }

  .story-stats span {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .story-visual {
    min-height: 220px;
  }

  .founder-photo {
    min-height: 0;
  }

  .founder-card {
    padding: 0.65rem;
    gap: 0.65rem;
    border-radius: 16px;
  }

  .founder-photo {
    aspect-ratio: 4 / 4.6;
    min-height: auto;
    margin-bottom: 0;
    border-radius: 14px;
  }

  .founder-copy {
    padding: 0 0.05rem;
  }

  .founder-copy h4 {
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .founder-copy .role {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .founder-copy p:last-of-type {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .social-row {
    gap: 0.4rem;
    margin-top: 0.65rem;
  }

  .social-icon-chip {
    width: 28px;
    height: 28px;
  }

  .team-photo {
    min-height: 0;
    aspect-ratio: 4 / 4.8;
    background-position: center 14%;
  }

  .team-card {
    border-radius: 16px;
    padding-bottom: 0.8rem;
  }

  .team-card h4 {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .team-card p {
    margin-top: 0.35rem;
    padding: 0 0.45rem;
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .story-play {
    width: 72px;
    height: 72px;
    font-size: 1.55rem;
  }

  .promise-badge {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
    border-width: 3px;
  }

  .promise-copy {
    flex-direction: column;
    text-align: center;
  }

  .story-visual p {
    margin-top: 1rem;
    font-size: 2.2rem;
  }

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

  .promise-points span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

.services-hero {
  background:
    radial-gradient(circle at 76% 16%, rgba(233, 178, 96, 0.3), transparent 24%),
    linear-gradient(180deg, #081f35 0%, #173854 50%, #ffeaf2 100%);
}

.contact-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(148, 200, 235, 0.26), transparent 24%),
    linear-gradient(180deg, #0a2234 0%, #193f57 48%, #ffeaf2 100%);
}

.services-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: var(--white);
}

.services-hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.06;
}

.services-hero-copy p {
  margin: 1.2rem 0 0;
  max-width: 620px;
  line-height: 1.72;
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.9);
}

.services-points {
  margin-top: 1.4rem;
}

.services-grid-section {
  padding-top: 1.8rem;
}

.service-title {
  margin-bottom: 0.5rem;
}

.services-subtitle {
  margin: 0 0 1.6rem;
  text-align: center;
  color: var(--muted);
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-detail-card {
  position: relative;
  padding: 0 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 33, 42, 0.07);
  text-align: center;
  overflow: hidden;
}

.service-detail-image {
  height: 140px;
  margin: 0 -1rem;
}

.service-detail-icon {
  width: 58px;
  height: 58px;
  margin: -28px auto 0;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #23463d;
  border: 1px solid rgba(16, 33, 42, 0.08);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(13, 31, 35, 0.12);
}

.service-detail-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.service-detail-card h4 {
  margin: 0.9rem 0 0;
  font-size: 1.45rem;
}

.service-detail-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.62;
  min-height: 78px;
}

.service-detail-card a {
  display: inline-flex;
  margin-top: 0.8rem;
  color: #315427;
  font-weight: 700;
}

.service-img-trek { background: linear-gradient(135deg, #99b0c3, #4f6c87 60%, #304f2f); }
.service-img-camp { background: linear-gradient(135deg, #11283f, #1d334d 55%, #b66d1b); }
.service-img-wed { background: linear-gradient(135deg, #c4b4a9, #687f9d 60%, #385669); }
.service-img-dham { background: linear-gradient(135deg, #b8c1c9, #74808d 55%, #75614b); }
.service-img-honey { background: linear-gradient(135deg, #deaa73, #9e6048 55%, #413331); }
.service-img-holiday { background: linear-gradient(135deg, #8ad5ea, #efc37b 60%, #3d5d7d); }
.service-img-group { background: linear-gradient(135deg, #6d97bc, #31495a 55%, #61703a); }
.service-img-adventure { background: linear-gradient(135deg, #90c3ea, #4a85b2 55%, #27506d); }
.service-img-hotel { background: linear-gradient(135deg, #d7d2ca, #8d7f72 55%, #62584d); }
.service-img-transport { background: linear-gradient(135deg, #96acc2, #5f7489 55%, #363f49); }
.service-img-custom { background: linear-gradient(135deg, #e5c9a5, #c18d5d 55%, #68513e); }
.service-img-international { background: linear-gradient(135deg, #a6b8d2, #7e91a8 55%, #50453d); }

.why-strip {
  margin-top: 1.3rem;
  padding: 1.2rem 1.4rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff8fb, #ffeaf2);
  box-shadow: var(--shadow);
}

.why-strip-title {
  text-align: center;
  font-weight: 800;
  font-size: 1.6rem;
}

.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.why-strip-grid article {
  text-align: center;
  padding: 0.5rem;
  border-left: 1px solid rgba(16, 33, 42, 0.08);
}

.why-strip-grid article:first-child {
  border-left: 0;
}

.why-strip-grid strong,
.why-strip-grid span {
  display: block;
}

.service-budget-help {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 1rem;
  margin-top: 1rem;
}

.service-budget-panel,
.service-help-panel {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.service-budget-panel {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
}

.service-budget-panel h3 {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1.8rem;
}

.service-budget-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-budget-card {
  padding: 1.3rem;
  border-radius: 20px;
  border: 1px solid rgba(16, 33, 42, 0.08);
  background: #ffffff;
}

.service-budget-card h4 {
  margin: 1rem 0 0;
  font-size: 1.3rem;
}

.service-budget-card p,
.service-budget-card span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
}

.service-budget-card strong {
  display: block;
  margin-top: 1.1rem;
  font-size: 1.9rem;
  color: #23463d;
}

.service-budget-card strong small {
  font-size: 0.95rem;
  color: var(--muted);
}

.service-budget-card a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #315427;
  color: #ffffff;
  font-weight: 700;
}

.service-budget-card .mid-btn {
  background: #d18c22;
}

.service-budget-card .premium-btn {
  background: #7f4dd1;
}

.service-help-panel {
  padding: 1.7rem;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(6, 16, 24, 0.3), rgba(6, 16, 24, 0.6)),
    linear-gradient(135deg, #33485c, #182937 55%, #2f4530);
}

.help-top {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.service-help-panel h3 {
  margin: 0.55rem 0 0;
  font-size: 2.6rem;
  line-height: 1.08;
}

.service-help-panel p:last-of-type {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.service-help-panel a {
  display: inline-flex;
  margin-top: 1.2rem;
  padding: 0.95rem 1.3rem;
  border-radius: 14px;
  background: #ffffff;
  color: #1b2f1d;
  font-weight: 800;
}

.help-note {
  margin-top: 1.8rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.contact-band {
  margin-top: 1rem;
  padding: 1rem 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-info-card,
.contact-form-card,
.destination-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 33, 42, 0.07);
}

.contact-info-card,
.contact-form-card {
  padding: 1.6rem;
}

.contact-info-card h3,
.contact-form-card h3 {
  margin: 0;
  font-size: 2rem;
}

.contact-info-card p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-info-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-info-list strong,
.contact-info-list span,
.contact-info-list a {
  display: block;
}

.contact-info-list strong {
  margin-bottom: 0.25rem;
  color: #23463d;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.field-card-wide {
  grid-column: 1 / -1;
}

.contact-form-card .package-search-btn {
  margin-top: 1.2rem;
  min-height: 56px;
}

.contact-support-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.contact-support-strip article {
  padding: 1.3rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff8fb, #ffeaf2);
  box-shadow: var(--shadow);
}

.contact-support-strip strong,
.contact-support-strip span {
  display: block;
}

.contact-support-strip span {
  margin-top: 0.45rem;
  color: var(--muted);
}

.contact-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #204a1e, #13351b);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.contact-band-copy strong,
.contact-band-copy span {
  display: block;
}

.contact-band-copy span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
}

.contact-band-links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.contact-band-links a {
  font-weight: 700;
}

.site-footer-full {
  margin-top: 1rem;
  padding: 2.2rem 0 1rem;
  background: linear-gradient(180deg, #0f151d, #090d13);
  color: #ffffff;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 1.6rem;
}

.footer-brand-block p,
.footer-links-block p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-brand {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.footer-socials img {
  width: 21px;
  height: 21px;
  display: block;
  object-fit: contain;
}

.footer-links-block h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.footer-links-block a,
.footer-links-block p {
  display: block;
  margin-top: 0.55rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.66);
}

.footer-bottom div {
  display: flex;
  gap: 1rem;
}

@media (max-width: 1100px) {
  .services-card-grid,
  .why-strip-grid,
  .service-budget-grid,
  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-budget-help {
    grid-template-columns: 1fr;
  }

  .contact-page-grid,
  .destination-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .policy-page-main {
    padding-top: 8rem;
  }

  .policy-hero,
  .policy-shell,
  .delete-account-hero,
  .delete-account-shell {
    grid-template-columns: 1fr;
  }

  .policy-hero {
    padding-top: 1.5rem;
  }

  .delete-account-main {
    padding-top: 8rem;
  }

  .delete-account-hero {
    padding-top: 1.5rem;
  }

  .policy-toc {
    position: static;
  }

  .policy-content section {
    padding: 1.15rem;
  }

  .delete-account-main {
    padding-top: 8rem;
  }

  .delete-account-hero,
  .delete-account-shell {
    grid-template-columns: 1fr;
  }

  .delete-account-hero {
    padding-top: 1.5rem;
  }

  .services-card-grid,
  .why-strip-grid,
  .service-budget-grid,
  .footer-shell,
  .contact-band-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .contact-band-inner,
  .footer-bottom {
    display: grid;
  }

  .contact-form-grid,
  .contact-support-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .services-card-grid,
  .why-strip-grid,
  .service-budget-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .service-help-panel h3 {
    font-size: 2rem;
  }
}

.packages-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(239, 184, 101, 0.3), transparent 24%),
    linear-gradient(180deg, #081f35 0%, #173854 48%, #ffeaf2 100%);
}

.destinations-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(232, 187, 116, 0.28), transparent 24%),
    linear-gradient(180deg, #082034 0%, #1a3b54 48%, #ffeaf2 100%);
}

.packages-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: var(--white);
}

.packages-hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1.05;
}

.packages-hero-copy p {
  margin: 1.2rem 0 0;
  max-width: 620px;
  line-height: 1.72;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.9);
}

.package-search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  margin-top: -2rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3;
}

.package-search-bar input {
  width: 100%;
  min-width: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(16, 33, 42, 0.12);
  border-radius: 16px;
  background: #ffffff;
  font: inherit;
}

.package-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #486d2d, #2f5417);
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.package-list-section {
  padding-top: 1rem;
  scroll-margin-top: 9rem;
}

.destination-grid-section {
  padding-top: 1.8rem;
}

.destination-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.destination-card {
  overflow: hidden;
}

.destination-visual {
  height: 220px;
}

.destination-card h4 {
  margin: 1rem 1.2rem 0;
  font-size: 1.5rem;
}

.destination-card p {
  margin: 0.7rem 1.2rem 0;
  color: var(--muted);
  line-height: 1.65;
  min-height: 78px;
}

.destination-card a {
  display: inline-flex;
  margin: 1rem 1.2rem 1.3rem;
  color: #315427;
  font-weight: 700;
}

.destination-himachal { background: linear-gradient(135deg, #9eb3c7, #516f87 60%, #35512d); }
.destination-uttarakhand { background: linear-gradient(135deg, #b9c7d2, #62768c 58%, #6e5a43); }
.destination-ladakh { background: linear-gradient(135deg, #d4bb9b, #917053 56%, #53463b); }
.destination-kerala { background: linear-gradient(135deg, #8bd2b0, #42785e 58%, #315848); }
.destination-goa { background: linear-gradient(135deg, #9adcf0, #efc27c 58%, #55708c); }
.destination-dubai { background: linear-gradient(135deg, #d8c7aa, #c18a4d 58%, #5f4b39); }

.package-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.package-heading-row h2 {
  margin: 0;
  font-size: 2.2rem;
}

.package-heading-row p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.sort-pill {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(16, 33, 42, 0.08);
  box-shadow: var(--shadow);
  font-weight: 600;
}

.package-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.package-tab {
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  padding: 0.8rem 1.2rem;
  font: inherit;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.package-tab.is-active {
  background: #214627;
  color: #ffffff;
}

.package-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.package-page-card {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(16, 33, 42, 0.08);
  box-shadow: var(--shadow);
}

.package-page-image {
  height: 170px;
  padding: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.package-page-image span {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(63, 116, 42, 0.95);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pkg-img-trek { background: linear-gradient(135deg, #97aec1, #4a6884 58%, #31502f); }
.pkg-img-dham { background: linear-gradient(135deg, #bcc6d1, #798591 58%, #695d50); }
.pkg-img-couple { background: linear-gradient(135deg, #efb18a, #b86e4e 58%, #45312a); }
.pkg-img-group { background: linear-gradient(135deg, #8da8c3, #526e83 58%, #3f5d29); }
.pkg-img-spiritual { background: linear-gradient(135deg, #7d93aa, #4c5d70 58%, #8b6437); }
.pkg-img-beach { background: linear-gradient(135deg, #89d0e8, #4b92b2 58%, #f0cf9d); }
.pkg-img-custom { background: linear-gradient(135deg, #e0c19d, #b58659 58%, #60483b); }
.pkg-img-europe { background: linear-gradient(135deg, #b2c0d6, #8192a9 58%, #564c46); }

.package-page-body {
  padding: 1rem;
}

.package-page-body h3 {
  margin: 0;
  font-size: 1.45rem;
}

.package-location,
.package-meta,
.package-desc,
.package-price-label {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.package-desc {
  min-height: 68px;
  line-height: 1.6;
}

.package-price-label {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.package-page-body strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.85rem;
  color: #21412d;
}

.package-page-body strong small {
  font-size: 0.95rem;
  color: var(--muted);
}

.package-page-body a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(49, 84, 39, 0.3);
  font-weight: 700;
}

.package-page-body .customize-btn {
  background: #315427;
  color: #ffffff;
}

.package-budget-band {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.9fr;
  gap: 1rem;
  margin-top: 1rem;
}

.package-budget-summary,
.package-budget-mini,
.package-help-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

.package-budget-summary h3,
.package-help-card h3 {
  margin: 0;
  font-size: 1.6rem;
}

.package-budget-summary p,
.package-help-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.package-budget-summary a,
.package-help-card a {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  background: #315427;
  color: #ffffff;
  font-weight: 700;
}

.package-budget-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.package-budget-mini article {
  padding: 0.6rem;
}

.package-budget-mini strong,
.package-budget-mini span,
.package-budget-mini small {
  display: block;
}

.package-budget-mini span,
.package-budget-mini small {
  margin-top: 0.4rem;
  color: var(--muted);
}

.package-trust-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.package-trust-row article {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.package-trust-row strong,
.package-trust-row span {
  display: block;
}

.package-trust-row span {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.6;
}

.newsletter-band {
  margin-top: 1rem;
  padding: 1.3rem 0;
  background:
    linear-gradient(180deg, rgba(9, 25, 38, 0.56), rgba(9, 25, 38, 0.56)),
    linear-gradient(135deg, #20384b, #344d61 55%, #587046);
}

.newsletter-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #ffffff;
}

.newsletter-copy h3 {
  margin: 0;
  font-size: 2rem;
}

.newsletter-copy p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  width: min(520px, 100%);
}

.newsletter-form input {
  min-width: 0;
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.2rem;
  font: inherit;
}

.newsletter-form button {
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.4rem;
  background: #315427;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .package-search-bar,
  .package-page-grid,
  .package-budget-band,
  .package-trust-row,
  .all-kits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-budget-mini {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .package-heading-row,
  .newsletter-shell,
  .newsletter-form {
    display: grid;
  }

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

@media (max-width: 640px) {
  .package-search-bar,
  .package-page-grid,
  .package-budget-band,
  .package-trust-row,
  .all-kits-grid {
    grid-template-columns: 1fr;
  }

}

.package-detail-hero {
  width: var(--page-width);
  margin: 0 auto;
  padding: 10rem 0 2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: stretch;
}

.package-detail-media {
  min-height: 520px;
  border-radius: 24px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.package-detail-media span {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(49, 84, 39, 0.95);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-detail-copy {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.package-detail-copy .hero-script {
  font-size: 2.8rem;
}

.package-detail-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.04;
}

.package-detail-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.package-detail-facts,
.package-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.package-detail-facts span {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #fff1f6;
  font-weight: 700;
}

.package-detail-actions a {
  min-height: 48px;
  padding: 0.85rem 1.2rem;
}

.detail-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(49, 84, 39, 0.28);
  font-weight: 800;
}

.package-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
}

.package-detail-panel,
.package-detail-empty {
  padding: 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.package-detail-empty {
  margin-top: 10rem;
  text-align: center;
}

.package-detail-panel h2,
.package-detail-empty h1 {
  margin: 0;
}

.package-detail-panel p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.package-detail-list {
  margin: 0.85rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .kit-detail-hero,
  .kit-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-detail-hero,
  .package-detail-grid {
    grid-template-columns: 1fr;
  }

  .kit-detail-hero {
    padding-top: 8.5rem;
  }

  .kit-detail-media,
  .kit-detail-media .kit-media {
    min-height: 340px;
  }

  .package-detail-media {
    min-height: 340px;
  }
}

/* Shared responsive polish for public pages using the common header. */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-mark {
    font-size: clamp(1.45rem, 7vw, 1.95rem);
  }

  .brand-tag,
  .fallback-logo span span,
  .fallback-card p,
  .package-page-body p,
  .package-detail-copy p,
  .package-detail-panel p,
  .package-detail-list,
  .package-trust-row span {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .package-detail-copy h1,
  .fallback-hero h1,
  .inner-hero h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.12;
  }

  .package-detail-panel h2,
  .package-budget-summary h3,
  .package-help-card h3,
  .newsletter-copy h3 {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
    line-height: 1.18;
  }

  .package-detail-hero,
  .package-detail-grid,
  .package-page-grid,
  .package-budget-band,
  .package-trust-row,
  .all-kits-grid {
    width: min(100% - 28px, 720px);
    margin-left: auto;
    margin-right: auto;
  }

  .package-detail-copy,
  .package-detail-panel,
  .package-budget-summary,
  .package-budget-mini,
  .package-help-card {
    padding: 1.1rem;
    border-radius: 18px;
  }
}

@media (max-width: 430px) {
  .package-detail-copy h1,
  .fallback-hero h1,
  .inner-hero h1 {
    font-size: clamp(1.75rem, 7.5vw, 2.25rem);
  }

  .package-detail-media,
  .kit-detail-media,
  .kit-detail-media .kit-media {
    min-height: 280px;
  }
}

.google-auth-button,
.auth-divider {
  width: 100%;
}

.google-auth-button {
  border: 1px solid rgba(11, 27, 58, 0.1);
  background: #fff;
  color: #111827;
  min-height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
  margin: 0.75rem 0 1rem;
}

.google-auth-button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.google-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #f8fafc;
  color: #4285f4;
  font-weight: 900;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #6b7280;
  font-weight: 700;
  margin-bottom: 1rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(15, 23, 42, 0.12);
}


