/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-content {
  position: relative; z-index: 1;
  width: 100%; max-width: 980px; padding: 60px 24px 80px;
  text-align: center;
}
@media (max-width: 640px) {
  .hero-content { padding-left: 56px; padding-right: 56px; }
}
.hero-eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75); margin-bottom: 14px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; flex: 0 0 32px; height: 1px; background: rgba(255,255,255,0.35);
}
.hero-title {
  font-family: var(--font-sans); font-size: 38px; font-weight: 600;
  color: #fff; line-height: 1.2; margin-bottom: 12px; letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero-title em { font-style: normal; font-weight: 500; color: rgba(255,255,255,0.92); }
.hero-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.8);
  margin-bottom: 36px; line-height: 1.6;
}
.hero-search {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  overflow: hidden;
  max-width: 980px; margin: 0 auto 16px;
}
.hero-search-top { display: flex; align-items: stretch; }
.hs-field {
  flex: 1; min-width: 0;
  padding: 14px 18px; border-right: 1px solid var(--border);
  cursor: pointer; transition: background 0.12s; white-space: nowrap;
}
.hs-field:hover { background: var(--bg-secondary); }
.hs-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); margin-bottom: 4px; font-weight: 500;
}
.hs-val {
  font-size: 14px; font-weight: 500; color: var(--text-primary);
  display: flex; align-items: center; gap: 6px;
  overflow: hidden; text-overflow: ellipsis;
}
.hero-search-btn-wrap {
  flex-shrink: 0; padding: 10px 12px; display: flex; align-items: center;
}
.hero-search-btn {
  background: var(--green-booking); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: 13px 22px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  font-family: var(--font-body); white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.15s;
}
.hero-search-btn:hover { background: var(--green-booking-dark); }
.hero-tags {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.hero-tags__track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tag {
  background: rgba(255,255,255,0.22); border: 1px solid rgba(255,255,255,0.45);
  color: #fff; border-radius: 20px; padding: 6px 15px;
  font-size: 13px; font-weight: 500; cursor: pointer; transition: background 0.12s, border-color 0.12s; text-decoration: none;
  backdrop-filter: blur(6px); text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-tag:hover { background: rgba(255,255,255,0.32); border-color: rgba(255,255,255,0.6); }
.hero-offer {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  background: rgb(248 246 240); border-top: 2px solid var(--green-booking);
  padding: 13px 24px; text-align: center;
  font-size: 13px; color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hero-offer-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-booking); flex-shrink: 0; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.hero-offer a { color: var(--purple); font-weight: 600; text-decoration: none; }
.hero-offer a:hover { text-decoration: underline; }
.hero-offer__text {
  margin: 0;
  line-height: 1.45;
}
.hero-offer__text--compact { display: none; }
.hero-offer__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}


/* ── SECTIONS — shared layout ─────────────────────────── */
.section { padding: 72px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 20px; }
.section-kicker { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple-light); font-weight: 500; margin-bottom: 6px; }
.section-title  { font-family: var(--font-serif); font-size: 28px; font-weight: 400; color: var(--text-primary); line-height: 1.25; }
.section-title em { font-style: italic; }
.section-link   { font-size: 14px; color: var(--purple); text-decoration: none; font-weight: 500; white-space: nowrap; display: flex; align-items: center; gap: 5px; }
.section-link:hover { color: var(--purple-mid); }


/* ── TRUST STRIP ──────────────────────────────────────── */
.trust-strip { background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 36px 0; }
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.trust-item-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 0 20px;
  min-width: 0;
}
.trust-item-block:not(:last-child) {
  border-right: 1px solid var(--border);
}
.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--purple-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--purple);
  flex-shrink: 0;
}
.trust-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  min-height: 2.8em;
  max-width: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


/* ── TRIP CARDS ───────────────────────────────────────── */
.tabs-carousel { margin-bottom: 24px; }
.trips-tabs-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-bottom: 32px;
}
.trips-tabs-row .tabs-row { flex: 1; min-width: 0; }
.trips-tabs-row .trips-title { margin: 0; text-align: right; white-space: nowrap; }
.tabs-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tab-pill {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.12s;
  font-family: var(--font-body);
  flex-shrink: 0;
  white-space: nowrap;
}
.tab-pill.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.tab-pill:hover:not(.active) { border-color: var(--border-strong); color: var(--text-primary); }
/* Trips slider */
.trips-slider-wrap { position: relative; }
.trips-slider-nav {
  display: flex; gap: 6px;
  position: absolute; top: -44px; right: 0;
  z-index: 1;
}
.trips-slider-btn {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: border-color 0.12s, color 0.12s;
  flex-shrink: 0;
}
.trips-slider-btn:hover:not(:disabled) { border-color: var(--purple); color: var(--purple); }
.trips-slider-btn:disabled { opacity: 0.35; cursor: default; }
.trips-grid {
  display: flex; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;

}
.trips-grid::-webkit-scrollbar { display: none; }
.trips-grid .trip-card[hidden] { display: none !important; }
.trip-card { scroll-snap-align: start; min-width: 280px; flex: 0 0 280px; }

/* Trip tag icons */
.trip-tag { display: flex; align-items: center; gap: 4px; }
.trip-tag svg { width: 11px; height: 11px; flex-shrink: 0; }
.trip-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.trip-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 6px 24px rgba(61,31,140,0.1);
  transform: translateY(-3px);
}
.trip-img { height: 200px; position: relative; overflow: hidden; background: var(--bg-secondary); }
.trip-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.trip-card:hover .trip-img img { transform: scale(1.04); }
.trip-img-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(0,0,0,0.42)); }
.trip-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--purple); color: #fff;
  font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 20px;
}
.trip-badge.green  { background: var(--green-booking); }
.trip-badge.orange { background: var(--orange); }
.trip-score {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.5); color: #fff;
  font-size: 12px; font-weight: 500; padding: 3px 9px; border-radius: 12px;
  display: flex; align-items: center; gap: 5px;
}
.trip-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.trip-region { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--purple-light); margin-bottom: 5px; font-weight: 500; }
.trip-name   { font-size: 16px; font-weight: 500; color: var(--text-primary); margin-bottom: 5px; line-height: 1.3; min-height: 2.6em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.trip-desc   { font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; min-height: calc(1.55em * 3); }
.trip-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); margin-top: auto; }
.trip-tags   { display: flex; gap: 6px; flex-wrap: wrap; }
.trip-tag    { font-size: 11px; color: var(--text-muted); background: var(--bg-secondary); border-radius: 10px; padding: 3px 9px; }
.trip-price  { text-align: right; }
.trip-price-from { font-size: 11px; color: var(--text-muted); }
.trip-price-val  { font-family: var(--font-serif); font-size: 18px; font-weight: 400; color: var(--text-primary); }
.trip-price-pp   { font-size: 12px; color: var(--text-muted); }


/* ── REVIEWS (Trustpilot widget) ──────────────────────── */
.reviews-section { background: var(--bg-secondary); }
.reviews-section.section { padding: 44px 0 40px; }
.reviews-section .section-kicker { margin-bottom: 14px; }
.trustpilot-widget-wrap {
  width: 100%;
  min-width: 0;
  line-height: 0;
}
.reviews-section .trustpilot-widget {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.reviews-section .trustpilot-widget > div {
  width: 100% !important;
  overflow: hidden;
  line-height: 0;
}
.reviews-section .trustpilot-widget > a {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.reviews-section .trustpilot-widget iframe {
  width: 100% !important;
  height: 150px !important;
  min-height: 150px !important;
  max-height: 150px !important;
  border: none !important;
  display: block;
  vertical-align: top;
}
@media (min-width: 769px) {
  .trustpilot-widget-wrap,
  .reviews-section .trustpilot-widget,
  .reviews-section .trustpilot-widget > div {
    height: 150px;
    max-height: 150px;
    min-height: 0;
  }
}


/* ── DESTINATIONS ─────────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 200px 160px;
  gap: 10px;
}
.dest-card {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  cursor: pointer; background: var(--bg-secondary);
  text-decoration: none; display: block;
}
.dest-card:hover .dest-img { transform: scale(1.06); }
.dest-img    { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(0,0,0,0.55)); }
.dest-label  { position: absolute; bottom: 12px; left: 14px; right: 14px; color: #fff; }
.dest-name   { font-size: 14px; font-weight: 500; line-height: 1.2; margin-bottom: 2px; }
.dest-count  { font-size: 11px; color: rgba(255,255,255,0.75); }
.dest-card.featured { grid-column: span 2; grid-row: span 2; }
.dest-card.featured .dest-name  { font-size: 18px; }
.dest-card.featured .dest-count { font-size: 13px; }
.section-carousel__nav { display: none; }


/* ── CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: 400px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(108, 66, 168, 0.25);
}
.cta-banner-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1200&q=80');
}
.cta-banner-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(108, 66, 168, 0.37) 0%, rgba(90, 53, 144, 0.6) 100%);
}
.cta-banner-content {
  position: relative; z-index: 1; padding: 56px 48px; max-width: 700px;
  margin: 0 auto; text-align: center;
}
.cta-title {
  font-family: var(--font-body); font-size: 36px; font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 16px;
}
.cta-desc {
  font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 40px; line-height: 1.6;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #6c42a8; border: none;
  border-radius: 30px; padding: 16px 40px; font-size: 18px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body); text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: background 0.15s, transform 0.15s;
}
.cta-btn:hover { background: #f8f9fa; transform: translateY(-2px); }


/* ── SERVICE SECTION ──────────────────────────────────── */
.service-section { background: var(--bg-card); }
.service-grid {
  display: grid; grid-template-columns: 1fr 360px 1fr;
  gap: 56px; align-items: center;
}
.service-left h2,
.service-right h2 {
  font-family: var(--font-sans); font-size: 28px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 18px; line-height: 1.2; letter-spacing: -0.01em;
}
.service-left p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin: 0; }
.service-left p + p { margin-top: 12px; }
.service-photo {
  width: 220px; height: 220px; max-width: 100%;
  border-radius: 50%; overflow: hidden;
  margin: 0 auto;
}
.service-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-pill-list { display: flex; flex-direction: column; gap: 14px; }
.contact-pill {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 26px; border-radius: 999px;
  background: var(--purple); color: #fff;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  border: none; cursor: pointer; font-family: inherit; text-align: left; width: 100%;
}
.contact-pill:hover { background: var(--purple-dark, #6b1fb8); transform: translateX(4px); }
.contact-pill-icon { font-size: 18px; font-weight: 300; line-height: 1; }

.opening-modal[hidden] { display: none; }
.opening-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.opening-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 10, 45, 0.55);
  backdrop-filter: blur(2px);
}
.opening-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 420px; width: 100%;
  padding: 28px 28px 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  z-index: 1;
}
.opening-modal__close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 4px; border-radius: 6px;
}
.opening-modal__close:hover { color: var(--text-primary); background: var(--bg-secondary); }
.opening-modal__title {
  font-family: var(--font-serif); font-size: 24px; font-weight: 400;
  color: var(--text-primary); margin: 0 0 6px;
}
.opening-modal__sub { font-size: 14px; color: var(--text-secondary); margin: 0 0 18px; }
.opening-modal__list {
  list-style: none; margin: 0 0 18px; padding: 0;
  border-top: 1px solid var(--border);
}
.opening-modal__list li {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  font-size: 14px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.opening-modal__list li:last-child { color: var(--text-muted); }
.opening-modal__actions { display: flex; gap: 10px; }
.opening-modal__btn {
  flex: 1; text-align: center; text-decoration: none;
  padding: 12px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  background: var(--bg-secondary); color: var(--text-primary);
  transition: background 0.15s, color 0.15s;
}
.opening-modal__btn:hover { background: var(--border); }
.opening-modal__btn--wa { background: #25d366; color: #fff; }
.opening-modal__btn--wa:hover { background: #1fb858; }
.service-usps { display: flex; flex-direction: column; gap: 14px; }
.service-usp  { display: flex; align-items: flex-start; gap: 14px; }
.service-usp-icon {
  width: 40px; height: 40px; background: var(--purple-pale);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--purple);
}
.service-usp-title { font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 2px; }
.service-usp-desc  { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }
.service-right { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px;
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  text-decoration: none; transition: border-color 0.15s, transform 0.15s;
}
.contact-card:hover { border-color: var(--border-strong); transform: translateX(4px); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card-icon.wa   { background: #25d366; color: #fff; }
.contact-card-icon.tel  { background: var(--purple); color: #fff; }
.contact-card-icon.mail { background: var(--orange); color: #fff; }
.contact-card-label { font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 2px; }
.contact-card-sub   { font-size: 13px; color: var(--text-muted); }
.contact-card-arr   { margin-left: auto; color: var(--text-muted); font-size: 18px; }
.hours-note {
  background: var(--purple-pale); border: 1px solid var(--purple-border);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: 13px; color: var(--purple-mid); display: flex; align-items: center; gap: 10px;
}


/* ── NEWSLETTER SECTION ───────────────────────────────── */
.newsletter-section { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.newsletter-inner {
  max-width: 1200px; margin: 0 auto; padding: 56px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.newsletter-left h2 { font-family: var(--font-serif); font-size: 30px; font-weight: 400; color: var(--text-primary); margin-bottom: 8px; line-height: 1.3; }
.newsletter-left h2 em { font-style: italic; color: var(--purple-mid); }
.newsletter-left p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.newsletter-input {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 11px 14px; font-size: 14px; color: var(--text-primary);
  font-family: var(--font-body); outline: none; transition: border-color 0.12s;
}
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-input:focus { border-color: var(--purple-light); box-shadow: 0 0 0 3px var(--purple-pale); }
.newsletter-email-row { display: flex; gap: 8px; }
.newsletter-email-row .newsletter-input { flex: 1; }
.newsletter-submit {
  background: var(--orange); color: #fff; border: none; border-radius: var(--radius-sm);
  padding: 11px 22px; font-size: 14px; font-weight: 500; cursor: pointer;
  font-family: var(--font-body); white-space: nowrap; transition: background 0.15s;
}
.newsletter-submit:hover { background: #c96a18; }
.newsletter-privacy { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.newsletter-privacy a { color: var(--text-secondary); text-decoration: underline; }


/* ── BLOG ─────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; text-decoration: none; color: inherit;
  transition: border-color 0.15s, transform 0.15s; display: block;
}
.blog-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.blog-img { height: 180px; overflow: hidden; background: var(--bg-secondary); position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-category {
  position: absolute; top: 12px; left: 12px;
  background: var(--purple); color: #fff;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 500; padding: 3px 9px; border-radius: 12px;
}
.blog-body    { padding: 18px 20px 20px; }
.blog-title   { font-size: 15px; font-weight: 500; color: var(--text-primary); margin-bottom: 8px; line-height: 1.4; }
.blog-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.blog-meta    { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border-strong); }


/* ── RESPONSIVE (page-specific) ───────────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: 28px; }
  .hero-search-top { flex-wrap: wrap; }
  .hero-search-top .hs-field { flex: 1 1 45%; border-bottom: 1px solid var(--border); }
  .hero-search-btn-wrap { width: 100%; padding: 10px 14px; border-top: 1px solid var(--border); }
  .trip-card { min-width: 260px; flex: 0 0 260px; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .dest-card.featured { grid-column: span 1; grid-row: span 1; }
  .service-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .service-photo { width: 180px; height: 180px; }
  .contact-pill { justify-content: space-between; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { padding: 32px 0; }
  .trust-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
    padding: 0 24px;
  }
  .trust-item-block {
    padding: 0 12px;
    border-right: none;
  }
  .section-inner { padding: 0 20px; }
}
@media (max-width: 768px) {
  .hero-offer {
    padding: 11px 16px;
    gap: 8px;
    font-size: 13px;
  }
  .hero-offer__text--full { display: none; }
  .hero-offer__text--compact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
    flex: 1;
    min-width: 0;
  }
  .hero-offer__cta {
    padding: 5px 11px;
    margin-left: 2px;
    background: var(--purple-pale);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--purple);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
  }
  .hero-offer__cta:hover {
    background: var(--purple);
    color: #fff;
    text-decoration: none;
  }
  .hero-tags {
    overflow: hidden;
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
    max-width: none;
  }
  .hero-tags::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.28));
    pointer-events: none;
    z-index: 1;
  }
  .hero-tags__track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    gap: 8px;
    padding: 2px 24px 6px;
    scroll-padding-inline: 24px;
  }
  .hero-tags__track::-webkit-scrollbar { display: none; }
  .hero-tag {
    flex: 0 0 calc((100vw - 56px) / 2.35);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  /* Featured trips — stacked title above, scroll-snap pills below */
  .section--trips .trips-tabs-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
  }
  .section--trips .trips-title {
    text-align: left;
    white-space: normal;
    font-size: 26px;
    padding: 0 20px;
  }
  .section--trips .tabs-carousel {
    position: relative;
    margin: 0 -20px 20px;
    overflow: hidden;
  }
  .section--trips .tabs-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 36px;
    background: linear-gradient(to right, transparent, var(--bg));
    pointer-events: none;
    z-index: 1;
  }
  .section--trips .tabs-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    gap: 8px;
    margin-bottom: 0;
    padding: 2px 20px 4px;
    scroll-padding-inline: 20px;
  }
  .section--trips .tabs-row::-webkit-scrollbar { display: none; }
  .section--trips .tab-pill {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  /* Destinations & blog — stacked header, toolbar, card carousel */
  .section--destinations .section-header,
  .section--blog .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  .section--destinations .section-title,
  .section--blog .section-title { font-size: 26px; }
  .section--destinations .section-header-toolbar,
  .section--blog .section-header-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }
  .section--destinations .section-link,
  .section--blog .section-link {
    font-size: 13px;
    padding: 6px 0;
    align-self: auto;
  }
  .section--destinations .section-carousel,
  .section--blog .section-carousel {
    position: relative;
    margin: 0 -20px;
    overflow: hidden;
  }
  .section--destinations .section-carousel::after,
  .section--blog .section-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 36px;
    background: linear-gradient(to right, transparent, var(--bg));
    pointer-events: none;
    z-index: 1;
  }
  .section--destinations .section-carousel__track,
  .section--blog .section-carousel__track {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: unset;
    grid-template-rows: unset;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    gap: 12px;
    padding: 2px 20px 6px;
    scroll-padding-inline: 20px;
  }
  .section--destinations .section-carousel__track::-webkit-scrollbar,
  .section--blog .section-carousel__track::-webkit-scrollbar { display: none; }
  .section--destinations .dest-card {
    flex: 0 0 calc((100vw - 52px) / 1.28);
    height: 220px;
    min-height: 220px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .section--destinations .dest-card.featured {
    grid-column: unset;
    grid-row: unset;
  }
  .section--destinations .dest-card.featured .dest-name { font-size: 14px; }
  .section--destinations .dest-card.featured .dest-count { font-size: 11px; }
  .section--blog .blog-card {
    flex: 0 0 calc((100vw - 52px) / 1.08);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .section--blog .blog-card:hover { transform: none; }
  .section--destinations .section-carousel__nav,
  .section--blog .section-carousel__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
  }
  .section-carousel__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--purple);
    background: var(--bg-card);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s, color 0.15s, opacity 0.15s, transform 0.15s;
    flex-shrink: 0;
  }
  .section-carousel__btn:hover:not(:disabled) {
    background: var(--purple);
    color: #fff;
  }
  .section-carousel__btn:active:not(:disabled) { transform: scale(0.96); }
  .section-carousel__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-tags__track { scroll-snap-type: none; }
  .section--trips .tabs-row { scroll-snap-type: none; }
  .section--destinations .section-carousel__track,
  .section--blog .section-carousel__track { scroll-snap-type: none; }
}
@media (max-width: 768px) {
  /* Stacked carousel needs >150px; keep tight to avoid empty space below widget */
  .reviews-section.section { padding: 40px 0 28px; }
  .reviews-section .section-kicker { margin-bottom: 16px; }
  .reviews-section .trustpilot-widget,
  .reviews-section .trustpilot-widget > div {
    min-height: 0;
    height: auto;
    overflow: visible;
  }
  .reviews-section .trustpilot-widget iframe {
    min-height: 300px !important;
    height: 300px !important;
  }
}
@media (max-width: 600px) {
  .hero-title { font-size: 28px; }
  .hero-search-top .hs-field { flex: 1 1 100%; }
  .trip-card { min-width: 240px; flex: 0 0 240px; }
  .newsletter-row { grid-template-columns: 1fr; }
  .trust-strip { padding: 28px 0; }
  .trust-strip-inner {
    gap: 28px 16px;
    padding: 0 20px;
  }
  .trust-item-block { padding: 0 8px; }
  .trust-num { font-size: 28px; }
  .trust-label { font-size: 12px; min-height: 2.6em; max-width: none; }
  .cta-banner { min-height: 350px; }
  .cta-banner-content { padding: 40px 24px; }
  .cta-title { font-size: 28px; }
  .cta-desc { font-size: 16px; margin-bottom: 32px; }
  .cta-btn { width: 100%; max-width: 300px; justify-content: center; padding: 14px 32px; font-size: 16px; }
  .section { padding: 48px 0; }
  .reviews-section.section { padding: 36px 0 24px; }
}

