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

a {
  text-decoration: none;
  color: inherit;
}

/* Layout */
.header {
  margin: 0 auto;
  padding: 0 5% 40px;
}

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

/* Hero Province */
.hero-province {
  padding: 0 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;
}

.badge-icon {
  font-size: 24px;
}

.hero-province h1 {
  font-size: 52px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-subtitle-location { 
  font-size: 24px !important; 
  color: #404040;
  font-weight: 300;
  margin-bottom: 16px !important;
}

.hero-desc {
  font-size: 20px;
  color: #404040;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Job Stats */
.job-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 24px;
  background: #eff6ff;
  border-radius: 12px;
  border: 1px solid #bfdbfe;
}

.job-stats .stat {
  text-align: center;
}

.job-stats .stat:not(:first-child) {
  border-left: 1px solid #bfdbfe;
}

.job-stats .stat-number {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 4px;
}

.job-stats .stat-label {
  font-size: 14px;
  color: #404040;
}

/* Hero Image Section */
.hero-image-section {
  padding-bottom: 48px;
}

.hero-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  color: #fff;
}

.hero-image-content h2 {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 8px;
}

.hero-image-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* Info Section */
.info-section {
  padding: 40px 5% 40px;
  background: #f9fafb;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

.info-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 16px;
}

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

.tag {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
}

.tag-blue {
  background: #eff6ff;
  color: #1d4ed8;
}

.tag-gray {
  background: #f3f4f6;
  color: #374151;
}

/* Employers Section */
.employers-section {
  padding: 16px 5% 40px;
}

.employers-section h2,
.attractions-section h2,
.jobs-section h2 {
  font-size: 24px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 8px;
}

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

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

.employer-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: all 0.2s;
}

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

.employer-icon {
  font-size: 32px;
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.employer-logo{
  max-height: 60px;
  object-fit: contain;
}

.employer-card h4 {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

/* Attractions Section */
.attractions-section {
  padding: 40px 5% 40px;
  background: #f9fafb;
}

.attractions-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.attraction-tag {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.2s;
  /* cursor: pointer; */
}


/* Employer Banner */
.employer-banner {
  padding: 32px 0;
  background: #2563eb;
  text-align: center;
  transition: background 0.2s;
}

.employer-banner:hover {
  background: #1d4ed8;
}

.employer-banner p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

/* Jobs Section */
.jobs-section {
  padding: 40px 5% 40px;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.2s;
}

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

.job-content {
  flex: 1;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.job-category {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
}

.category-hotel {
  background: #dbeafe;
  color: #1d4ed8;
}

.category-service {
  background: #f3e8ff;
  color: #7c3aed;
}

.job-date {
  font-size: 12px;
  color: #6b7280;
}

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

.job-card:hover h3 {
  color: #2563eb;
}

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

.job-details {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #6b7280;
}

.job-arrow {
  font-size: 20px;
  color: #6b7280;
  transition: all 0.2s;
}

.job-card:hover .job-arrow {
  color: #2563eb;
}

.jobs-cta {
  margin-top: 48px;
  text-align: center;
}

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

.btn-outline-primary {
  border: 1px solid #e5e7eb;
  color: #1a1a1a;
  background: #fff;
}

.btn-outline-primary:hover {
  border-color: #2563eb;
  color: #2563eb;
}

/* Back Section */
.back-section {
  padding: 40px 5% 40px;
  border-top: 1px solid #e5e7eb;
}

.back-link {
  color: #2563eb;
  font-size: 14px;
  transition: text-decoration 0.2s;
}

.back-link:hover {
  text-decoration: underline;
}

.find-more{
  padding: 0px 5%;
}
/* Mobile Responsive - Breakpoint <= 1200px */
@media (max-width: 1200px) {
  .hero-province h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-desc {
    font-size: 16px;
  }

  .hero-image-card {
    border-radius: 0px;
  }
  .job-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .job-stats .stat:nth-child(3) {
    border-left: none;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .employers-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .employer-banner p {
    font-size: 16px;
  }
}