/* Recruit Page Specific Styles */

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--text-sub);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb-separator {
  color: var(--text-sub);
  opacity: 0.5;
}

/* Recruit Hero */
.recruit-hero {
  background: linear-gradient(135deg, rgba(16,185,129,0.75), rgba(59,130,246,0.65)),
              url('../../assets/images/hiring.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 60px;
  position: relative;
}

.recruit-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.15) 0%, transparent 40%);
  pointer-events: none;
}

.recruit-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.recruit-hero .hero-lead {
  font-size: 1.1rem;
  color: #ffffff;
  max-width: 600px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
}

.recruit-hero .breadcrumb a,
.recruit-hero .breadcrumb-separator,
.recruit-hero .breadcrumb span {
  color: rgba(255,255,255,0.9);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

/* Introduction Section */
.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  text-align: left;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-header .section-subtitle {
  font-size: 1rem;
  color: var(--text-sub);
}

/* Culture Grid */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.culture-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.3);
}

.culture-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}

.culture-icon svg {
  width: 28px;
  height: 28px;
}

.culture-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.culture-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-sub);
  margin: 0;
}

/* Job List */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.job-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.job-card:hover {
  box-shadow: 0 12px 40px rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.3);
}

.job-header {
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(59,130,246,0.1));
  padding: 28px 32px;
  border-bottom: 1px solid var(--border-soft);
}

.job-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #10b981;
  margin-bottom: 8px;
  font-weight: 600;
}

.job-title {
  font-size: 1.5rem;
  margin: 0 0 16px 0;
  color: var(--text-main);
}

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

.job-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 500;
}

.job-body {
  padding: 32px;
}

.job-section {
  margin-bottom: 28px;
}

.job-section:last-child {
  margin-bottom: 0;
}

.job-section h4 {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(16,185,129,0.3);
  display: inline-block;
}

.job-section > p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-sub);
  margin-bottom: 16px;
}

.job-duties,
.job-requirements,
.job-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px;
}

.job-duties li,
.job-requirements li,
.job-benefits li {
  font-size: 0.9rem;
  color: var(--text-sub);
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.6;
}

.job-duties li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.job-requirements li::before {
  content: "○";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-size: 0.8rem;
}

.job-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* Process Timeline */
.process-timeline {
  max-width: 900px;
  margin: 40px auto 0;
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 80px;
  width: 2px;
  height: calc(100% - 40px);
  background: linear-gradient(180deg, #10b981, var(--border-soft));
}

.step-marker {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(16,185,129,0.4);
}

.step-content {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px 28px;
  transition: all 0.3s ease;
}

.step-content:hover {
  background: rgba(255,255,255,1);
  box-shadow: 0 8px 24px rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.3);
}

.step-content h3 {
  font-size: 1.15rem;
  margin: 0 0 12px 0;
  color: var(--text-main);
}

.step-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-sub);
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(59,130,246,0.1));
  padding: 80px 0;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.cta-content p {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 32px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .recruit-hero h1 {
    font-size: 1.8rem;
  }

  .recruit-hero .hero-lead {
    font-size: 1rem;
  }

  .culture-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .job-header {
    padding: 20px 24px;
  }

  .job-title {
    font-size: 1.25rem;
  }

  .job-body {
    padding: 24px;
  }

  .job-duties,
  .job-requirements,
  .job-benefits {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .process-step:not(:last-child)::before {
    left: 29px;
    top: 70px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
