/* ═══════════════════════════════════════════
   HarvestHire — Agricultural & Supply Chain Recruiting
   Professional LIGHT MODE — Navy + Forest Green
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Source+Serif+4:ital,wght@0,400;0,600;0,700;1,400&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --bg-light: #f8faf9;
  --bg-dark: #0f1f2e;
  --text: #1a2332;
  --text-dim: #4a5568;
  --text-muted: #8896a6;
  --navy: #0f2b46;
  --green: #16794a;
  --green-light: #e6f5ed;
  --green-dark: #0d5c38;
  --accent: #d97706;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Montserrat', -apple-system, sans-serif;
  --font-display: 'Source Serif 4', Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Typography ──────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--green); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700; line-height: 1.2; margin-bottom: 16px; color: var(--navy);
}
.section-sub { font-size: 17px; color: var(--text-dim); max-width: 580px; line-height: 1.8; }

/* ── Buttons ─────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 14px; font-weight: 700;
  cursor: pointer; border: none; transition: all 0.3s ease; text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 4px 16px rgba(22,121,74,0.25); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(22,121,74,0.35); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ── Navigation ──────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: all 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy);
}
.nav-logo {
  width: 40px; height: 40px; border-radius: 10px; background: var(--green);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
}
.nav-brand-text { font-weight: 800; font-size: 20px; letter-spacing: -0.5px; }
.nav-brand-text span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }

/* ── Hero ─────────────────────────────── */
.hero { padding: 140px 0 80px; background: var(--bg-light); position: relative; overflow: hidden; }
.hero::after {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(135deg, rgba(22,121,74,0.03) 0%, rgba(15,43,70,0.05) 100%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 52px);
  font-weight: 700; line-height: 1.15; margin-bottom: 20px; color: var(--navy);
}
.hero h1 span { color: var(--green); }
.hero-sub { font-size: 17px; color: var(--text-dim); margin-bottom: 32px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 24px; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-dim); font-weight: 600; }
.hero-trust-item .icon { color: var(--green); font-size: 18px; }

/* Intake Form */
.intake-form {
  background: #fff; border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
}
.form-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input, .form-select {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: 14px;
  color: var(--text); transition: border-color 0.2s; background: #fff;
}
.form-input:focus, .form-select:focus { outline: none; border-color: var(--green); }
.form-input::placeholder { color: var(--text-muted); }
.form-btn {
  width: 100%; padding: 16px; border-radius: var(--radius-sm);
  background: var(--green); color: #fff; font-family: var(--font);
  font-size: 15px; font-weight: 700; border: none; cursor: pointer;
  transition: all 0.3s; letter-spacing: 0.5px;
}
.form-btn:hover { background: var(--green-dark); }

/* ── Logo Slider ─────────────────────── */
.logo-slider { padding: 60px 0; border-bottom: 1px solid var(--border); background: #fff; }
.logo-slider-label { text-align: center; font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 28px; }
.logo-track { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-item {
  font-size: 14px; font-weight: 800; color: var(--text-muted); letter-spacing: 2px;
  text-transform: uppercase; opacity: 0.4; transition: opacity 0.3s;
}
.logo-item:hover { opacity: 0.7; }

/* ── Stats Band ──────────────────────── */
.stats-band { background: var(--navy); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 2px; }

/* ── Specialties Grid ────────────────── */
.specialties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.specialty-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.4s ease; box-shadow: var(--shadow-sm);
}
.specialty-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.specialty-img { height: 200px; overflow: hidden; }
.specialty-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.specialty-card:hover .specialty-img img { transform: scale(1.05); }
.specialty-body { padding: 28px; }
.specialty-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.specialty-body p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.specialty-tag { display: inline-block; margin-top: 12px; padding: 4px 12px; border-radius: 100px; background: var(--green-light); color: var(--green); font-size: 12px; font-weight: 700; }

/* ── Why Choose Us ───────────────────── */
.why-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.why-list { list-style: none; margin-top: 32px; }
.why-list li {
  display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border);
}
.why-list li:last-child { border-bottom: none; }
.why-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.why-icon.i1 { background: var(--green-light); }
.why-icon.i2 { background: #fef3c7; }
.why-icon.i3 { background: #e0e7ff; }
.why-icon.i4 { background: #fce7f3; }
.why-text h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-text p { font-size: 14px; color: var(--text-dim); }

/* ── Testimonials ────────────────────── */
.testi-section { background: var(--bg-light); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.testi-stars { color: var(--accent); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-quote { font-family: var(--font-display); font-size: 16px; font-style: italic; color: var(--text); margin-bottom: 24px; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ── CTA Band ────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  padding: 80px 0; text-align: center;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); color: #fff; margin-bottom: 16px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── Footer ──────────────────────────── */
.footer {
  background: var(--bg-dark); padding: 60px 0 40px; color: rgba(255,255,255,0.5);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand { font-family: var(--font-display); font-size: 24px; color: #fff; margin-bottom: 12px; font-weight: 700; }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.4); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; font-size: 13px; text-align: center; }

/* ── Animations ──────────────────────── */
.animate { opacity: 0; transform: translateY(28px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.animate.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }

/* ── Responsive ──────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .why-split { grid-template-columns: 1fr; gap: 40px; }
  .specialties-grid, .testi-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero { padding-top: 120px; }
}
