/* extracted from public/destination.php (block 0) by scripts/css_migration/extract.php */
/* ── Destination Page Design System ─────────────────────────── */
:root {
  --dp-brand:     #059669;
  --dp-brand-dk:  #047857;
  --dp-brand-lt:  #ecfdf5;
  --dp-ink:       #0f172a;
  --dp-ink-2:     #334155;
  --dp-ink-3:     #64748b;
  --dp-line:      #e2e8f0;
  --dp-bg:        #ffffff;
  --dp-white:     #ffffff;
  --dp-radius:    16px;
  --dp-shadow:    0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --dp-shadow-lg: 0 10px 25px -5px rgba(15,23,42,0.06), 0 8px 10px -6px rgba(15,23,42,0.04);
}

/* Hero */
.dp-hero {
  position: relative;
  height: clamp(480px, 62vh, 680px);
  overflow: hidden;
  background: #0a1f14;
  border-radius: 24px;
}
.dp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .72;
  transform: scale(1.04);
  animation: dpHeroZoom 12s ease-out forwards;
}
@keyframes dpHeroZoom { to { transform: scale(1); } }
.dp-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,20,.18) 0%, rgba(10,31,20,.5) 55%, rgba(10,31,20,.92) 100%);
}
.dp-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}
.dp-hero-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.dp-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.9);
  font-size:var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px;
  border-radius: 99px;
  transition: background .2s;
}
.dp-back-btn:hover { background: rgba(255,255,255,.22); color: #fff; }
.dp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(5,150,105,.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size:var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  padding: 6px 14px;
  border-radius: 99px;
}
.dp-hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 24px 36px;
  z-index: 10;
}
.dp-hero-country {
  font-size:var(--text-sm);
  font-weight: 800;
  color: #6ee7b7 !important;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 2px 10px rgba(0,0,0,.8) !important;
}
.dp-hero-title {
  font-family: var(--font-display, 'Outfit', system-ui);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 950 !important;
  color: #ffffff !important;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.85), 0 1px 4px rgba(0,0,0,.9) !important;
}
/* Floating stats bar */
.dp-stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(15,23,42,.88) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2) !important;
  border-radius: 14px;
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,.3) !important;
}
.dp-stat {
  padding: 10px 18px;
  border-right: 1px solid rgba(255,255,255,.15);
  flex: 0 0 auto;
}
.dp-stat:last-child { border-right: none; }
.dp-stat-label {
  font-size: 10px;
  font-weight: 800 !important;
  color: #A7F3D0 !important;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 2px;
}
.dp-stat-value {
  font-size: 13.5px;
  font-weight: 800 !important;
  color: #ffffff !important;
  white-space: nowrap;
}

/* ── Main Layout ─────────────────────────────────────────────── */
.dp-body {
  background: #ffffff !important;
  min-height: 100vh;
}
.dp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.dp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  padding: 36px 0 80px;
  align-items: flex-start;
}
.dp-layout-full {
  display: block !important;
  width: 100% !important;
  grid-template-columns: 1fr !important;
  padding: 36px 0 80px;
}
.dp-layout-full .dp-main {
  width: 100% !important;
  max-width: 100% !important;
}
.dp-layout-full .dp-sidebar {
  display: none !important;
}
.dp-main {
  min-width: 0;
}

/* ── Section titles ──────────────────────────────────────────── */
.dp-section { margin-bottom: 52px; }
.dp-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
  gap: 16px;
}
.dp-section-label {
  font-size:var(--text-2xs);
  font-weight: 800;
  color: var(--dp-brand);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dp-section-title {
  font-family: var(--font-display, 'Outfit', system-ui);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--dp-ink);
  margin: 0;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.dp-section-sub {
  font-size:var(--text-base);
  color: var(--dp-ink-3);
  margin-top: 4px;
  font-weight: 500;
}
.dp-scroll-btns { display: flex; gap: 6px; flex-shrink: 0; }
.dp-scroll-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--dp-line);
  background: var(--dp-white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size:var(--text-lg);
  transition: all .18s;
  color: var(--dp-ink-2);
}
.dp-scroll-btn:hover { background: var(--dp-ink); color: #fff; border-color: var(--dp-ink); }

/* ── Description card ───────────────────────────────────────── */
.dp-desc-card {
  background: var(--dp-white);
  border: 1px solid var(--dp-line);
  border-radius: var(--dp-radius);
  padding: 28px 32px;
  box-shadow: var(--dp-shadow);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.dp-desc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dp-brand), #34d399);
}
.dp-desc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
  flex-wrap: wrap;
}
.dp-desc-title {
  font-family: var(--font-display, 'Outfit', system-ui);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--dp-ink);
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.dp-desc-text {
  font-size:var(--text-md);
  line-height: 1.8;
  color: var(--dp-ink-2);
  margin: 0;
}
.dp-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size:var(--text-xs);
  font-weight: 700;
  color: var(--dp-brand);
  background: var(--dp-brand-lt);
  border: 1px solid #bbf7d0;
  padding: 5px 14px;
  border-radius: 99px;
  letter-spacing: .02em;
}
.dp-social-proof-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  animation: dpPulse 2s ease-in-out infinite;
}
@keyframes dpPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.4); }
}

/* ── Seasonality ─────────────────────────────────────────────── */
.dp-season-card {
  background: var(--dp-white);
  border: 1px solid var(--dp-line);
  border-radius: var(--dp-radius);
  padding: 26px 28px;
  box-shadow: var(--dp-shadow);
  margin-bottom: 28px;
}
.dp-season-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}
.dp-month-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.dp-month-bar-wrap {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.dp-month-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-radius: 8px 8px 0 0;
  transition: height .4s ease;
}
.dp-month-bar.peak   { background: linear-gradient(180deg, #34d399, #059669); height: 100%; }
.dp-month-bar.shoulder{ background: linear-gradient(180deg, #fcd34d, #d97706); height: 55%; }
.dp-month-bar.avoid  { background: linear-gradient(180deg, #fca5a5, #ef4444); height: 30%; }
.dp-month-lbl {
  font-size:var(--text-2xs);
  font-weight: 700;
  color: var(--dp-ink-3);
  text-align: center;
}
.dp-month-tag {
  font-size:var(--text-2xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
  text-align: center;
}
.dp-month-tag.peak    { color: #059669; }
.dp-month-tag.shoulder{ color: #d97706; }
.dp-month-tag.avoid   { color: #dc2626; }
.dp-season-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.dp-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size:var(--text-xs);
  font-weight: 600;
  color: var(--dp-ink-3);
}
.dp-legend-dot {
  width: 10px; height: 10px;
  border-radius: 3px;
}
.dp-legend-dot.peak    { background: #059669; }
.dp-legend-dot.shoulder{ background: #d97706; }
.dp-legend-dot.avoid   { background: #ef4444; }
.dp-season-note {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 14px 18px;
  font-size:var(--text-sm);
  color: #166534;
  line-height: 1.55;
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* ── Horizontal scroll rails ─────────────────────────────────── */
.dp-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--dp-line) transparent;
}
.dp-rail::-webkit-scrollbar { height: 4px; }
.dp-rail::-webkit-scrollbar-track { background: transparent; }
.dp-rail > * {
  scroll-snap-align: start;
  flex: 0 0 320px;
  min-width: 275px;
  max-width: 320px;
  box-sizing: border-box;
  align-self: flex-start;
}
@media (max-width: 640px) {
  .dp-rail > * {
    flex: 0 0 86vw !important;
    min-width: 275px !important;
    max-width: min(350px, calc(100vw - 32px)) !important;
  }
}

/* ── Empty state ─────────────────────────────────────────────── */
.dp-empty {
  background: var(--dp-white);
  border: 1px solid var(--dp-line);
  border-radius: var(--dp-radius);
  padding: 56px 32px;
  text-align: center;
  box-shadow: var(--dp-shadow);
  margin-bottom: 48px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.dp-faq-section {
  background: var(--dp-white);
  border: 1px solid var(--dp-line);
  border-radius: 20px;
  padding: 36px 36px;
  box-shadow: var(--dp-shadow);
  margin-bottom: 48px;
}
.dp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.dp-faq-item {
  border: 1px solid var(--dp-line);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color .2s, box-shadow .2s;
}
.dp-faq-item[open] {
  border-color: #10b981;
  box-shadow: 0 4px 16px rgba(16,185,129,.08);
  background: var(--dp-white);
}
.dp-faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size:var(--text-base);
  font-weight: 800;
  color: var(--dp-ink);
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.dp-faq-item summary::-webkit-details-marker { display: none; }
.dp-faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--dp-brand-lt);
  color: var(--dp-brand);
  display: flex; align-items: center; justify-content: center;
  font-size:var(--text-md);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .25s, background .2s;
}
.dp-faq-item[open] .dp-faq-icon { transform: rotate(45deg); background: var(--dp-brand); color: #fff; }
.dp-faq-body {
  padding: 4px 22px 18px;
  font-size:var(--text-base);
  line-height: 1.7;
  color: var(--dp-ink-3);
  border-top: 1px solid var(--dp-line);
  margin-top: -1px;
  padding-top: 16px;
}

/* ── Sidebar card ────────────────────────────────────────────── */
.dp-sidebar { position: sticky; top: 88px; z-index: 10; }
.dp-inquiry-card {
  background: var(--dp-white);
  border: 1px solid var(--dp-line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--dp-shadow-lg);
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.dp-inquiry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dp-brand), #34d399);
}
.dp-inq-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dp-brand-lt);
  color: #065f46;
  border: 1px solid #bbf7d0;
  font-size:var(--text-2xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.dp-inq-title {
  font-family: var(--font-display, 'Outfit', system-ui);
  font-size:var(--text-xl);
  font-weight: 900;
  color: var(--dp-ink);
  margin: 0 0 6px;
  letter-spacing: -.02em;
}
.dp-inq-sub {
  font-size:var(--text-sm);
  color: var(--dp-ink-3);
  line-height: 1.5;
  margin: 0 0 22px;
}
.dp-field { margin-bottom: 14px; }
.dp-label {
  display: block;
  font-size:var(--text-2xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--dp-ink-3);
  margin-bottom: 6px;
}
.dp-input, .dp-select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size:var(--text-sm);
  font-weight: 500;
  color: var(--dp-ink);
  background: #ffffff;
  outline: none;
  box-sizing: border-box;
  transition: border-color .18s, box-shadow .18s;
  font-family: inherit;
}
.dp-input:focus, .dp-select:focus {
  border-color: var(--dp-brand);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(5,150,105,.12);
}
.dp-input::placeholder { color: #94a3b8; font-weight: 400; }
.dp-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; cursor: pointer; }
.dp-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dp-submit-btn {
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size:var(--text-base);
  font-weight: 800;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(5,150,105,.25);
  transition: transform .15s, box-shadow .15s;
  font-family: inherit;
  letter-spacing: .2px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.dp-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(5,150,105,.35); }
.dp-trust-list {
  margin-top: 20px;
  border-top: 1px solid var(--dp-line);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dp-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.dp-trust-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--dp-brand-lt);
  display: flex; align-items: center; justify-content: center;
  font-size:var(--text-md);
  flex-shrink: 0;
}
.dp-trust-label { font-size:var(--text-sm); font-weight: 800; color: var(--dp-ink); margin-bottom: 2px; }
.dp-trust-desc { font-size:var(--text-xs); color: var(--dp-ink-3); line-height: 1.4; }

/* ── Utility classes for public-destination ──────────────────── */
.dp-view-all-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--dp-brand);
  text-decoration: none;
  white-space: nowrap;
}
.dp-view-all-link:hover {
  text-decoration: underline;
}
.dp-form-error {
  display: none;
  font-size: 13px;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.dp-input-month {
  cursor: pointer;
}
.dp-brief-success {
  display: none;
  text-align: center;
  padding: 24px 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  margin-bottom: 16px;
}
.dp-brief-success-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.dp-brief-success-title {
  font-size: 18px;
  font-weight: 700;
  color: #166534;
  margin: 0 0 6px;
}
.dp-brief-success-desc {
  font-size: 13px;
  color: #15803d;
  line-height: 1.5;
  margin: 0 0 14px;
}
.dp-brief-reset-btn {
  background: #059669;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s;
}
.dp-brief-reset-btn:hover {
  background: #047857;
}

/* ── Bottom CTA Banner ───────────────────────────────────────── */
.dp-cta-banner {
  background: linear-gradient(135deg, #07241B 0%, #165230 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  margin: 0 0 64px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(7, 36, 27, 0.15);
}
.dp-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(63, 165, 107, 0.15) 0%, transparent 50%),
              url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E");
}
.dp-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  color: #86efac;
  font-size:var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.15);
}
.dp-cta-title {
  font-family: var(--font-display, 'Outfit', system-ui);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: 0 auto 16px;
  max-width: 800px;
}
.dp-cta-sub {
  font-size:var(--text-md);
  color: rgba(255,255,255,.8);
  margin: 0 auto 36px;
  line-height: 1.6;
  max-width: 680px;
}
.dp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #07241B;
  font-size:var(--text-base);
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 14px;
  text-decoration: none;
  transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  cursor: pointer;
}
.dp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
  background: #f8fafc;
}
.dp-cta-btn:active {
  transform: translateY(0);
}

/* ── Blog card ───────────────────────────────────────────────── */
.dp-blog-card {
  width: 270px;
  background: var(--dp-white);
  border: 1.5px solid var(--dp-line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.dp-blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.1); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .dp-layout { grid-template-columns: 1fr; }
  .dp-sidebar { position: static; }
  .dp-season-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 640px) {
  .dp-hero { height: 75vw; min-height: 380px; border-radius: 16px; }
  .dp-hero-title { font-size: clamp(32px, 9vw, 52px); }
  .dp-hero-bottom { padding: 0 16px 28px; }
  .dp-hero-top { padding: 16px 16px; }
  .dp-stats-bar { flex-wrap: wrap; }
  .dp-stat { min-width: 90px; }
  .dp-season-grid { grid-template-columns: repeat(4, 1fr); }
  .dp-faq-section { padding: 24px 20px; }
  .dp-cta-banner { padding: 36px 24px; }
  .dp-container { padding: 0 16px; }
}

/* ── Modular Sections Design System ──────────────────────────── */

/* Hero Tagline */
.dp-hero-tagline {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin: -12px 0 20px 0;
  line-height: 1.5;
  max-width: 680px;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
}

/* Visual Highlights Grid */
.dp-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}
.dp-highlight-card {
  background: var(--dp-white);
  border: 1.5px solid var(--dp-line);
  border-radius: var(--dp-radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--dp-shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.dp-highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--dp-shadow-lg);
  border-color: #a7f3d0;
}
.dp-hl-img-wrap {
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  margin: -6px -6px 14px -6px;
  position: relative;
}
.dp-hl-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.dp-highlight-card:hover .dp-hl-img {
  transform: scale(1.04);
}
.dp-hl-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--dp-brand-lt);
  color: var(--dp-brand-dk);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
  width: fit-content;
}
.dp-hl-title {
  font-family: var(--font-display, 'Outfit', system-ui);
  font-size: 17px;
  font-weight: 800;
  color: var(--dp-ink);
  margin: 0 0 6px 0;
  line-height: 1.25;
}
.dp-hl-desc {
  font-size: 13.5px;
  color: var(--dp-ink-3);
  line-height: 1.55;
  margin: 0;
}

/* Top Experiences Rail & Cards */
.dp-exp-card {
  width: 300px;
  background: var(--dp-white);
  border: 1.5px solid var(--dp-line);
  border-radius: var(--dp-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--dp-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.dp-exp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--dp-shadow-lg);
  border-color: #93c5fd;
}
.dp-exp-img-wrap {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.dp-exp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dp-exp-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 4px 10px;
  border-radius: 99px;
}
.dp-exp-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dp-ink);
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}
.dp-exp-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dp-exp-title {
  font-family: var(--font-display, 'Outfit', system-ui);
  font-size: 16px;
  font-weight: 800;
  color: var(--dp-ink);
  margin: 0 0 6px 0;
  line-height: 1.3;
}
.dp-exp-desc {
  font-size: 13px;
  color: var(--dp-ink-3);
  line-height: 1.5;
  margin: 0;
}

/* Insider Tips Grid */
.dp-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.dp-tip-card {
  background: var(--dp-white);
  border: 1.5px solid var(--dp-line);
  border-radius: var(--dp-radius);
  padding: 20px;
  box-shadow: var(--dp-shadow);
  display: flex;
  flex-direction: column;
  transition: border-color .15s ease;
}
.dp-tip-card:hover {
  border-color: #fde68a;
}
.dp-tip-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.dp-tip-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fef3c7;
  color: #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.dp-tip-cat {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #b45309;
}
.dp-tip-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--dp-ink);
  margin: 0 0 8px 0;
}
.dp-tip-body {
  font-size: 13px;
  color: var(--dp-ink-2);
  line-height: 1.6;
  margin: 0;
}

/* Curated Stays Rail */
.dp-stay-card {
  width: 300px;
  background: var(--dp-white);
  border: 1.5px solid var(--dp-line);
  border-radius: var(--dp-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--dp-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.dp-stay-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--dp-shadow-lg);
  border-color: #cbd5e1;
}
.dp-stay-img-wrap {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.dp-stay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dp-stay-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 4px 10px;
  border-radius: 99px;
}
.dp-stay-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dp-brand-dk);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.dp-stay-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dp-stay-title {
  font-family: var(--font-display, 'Outfit', system-ui);
  font-size: 16px;
  font-weight: 800;
  color: var(--dp-ink);
  margin: 0 0 6px 0;
  line-height: 1.3;
}
.dp-stay-desc {
  font-size: 13px;
  color: var(--dp-ink-3);
  line-height: 1.5;
  margin: 0;
}

/* Phone-First Mobile Sticky Bottom Bar */
.dp-mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid #e2e8f0;
  padding: 10px 16px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .dp-mobile-sticky-bar {
    display: flex !important;
  }
}
.dp-msb-left {
  display: flex;
  flex-direction: column;
}
.dp-msb-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--dp-ink-3);
}
.dp-msb-price {
  font-size: 16px;
  font-weight: 900;
  color: var(--dp-ink);
  line-height: 1.2;
}
.dp-msb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #1f7a4d, #2d9155);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(31, 122, 77, 0.3);
  white-space: nowrap;
}
.dp-msb-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  color: var(--dp-ink);
  border: 1.5px solid var(--dp-line);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 16px;
  border-radius: 99px;
  cursor: pointer;
  white-space: nowrap;
}

/* ── Hero Plan My Trip Button ────────────────────────────────── */
.dp-hero-plan-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.4);
  text-decoration: none;
  backdrop-filter: blur(10px);
}
.dp-hero-plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.55);
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* ── Floating Enquiry Action Pill ────────────────────────────── */
.dp-floating-pill {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  animation: dpFloatingEntrance 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes dpFloatingEntrance {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.dp-floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0f172a;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 99px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35), 0 2px 8px rgba(15, 23, 42, 0.2);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.dp-floating-btn:hover {
  background: #059669;
  border-color: #34d399;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 34px rgba(5, 150, 105, 0.4), 0 4px 12px rgba(15, 23, 42, 0.25);
}
.dp-pill-icon {
  font-size: 15px;
  line-height: 1;
}
.dp-pill-text {
  letter-spacing: -0.01em;
}
.dp-pill-badge {
  background: rgba(16, 185, 129, 0.25);
  color: #6ee7b7;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 8px;
  border-radius: 99px;
  border: 1px solid rgba(52, 211, 153, 0.3);
}
.dp-floating-btn:hover .dp-pill-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .dp-floating-pill {
    bottom: 84px; /* Clears phone-first mobile sticky bottom bar */
    right: 14px;
  }
  .dp-floating-btn {
    padding: 10px 16px;
    font-size: 12.5px;
  }
}

