/* ===== Destination Detail Page - Voyaseek Style ===== */

/* Hero Section */
.dest-detail-hero {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 0 0 60px 0;
}

.dest-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.dest-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  color: #fff;
}

.breadcrumb-light {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 400;
}

.breadcrumb-light a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-light a:hover {
  color: #fff;
}

.breadcrumb-light span {
  color: rgba(255,255,255,0.6);
  margin: 0 8px;
}

.dest-detail-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.dest-detail-hero-content h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Overview Section */
.dest-detail-overview {
  padding: 60px 0 40px;
}

.dest-detail-overview .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.dest-detail-intro {
  margin-bottom: 48px;
}

.dest-detail-intro p {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.dest-detail-intro a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.dest-detail-intro a:hover {
  border-bottom-color: var(--primary);
}

.dest-detail-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding: 32px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}

/* Tours Section */
.dest-detail-tours {
  padding: 60px 0 80px;
}

.dest-detail-tours .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

/* Tour Cards - Vertical List */
.tour-list-vertical {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.tour-card-horizontal {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.tour-card-image {
  flex-shrink: 0;
  width: 380px;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-card-horizontal:hover .tour-card-image img {
  transform: scale(1.05);
}

.tour-card-body {
  flex: 1;
  padding: 8px 0;
}

.tour-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.tour-card-body h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.tour-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.tour-card-body h3 a:hover {
  color: var(--primary);
}

.tour-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.tour-highlights {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.tour-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.price-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.price-unit {
  font-size: 14px;
  color: var(--text-secondary);
}

.tour-action {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.btn-book-now {

  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-book-now:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-book-now:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Contact Section */
.dest-detail-contact {
  padding: 80px 0;
  background: var(--bg-light);
  text-align: center;
}

.dest-detail-contact .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.dest-detail-contact h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.dest-detail-contact h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.btn-start-planning {
  display: inline-block;
  padding: 14px 36px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 48px;
}

.btn-start-planning:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Expert Cards */
.expert-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.expert-card {
  text-align: center;
  width: 160px;
}

.expert-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.expert-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.expert-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
  .dest-detail-hero {
    height: 320px;
    padding-bottom: 40px;
  }

  .dest-detail-hero-content h1 {
    font-size: 36px;
  }

  .dest-detail-hero-content h2 {
    font-size: 16px;
  }

  .dest-detail-stats {
    gap: 24px;
    justify-content: center;
  }

  .stat-number {
    font-size: 24px;
  }

  .tour-card-horizontal {
    flex-direction: column;
    gap: 16px;
  }

  .tour-card-image {
    width: 100%;
    height: 200px;
  }

  .section-title {
    font-size: 26px;
  }

  .dest-detail-contact h2 {
    font-size: 28px;
  }

  .expert-cards {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .dest-detail-hero {
    height: 260px;
    padding-bottom: 30px;
  }

  .dest-detail-hero-content h1 {
    font-size: 28px;
  }

  .dest-detail-stats {
    gap: 16px;
  }

  .stat-item {
    min-width: 80px;
  }

  .tour-list-vertical {
    gap: 32px;
  }

  .tour-card-body h3 {
    font-size: 18px;
  }

  .price-amount {
    font-size: 20px;
  }
}
