/* dest-detail */

/* ===== 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 DETAIL HERO ===== */
.dest-detail-hero {
  min-height: 500px; position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
}
.dest-detail-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .25; transition: transform 8s ease;
}
.dest-detail-hero:hover .dest-detail-hero-bg { transform: scale(1.03); }
.dest-detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,.97) 0%, rgba(13,13,13,.75) 55%, rgba(13,13,13,.4) 100%);
}
.dest-detail-hero-content {
  position: relative; z-index: 2;
  padding-top: 180px; padding-bottom: 60px; max-width: 760px;
}
.dest-detail-hero-content .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.dest-detail-hero-content .breadcrumb a { color: #666; font-size: .8rem; transition: color .3s; }
.dest-detail-hero-content .breadcrumb a:hover { color: var(--red); }
.dest-detail-hero-content .breadcrumb i { color: #444; font-size: .65rem; }
.dest-detail-hero-content .breadcrumb span { color: #888; font-size: .8rem; }
.dest-country-flag { font-size: 3rem; margin-bottom: 12px; line-height: 1; }
.dest-detail-hero-content h1 {
  color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2; margin-bottom: 16px;
}
.dest-detail-hero-content p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 560px; margin-bottom: 32px; }
.dest-quick-stats {
  display: flex; gap: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; overflow: hidden; max-width: 560px;
}
.dqs-item {
  flex: 1; padding: 16px 18px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.dqs-item:last-child { border-right: none; }
.dqs-item i { color: var(--red); font-size: .9rem; }
.dqs-item span { color: #fff; font-size: .88rem; font-weight: 700; line-height: 1.2; }
.dqs-item small { color: rgba(255,255,255,.4); font-size: .65rem; letter-spacing: 1px; text-transform: uppercase; }

/* ===== LAYOUT ===== */
.dest-detail-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 48px; align-items: flex-start;
  padding: 60px 0 80px;
}
.dest-detail-main { min-width: 0; }
.dest-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid #f0f0f0; }
.dest-section:last-child { border-bottom: none; margin-bottom: 0; }
.dest-section h2 { font-size: 1.4rem; margin-bottom: 16px; color: var(--black); }
.dest-section h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--black); }
.dest-section p { color: #555; font-size: .95rem; line-height: 1.8; margin-bottom: 14px; }
.dest-section ul { list-style: none; padding: 0; margin-bottom: 16px; }
.dest-section ul li {
  display: flex; gap: 10px; align-items: flex-start;
  color: #555; font-size: .9rem; line-height: 1.7; margin-bottom: 8px;
}
.dest-section ul li::before {
  content: ''; width: 6px; height: 6px; min-width: 6px;
  background: var(--red); border-radius: 50%; margin-top: 8px;
}

/* Services grid */
.dest-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dest-service-item {
  border: 1px solid #ebebeb; border-radius: 10px; padding: 20px;
  display: flex; gap: 14px; align-items: flex-start; transition: all .3s;
}
.dest-service-item:hover { border-color: rgba(221,25,26,.3); box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.dest-service-item .svc-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(221,25,26,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1rem;
}
.dest-service-item h4 { font-size: .88rem; margin-bottom: 4px; }
.dest-service-item p { font-size: .8rem; color: #666; margin: 0; line-height: 1.55; }

/* Routes table */
.routes-table { border: 1px solid #ebebeb; border-radius: 10px; overflow: hidden; }
.route-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 13px 20px; border-bottom: 1px solid #f0f0f0;
  font-size: .85rem; color: #555;
}
.route-row:last-child { border-bottom: none; }
.route-row.header {
  background: #f8f8f8; font-weight: 700; font-size: .78rem;
  color: #888; text-transform: uppercase; letter-spacing: 1px;
}

/* Cargo types */
.cargo-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cargo-type-item {
  display: flex; gap: 10px; align-items: center;
  background: var(--gray-50); border-radius: 8px; padding: 12px 14px;
}
.cargo-type-item .ct-icon {
  width: 32px; height: 32px; min-width: 32px;
  background: rgba(221,25,26,.1); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: .85rem;
}
.cargo-type-item span { font-size: .82rem; font-weight: 600; color: #444; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid #ebebeb; border-radius: 8px; padding: 20px; }
.faq-item h4 {
  font-size: .92rem; margin-bottom: 8px;
  display: flex; gap: 8px; align-items: flex-start; color: var(--black);
}
.faq-item h4 i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.faq-item p { font-size: .85rem; color: #666; margin: 0; line-height: 1.7; }

/* ===== SIDEBAR ===== */
.dest-detail-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.dest-sidebar-widget {
  background: #fff; border: 1px solid #ebebeb;
  border-radius: 12px; padding: 24px;
}
.dest-cta-widget { background: var(--black); border-color: var(--black); }
.dest-cta-widget h3 { color: #fff; font-size: 1.05rem; margin-bottom: 8px; }
.dest-cta-widget p { color: #888; font-size: .85rem; margin-bottom: 16px; }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff; padding: 11px 20px;
  border-radius: 6px; font-weight: 600; font-size: .9rem;
  text-decoration: none; transition: background .3s; width: 100%;
}
.btn-whatsapp:hover { background: #1da851; color: #fff; }
.btn-whatsapp i { font-size: 1.1rem; }
.dest-contact-list { display: flex; flex-direction: column; gap: 14px; }
.dest-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.dest-contact-item i { color: var(--red); font-size: .9rem; margin-top: 2px; min-width: 16px; }
.dest-contact-item span, .dest-contact-item a { font-size: .85rem; color: #555; line-height: 1.6; }
.dest-contact-item a:hover { color: var(--red); }
.other-dest-list li { margin-bottom: 10px; }
.other-dest-list li a {
  display: flex; gap: 8px; align-items: center;
  color: #555; font-size: .85rem; transition: color .3s;
}
.other-dest-list li a i { color: var(--red); font-size: .75rem; }
.other-dest-list li a:hover { color: var(--red); padding-left: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .dest-detail-layout { grid-template-columns: 1fr; }
  .dest-detail-sidebar { position: static; }
}
@media (max-width: 768px) {
  .dest-detail-hero-content { padding-top: 160px; }
  .dest-services-grid { grid-template-columns: 1fr; }
  .cargo-types-grid { grid-template-columns: 1fr 1fr; }
  .route-row { grid-template-columns: 1fr 1fr; font-size: .78rem; }
  .route-row span:nth-child(3), .route-row span:nth-child(4) { display: none; }
  .dest-quick-stats { flex-wrap: wrap; }
  .dqs-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,.08); }
}
