/* =====================================================
   Work-as-Painters Page — Premium Styles
   Sunshine Home Painting Service · 2026
   ====================================================== */

/* ---------- Perks Grid ---------- */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.perk-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.perk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
}
.perk-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #60c3ad, #3ee3d8);
  transition: width .3s, left .3s;
}
.perk-card:hover::after { width: 100%; left: 0; }
.perk-card .icon-circle { margin: 0 auto 16px; }
.perk-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 8px;
}
.perk-card p {
  font-size: .9rem;
  color: #475569;
  line-height: 1.65;
}

/* ---------- How to Join Steps ---------- */
.join-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.join-steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, #c4f3ef, #60c3ad, #c4f3ef);
  z-index: 0;
}
.join-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.join-step .js-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60c3ad, #3ee3d8);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 14px rgba(96,195,173,.3);
}
.join-step h3 {
  font-size: .95rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 5px;
}
.join-step p {
  font-size: .82rem;
  color: #64748b;
  line-height: 1.55;
}

/* ---------- Eligibility ---------- */
.eligibility-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.eligibility-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: .94rem;
  color: #1a202c;
  box-shadow: 0 2px 12px rgba(0,0,0,.03);
  transition: transform .2s, box-shadow .2s;
}
.eligibility-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.eligibility-list li svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: #60c3ad;
}

/* ---------- Earning Cards ---------- */
.earning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.earning-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.earning-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.earning-card:nth-child(1)::before { background: linear-gradient(90deg, #92dbd5, #60c3ad); }
.earning-card:nth-child(2)::before { background: linear-gradient(90deg, #60c3ad, #3ee3d8); }
.earning-card:nth-child(3)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.earning-card .ec-level {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #64748b;
  margin-bottom: 8px;
}
.earning-card .ec-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: #60c3ad;
  margin-bottom: 4px;
}
.earning-card:nth-child(3) .ec-amount { color: #f59e0b; }
.earning-card .ec-period {
  font-size: .82rem;
  color: #94a3b8;
}
.earning-card .ec-desc {
  font-size: .88rem;
  color: #475569;
  margin-top: 10px;
  line-height: 1.55;
}

/* ---------- Application form ---------- */
.career-form-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: start;
}
.career-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
}
.career-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #60c3ad, #3ee3d8, #f59e0b);
}
.career-form-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 4px;
}
.career-form-card .form-lead {
  font-size: .95rem;
  color: #475569;
  margin-bottom: 20px;
}

.career-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------- Painter Quote ---------- */
.painter-quote {
  background: linear-gradient(135deg, #f0fdf9 0%, #fff 100%);
  border-left: 4px solid #60c3ad;
  padding: 24px 24px;
  border-radius: 0 16px 16px 0;
  position: relative;
}
.painter-quote::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 14px;
  font-size: 2.5rem;
  color: #60c3ad;
  opacity: .2;
  font-family: serif;
  line-height: 1;
}
.painter-quote p {
  font-style: italic;
  color: #475569;
  font-size: .94rem;
  line-height: 1.7;
  margin: 0;
}
.painter-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 600;
  color: #1a202c;
  font-size: .88rem;
}

/* ---------- Quick Contact Card ---------- */
.career-contact-card {
  background: linear-gradient(135deg, #60c3ad, #3a8f76);
  border-radius: 16px;
  padding: 24px;
  color: #fff;
}
.career-contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.career-contact-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  padding: 8px 0;
  opacity: .9;
  transition: opacity .2s;
}
.career-contact-card a:hover { opacity: 1; }
.career-contact-card a svg { width: 20px; height: 20px; fill: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .join-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .join-steps-grid::before { display: none; }
  .earning-grid { grid-template-columns: 1fr; }
  .career-form-wrap { grid-template-columns: 1fr; }
  .eligibility-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .perks-grid { grid-template-columns: 1fr; }
  .career-form-card { padding: 24px 18px; }
}
