/* =============================================
   EMPLOYERS PAGE — employers.css
   ============================================= */

/* ---- HERO ---- */
.emp-hero {
  min-height: 100vh;
  background-image: url('../images/rec.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.emp-hero::before {
  content: '';
  position: absolute;
  top: -10%; left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.emp-hero-bg-text {
  position: absolute;
  right: -20px; bottom: -60px;
  font-family: var(--font-display);
  font-size: clamp(120px, 25vw, 340px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.emp-hero-content {
  z-index: 1;
  max-width: 720px;
  animation: fadeUp 0.8s ease both;
}
.emp-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 14px 0 20px;
}
.emp-hero-content h1 em { font-style: italic; color: var(--gold); }
.emp-hero-sub {
  color: rgb(255, 255, 255);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.emp-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.emp-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.emp-trust-bar > span { color: rgb(255, 255, 255); font-size: 0.82rem; white-space: nowrap; }
.trust-logos { display: flex; gap: 10px; flex-wrap: wrap; }

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.trust-logo {
  width: 120px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* keeps logo proportional */
}


/* ---- WHY GRID ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
.why-card p  { font-size: 0.87rem; color: var(--gray); line-height: 1.7; }

/* ---- HOW IT WORKS ---- */
.emp-how-section { background: var(--cream); }
.emp-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.emp-step {
  flex: 1;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.emp-step:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.emp-step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 12px;
}
.emp-step-body h3 { font-size: 0.97rem; color: var(--navy); margin-bottom: 8px; }
.emp-step-body p  { font-size: 0.83rem; color: var(--gray); line-height: 1.65; }
.emp-step-arrow {
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.4;
  align-self: center;
  padding: 0 8px;
  flex-shrink: 0;
}

/* ---- PRICING ---- */
.pricing-section { background: var(--navy); }
.pricing-section .eyebrow { color: var(--gold); }
.pricing-section .section-header h2 { color: var(--white); }
.pricing-section .section-header h2 em { color: var(--gold); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.07); }

.pricing-card.featured-plan {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-16px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured-plan .plan-name  { color: var(--navy); }
.pricing-card.featured-plan .plan-price { color: var(--navy); }
.pricing-card.featured-plan .plan-desc  { color: var(--gray); }
.pricing-card.featured-plan .plan-features li { color: var(--navy); }

.plan-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.plan-price {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.plan-currency { font-size: 1.4rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.plan-period { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.5); }
.featured-plan .plan-period { color: var(--gray); }

.plan-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 24px; line-height: 1.5; }

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.featured-plan .plan-features li { color: var(--navy); }

.full-width-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  color: rgba(255,255,255,0.4);
  font-size: 0.83rem;
}

/* ---- EMPLOYER TESTIMONIALS ---- */
.emp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.emp-testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}
.emp-testi-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.emp-testi-card p {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  flex: 1;
}

/* ---- POST JOB FORM ---- */
.post-job-section { background: var(--cream); }
.post-job-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.post-job-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  outline: none;
  resize: vertical;
  transition: border-color var(--transition);
}
.post-job-card textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.post-job-card select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  outline: none;
  background: var(--white);
  transition: border-color var(--transition);
}
.post-job-card select:focus { border-color: var(--gold); }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-q span { font-size: 1.3rem; font-weight: 300; flex-shrink: 0; margin-left: 12px; transition: transform var(--transition); }
.faq-q.open span { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-a.open { max-height: 200px; padding-bottom: 20px; }
.faq-a p { font-size: 0.9rem; color: var(--gray); line-height: 1.75; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1000px) {
  .why-grid         { grid-template-columns: 1fr 1fr; }
  .emp-testi-grid   { grid-template-columns: 1fr 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured-plan { transform: none; }
}
@media (max-width: 768px) {
  .emp-steps { flex-direction: column; }
  .emp-step-arrow { transform: rotate(90deg); align-self: center; }
  .why-grid { grid-template-columns: 1fr; }
  .emp-testi-grid { grid-template-columns: 1fr; }
  .post-job-card { padding: 28px 20px; }
}
