.page-hero {
  position: relative;
  min-height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #0b2434;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 36, 52, 0.75) 0%, rgba(11, 36, 52, 0.45) 100%);
}
.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.page-hero .eyebrow {
  color: #e6c878;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Playfair Display", "Open Sans", sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.page-hero p {
  max-width: 700px;
  color: #cbd5e1;
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 8px;
}
.page-hero p.meta {
  color: #e6c878;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.section-recruitment-page {
  padding: 70px 0 100px;
  background: #f8fafc;
}

.recruitment-intro {
  margin-bottom: 45px;
  background: #ffffff;
  padding: 35px 40px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.recruitment-header-bar {
  margin-bottom: 30px;
}
.recruitment-header-bar h2 {
  font-size: 22px;
  font-weight: 700;
  color: #142838;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.recruitment-header-bar p {
  font-size: 14.5px;
  color: #64748b;
}

.recruitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .recruitment-grid {
    grid-template-columns: 1fr;
  }
}

.job-card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.job-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16, 45, 63, 0.1);
  border-color: #b99a62;
}
.job-card-item:hover .btn-job-detail {
  color: #b99a62;
}

.job-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.job-card-header h3 {
  font-size: 19px;
  font-weight: 700;
  color: #142838;
  margin: 0;
  line-height: 1.4;
}

.job-badge-salary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef3c7;
  color: #92400e;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.job-badge-salary i {
  font-size: 13px;
}

.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #64748b;
}
.job-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.job-card-meta span i {
  color: #b99a62;
}

.job-card-short {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card-footer {
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}
.job-card-footer .btn-job-detail {
  font-size: 13px;
  font-weight: 700;
  color: #142838;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.no-jobs-notice {
  grid-column: 1/-1;
  background: #ffffff;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  color: #64748b;
  font-size: 15px;
}

/* --- Job Modal Popup --- */
.job-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 31, 44, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.job-modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}
.job-modal-backdrop.is-active .job-modal-dialog {
  transform: translateY(0) scale(1);
}

.job-modal-dialog {
  position: relative;
  background: #ffffff;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  overflow-y: auto;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.job-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s ease;
}
.job-modal-close:hover {
  opacity: 0.8;
}

.job-modal-header {
  background: #142838;
  color: #ffffff;
  padding: 40px 35px 30px;
  border-radius: 8px 8px 0 0;
}
.job-modal-header .job-modal-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #b99a62;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.job-modal-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}
.job-modal-header .job-modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.job-modal-header .job-modal-badges .job-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  color: #e2e8f0;
}
.job-modal-header .job-modal-badges .job-badge i {
  color: #b99a62;
}

.job-modal-body {
  padding: 35px;
}
.job-modal-body .job-body-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b99a62;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
}
.job-modal-body .job-modal-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 35px;
}

.job-apply-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 6px;
  padding: 24px;
}
.job-apply-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: #142838;
  margin-bottom: 6px;
}
.job-apply-box p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}
.job-apply-box .apply-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.job-apply-box .apply-contacts .apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.job-apply-box .apply-contacts .apply-btn.apply-email {
  background: #b99a62;
  color: #ffffff;
}
.job-apply-box .apply-contacts .apply-btn.apply-email:hover {
  background: #142838;
}
.job-apply-box .apply-contacts .apply-btn.apply-phone {
  background: #ffffff;
  color: #142838;
  border: 1px solid #cbd5e1;
}
.job-apply-box .apply-contacts .apply-btn.apply-phone:hover {
  background: #f1f5f9;
}

.cnc-contact-cta {
  padding: 130px 0;
  background: #c7a16a;
  color: #142838;
  text-align: left;
}
.cnc-contact-cta .cnc-kicker {
  color: #31404a;
}
.cnc-contact-cta h2 {
  max-width: 800px;
  margin-bottom: 36px;
  font-size: clamp(33px, 4.1vw, 52px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.cnc-contact-cta h2 i {
  color: #fff;
  font-weight: 400;
}
.cnc-contact-cta .cnc-button {
  background: #092131;
  color: #fff;
}
.cnc-contact-cta .cnc-button:hover {
  background: #fff;
  color: #092131;
}