/* ============================================
   RECRUITMENT PAGE - BANNER
   ============================================ */

.rcr-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.rcr-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.rcr-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(26, 140, 62, 0.82) 100%);
  z-index: 1;
}

.rcr-banner-title {
  font-size: 2.2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   WHY JOIN US - PERKS
   ============================================ */

.rcr-why-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fdf9 100%);
}

.rcr-perk-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.rcr-perk-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-green);
  transition: height 0.4s ease;
}

.rcr-perk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: transparent;
}

.rcr-perk-card:hover::after {
  height: 100%;
  opacity: 0.04;
}

.rcr-perk-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(26, 140, 62, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.rcr-perk-card:hover .rcr-perk-icon {
  transform: scale(1.15);
}

.rcr-perk-icon i {
  font-size: 1.8rem;
  color: var(--primary-green);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.rcr-benefits-section {
  background: linear-gradient(180deg, #f8fdf9 0%, #f0f4f8 100%);
}

.rcr-section-heading {
  color: var(--dark-blue);
  position: relative;
  padding-bottom: 12px;
}

.rcr-section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
}

.rcr-benefit-img-wrapper {
  height: 150px;
  overflow: hidden;
}

.rcr-img-tall {
  height: 312px;
}

.rcr-benefit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rcr-benefit-img-wrapper:hover .rcr-benefit-img {
  transform: scale(1.08);
}

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

.rcr-benefit-item {
  display: flex;
  align-items: flex-start;
  padding: 14px 18px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rcr-benefit-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.rcr-benefit-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  margin-right: 14px;
  margin-top: 6px;
}

/* ============================================
   JOB CARDS
   ============================================ */

.rcr-job-card {
  border: 2px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  background: #fff;
}

.rcr-job-card:hover {
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.rcr-job-header {
  padding: 24px 28px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.rcr-job-header:hover {
  background: #fafafa;
}

.rcr-job-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rcr-job-icon i {
  font-size: 1.5rem;
}

.rcr-job-title {
  color: var(--dark-blue);
  font-size: 1rem;
}

.rcr-hot-badge {
  font-size: 0.7rem;
}

.rcr-tag {
  display: inline-block;
  background: #f0f4f8;
  color: #555;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.rcr-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f4f8;
  transition: transform 0.3s ease;
}

.rcr-job-header[aria-expanded="true"] .rcr-toggle-icon {
  transform: rotate(180deg);
}

.rcr-job-body {
  padding: 0 28px 28px;
}

.rcr-job-section {
  margin-bottom: 20px;
}

.rcr-job-section-title {
  font-size: 0.9rem;
  color: var(--dark-blue);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f4f8;
}

.rcr-job-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rcr-job-list li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}

.rcr-job-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-green);
  opacity: 0.6;
}

.rcr-benefit-list-job li::before {
  background: #ffc107;
}

.rcr-job-info-box {
  background: linear-gradient(135deg, #f8fdf9, #f0f4f8);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid #e8f5e9;
}

.rcr-info-row {
  display: flex;
  align-items: flex-start;
  padding: 6px 0;
  font-size: 0.85rem;
  color: #555;
}

.rcr-info-row i {
  margin-top: 2px;
  flex-shrink: 0;
}

.rcr-apply-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rcr-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.rcr-process-section {
  background: linear-gradient(135deg, #0a2540 0%, #1a5c3e 100%);
  position: relative;
  overflow: hidden;
}

.rcr-process-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.rcr-process-section .section-title::after {
  background: #fff;
}

.rcr-step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.rcr-step-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}

.rcr-step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.rcr-step-card:hover .rcr-step-number {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: scale(1.1);
}

.rcr-step-number span {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

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

.rcr-contact-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: #f8fdf9;
  border-radius: 12px;
  border: 1px solid #e8f5e9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rcr-contact-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.rcr-contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.rcr-contact-icon i {
  font-size: 1.2rem;
}

.rcr-cta-box {
  background: linear-gradient(135deg, #0a2540 0%, #1a5c3e 100%);
  position: relative;
  overflow: hidden;
}

.rcr-cta-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.rcr-cta-icon {
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
  display: block;
}

.rcr-cta-box .btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rcr-cta-box .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991.98px) {
  .rcr-img-tall {
    height: 250px;
  }
}

@media (max-width: 991.98px) {
  .rcr-benefit-img-wrapper {
    height: 130px;
  }
}

@media (max-width: 991.98px) {
  .rcr-job-header {
    padding: 18px 20px;
  }
}

@media (max-width: 991.98px) {
  .rcr-job-body {
    padding: 0 20px 20px;
  }
}

@media (max-width: 767.98px) {
  .rcr-banner {
    min-height: 240px;
  }
}

@media (max-width: 767.98px) {
  .rcr-banner-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 767.98px) {
  .rcr-img-tall {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .rcr-benefit-img-wrapper {
    height: 110px;
  }
}

@media (max-width: 767.98px) {
  .rcr-job-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .rcr-apply-btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 767.98px) {
  .rcr-perk-icon {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 767.98px) {
  .rcr-perk-icon i {
    font-size: 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .rcr-banner-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 575.98px) {
  .rcr-job-header {
    padding: 14px 16px;
  }
}

@media (max-width: 575.98px) {
  .rcr-job-body {
    padding: 0 16px 16px;
  }
}

@media (max-width: 575.98px) {
  .rcr-tag {
    font-size: 0.68rem;
    padding: 3px 8px;
  }
}

