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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  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;
  
}

/* Region Colors */
.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-central-bg { background: #3b82f6; }
.region-southern-bg { background: #06b6d4; }
.region-northern-bg { background: #f59e0b; }
.region-eastern-bg { background: #14b8a6; }
.region-western-bg { background: #f97316; }
.region-northeastern-bg { background: #22c55e; }

/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 24px;
}

.region-badge {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 40px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 18px;
  opacity: 0.8;
}

/* Stats Section */
.stats-section {
  padding: 40px 5% 60px;
  background: #f9fafb;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.remark-txt{
  font-size: 12px;
  font-style: italic;
}

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

.stat-item {
  text-align: center;
}

.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-number {
  font-size: 30px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
}

/* About Section */
.about-section {
  padding: 60px 5% 60px;
  background: #fff;
}

.about-grid {
  display: block;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.about-content h2 {
  font-size: 30px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 32px;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.highlight-tag {
  padding: 8px 16px;
  background: #3b82f6;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mini-card {
  display: block;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s;
}

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

.mini-card h4 {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.mini-card p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}

.mini-card span {
  font-size: 14px;
  color: #2563eb;
  font-weight: 500;
}

/* Featured Section */
.featured-section {
  background: #f9fafb;
  padding: 60px 5% 60px;
}

.featured-section h2,
.all-provinces h2 {
  font-size: 30px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 8px;
}

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

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

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

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

.featured-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0;
}

.featured-header h3 {
  font-size: 20px;
  font-weight: 500;
}

.featured-card > p {
  padding: 12px 24px 24px;
  font-size: 15px;
  font-weight: 300;
}

.featured-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: #fff;
  color: #1a1a1a;
}

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

.featured-footer .job-label {
  font-size: 14px;
  color: #6b7280;
}

.btn-view {
  padding: 8px 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-view:hover {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}

/* All Provinces */
.all-provinces {
  padding: 60px 5% 60px;
  background: #fff;
}

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

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

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

.province-card {
  display: block;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.2s;
}

.province-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.province-icon {
  margin-bottom: 12px;
  font-size: 20px;
}

.province-card h4 {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.province-card:hover h4 {
  color: #2563eb;
}

.province-card p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}

.province-card span {
  font-size: 14px;
  color: #2563eb;
  font-weight: 500;
}

/* CTA Section */
.cta {
  padding: 64px 0;
  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;
}

.btn-white {
  background: #fff;
  color: #1a1a1a;
}

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

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

.btn-outline:hover {
  background: #fff;
  color: #1a1a1a;
}

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