/* ============================================
   GAIA Tours — shared stylesheet
   (GAIA master brand · navy / sand / gold)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=Cairo:wght@400;600;700&display=swap');

:root {
  /* GAIA master brand - primary */
  --red: #1b2a4a;
  /* deep royal navy (was WeRoad red) */
  --red-dark: #243761;
  /* navy-2 */
  --red-light: #e6f1f5;
  /* accent-light */
  --ink: #1c1e26;
  --text: #1c1e26;
  --muted: #6b7280;
  --muted-2: #9b978e;
  --cream: #faf7f2;
  /* warm neutral */
  --cream-border: #e8e6e0;
  --mint: #e6f1f5;
  --mint-text: #175a75;
  /* accent-dark */
  --border: #e8e6e0;
  --bg: #FFFFFF;
  --footer-bg: #14161d;
  /* night */
  --footer-text: #c9c6d1;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 1px 2px rgba(27, 42, 74, .06), 0 8px 24px rgba(27, 42, 74, .10);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--ink);
}

p {
  margin: 0;
}

:focus-visible {
  outline: 2.5px solid var(--red);
  outline-offset: 2px;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 20px rgba(255, 76, 94, .35);
}

.btn-primary:disabled {
  background: #DCDAD6;
  color: #9C9A96;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

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

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13.5px;
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo span {
  color: var(--red);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
}

.main-nav a:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header-actions .txt-link {
  font-size: 14.5px;
  font-weight: 600;
}

.header-actions .icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
}

.header-actions .icon-btn:hover {
  border-color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: none;
  background: none;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: .2s;
}

.nav-toggle span::before {
  position: absolute;
  top: -7px;
}

.nav-toggle span::after {
  position: absolute;
  top: 7px;
}

.header-min .wrap {
  justify-content: space-between;
}

.header-min .header-actions {
  gap: 12px;
}

.currency-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- Search / filter bar (search results page) ---------- */
.search-bar {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.search-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14.5px;
  flex: 1;
  min-width: 180px;
}

.search-field.grow2 {
  flex: 1.4;
}

.search-field .icon {
  color: var(--muted);
  flex-shrink: 0;
}

.search-field .sub {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.search-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14.5px;
  background: #fff;
}

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 600;
  background: #fff;
  color: var(--ink);
}

.filter-chip:hover {
  border-color: var(--ink);
}

.filter-chip.solo {
  margin-left: auto;
}

.results-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.tabline {
  display: flex;
  gap: 26px;
}

.tabline a {
  font-weight: 700;
  font-size: 15px;
  color: var(--muted-2);
  padding-bottom: 14px;
  border-bottom: 2.5px solid transparent;
}

.tabline a.active {
  color: var(--ink);
  border-color: var(--red);
}

.results-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}

.toggle {
  width: 38px;
  height: 22px;
  border-radius: 99px;
  background: #DCDAD6;
  position: relative;
  display: inline-block;
}

.toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
}

/* ---------- Trip card (search results) ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  padding: 8px 0 60px;
}

.trip-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s ease, transform .2s ease;
}

.trip-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.trip-card .media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.trip-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-card .compare-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trip-card .fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trip-card .body {
  padding: 18px;
}

.trip-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.trip-card .meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 14px;
}

.trip-card .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: var(--ink);
}

.trip-card .rating .stars {
  color: #1F9D66;
}

.trip-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.trip-card .price-label {
  font-size: 11.5px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.trip-card .price {
  font-size: 19px;
  font-weight: 800;
}

.trip-card .see-dates {
  margin-top: 12px;
  width: 100%;
  text-align: center;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  font-weight: 700;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 0 60px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.pagination .pg-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 0 0;
  margin-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 44px;
  border-bottom: 1px solid #2C2C2C;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: #fff;
}

.footer-logo span {
  color: var(--red);
}

.footer-subscribe {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
}

.footer-subscribe form {
  display: flex;
  gap: 0;
  border: 1px solid #3A3A3A;
  border-radius: 10px;
  overflow: hidden;
}

.footer-subscribe input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 13px 16px;
  color: #fff;
  font-size: 14px;
}

.footer-subscribe input::placeholder {
  color: #8A8A8A;
}

.footer-subscribe button {
  background: #4A4A4A;
  border: none;
  color: #fff;
  padding: 0 22px;
  font-weight: 700;
  font-size: 13.5px;
}

.footer-subscribe .fine {
  font-size: 11.5px;
  color: #8A8A8A;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #3A3A3A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 44px 0;
}

.footer-col h4 {
  color: #fff;
  font-size: 13.5px;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  color: var(--footer-text);
  font-size: 13.5px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #2C2C2C;
  padding: 32px 0;
  text-align: center;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.stars-inline {
  color: #00b67a;
  letter-spacing: 2px;
}

.badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-bottom: 26px;
  flex-wrap: wrap;
  opacity: .85;
}

.footer-fine {
  font-size: 12px;
  color: #7A7A7A;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 8px;
}

.pay-icons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.pay-icons span {
  border: 1px solid #3A3A3A;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 11px;
  color: #aaa;
}

/* ============================================
   HOMEPAGE
   ============================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(20, 18, 25, .35), rgba(15, 14, 20, .65)), url('https://images.unsplash.com/photo-1483401757487-2ee349d4f25f?w=1600&q=80') center/cover;
  color: #fff;
}

.hero-inner {
  max-width: 640px;
  padding: 70px 0;
}

.hero h1 {
  color: #fff;
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 16.5px;
  opacity: .92;
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-search {
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  display: flex;
  gap: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
  max-width: 460px;
}

.hero-search input {
  border: none;
  outline: none;
  flex: 1;
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--text);
  border-radius: 10px;
}

.hero-search button {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0 22px;
  font-weight: 700;
  font-size: 14px;
}

.promo-banner {
  background: var(--cream);
  border-radius: var(--radius-lg);
  margin: -46px auto 0;
  max-width: 1140px;
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 5;
  flex-wrap: wrap;
  box-shadow: var(--shadow-card);
}

.promo-banner h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.promo-banner p {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 420px;
}

.promo-banner .btn {
  flex-shrink: 0;
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding: 40px 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: 28px;
  letter-spacing: -0.01em;
}

.section-head .see-all {
  font-weight: 700;
  font-size: 14px;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
}

.scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.scroll-row::-webkit-scrollbar {
  height: 6px;
}

.scroll-row::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 6px;
}

.deal-card {
  scroll-snap-align: start;
  flex: 0 0 220px;
}

.deal-card .media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  margin-bottom: 12px;
}

.deal-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.deal-card:hover .media img {
  transform: scale(1.06);
}

.deal-card .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
}

.deal-card h4 {
  font-size: 14.5px;
  margin-bottom: 4px;
}

.deal-card .price {
  font-size: 13px;
  color: var(--muted);
}

.deal-card .price b {
  color: var(--ink);
}

.why-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.why-item .ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.why-item strong {
  display: block;
  font-size: 14.5px;
}

.why-item span {
  font-size: 13px;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.category-card:hover img {
  transform: scale(1.07);
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .62));
}

.category-card span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  z-index: 2;
  line-height: 1.25;
}

.scenes-wrap {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.scenes-avatars {
  display: flex;
}

.scenes-avatars img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  margin-left: -24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}

.scenes-avatars img:first-child {
  margin-left: 0;
}

.scenes-box {
  flex: 1;
  min-width: 280px;
  background: var(--cream);
  border-radius: 18px;
  padding: 26px 28px;
}

.scenes-box h4 {
  font-size: 17px;
  margin-bottom: 14px;
}

.scenes-box li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--text);
}

.scenes-box li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #1F9D66;
}

.scenes-box .btn {
  margin-top: 10px;
}

.friendship-banner {
  background: linear-gradient(135deg, #FFF1E9, #FDECEF);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
}

.friendship-banner h2 {
  font-size: 30px;
  max-width: 720px;
  margin: 0 auto 8px;
  line-height: 1.25;
}

.friendship-banner p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 14.5px;
}

.stat-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.stat-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--red);
}

.stat-item span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.store-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.store-badges span {
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 9px 18px;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.loved-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.loved-tabs button {
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--muted);
}

.loved-tabs button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

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

.qa-box {
  background: #EAF2FB;
  border-radius: var(--radius-lg);
  padding: 44px;
}

.qa-box .section-head {
  margin-bottom: 20px;
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.qa-item {
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.qa-item .plus {
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
}

.confidence-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.confidence-item {
  text-align: center;
  padding: 10px;
}

.confidence-item .ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--mint-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.confidence-item strong {
  display: block;
  font-size: 14.5px;
  margin-bottom: 4px;
}

.confidence-item span {
  font-size: 13px;
  color: var(--muted);
}

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

.review-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.review-card .stars-inline {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
}

.review-card p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.6;
}

.review-card .who {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}

.final-cta {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: #fff;
}

.final-cta h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 22px;
}

/* ============================================
   TRIP DETAIL PAGE
   ============================================ */
.trip-hero {
  padding: 28px 0 0;
}

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.trip-hero h1 {
  font-size: 30px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.trip-subrow {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.trip-subrow .item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.trip-subrow .stars {
  color: #1F9D66;
}

.trip-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.trip-actions .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  margin-bottom: 36px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery .g-main {
  grid-row: 1/3;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.detail-main {
  min-width: 0;
}

.fit-box {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 44px;
}

.fit-box h3 {
  font-size: 17px;
  margin-bottom: 18px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.fit-row .ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.fit-row b {
  display: block;
  font-size: 13.5px;
}

.fit-row span {
  color: var(--muted);
  font-size: 12.5px;
}

.detail-h2 {
  font-size: 22px;
  margin-bottom: 22px;
}

.map-box {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  background: #F5F1E8;
}

.map-box img {
  width: 100%;
  display: block;
}

.day-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}

.day-card summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.day-card summary::-webkit-details-marker {
  display: none;
}

.day-card .thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.day-card .day-label {
  font-size: 12px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.day-card h4 {
  font-size: 15.5px;
}

.day-card .chev {
  margin-left: auto;
  color: var(--muted);
  transition: transform .2s;
}

.day-card[open] .chev {
  transform: rotate(180deg);
}

.day-card .day-body {
  padding: 0 18px 20px 98px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 44px;
}

.included-grid h4 {
  font-size: 15px;
  margin-bottom: 14px;
}

.included-grid li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  margin-bottom: 11px;
  color: var(--text);
}

.included-grid li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.included-grid .yes svg {
  color: #1F9D66;
}

.included-grid .no svg {
  color: #C94F4F;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.accordion-item summary {
  font-weight: 700;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item .plus {
  color: var(--muted);
  font-size: 20px;
}

.accordion-item p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.leader-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.leader-grid img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
}

.flight-box {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  margin-top: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.flight-box .search-field {
  flex: 1;
  min-width: 160px;
}

/* Sidebar price card */
.price-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  box-shadow: var(--shadow-card);
}

.price-card .from {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.price-card .amount {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 18px;
}

.price-card .btn {
  margin-bottom: 16px;
}

.price-card .spots {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
}

.price-card .divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

.price-card .info-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: 10px;
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-page {
  background: #fff;
  padding: 36px 0 80px;
}

.stepper {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted-2);
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
}

.step.done::before {
  background: var(--red);
}

.step.active::before {
  background: var(--red);
}

.step.active {
  color: var(--ink);
}

.step .dot {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--border);
}

.step.active .dot,
.step.done .dot {
  background: var(--red);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

.booking-main h4.mandatory {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  margin-bottom: 26px;
}

.booking-main h2 {
  font-size: 19px;
  margin-bottom: 6px;
}

.booking-main .hint {
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
  display: block;
  margin-top: 4px;
}

.gender-row {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  margin: 18px 0 40px;
}

.gender-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.gender-col .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.gender-col label {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--muted);
}

.counter {
  display: flex;
  align-items: center;
  gap: 16px;
}

.counter button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.counter button:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.counter .num {
  font-size: 16px;
  font-weight: 700;
  width: 16px;
  text-align: center;
}

.gender-divider {
  width: 1px;
  height: 70px;
  background: var(--border);
  margin: 0 30px;
}

.section-label {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.section-sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 18px;
}

.check-card {
  display: flex;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
}

.check-card input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--red);
  flex-shrink: 0;
}

.check-card strong {
  display: block;
  font-size: 14.5px;
  margin-bottom: 5px;
}

.check-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.info-card {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 36px;
}

.info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14.5px;
}

.info-card p {
  font-size: 13.3px;
  color: var(--muted);
  line-height: 1.65;
}

.info-card a {
  color: var(--ink);
  text-decoration: underline;
  font-weight: 600;
}

.extra-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
}

.extra-card-left {
  display: flex;
  gap: 14px;
}

.extra-card input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--red);
  flex-shrink: 0;
}

.extra-card strong {
  display: block;
  font-size: 14.5px;
  margin-bottom: 5px;
}

.extra-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

.extra-card a {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
}

.extra-price {
  font-weight: 800;
  font-size: 14.5px;
  white-space: nowrap;
}

.summary-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.summary-card .eyebrow {
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.summary-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.summary-card .amount {
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 20px;
}

.summary-dates {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.summary-dates div span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}

.summary-dates div strong {
  font-size: 14px;
  font-weight: 700;
  display: block;
}

.summary-dates div small {
  color: var(--muted);
  font-size: 12.5px;
}

.avail-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.install-card {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13.5px;
  font-weight: 600;
  margin: 18px 0;
}

.social-proof {
  background: var(--mint);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--mint-text);
  margin-bottom: 22px;
}

.summary-help {
  text-align: center;
}

.summary-help strong {
  display: block;
  font-size: 14.5px;
  margin-bottom: 6px;
}

.summary-help a {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .txt-link {
    display: none;
  }

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

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

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

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

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

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

  .detail-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .price-card {
    position: static;
  }

  .gallery {
    grid-template-columns: 1fr;
    height: auto;
    grid-auto-rows: 200px;
  }

  .gallery .g-main {
    grid-row: auto;
    grid-column: auto;
  }

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

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

  .hero h1 {
    font-size: 32px;
  }

  .promo-banner {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    flex-direction: column;
  }

  .gender-row {
    flex-direction: column;
  }

  .gender-divider {
    width: 100%;
    height: 1px;
    margin: 18px 0;
  }
}