/* =====================================================
   DESTINATION PAGES — destination.css
   ===================================================== */

/* ── Hero (Two-Column) ── */
.dest-hero-new {
  background: var(--charcoal);
  padding: 52px 0 48px;
  position: relative;
  overflow: hidden;
}

.dest-hero-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(224,92,0,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.dest-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
}

/* ── Left: text ── */
.dest-hero-left {
  display: flex;
  flex-direction: column;
}

.dest-hero-badge {
  display: inline-block;
  background: var(--saffron);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.dest-hero-title {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}

.dest-hero-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  line-height: 1.65;
}

.dest-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.dest-hero-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.dest-hero-breadcrumb a:hover { color: var(--saffron-lt); }

/* Quick info cards inside hero */
.dest-hero-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dest-hero-info-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dest-hero-info-icon {
  color: var(--saffron);
  flex-shrink: 0;
}

.dest-hero-info-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.dest-hero-info-val {
  font-size: 0.82rem;
  color: #fff;
  font-weight: 600;
}

/* ── Right: image gallery ── */
.dest-hero-right {
  position: relative;
}

.dest-images-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  border-radius: 14px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.dest-img-main {
  overflow: hidden;
  height: 100%;
}

.dest-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.dest-img-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

.dest-img-side-item {
  flex: 1;
  overflow: hidden;
  min-height: 0;
  position: relative;
}

.dest-img-side-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.dest-images-grid:hover .dest-img-main img,
.dest-images-grid:hover .dest-img-side-item img { transform: scale(1.04); }

/* ── Tabs ── */
.dest-tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  background: #fff;
  position: sticky;
  top: 68px;
  z-index: 10;
  padding-left: max(20px, calc((100vw - 1240px) / 2));
}
.dest-tabs-nav::-webkit-scrollbar { display: none; }

.dest-tab-btn {
  flex-shrink: 0;
  padding: 16px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #777;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
  font-family: inherit;
}
.dest-tab-btn:hover { color: var(--saffron); }
.dest-tab-btn.active {
  color: var(--saffron);
  border-bottom-color: var(--saffron);
}

.dest-tab-panel { display: none; background: #fff; }
.dest-tab-panel.active { display: block; }

/* ── Main Layout: Tab content + Persistent Sidebar ── */
.dest-layout-wrap {
  background: #fff;
}

.dest-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  padding-top: 4px;
}

.dest-tab-content { min-width: 0; }

.dest-persistent-sidebar {
  position: sticky;
  top: 120px;
  padding-top: 32px;
  padding-bottom: 32px;
}

/* ── About Tab ── */
.dest-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.dest-about-text p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 14px;
}

.dest-highlights {
  margin-top: 24px;
}
.dest-highlights h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.dest-highlight-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.dest-highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: #444;
}
.dest-highlight-list li svg { color: var(--saffron); flex-shrink: 0; margin-top: 2px; }

/* Sidebar info card */
.dest-info-card {
  background: #fff9f4;
  border: 1px solid var(--border);
  border-top: 3px solid var(--saffron);
  border-radius: 10px;
  padding: 24px;
}
.dest-info-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.dest-info-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dest-info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
}
.dest-info-row:last-child { border-bottom: none; }
.dest-info-row span:first-child { color: #888; font-weight: 500; }
.dest-info-row span:last-child { color: var(--charcoal); font-weight: 600; text-align: right; }

.dest-cta-card {
  background: var(--charcoal);
  border-radius: 10px;
  padding: 22px 20px;
  margin-top: 16px;
}
.dest-cta-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
  line-height: 1.6;
}
.dest-cta-btns { display: flex; flex-direction: column; gap: 8px; }
.dest-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--saffron);
  color: #fff;
  padding: 11px 16px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}
.dest-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 11px 16px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}
.dest-cta-pkg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 11px 16px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

/* ── Hotels Tab ── */
.dest-hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dest-hotel-card {
  background: #fff9f4;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: box-shadow 0.2s;
}
.dest-hotel-card:hover { box-shadow: 0 6px 24px rgba(224,92,0,0.08); }
.dest-hotel-tier {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.dest-hotel-tier.standard { background: #e8f5e9; color: #2a7a42; }
.dest-hotel-tier.deluxe { background: #fff3e0; color: #e65100; }
.dest-hotel-tier.luxury { background: #fce4ec; color: #880e4f; }

.dest-hotel-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.dest-hotel-loc {
  font-size: 0.78rem;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dest-hotel-card p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ── Reach Tab ── */
.dest-reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dest-reach-card {
  background: #fff9f4;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
}
.dest-reach-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff4ed;
  border: 1px solid #ffd4b8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  margin-bottom: 14px;
}
.dest-reach-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.dest-reach-card p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ── Season Strip ── */
.dest-season-strip {
  background: #fff4ed;
  border: 1px solid #ffd4b8;
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 28px;
}
.dest-season-strip h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.dest-season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.dest-season-item { text-align: center; }
.dest-season-item strong {
  display: block;
  font-size: 0.84rem;
  color: var(--saffron);
  font-weight: 700;
  margin-bottom: 3px;
}
.dest-season-item span {
  font-size: 0.75rem;
  color: #666;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .dest-hero-inner { gap: 36px; }
  .dest-images-grid { height: 320px; }
}
@media (max-width: 900px) {
  .dest-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .dest-hero-new { padding: 40px 0 36px; }
  .dest-images-grid { height: 280px; }
  .dest-about-grid { grid-template-columns: 1fr; }
  .dest-hotels-grid { grid-template-columns: 1fr 1fr; }
  .dest-tabs-nav { padding-left: 16px; }
  .dest-layout-grid { grid-template-columns: 1fr; }
  .dest-persistent-sidebar { position: static; padding-top: 0; display: flex; gap: 16px; flex-wrap: wrap; }
  .dest-persistent-sidebar .dest-info-card { flex: 1; min-width: 260px; }
  .dest-persistent-sidebar .dest-cta-card { flex: 1; min-width: 260px; }
}
@media (max-width: 640px) {
  .dest-hero-new { padding: 32px 0 28px; }
  .dest-hero-info-grid { grid-template-columns: 1fr 1fr; }
  .dest-tab-btn { padding: 12px 14px; font-size: 0.78rem; }
  .dest-hotels-grid { grid-template-columns: 1fr; }
  .dest-reach-grid { grid-template-columns: 1fr; }
  .dest-highlight-list { grid-template-columns: 1fr; }
  .dest-season-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-images-grid { grid-template-columns: 1fr; height: auto; }
  .dest-img-main { height: 220px; }
  .dest-img-side { display: none; }
}

/* ── Mobile Sticky Bar (same as detail pages) ── */
.detail-mobile-bar { display: none; }
@media (max-width: 900px) {
  .detail-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 900;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(26,14,6,0.12);
  }
  .detail-bar-call, .detail-bar-wa, .detail-bar-enquire {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; font-family: 'Poppins', sans-serif; font-size: 0.82rem;
    font-weight: 700; padding: 14px 0; text-decoration: none;
    cursor: pointer; border: none; transition: background 0.18s; flex: 1;
  }
  .detail-bar-call { background: #f5f0ea; color: var(--charcoal); border-right: 1px solid var(--border); }
  .detail-bar-wa { background: #25D366; color: #fff; border-right: 1px solid rgba(255,255,255,0.2); }
  .detail-bar-enquire { flex: 1.4; background: var(--saffron); color: #fff; }
}
/* Bottom sheet styles for destination pages */
.detail-sheet-backdrop { position: fixed; inset: 0; background: rgba(26,14,6,0.5); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.detail-sheet-backdrop.open { opacity: 1; visibility: visible; }
.detail-sheet { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1001; background: #fff; border-radius: 20px 20px 0 0; max-height: 90vh; overflow-y: auto; transform: translateY(100%); transition: transform 0.35s cubic-bezier(0.32,0.72,0,1); }
.detail-sheet.open { transform: translateY(0); }
.detail-sheet-handle { width: 40px; height: 4px; background: #ddd; border-radius: 2px; margin: 12px auto 4px; }
.detail-sheet-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px 14px; border-bottom: 1px solid var(--border); }
.detail-sheet-title { font-size: 0.95rem; font-weight: 700; color: var(--charcoal); }
.detail-sheet-close { width: 30px; height: 30px; border-radius: 50%; background: #f0ebe4; border: none; cursor: pointer; font-size: 1.1rem; color: var(--charcoal); }
.detail-sheet-body { padding: 0 20px 24px; }
.detail-sheet-body .detail-form { display: flex; flex-direction: column; gap: 10px; padding: 14px 0; }
.detail-sheet-body .detail-form input, .detail-sheet-body .detail-form select { width: 100%; padding: 10px 12px; border: none; border-bottom: 1.5px solid var(--border); font-family: 'Poppins',sans-serif; font-size: 0.84rem; color: var(--charcoal); background: #fff; outline: none; }
.detail-sheet-body .detail-submit { background: var(--saffron); color: #fff; border: none; padding: 13px; border-radius: 6px; font-family: 'Poppins',sans-serif; font-size: 0.9rem; font-weight: 700; cursor: pointer; width: 100%; margin-top: 4px; }
.detail-contact-btns { display: grid; grid-template-columns: 1fr 1fr; margin-top: 10px; }
.detail-call-btn, .detail-wa-btn { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 13px; font-size: 0.84rem; font-weight: 700; text-decoration: none; }
.detail-call-btn { background: #f5f0ea; color: var(--charcoal); }
.detail-wa-btn { background: #25D366; color: #fff; }
