/* TAC Destinations */
/* ===== HEADER FIX ===== */
body:not(.home-page) #site-header {
  background: rgba(13,13,13,.97) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,.4) !important;
}

/* ===== DEST HERO ===== */
.dest-hero {
  min-height: 480px; position: relative;
  display: flex; align-items: flex-end; padding-bottom: 0; overflow: hidden;
}
.dest-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=70');
  background-size: cover; background-position: center; opacity: .2;
}
.dest-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,.97) 0%, rgba(13,13,13,.7) 60%, rgba(180,10,10,.1) 100%);
}
.dest-hero-content {
  position: relative; z-index: 2;
  padding-top: 180px; padding-bottom: 64px; max-width: 760px;
}
.dest-hero-content .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.dest-hero-content .breadcrumb a { color: #666; font-size: .8rem; transition: color .3s; }
.dest-hero-content .breadcrumb a:hover { color: var(--red); }
.dest-hero-content .breadcrumb i { color: #444; font-size: .65rem; }
.dest-hero-content .breadcrumb span { color: #888; font-size: .8rem; }
.dest-hero-content h1 { color: #fff; margin-bottom: 18px; font-size: clamp(2rem,4.5vw,3.2rem); }
.dest-hero-content h1 span { color: var(--red); }
.dest-hero-content p { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 560px; margin-bottom: 36px; }
.dest-hero-stats {
  display: flex; gap: 0;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; overflow: hidden; max-width: 480px;
}
.dest-hero-stat {
  flex: 1; padding: 16px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.5);
  font-size: .72rem; letter-spacing: 1px; text-transform: uppercase;
}
.dest-hero-stat:last-child { border-right: none; }
.dest-hero-stat span { display: block; font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }

/* ===== REGION FILTER ===== */
.region-filter-bar {
  background: #fff; border-bottom: 1px solid #ebebeb;
  position: sticky; top: 80px; z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.region-tabs { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.region-tabs::-webkit-scrollbar { display: none; }
.region-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 15px 20px; background: none; border: none;
  border-bottom: 3px solid transparent;
  color: #666; font-size: .83rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: all .25s;
  font-family: var(--font);
}
.region-btn i { font-size: .8rem; }
.region-btn:hover { color: var(--red); background: rgba(221,25,26,.04); }
.region-btn.active { color: var(--red); border-bottom-color: var(--red); }

/* ===== DESTINATIONS GRID ===== */
.dest-main { padding-top: 56px; }
.dest-region { margin-bottom: 72px; }
.dest-region:last-child { margin-bottom: 0; }
.dest-region.hidden { display: none; }

.region-header {
  display: flex; gap: 18px; align-items: flex-start;
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid #ebebeb;
}
.region-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(221,25,26,.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1rem; margin-top: 4px;
}
.region-header h2 { font-size: 1.25rem; margin-bottom: 6px; color: var(--black); }
.region-header p { font-size: .88rem; color: #666; margin: 0; }

.dest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.dest-card {
  background: #fff; border: 1px solid #ebebeb; border-radius: 12px;
  overflow: hidden; text-decoration: none; display: block;
  transition: all .3s;
}
.dest-card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(0,0,0,.1); border-color: transparent; }
.dest-img { height: 180px; overflow: hidden; position: relative; }
.dest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dest-card:hover .dest-img img { transform: scale(1.06); }
.dest-card-body { padding: 20px; }
.dest-flag { font-size: 1.8rem; margin-bottom: 8px; line-height: 1; }
.dest-card-body h3 { font-size: .95rem; color: var(--black); margin-bottom: 8px; line-height: 1.3; }
.dest-meta { display: flex; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.dest-meta span { font-size: .75rem; color: #888; display: flex; align-items: center; gap: 5px; }
.dest-meta i { color: var(--red); font-size: .7rem; }
.dest-card-body p { font-size: .83rem; color: #666; margin-bottom: 14px; line-height: 1.6; }
.dest-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-size: .8rem; font-weight: 600;
  transition: gap .25s;
}
.dest-card:hover .dest-link { gap: 10px; }

/* ===== WHY GRID ===== */
.dest-why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 16px;
}
.dest-why-card {
  background: #fff; border: 1px solid #ebebeb; border-radius: 12px;
  padding: 28px 24px; text-align: center; transition: all .3s;
}
.dest-why-card:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.dest-why-icon {
  width: 52px; height: 52px; background: rgba(221,25,26,.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--red); margin: 0 auto 16px;
  transition: all .3s;
}
.dest-why-card:hover .dest-why-icon { background: var(--red); color: #fff; }
.dest-why-card h4 { font-size: .92rem; margin-bottom: 10px; }
.dest-why-card p { font-size: .83rem; color: #666; margin: 0; line-height: 1.65; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .dest-hero-content { padding-top: 160px; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-why-grid { grid-template-columns: 1fr 1fr; }
  .dest-hero-stats { max-width: 100%; }
  .region-header { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
  .dest-why-grid { grid-template-columns: 1fr; }
}
