/* --- EMPLOYERS PAGE STYLES --- */

/* Hero Section */
.hire-hero {
  background-color: var(--primary); /* Green #1B7768 */
  padding: 80px 0 100px 0;
  color: white;
  text-align: left;
}
.hire-hero-content {
  max-width: 700px;
}
.hire-hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}
.hire-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
}
.hero-buttons {
  display: flex;
  gap: 15px;
}
.btn.whatsapp-green {
  background-color: #25D366;
  color: white;
  border: none;
}
.btn.whatsapp-green:hover {
  background-color: #1ebc57;
}

/* Features Grid */
.section-center-header { text-align: center; margin-bottom: 50px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}
.feature-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-icon {
  width: 50px; height: 50px;
  background: #EAF7F5;
  color: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 15px auto;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: #222; }
.feature-card p { font-size: 0.9rem; color: #666; line-height: 1.5; }

/* Hire Form Section Layout */
.hire-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

/* Left Side: Info & Timeline */
.hire-info h2 { font-size: 2rem; margin-bottom: 15px; color: var(--text-main); }
.hire-info p { color: #666; font-size: 1.05rem; margin-bottom: 30px; }

.process-box {
  background: #EAF7F5; /* Very light green tint */
  padding: 30px;
  border-radius: 16px;
}
.process-box h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--primary); }

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
.timeline-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.timeline-list li:last-child { margin-bottom: 0; }
.num {
  width: 28px; height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
  flex-shrink: 0;
}
.timeline-list div { font-size: 0.95rem; color: #444; line-height: 1.5; }
.check-item {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; color: #22c55e; font-size: 0.95rem;
}

/* Right Side: Form Card */
.hire-form-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; color: #333;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  background: white; border-color: var(--primary);
}
.form-group textarea { min-height: 80px; resize: vertical; }

/* Trust Strip */
.trust-strip {
  background: white;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #eee;
}
.trust-strip p { color: #888; margin-bottom: 15px; font-size: 0.9rem; }
.industry-list {
  font-weight: 600; color: #444; font-size: 1.1rem;
}
.industry-list span { margin: 0 10px; color: var(--primary); }

/* Responsive */
@media (max-width: 900px) {
  .hire-layout { grid-template-columns: 1fr; }
  .hire-hero h1 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hire-form-card { padding: 25px; }