
.region-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.container-stat {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 50px;
}

.container-region {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  margin-top: 50px;
}


/* Section Shared Styles */
.section-header-region {
  margin-bottom: 2.5rem;
}

.section-tag-region {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-tag svg {
  width: 1.25rem;
  height: 1.25rem;
}

.section-title-region {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle-region {
  font-size: 1rem;
  color: #64748b;
}

/* =====================
   STATS SECTION
   ===================== */
.stats-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 600;
  color: #2563eb;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 400;
}

/* =====================
   DESTINATIONS SECTION
   ===================== */
.destinations-section {
  background: #ffffff;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.destination-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #ffffff;
}

.destination-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.destination-count {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* =====================
   REGIONS SECTION
   ===================== */

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.region-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.region-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.region-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  color: #ffffff;
}

.region-icon {
  flex-shrink: 0;
}

.region-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.region-info {
  flex: 1;
  min-width: 0;
}

.region-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.region-name-en {
  font-size: 0.75rem;
  opacity: 0.85;
}

.region-count {
  text-align: right;
}

.count-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.count-label {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* Region Header Colors */
.region-central {
  background: #f59e0b;
}

.region-south {
  background: #0891b2;
}

.region-north {
  background: #059669 ;
}

.region-east {
  background: #2563eb;
}

.region-west {
  background: #0d9488;
}

.region-northeast {
  background: #16a34a;
}

.region-desc {
  padding: 1rem 1.5rem 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.region-provinces {
  padding: 0.5rem 1.5rem;
  font-size: 15px;
  font-weight: 300;
  color: #303030;
  line-height: 3.8;
}

.region-link {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2563eb;
  transition: color 0.2s ease;
}

.region-link:hover {
  color: #1d4ed8;
}

/* =====================
   RESPONSIVE: MOBILE (<= 1200px)
   ===================== */
@media (max-width: 1200px) {


.container-stat {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 24px;  
}
  .section-title-region {
    font-size: 1.5rem;
  }
  
  /* Stats - 2 columns on mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.875rem;
  }
  
  /* Destinations - 2 columns on mobile */
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .destination-card {
    aspect-ratio: 4/5;
  }
  
  .destination-content {
    padding: 1rem;
  }
  
  .destination-name {
    font-size: 1rem;
  }
  
  .destination-count {
    font-size: 0.75rem;
  }
  
  /* Regions - 1 column on mobile */
  .regions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .region-header {
    padding: 1rem 1.25rem;
  }
  
  .region-name {
    font-size: 1.125rem;
  }
  
  .count-number {
    font-size: 1.25rem;
  }
  
  .region-desc,
  .region-provinces
   {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}