/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
 
}
a {
  text-decoration: none;
  color: inherit;
}

.header{
  margin: 0 auto;
  padding-bottom: 40px;
  padding: 0 5%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.icon {
  width: 16px;
  height: 16px;
}

/* Hero Section */
.hero {
padding: 40px 5% 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 32px;
  max-width: 640px;
  font-weight: 400;
  line-height: 1.6;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: #6b7280;
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat .icon {
  color: #2563eb;
}

/* Featured Destinations */
.featured {
padding: 0 5% 60px;
}

.featured h2,
.regions h2,
.quick-stats h2 {
  font-size: 24px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-desc {
  color: #6b7280;
  margin-bottom: 32px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.featured-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: box-shadow 0.3s, transform 0.3s;
}

.featured-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

.featured-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2), transparent);
}

.featured-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  color: #fff;
}

.featured-info h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.featured-info p {
  font-size: 14px;
  opacity: 0.8;
}

/* Regions Grid */
.regions {
  background: rgba(249, 250, 251, 0.5);
  padding: 40px 5% 60px;
}

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

@media (max-width: 1024px) {
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .regions-grid {
    grid-template-columns: 1fr;
  }
}

.region-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: box-shadow 0.3s;
}

.region-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.region-header {
  display: block;
  padding: 24px;
  color: #fff;
  transition: opacity 0.2s;
  position: relative;
}

.region-header:hover {
  opacity: 0.9;
}

.region-central { background: #3b82f6; }
.region-southern { background: #06b6d4; }
.region-northern { background: #f59e0b; }
.region-eastern { background: #14b8a6; }
.region-western { background: #f97316; }
.region-northeastern { background: #22c55e; }

.region-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.region-icon {
  font-size: 32px;
}

.region-header h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.region-header p {
  font-size: 15px;
  /* opacity: 0.8; */
}

.region-jobs {
  text-align: right;
  position: absolute;
  top: 24px;
  right: 24px;
}

.job-count {
  display: block;
  font-size: 24px;
  font-weight: 300;
}

.job-label {
  font-size: 12px;
  opacity: 0.8;
}

.region-desc {
  font-size: 14px;
  opacity: 0.9;
}

.region-provinces {
  padding: 16px;
  background: #fff;
}

.province-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  transition: background 0.2s;
}

.province-link:hover {
  background: #f3f4f6;
}

.province-link span:first-child {
  font-weight: 500;
  color: #1a1a1a;
  font-size: 15px;
}

.province-link span:last-child {
  color: #6b7280;
  font-size: 14px;
}

.view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  font-size: 14px;
  color: #2563eb;
  font-weight: 500;
}

.view-all:hover {
  text-decoration: underline;
}

/* Quick Stats */
.quick-stats {
  background: #fff;
  padding: 0 5% 60px;
}

.quick-stats h2 {
  margin-bottom: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.find-more{
  padding: 0px 5%;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  background: #f9fafb;
  transition: background 0.2s;
}

.stat-card:hover {
  background: #f3f4f6;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}

.stat-central { background: #3b82f6; }
.stat-southern { background: #06b6d4; }
.stat-northern { background: #f59e0b; }
.stat-eastern { background: #14b8a6; }
.stat-western { background: #f97316; }
.stat-northeastern { background: #22c55e; }

.stat-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.stat-number {
  font-size: 24px;
  font-weight: 300;
  color: #2563eb;
}

.stat-card span {
  font-size: 14px;
  color: #303030;
}

/* CTA Section */
.cta {
  padding: 64px 0;
  background:#2563eb;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 24px;
}

.cta p {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-white {
  background: #fff;
  color: #2563eb;
}

.btn-white:hover {
  background: #f3f4f6;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #fff;
  color: #2563eb;
}

/* Responsive */
@media (max-width: 640px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-desc {
    font-size: 16px;
  }
  
  .cta h2 {
    font-size: 24px;
  }
  
  .cta p {
    font-size: 16px;
  }
}