:root {
  --ink: #10203f;
  --muted: #69728a;
  --line: #e7eaf3;
  --panel: #ffffff;
  --soft: #f6f8ff;
  --primary: #ffc400;
  --primary-ink: #4a3400;
  --accent: #5b35e6;
  --accent-2: #12a6c8;
  --shadow: 0 14px 40px rgba(16, 32, 63, .12);
  --radius: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
}
body {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-bottom: 86px;
  color: var(--ink);
  background: #edf2fb;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app-shell {
  width: min(100%, 480px);
  max-width: 100vw;
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 16px 88px;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 72%, #fff 100%);
  box-shadow: 0 0 50px rgba(16, 32, 63, .12);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0 18px;
}

.brand {
  display: grid;
  align-content: start;
  min-width: 0;
  max-width: calc(100% - 112px);
}

.page-title {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.brand img {
  width: 154px;
  height: auto;
  object-fit: contain;
}

.brand span {
  display: block;
  max-width: 100%;
  margin-top: 8px;
  padding-left: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 10px 26px rgba(16, 32, 63, .08);
}

.icon-btn svg { width: 21px; fill: var(--ink); }

.whatsapp-btn svg {
  width: 23px;
  fill: #1fb66f;
}

.hero { display: grid; gap: 12px; }
.hero-slider {
  position: relative;
  min-height: 300px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(16, 32, 63, .1) 0%, rgba(16, 32, 63, .75) 74%),
    var(--hero-image) center/cover;
  color: #fff;
  transition: opacity .4s ease;
}

.hero-slide.is-active { opacity: 1; }
.hero-slide > div,
.hero-slide > a {
  position: relative;
  z-index: 2;
}
.hero-video {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 0;
  width: 178%;
  height: 100%;
  min-height: 420px;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 32, 63, .18) 0%, rgba(16, 32, 63, .82) 78%);
}
.hero-slide p {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-slide h1 {
  max-width: 320px;
  margin: 0;
  font-size: 34px;
  line-height: 1.06;
  letter-spacing: 0;
}
.hero-slide span {
  display: block;
  max-width: 310px;
  margin-top: 8px;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 1.45;
}

.primary-btn, .search-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  color: var(--primary-ink);
  background: var(--primary);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(255, 196, 0, .28);
  cursor: pointer;
}

.search-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(16, 32, 63, .08);
}

.search-card input {
  width: 100%;
  min-height: 48px;
  border: 0;
  outline: 0;
  padding: 0 12px;
  color: var(--ink);
}

.search-card button {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(91, 53, 230, .28);
}

.search-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 210px;
  padding: 18px;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 32, 63, .20), rgba(16, 32, 63, .70)),
    var(--banner-image) center/contain no-repeat;
  background-color: #edf3fb;
  box-shadow: var(--shadow);
}

.search-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 32, 63, .02), rgba(16, 32, 63, .22));
}

.search-banner > div {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
}

.search-banner span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.search-banner strong {
  display: block;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: 0;
}

.search-banner em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 14px;
  padding: 0 14px;
  border-radius: 11px;
  color: var(--primary-ink);
  background: var(--primary);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 196, 0, .26);
}

.search-empty {
  margin: 2px 4px 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: var(--panel);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(16, 32, 63, .06);
}

.rail-section { margin-top: 28px; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.section-head h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}
.section-head a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.category-rail, .country-rail, .testimonial-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88px;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scrollbar-width: none;
}
.category-rail::-webkit-scrollbar, .country-rail::-webkit-scrollbar, .testimonial-rail::-webkit-scrollbar { display: none; }

.mood-card {
  display: grid;
  gap: 9px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}
.mood-card img {
  width: 88px;
  aspect-ratio: 1 / 1.28;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(16, 32, 63, .12);
}

.country-rail {
  grid-auto-columns: 86px;
}
.country-card {
  display: grid;
  gap: 10px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}
.country-photo {
  position: relative;
  display: block;
  min-height: 132px;
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 12px 26px rgba(16, 32, 63, .13);
}
.country-photo img {
  width: 100%;
  height: 118px;
  border-radius: 14px;
  object-fit: cover;
}
.country-photo strong {
  position: absolute;
  left: 50%;
  bottom: -13px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  transform: translateX(-50%);
  border: 4px solid #fff;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(16, 32, 63, .13);
  font-size: 22px;
  line-height: 1;
}
.rail-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}
.rail-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d8ddeb;
}
.rail-dots span:first-child {
  width: 17px;
  background: var(--accent);
}

.destination-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.destination-grid::-webkit-scrollbar { display: none; }
.destination-grid-full {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: visible;
  gap: 16px;
  padding-bottom: 0;
  scroll-snap-type: none;
}
.destination-grid-full .destination-card {
  flex: none;
}
.destination-card {
  position: relative;
  flex: 0 0 132px;
  min-height: 218px;
  overflow: hidden;
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 14px 32px rgba(16, 32, 63, .18);
  scroll-snap-align: start;
}
.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 32, 63, .04) 18%, rgba(16, 32, 63, .22) 48%, rgba(5, 14, 31, .84) 100%);
}
.save-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 9px;
  color: #fff;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  display: none !important;
}
.save-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.destination-card div {
  position: absolute;
  z-index: 1;
  inset: auto 12px 13px;
}
.destination-card h3, .destination-card p { margin: 0; }
.destination-card h3 {
  font-size: 18px;
  line-height: 1.12;
  text-shadow: 0 2px 10px rgba(0,0,0,.28);
}
.home-popular-destinations .destination-card h3 {
  font-size: 14px;
}
.destination-card p {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 800;
  opacity: .92;
}
.destination-card p svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}
.destination-card span {
  display: block;
  margin-top: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}
.home-popular-destinations .destination-package-count {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffb000;
  font-size: 12px;
}
.home-popular-destinations .destination-package-count svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(16, 32, 63, .08);
}
.trust-strip div {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  padding: 16px 8px 14px;
  border-right: 1px solid var(--line);
  background: var(--panel);
  text-align: center;
}
.trust-strip div:last-child {
  border-right: 0;
}
.trust-strip svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 999px;
  fill: var(--item-accent);
  background: color-mix(in srgb, var(--item-accent) 14%, #fff);
}
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong {
  width: 100%;
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.2;
}
.trust-strip span {
  width: 100%;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.deal-banner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  min-height: 205px;
  overflow: hidden;
  border-radius: 18px;
  padding: 12px 0 10px 18px;
  background: linear-gradient(135deg, #fff7ce 0%, #eef8ff 54%, #f1edff 100%);
  box-shadow: var(--shadow);
}
.deal-banner p {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.deal-banner h2 {
  margin: 0;
  font-size: 28px;
}
.deal-banner span {
  display: block;
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.deal-banner img {
  align-self: center;
  width: 100%;
  max-height: 190px;
  object-fit: contain;
}

.package-list { display: grid; gap: 12px; }
.package-card {
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(16, 32, 63, .08);
  color: inherit;
}
.package-card img {
  width: 104px;
  aspect-ratio: 1.18 / 1;
  border-radius: 12px;
  object-fit: cover;
}
.package-card-media {
  position: relative;
  margin: 0;
  width: 104px;
}
.package-card-media em {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #23bd70, #0e9f5b);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}
.package-card h3 { margin: 0; font-size: 14px; line-height: 1.3; }
.package-card p, .package-card span {
  display: block;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.package-card .package-price-link {
  color: var(--accent);
  font-size: 11px;
  text-align: right;
}
.package-card .package-price-link strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.testimonial-rail { grid-auto-columns: clamp(220px, 74vw, 280px); }
.review-card {
  min-height: 218px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(16, 32, 63, .08);
}
.review-head {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}
.review-card img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.review-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}
.review-card p {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}
.review-card p svg {
  width: 12px;
  height: 12px;
  color: var(--accent);
}
.review-stars {
  display: inline-flex;
  gap: 2px;
  margin-top: 7px;
  color: #d9dee9;
  font-size: 13px;
  letter-spacing: 0;
}
.review-stars i {
  font-style: normal;
  line-height: 1;
}
.review-stars .is-filled { color: #ffab00; }
.review-card span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: justify;
}

.experience-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 112px;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scrollbar-width: none;
}
.experience-rail::-webkit-scrollbar { display: none; }
.experience-card {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-height: 128px;
  padding: 15px 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  text-align: center;
  box-shadow: 0 12px 28px rgba(16, 32, 63, .08);
}
.experience-card span,
.service-list article > span,
.explore-card span {
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--item-accent);
  background: color-mix(in srgb, var(--item-accent) 15%, #fff);
}
.experience-card span {
  width: 54px;
  height: 54px;
}
.experience-card svg,
.service-list svg,
.explore-card svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.experience-card strong {
  font-size: 13px;
  line-height: 1.25;
}
.experience-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.plan-card {
  margin-top: 28px;
  padding: 22px;
  border-radius: 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 32, 63, .92), rgba(24, 84, 132, .8)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1000&q=75") center/cover;
  box-shadow: var(--shadow);
}
.plan-card h2 { margin: 0; max-width: none; font-size: 20px; line-height: 1.18; white-space: nowrap; }
.plan-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
}
.lead-form { display: grid; gap: 10px; }
.lead-form input {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  padding: 0 13px;
  outline: 0;
}
.lead-form p { min-height: 18px; margin: 0; font-size: 12px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.blog-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(16, 32, 63, .08);
  color: inherit;
}
.blog-card img {
  width: 100%;
  aspect-ratio: 1 / .82;
  object-fit: cover;
}
.blog-card h3 {
  min-height: 52px;
  margin: 9px 9px 4px;
  font-size: 12px;
  line-height: 1.35;
}
.blog-card time {
  display: block;
  margin: 0 9px 11px;
  color: var(--muted);
  font-size: 11px;
}

.blog-shell,
.blog-detail-page {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 22px 14px 92px;
  background: #fbfcff;
}
.blog-topbar {
  display: grid;
  grid-template-columns: 42px 1fr 42px 42px;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.blog-topbar h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}
.blog-topbar p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.blog-menu {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--ink);
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(16, 32, 63, .08);
}
.blog-menu svg { width: 22px; height: 22px; }
.blog-chip-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 10px;
  overflow-x: auto;
  margin: 0 -2px 18px;
  padding: 2px 2px 8px;
  scrollbar-width: none;
}
.blog-chip-rail::-webkit-scrollbar { display: none; }
.blog-chip-rail a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--panel);
  box-shadow: 0 10px 22px rgba(16, 32, 63, .06);
  font-size: 13px;
  font-weight: 900;
}
.blog-chip-rail a.is-active {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}
.blog-chip-rail svg { width: 20px; height: 20px; }
.blog-featured-card {
  min-height: 302px;
  display: grid;
  align-content: end;
  gap: 12px;
  overflow: hidden;
  border-radius: 18px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 19, 43, .92), rgba(8, 19, 43, .44)),
    var(--blog-image) center/cover;
  box-shadow: var(--shadow);
}
.blog-featured-card em,
.blog-article-card em,
.blog-detail-copy em {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #7c4dff, #5b35e6);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}
.blog-featured-card h2 {
  max-width: 430px;
  margin: 0;
  font-size: 25px;
  line-height: 1.16;
}
.blog-featured-card p {
  max-width: 390px;
  margin: 0;
  color: rgba(255,255,255,.9);
  line-height: 1.45;
}
.blog-featured-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
}
.blog-featured-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: max-content;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
}
.blog-page-section { margin-top: 28px; }
.blog-article-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 190px;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scrollbar-width: none;
}
.blog-article-rail::-webkit-scrollbar { display: none; }
.blog-article-card,
.popular-blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: inherit;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(16, 32, 63, .08);
}
.blog-article-card figure {
  position: relative;
  margin: 0;
}
.blog-article-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}
.blog-article-card em {
  position: absolute;
  top: 10px;
  left: 10px;
}
.blog-article-card h3 {
  margin: 12px 12px 8px;
  min-height: 58px;
  font-size: 15px;
  line-height: 1.35;
}
.blog-article-card p,
.blog-article-card span {
  display: block;
  margin: 0 12px 10px;
  color: var(--muted);
  font-size: 12px;
}
.popular-blog-list {
  display: grid;
  gap: 12px;
}
.popular-blog-card {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px;
}
.popular-blog-card img {
  width: 130px;
  aspect-ratio: 1.55 / 1;
  border-radius: 10px;
  object-fit: cover;
}
.popular-blog-card h3 {
  margin: 0 0 5px;
  font-size: 15px;
  line-height: 1.25;
}
.popular-blog-card p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.popular-blog-card span,
.popular-blog-card b {
  color: var(--muted);
  font-size: 11px;
}
.popular-blog-card b {
  padding: 6px 9px;
  border-radius: 999px;
  color: #6f45e9;
  background: #f0eaff;
  white-space: nowrap;
}
.blog-detail-page {
  padding-top: 0;
}
.blog-detail-hero {
  position: relative;
  min-height: 486px;
  margin: 0 -14px;
  overflow: hidden;
  color: #fff;
  border-radius: 0 0 26px 26px;
}
.blog-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,19,43,.22), rgba(8,19,43,.88));
}
.blog-detail-back,
.blog-detail-actions,
.blog-detail-copy {
  position: relative;
  z-index: 2;
}
.blog-detail-back {
  position: absolute;
  top: 36px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 28px;
  font-weight: 900;
}
.blog-detail-actions {
  position: absolute;
  top: 36px;
  right: 20px;
  display: flex;
  gap: 10px;
}
.blog-detail-actions button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
}
.blog-detail-actions svg { width: 21px; height: 21px; }
.blog-detail-copy {
  display: grid;
  align-content: end;
  min-height: 486px;
  padding: 132px 28px 54px;
}
.blog-detail-copy h1 {
  max-width: 560px;
  margin: 14px 0 10px;
  font-size: 30px;
  line-height: 1.16;
}
.blog-detail-copy > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  line-height: 1.45;
}
.blog-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 20px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
}
.blog-meta-row img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-meta-row svg { width: 16px; height: 16px; }
.article-points-card {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  margin: -38px 14px 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.article-points-card > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  color: var(--accent);
  background: #f0eaff;
}
.article-points-card h2 {
  margin: 0 0 10px;
  font-size: 17px;
}
.article-points-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
}
.article-points-card li::marker { color: var(--accent); }
.blog-content-card {
  display: grid;
  gap: 18px;
  padding: 0 12px;
}
.blog-content-card p {
  margin: 0;
  color: #26334f;
  font-size: 16px;
  line-height: 1.65;
}
.blog-content-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 -4px;
  font-size: 22px;
}
.blog-content-card h2 b {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-size: 14px;
}
.blog-related-section {
  margin-top: 28px;
}
.blog-next-card {
  position: sticky;
  bottom: 76px;
  z-index: 5;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 24px 14px 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.blog-next-card span,
.blog-next-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.blog-next-card a {
  justify-self: end;
  color: var(--accent);
}
.blog-next-card svg {
  width: 22px;
  height: 22px;
}

.experience-page {
  width: min(100%, 760px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 14px 94px;
  background: #fbfcff;
}
.experience-hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 250px;
  margin: 0 -14px 20px;
  padding: 82px 24px 28px;
  overflow: hidden;
  color: #fff;
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(180deg, rgba(8, 19, 43, .22), rgba(8, 19, 43, .9)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=75") center/cover;
}
.experience-hero .hero-back-button {
  top: 24px;
  left: 22px;
}
.experience-hero > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 18px;
  color: var(--accent);
  background: #fff;
}
.experience-hero > span svg {
  width: 28px;
  height: 28px;
}
.experience-hero h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
}
.experience-hero p {
  max-width: 460px;
  margin: 10px 0 0;
  color: rgba(255,255,255,.9);
  line-height: 1.45;
}
.experience-tabs {
  position: sticky;
  top: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 30px rgba(16,32,63,.08);
}
.experience-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 13px;
  color: var(--muted);
  font-weight: 900;
}
.experience-tabs a.is-active,
.experience-tabs a:hover {
  color: #fff;
  background: var(--accent);
}
.experience-tabs svg {
  width: 18px;
  height: 18px;
}
.experience-gallery-section {
  margin-top: 22px;
  scroll-margin-top: 92px;
}
.experience-gallery-section[hidden] {
  display: none !important;
}
.trip-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.trip-image-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(16,32,63,.08);
}
.trip-image-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
}
.trip-image-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 8px 8px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(8,19,43,.82));
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}
.trip-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.trip-video-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(16,32,63,.08);
}
.trip-video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.trip-video-grid .video-fallback {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 16px;
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(135deg, #f2ecff, #eef7ff);
}
.trip-video-grid strong {
  display: block;
  padding: 10px;
  font-size: 13px;
  line-height: 1.25;
}
.empty-state {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(16,32,63,.08);
}

.service-list {
  display: grid;
  margin-top: 28px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(16, 32, 63, .08);
}
.service-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}
.service-list article:last-child { border-bottom: 0; }
.service-list article > span {
  width: 38px;
  height: 38px;
}
.service-list h3 {
  margin: 0;
  font-size: 13px;
}
.service-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.explore-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(16, 32, 63, .08);
}
.explore-card span {
  width: 38px;
  height: 38px;
}
.explore-card strong {
  font-size: 12px;
  line-height: 1.25;
}

.career-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.career-modal.is-open {
  display: flex;
}
.career-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 51, .58);
  backdrop-filter: blur(8px);
}
.career-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 70px rgba(7,24,51,.26);
}
.career-dialog > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #10c7b4);
  box-shadow: 0 14px 30px rgba(91,53,230,.24);
}
.career-dialog > span svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.career-dialog h2 {
  margin: 16px 0 8px;
  font-size: 24px;
}
.career-dialog p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.career-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #f3f6fb;
  font-size: 24px;
  line-height: 1;
}
.career-form {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}
.career-form input {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 13px;
  outline: 0;
}
.career-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.career-form input[type="file"] {
  padding: 11px 13px;
  background: #f8fbff;
}
.career-form p {
  min-height: 18px;
  font-size: 12px;
  font-weight: 800;
}
.career-form.is-sent p {
  color: #047766;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 10px;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(calc(100vw - 24px), 456px);
  max-width: calc(100vw - 24px);
  transform: translateX(-50%);
  border: 1px solid rgba(231, 234, 243, .86);
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(16, 32, 63, .16);
}
.bottom-nav a {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 10px 4px 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}
.bottom-nav svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  fill: currentColor;
  display: block;
}
.bottom-nav svg path { fill: currentColor; }
.bottom-nav span { display: block; line-height: 1.1; }
.bottom-nav a.is-active {
  color: var(--accent);
}
.bottom-nav a.is-active svg {
  filter: drop-shadow(0 6px 10px rgba(91,53,230,.25));
}

.detail-shell {
  width: min(100%, 980px);
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  background: #fff;
}
.package-detail {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 0 16px 28px;
}
.package-hero {
  position: relative;
  margin: 0 -16px;
}
.package-hero > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 28px 28px;
}
.detail-actions {
  position: absolute;
  inset: 18px 22px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail-actions a,
.detail-actions span,
.detail-actions button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 24px rgba(16,32,63,.14);
  border: 0;
  cursor: pointer;
}
.detail-actions svg { width: 21px; fill: currentColor; }
.detail-actions a,
.detail-actions button { font-size: 28px; line-height: 1; }
.package-title-card {
  position: relative;
  z-index: 1;
  margin: -86px 16px 0;
  max-width: calc(100% - 32px);
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.package-title-card h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.16;
}
.package-title-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.rating-row,
.package-title-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.rating-row strong { color: var(--ink); }
.rating-row span { color: #6f65e8; font-size: 13px; }
.rating-row em,
.package-title-actions em {
  margin-left: auto;
  padding: 7px 10px;
  border-radius: 8px;
  color: #117a3f;
  background: #e8f8ee;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.package-pdf-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 11px;
  color: #fff;
  background: var(--accent);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(91, 53, 230, .22);
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  min-width: 0;
}
.amenity-grid span {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 0;
  text-align: center;
  font-size: 11px;
}
.amenity-grid svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 999px;
  fill: var(--accent);
  background: #f0edff;
}
.amenity-grid strong { font-size: 12px; }
.amenity-grid small { color: var(--muted); }
.price-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 100%;
  overflow: hidden;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(16,32,63,.08);
}
.price-panel p,
.book-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}
.price-panel > div,
.book-card {
  min-width: 0;
}
.price-panel strong,
.book-card > strong {
  display: block;
  color: var(--accent);
  font-size: 24px;
  overflow-wrap: anywhere;
  line-height: 1.2;
}
.price-panel strong span,
.book-card strong span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.price-panel del,
.book-card del {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}
.price-panel em {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 7px;
  color: #117a3f;
  background: #e8f8ee;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.detail-tabs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0 12px;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}
.detail-tabs::-webkit-scrollbar { display: none; }
.detail-tabs a {
  padding-bottom: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.detail-tabs a:first-child {
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
}
.detail-card {
  max-width: 100%;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(16,32,63,.08);
}
.detail-card h2 {
  margin: 0 0 14px;
  font-size: 19px;
}
.detail-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.highlight-grid span {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
}
.highlight-grid svg {
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 999px;
  fill: var(--muted);
  background: var(--soft);
}
.timeline-card article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-top: 10px;
}
.timeline-card small {
  color: var(--muted);
}
.timeline-card strong {
  grid-column: 1;
  font-size: 14px;
}
.timeline-card span {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  font-size: 24px;
}
.day-itinerary-card {
  border-left: 5px solid #1f9be8;
}
.day-itinerary-card h2 {
  font-size: 28px;
}
.day-wise-item {
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid #d6dbe4;
  border-radius: 16px;
  background: #fff;
}
.day-wise-item h3 {
  margin: 0;
  padding: 16px 18px;
  color: #050b18;
  background: linear-gradient(135deg, #dff3ff 0%, #cfe3ff 100%);
  font-size: 22px;
  line-height: 1.35;
}
.day-wise-item ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 20px 24px 22px 34px;
  color: #111827;
  font-size: 18px;
  line-height: 1.65;
}
.day-wise-item li {
  padding-left: 4px;
}
.checklist-card p {
  position: relative;
  margin: 12px 0;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 700;
}
.checklist-card p::before {
  position: absolute;
  left: 0;
  top: .12em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}
.checklist-card .yes::before {
  content: "\2713";
  color: #fff;
  background: #1d9d5b;
}
.checklist-card .no::before {
  content: "\00d7";
  color: #fff;
  background: #e23b3b;
}
.checklist-card .info::before {
  content: "i";
  color: #fff;
  background: #768098;
  font-family: Georgia, serif;
  font-style: italic;
}
.checklist-card .yes { color: #1d9d5b; }
.checklist-card .no { color: #e23b3b; }
.checklist-card .info { color: var(--muted); }
.gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 120px;
  gap: 10px;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 8px;
}
.gallery-rail img {
  width: 120px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
}
.book-card {
  background: linear-gradient(135deg, #fff 0%, #f4f0ff 100%);
}
.light-form input {
  color: var(--ink);
  border-color: var(--line);
}
.help-strip {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}
.help-strip img { width: 100px; }
.help-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.help-strip a {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}
.site-help-strip {
  margin-top: 20px;
  margin-bottom: 12px;
}
.explore-page .site-help-strip {
  margin-bottom: 6px;
}

.explore-page {
  width: min(100%, 980px);
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 18px 28px;
  overflow-x: hidden;
  background: #fff;
}
.explore-hero {
  position: relative;
  min-height: auto;
  aspect-ratio: 3 / 2;
  margin: 0 -18px 0;
  padding: 70px 42px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(9,24,55,.25), rgba(9,24,55,.72)), var(--hero-image) center/cover;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
}
.explore-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(9,24,55,.28), rgba(9,24,55,.74));
  pointer-events: none;
}
.explore-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.explore-hero > :not(.explore-hero-bg) {
  position: relative;
  z-index: 2;
}
.explore-actions {
  position: absolute;
  inset: 24px 34px auto;
  display: flex;
  gap: 14px;
}
.explore-actions a,
.explore-actions span,
.explore-actions button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 26px rgba(16,32,63,.16);
  font-size: 24px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}
.explore-actions span:first-of-type,
.explore-actions button { margin-left: auto; }
.share-button.is-copied {
  color: #fff;
  background: var(--accent);
}
.explore-hero p {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
}
.explore-hero h1 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  font-size: 48px;
  line-height: 1;
}
.explore-hero h1 span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #e73535;
  font-size: 22px;
}
.explore-hero strong {
  display: block;
  max-width: 520px;
  margin-top: 20px;
  font-size: 19px;
  line-height: 1.55;
}
.stat-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: -34px 18px 28px;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.stat-card-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.stat-card div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 10px;
  align-items: center;
  padding: 0 12px;
  border-right: 1px solid var(--line);
}
.stat-card div:last-child { border-right: 0; }
.stat-card svg {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 999px;
  fill: var(--accent);
  background: #f0edff;
}
.stat-card b { font-size: 20px; }
.stat-card span { color: var(--muted); font-size: 13px; }
.destination-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.destination-panel-card {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(16,32,63,.14);
}
.destination-panel-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-panel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,32,63,.05), rgba(16,32,63,.82));
}
.destination-panel-card em,
.destination-panel-card strong,
.destination-panel-card span {
  position: absolute;
  z-index: 1;
  left: 16px;
}
.destination-panel-card em {
  top: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(91,53,230,.82);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}
.category-tone-mountain { --item-accent: #1689e8; }
.category-tone-beach { --item-accent: #21b66f; }
.category-tone-historic { --item-accent: #ef3f3f; }
.category-tone-spiritual { --item-accent: #ff8a2a; }
.category-tone-default { --item-accent: #5b35e6; }
.destination-panel-card.category-tone-mountain em { background: rgba(22,137,232,.86); }
.destination-panel-card.category-tone-beach em { background: rgba(33,182,111,.86); }
.destination-panel-card.category-tone-historic em { background: rgba(239,63,63,.86); }
.destination-panel-card.category-tone-spiritual em { background: rgba(255,138,42,.88); }
.destination-panel-card.category-tone-default em { background: rgba(91,53,230,.82); }
.destination-panel-card strong {
  bottom: 36px;
  font-size: 15px;
  line-height: 1.12;
}
.destination-panel-card span {
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #fff;
}
.destination-panel-card svg { width: 16px; fill: #fff; }
.destination-panel-card span svg { fill: #fff; }
.destination-search-head {
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.destination-search {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 210px;
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.destination-search svg {
  width: 16px;
  height: 16px;
  fill: var(--ink);
  opacity: .82;
}
.destination-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}
.destination-search input::placeholder {
  color: var(--muted);
}
.country-destination-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.landscape-panel-grid {
  margin-top: 4px;
}
.compact-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 140px;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.compact-card,
.package-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(16,32,63,.08);
}
.compact-card img {
  width: 100%;
  height: 102px;
  object-fit: cover;
}
.compact-card strong,
.compact-card span,
.package-tile strong,
.package-tile span,
.package-tile b {
  display: block;
  margin: 9px 12px;
}
.compact-card span,
.package-tile span { color: var(--muted); font-size: 12px; }
.nearby-destination-rail {
  grid-auto-columns: 170px;
}
.nearby-destination-card img {
  height: 150px;
}
.nearby-destination-card strong {
  margin: 10px 12px 4px;
  font-size: 15px;
  line-height: 1.15;
}
.nearby-destination-card span {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 6px 12px 12px;
  color: #ff9f00;
  font-size: 12px;
  font-weight: 900;
}
.nearby-destination-card span svg {
  width: 14px;
  fill: currentColor;
}
.package-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.package-tile img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}
.package-tile b {
  color: var(--accent);
  font-size: 17px;
}
.package-showcase .package-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 12px;
  overflow: visible;
}
.package-showcase .package-tile-grid::-webkit-scrollbar {
  display: none;
}
.package-showcase .package-tile {
  min-width: 0;
  border-radius: 10px;
  scroll-snap-align: start;
}
.package-showcase .package-tile figure {
  position: relative;
  margin: 0;
}
.package-showcase .package-tile img {
  height: 104px;
}
.package-showcase .package-tile em {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #23bd70, #0e9f5b);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}
.package-showcase .package-tile em.label-most-booked,
.package-showcase .package-tile em.label-offer,
.package-card-media em.label-most-booked,
.package-card-media em.label-offer {
  background: linear-gradient(135deg, #ff9c25, #ff6b22);
}
.package-showcase .package-tile em.label-value-deal,
.package-showcase .package-tile em.label-trending,
.package-card-media em.label-value-deal,
.package-card-media em.label-trending {
  background: linear-gradient(135deg, #6e45f2, #4b2ed6);
}
.package-showcase .package-tile em.label-luxury,
.package-showcase .package-tile em.label-honeymoon,
.package-card-media em.label-luxury,
.package-card-media em.label-honeymoon {
  background: linear-gradient(135deg, #ff4f86, #db2777);
}
.package-showcase .package-tile em.label-discount,
.package-showcase .package-tile em.label-family-special,
.package-card-media em.label-discount,
.package-card-media em.label-family-special {
  background: linear-gradient(135deg, #1689e8, #0f67c9);
}
.package-showcase .package-tile strong {
  min-height: 34px;
  margin: 10px 10px 5px;
  font-size: 13px;
  line-height: 1.25;
}
.package-showcase .package-tile span {
  margin: 0 10px 8px;
  font-size: 11px;
  font-weight: 700;
}
.package-showcase .package-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  margin: 0 10px 10px;
}
.package-showcase .package-price-row b {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}
.package-showcase .package-price-row del {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}
.package-showcase .package-tile small {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin: 0 8px 10px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
}
.package-showcase .package-tile small i {
  display: grid;
  justify-items: center;
  gap: 3px;
  font-style: normal;
}
.package-showcase .package-tile small svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.help-banner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 24px;
}
.destination-hero { min-height: auto; }
.landscape-hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.landscape-hero h1 {
  margin-bottom: 0;
}
.landscape-hero h1 span {
  color: var(--accent);
  background: #fff;
}
.landscape-hero h1 span svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}
.landscape-destination-rail {
  grid-auto-columns: 210px;
}
.landscape-destination-card img {
  height: 145px;
}
.landscape-destination-card small,
.package-tile small {
  display: block;
  margin: 9px 12px;
  color: #ff9f00;
  font-size: 12px;
  font-weight: 800;
}
.landscape-experience-rail {
  grid-auto-columns: 118px;
}
.landscape-testimonials .testimonial-rail {
  grid-auto-columns: 190px;
}
.landscape-testimonials .review-card {
  min-height: 230px;
  border-radius: 14px;
}
.landscape-testimonials .review-card strong {
  display: block;
  color: #ffab00;
  font-size: 13px;
  letter-spacing: 0;
}

@media (min-width: 900px) {
  body { background: #f1f5fb; }
  .app-shell {
    width: min(1180px, calc(100% - 48px));
    padding: 26px 28px 40px;
    border-radius: 32px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
  }
  .hero, .deal-banner, #packages { grid-column: 1; }
  .hero-slider { min-height: 400px; }
  .rail-section { margin-top: 0; }
  .trust-strip, .plan-card { margin-top: 0; }
  .service-list { margin-top: 0; }
  .explore-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .destination-panel-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bottom-nav { display: grid; }
  .detail-shell {
    width: min(1180px, calc(100% - 48px));
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: 32px;
    box-shadow: 0 0 50px rgba(16, 32, 63, .12);
  }
  .package-detail {
    grid-template-columns: 1fr 1fr;
    padding: 24px;
    align-items: start;
  }
  .package-hero,
  .price-panel,
  #overview,
  #itinerary {
    grid-column: 1;
  }
  .package-hero { grid-row: 1 / span 2; }
  .price-panel { grid-row: 3; }
  #overview { grid-row: 5; }
  #itinerary { grid-row: 6 / span 3; }
  .detail-tabs { grid-column: 2; grid-row: 1; align-self: start; }
  #inclusions { grid-column: 2; grid-row: 2; }
  #exclusions { grid-column: 2; grid-row: 3; }
  #policies { grid-column: 2; grid-row: 4; }
  .package-detail > .rail-section { grid-column: 2; grid-row: 5; }
  .book-card { grid-column: 2; grid-row: 6; }
  .help-strip { grid-column: 2; grid-row: 7; }
  .package-hero { margin: 0; }
  .package-hero > img { border-radius: 24px; }
}

@media (max-width: 380px) {
  .package-card { grid-template-columns: 92px 1fr; }
  .package-card .package-price-link { grid-column: 2; text-align: left; }
  .blog-grid { grid-template-columns: 1fr; }
  .popular-blog-card {
    grid-template-columns: 104px 1fr;
  }
  .popular-blog-card img {
    width: 104px;
  }
  .popular-blog-card b {
    grid-column: 2;
    justify-self: start;
  }
  .blog-detail-copy h1 {
    font-size: 26px;
  }
  .article-points-card {
    grid-template-columns: 1fr;
    margin-left: 8px;
    margin-right: 8px;
  }
  .blog-next-card {
    grid-template-columns: auto auto;
  }
  .blog-next-card a {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 520px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .app-shell,
  .detail-shell,
  .explore-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .app-shell {
    padding: 14px 12px 82px;
  }
  .category-rail,
  .country-rail,
  .testimonial-rail,
  .experience-rail,
  .compact-rail,
  .destination-grid {
    max-width: 100%;
    overscroll-behavior-x: contain;
  }
  .package-detail {
    padding-left: 10px;
    padding-right: 10px;
  }
  .package-hero {
    margin-left: -10px;
    margin-right: -10px;
  }
  .package-hero > img {
    height: auto;
    aspect-ratio: 3 / 2;
  }
  .package-title-card {
    margin: -64px 10px 0;
    max-width: calc(100% - 20px);
    padding: 14px;
    border-radius: 18px;
  }
  .package-title-card h1 {
    font-size: 22px;
    overflow-wrap: anywhere;
  }
  .day-itinerary-card h2 { font-size: 24px; }
  .day-wise-item h3 { font-size: 18px; padding: 14px 16px; }
  .day-wise-item ul { font-size: 15px; padding: 16px 18px 18px 28px; }
  .amenity-grid {
    gap: 5px;
    margin-top: 16px;
  }
  .amenity-grid svg {
    width: 32px;
    height: 32px;
  }
  .amenity-grid strong {
    font-size: 11px;
  }
  .amenity-grid small {
    font-size: 10px;
  }
  .price-panel {
    padding: 12px;
  }
  .price-panel strong,
  .book-card > strong {
    font-size: 20px;
  }
  .detail-tabs {
    gap: 24px;
  }
  .destination-grid {
    gap: 16px;
    padding-left: 2px;
    padding-right: 18px;
  }
  .destination-card {
    flex-basis: 122px;
    min-height: 198px;
  }
  .explore-page {
    padding-left: 12px;
    padding-right: 12px;
  }
  .explore-page .rail-section {
    margin-top: 22px;
  }
  .explore-page .section-head {
    margin-bottom: 12px;
  }
  .explore-page .section-head h2 {
    font-size: 17px;
  }
  .explore-page .section-head a {
    font-size: 12px;
  }
  .explore-hero {
    margin-left: -12px;
    margin-right: -12px;
    min-height: auto;
    aspect-ratio: 3 / 2;
    padding: 46px 20px 42px;
    justify-content: center;
  }
  .explore-actions { inset: 12px 20px auto; }
  .explore-actions a,
  .explore-actions span,
  .explore-actions button {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .explore-hero p {
    margin: 0 0 7px;
    font-size: 13px;
  }
  .explore-hero h1 {
    gap: 10px;
    font-size: 27px;
  }
  .explore-hero h1 span {
    width: 42px;
    height: 42px;
    border-width: 3px;
  }
  .explore-hero strong {
    display: -webkit-box;
    max-width: 100%;
    margin-top: 8px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .country-hero {
    display: block;
    padding: 0;
  }
  .country-hero .explore-actions {
    inset: 38px 20px auto;
  }
  .country-hero p,
  .country-hero h1,
  .country-hero strong {
    position: absolute;
    left: 20px;
    right: 20px;
    z-index: 2;
  }
  .country-hero p {
    top: 76px;
    margin: 0;
  }
  .country-hero h1 {
    top: 100px;
  }
  .country-hero strong {
    top: 150px;
    margin: 0;
  }
  .landscape-hero { min-height: auto; }
  .landscape-destination-rail { grid-auto-columns: 154px; }
  .nearby-destination-rail { grid-auto-columns: 150px; }
  .nearby-destination-card img { height: 132px; }
  .nearby-destination-card strong {
    margin: 9px 10px 4px;
    font-size: 13px;
  }
  .nearby-destination-card span {
    margin: 5px 10px 11px;
    font-size: 11px;
  }
  .experience-rail {
    grid-auto-columns: 88px;
    gap: 10px;
  }
  .experience-card {
    min-height: 104px;
    padding: 10px 7px;
    border-radius: 14px;
  }
  .experience-card span {
    width: 42px;
    height: 42px;
  }
  .experience-card svg {
    width: 22px;
    height: 22px;
  }
  .experience-card strong {
    font-size: 11px;
  }
  .experience-card small {
    font-size: 10px;
  }
  .stat-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 0;
    margin: -24px 0 22px;
    padding: 9px;
    border-radius: 16px;
  }
  .stat-card div:nth-child(2) { border-right: 0; }
  .stat-card-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .stat-card-3 div {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    padding: 0 6px;
    text-align: center;
  }
  .stat-card-3 div:nth-child(2) { border-right: 1px solid var(--line); }
  .stat-card-3 div:nth-child(3) { border-right: 0; }
  .stat-card-3 svg {
    grid-row: auto;
    width: 31px;
    height: 31px;
    padding: 7px;
  }
  .stat-card-3 b { font-size: 16px; }
  .stat-card-3 span { font-size: 10px; }
  .destination-panel-card {
    min-height: 138px;
    border-radius: 16px;
  }
  .destination-panel-card em {
    top: 12px;
    left: 14px;
    padding: 5px 10px;
    font-size: 11px;
  }
  .destination-panel-card strong {
    left: 14px;
    bottom: 34px;
    font-size: 22px;
  }
  .destination-panel-card span {
    left: 14px;
    bottom: 13px;
    font-size: 12px;
  }
  .destination-panel-grid,
  .package-tile-grid {
    grid-template-columns: 1fr;
  }
  .destination-search-head {
    align-items: center;
    gap: 8px;
  }
  .destination-search-head h2 {
    font-size: 18px;
    line-height: 1.05;
  }
  .destination-search {
    width: 172px;
    padding: 7px 10px;
    border-radius: 10px;
  }
  .destination-search input {
    font-size: 12px;
  }
  .country-destination-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .country-destination-grid .destination-panel-card {
    min-height: 112px;
    border-radius: 13px;
  }
  .country-destination-grid .destination-panel-card em {
    top: 8px;
    left: 8px;
    padding: 4px 7px;
    font-size: 9px;
  }
  .country-destination-grid .destination-panel-card strong {
    left: 9px;
    right: 8px;
    bottom: 28px;
    font-size: 11px;
    line-height: 1.1;
  }
  .country-destination-grid .destination-panel-card span {
    left: 9px;
    bottom: 9px;
    gap: 4px;
    font-size: 9px;
  }
  .country-destination-grid .destination-panel-card span svg {
    width: 11px;
  }
  .package-tile img {
    height: 98px;
  }
  .package-tile strong,
  .package-tile span,
  .package-tile b {
    margin: 8px 10px;
  }
  .package-tile b {
    font-size: 16px;
  }
  .package-showcase .package-tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .package-showcase .package-tile {
    border-radius: 9px;
  }
  .package-showcase .package-tile img {
    height: 72px;
  }
  .package-showcase .package-tile em {
    top: 5px;
    left: 5px;
    gap: 3px;
    padding: 3px 6px;
    font-size: 8px;
  }
  .package-showcase .package-tile strong {
    min-height: 30px;
    margin: 7px 7px 3px;
    font-size: 10px;
  }
  .package-showcase .package-tile span {
    margin: 0 7px 6px;
    font-size: 8px;
  }
  .package-showcase .package-price-row {
    display: block;
    margin: 0 7px 7px;
  }
  .package-showcase .package-price-row b {
    font-size: 11px;
  }
  .package-showcase .package-price-row del {
    display: block;
    margin-top: 2px;
    font-size: 8px;
  }
  .package-showcase .package-tile small {
    gap: 2px;
    margin: 0 5px 7px;
    font-size: 6px;
  }
  .package-showcase .package-tile small svg {
    width: 11px;
    height: 11px;
  }
}

@media (max-width: 360px) {
  .amenity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .price-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  body {
    background: #fff;
    touch-action: pan-y;
  }
  .app-shell,
  .detail-shell,
  .explore-page {
    left: auto;
    width: 100%;
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }
}

/* Country page hero: reference-style top composition. */
.country-hero {
  display: block;
  min-height: auto;
  aspect-ratio: 3 / 2;
  padding: 0;
}
.country-hero .explore-actions {
  inset: 42px 34px auto !important;
  width: auto;
  max-width: none;
}
.country-hero .explore-actions a,
.country-hero .explore-actions button {
  width: 48px;
  height: 48px;
}
.country-hero .country-hero-copy {
  position: absolute;
  z-index: 2;
  top: 128px;
  left: 42px;
  right: 42px;
  color: #fff;
}
.country-hero .country-hero-copy p {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 900;
}
.country-hero .country-hero-copy h1 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  font-size: 48px;
  line-height: 1;
}
.country-hero .country-hero-copy h1 span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #e73535;
  font-size: 22px;
}
.country-hero .country-hero-copy strong {
  display: block;
  max-width: 580px;
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.5;
}

@media (max-width: 520px) {
  .country-hero {
    height: auto;
    min-height: auto;
    aspect-ratio: 3 / 2;
    margin-left: -12px;
    margin-right: -12px;
    padding: 0;
  }
  .country-hero .explore-actions {
    inset: 28px 18px auto !important;
    width: auto;
    max-width: none;
  }
  .country-hero .explore-actions a,
  .country-hero .explore-actions button {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
  .country-hero .country-hero-copy {
    top: 84px;
    left: 28px;
    right: 28px;
  }
  .country-hero .country-hero-copy p {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .country-hero .country-hero-copy h1 {
    gap: 12px;
    font-size: 34px;
  }
  .country-hero .country-hero-copy h1 span {
    width: 50px;
    height: 50px;
    border-width: 3px;
    font-size: 19px;
  }
  .country-hero .country-hero-copy strong {
    display: -webkit-box;
    max-width: 100%;
    margin-top: 12px;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

@media (max-width: 520px) {
  .country-hero .explore-actions {
    left: 24px !important;
    right: 24px !important;
    top: 24px !important;
    display: flex;
    justify-content: space-between;
  }
  .country-hero .explore-actions button {
    margin-left: 0 !important;
  }
}

/* Country hero v44: keep copy readable inside strict 3:2 banner. */
@media (max-width: 520px) {
  .country-hero .country-hero-copy {
    top: 78px;
    left: 26px;
    right: 26px;
  }
  .country-hero .country-hero-copy p,
  .country-hero .country-hero-copy h1,
  .country-hero .country-hero-copy strong {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
  }
  .country-hero .country-hero-copy p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.15;
  }
  .country-hero .country-hero-copy h1 {
    gap: 10px;
    font-size: 31px;
    line-height: 1;
  }
  .country-hero .country-hero-copy h1 span {
    width: 46px;
    height: 46px;
  }
  .country-hero .country-hero-copy strong {
    display: -webkit-box;
    margin-top: 10px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .country-hero .explore-actions a,
  .country-hero .explore-actions button {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.75);
    background: rgba(255,255,255,.94);
    box-shadow: 0 10px 24px rgba(16,32,63,.16);
  }
  .country-hero .explore-actions button {
    overflow: hidden;
    color: var(--ink);
    font-size: 0;
  }
  .country-hero .explore-actions button::before {
    content: "\2197";
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
  }
}

/* Country share button v45: keep it inside the banner and use SVG icon. */
@media (max-width: 520px) {
  .country-hero .explore-actions {
    left: 24px !important;
    right: 24px !important;
    top: 24px !important;
    width: auto !important;
  }
  .country-hero .explore-actions button.share-button {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin: 0 !important;
    padding: 0;
    overflow: visible;
    color: var(--ink);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 24px rgba(16,32,63,.16);
    font-size: 0;
  }
  .country-hero .explore-actions button.share-button::before {
    content: none;
  }
  .country-hero .explore-actions button.share-button svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
  }
}

/* Country share button v46: independent from hero action flex rules. */
.country-share-button {
  position: absolute !important;
  z-index: 3;
  top: 42px;
  right: 42px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 !important;
  padding: 0;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 24px rgba(16,32,63,.16);
  font-size: 0;
}
.country-share-button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.hero-share-button {
  position: absolute !important;
  z-index: 3;
  top: 42px;
  right: 42px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 !important;
  padding: 0;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 24px rgba(16,32,63,.16);
  font-size: 0;
}
.hero-share-button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.hero-back-button {
  position: absolute !important;
  z-index: 3;
  top: 42px;
  left: 42px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 !important;
  padding: 0;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 24px rgba(16,32,63,.16);
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.explore-hero .hero-copy {
  position: absolute;
  z-index: 2;
  top: 128px;
  left: 42px;
  right: 42px;
  color: #fff;
}
.explore-hero .hero-copy p,
.explore-hero .hero-copy h1,
.explore-hero .hero-copy strong {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
}
.explore-hero .hero-copy p {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 900;
}
.explore-hero .hero-copy h1 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  font-size: 48px;
  line-height: 1;
}
.explore-hero .hero-copy h1 span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-size: 22px;
}
.explore-hero .hero-copy h1 span svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}
.explore-hero .hero-copy strong {
  display: block;
  max-width: 580px;
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.5;
}

@media (max-width: 520px) {
  .country-share-button {
    top: 24px;
    right: 28px;
    width: 40px;
    height: 40px;
  }
  .country-share-button svg {
    width: 18px;
    height: 18px;
  }
  .hero-share-button {
    top: 24px;
    right: 28px;
    width: 40px;
    height: 40px;
  }
  .hero-share-button svg {
    width: 18px;
    height: 18px;
  }
  .hero-back-button {
    top: 24px;
    left: 28px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
  .explore-hero .hero-copy {
    top: 78px;
    left: 26px;
    right: 26px;
  }
  .explore-hero .hero-copy p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.15;
  }
  .explore-hero .hero-copy h1 {
    gap: 10px;
    font-size: 31px;
    line-height: 1;
  }
  .explore-hero .hero-copy h1 span {
    width: 46px;
    height: 46px;
    border-width: 3px;
    font-size: 19px;
  }
  .explore-hero .hero-copy h1 span svg {
    width: 25px;
    height: 25px;
  }
  .explore-hero .hero-copy strong {
    display: -webkit-box;
    max-width: 100%;
    margin-top: 10px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
