/* =============================================
   SWIFT GLOBAL RECRUIT — Main Stylesheet
   ============================================= */

:root {
  --navy:    #0b3d2e;
  --navy2:   #144c38;
  --gold:    #10b981;
  --gold2:   #6ee3b1;
  --cream:   #f4fbf5;
  --white:   #ffffff;
  --gray:    #4f5f57;
  --gray-lt: #eef6ef;
  --border:  #dcecdc;
  --green:   #10b981;
  --red:     #ef4444;
  --shadow:  0 4px 24px rgba(16,185,129,0.10);
  --shadow-lg: 0 12px 48px rgba(16,185,129,0.16);
  --radius:  12px;
  --radius-lg: 20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.65;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(16,185,129,0.35); }
.btn-primary.large { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--gray-lt); }
.btn-ghost.full-width { width: 100%; text-align: center; }
.btn-ghost-white {
  display: inline-block;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 500;
  transition: var(--transition);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); }
.btn-outline {
  display: inline-block;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: contain;
}
.logo-mark {
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.logo-text {
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  white-space: nowrap;
}
.logo-text b { font-weight: 700; }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
  background: var(--gray-lt);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
  margin-left: auto;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  /* background-color: var(--navy); */
  background-image: url("../images/beautiful-african-american-woman-working-laptop-stylish-office.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
}

.hero-bg-text {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 240px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  text-align: center;
  max-width: 820px;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 100px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  color: white;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 300;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.25);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto 24px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 0 20px;
}
.search-field input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  width: 100%;
  height: 60px;
  background: transparent;
}
.search-field input::placeholder { color: #aaa; }
.search-icon { font-size: 1rem; flex-shrink: 0; }
.search-divider { width: 1px; height: 30px; background: var(--border); flex-shrink: 0; }

.search-btn {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 0 32px;
  height: 60px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.search-btn:hover { background: var(--gold2); }

.hero-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(255, 255, 255, 0.959);
  font-size: 0.85rem;
}
.hero-tags a {
  color: rgba(255, 255, 255, 0.979);
  background: rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
  font-size: 0.82rem;
}
.hero-tags a:hover { background: rgba(16,185,129,0.2); color: var(--green); border-color: rgba(16,185,129,0.4); }

/* Stats */
.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
  margin-top: 56px;
  z-index: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 24px 48px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s 0.3s ease both;
}
.stat { text-align: center; padding: 0 40px; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-div { width: 1px; height: 50px; background: rgba(255,255,255,0.12); }

/* ---- SECTION DEFAULTS ---- */
.section { padding: 90px 0; }
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header.between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  margin-bottom: 40px;
}
.eyebrow {
  display: inline-block;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.section-header h2 em { font-style: italic; color: var(--gold); }

/* ---- CATEGORIES ---- */
.categories-section { background: var(--cream); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.category-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.category-icon { font-size: 2rem; margin-bottom: 10px; }
.category-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.category-count { font-size: 0.78rem; color: var(--gray); }

/* ---- JOB CARDS ---- */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.job-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }

.job-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.company-logo {
  width: 46px; height: 46px;
  background: var(--gray-lt);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: var(--navy);
  flex-shrink: 0;
}
.job-badge {
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  background: rgba(16,185,129,0.12);
  color: var(--green);
  border: 1px solid rgba(16,185,129,0.3);
}
.job-badge.remote { background: rgba(16,185,129,0.1); color: var(--green); border-color: rgba(16,185,129,0.3); }
.job-badge.featured { background: var(--gold); color: var(--white); }

.job-title { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 2px; }
.job-company { font-size: 0.85rem; color: var(--gray); }

.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--gray);
}
.job-meta span { display: flex; align-items: center; gap: 4px; }

.job-salary { font-weight: 700; color: var(--navy); font-size: 0.95rem; }

.job-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
}
.job-date { font-size: 0.78rem; color: var(--gray); }

/* ---- HOW IT WORKS ---- */
.how-section { background: var(--navy); }
.how-section .eyebrow { color: var(--green); }
.how-section .section-header h2 { color: var(--white); }
.how-section .section-header h2 em { color: var(--green); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16,185,129,0.4), transparent);
}

.step {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.step:hover { background: rgba(16,185,129,0.07); border-color: rgba(16,185,129,0.25); }

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial.featured-quote {
  background: var(--navy);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.testimonial.featured-quote .quote { color: rgba(255,255,255,0.85); }
.testimonial.featured-quote .author strong { color: var(--white); }
.testimonial.featured-quote .author span { color: var(--green); }

.quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
}
.author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.75rem; color: var(--navy);
  flex-shrink: 0;
}
.author strong { display: block; font-size: 0.9rem; }
.author span { font-size: 0.78rem; color: var(--gray); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3260 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- PAGE BANNER ---- */
.page-banner {
  background-image: url('../images/findjob.jpg');
  background-size: cover;
  background-position: center 10%;
  padding: 120px 24px 60px;
  text-align: center;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 10px;
}
.page-banner h1 em { font-style: italic; color: var(--gold); }
.page-banner p { color: white; font-size: 1rem; }

/* ---- JOBS PAGE ---- */
.jobs-page-section { padding: 40px 0 80px; }
.jobs-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.filters-sidebar {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 88px;
}
.filters-sidebar h3 { font-size: 1rem; font-weight: 700; margin-bottom: 24px; color: var(--navy); }

.filter-group { margin-bottom: 20px; }
.filter-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.06em; }

.filter-group input[type="text"],
.filter-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}
.filter-group input:focus, .filter-group select:focus { border-color: var(--gold); }

.checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkboxes label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.checkboxes input[type="checkbox"] { accent-color: var(--gold); width: 15px; height: 15px; }

.mt-sm { margin-top: 10px; }

/* Jobs Main */
.jobs-main {}
.jobs-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.results-count { font-size: 0.9rem; color: var(--gray); }
.sort-bar { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--gray); }
.sort-bar select { padding: 6px 12px; border: 1.5px solid var(--border); border-radius: 7px; font-family: var(--font-body); outline: none; font-size: 0.85rem; }

.jobs-list { display: flex; flex-direction: column; gap: 14px; }

.job-list-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.job-list-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateX(4px); }

.job-list-info {}
.job-list-title { font-weight: 700; font-size: 0.98rem; color: var(--navy); margin-bottom: 3px; }
.job-list-company { font-size: 0.83rem; color: var(--gray); margin-bottom: 7px; }
.job-list-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.78rem; color: var(--gray); }

.job-list-right { text-align: right; }
.job-list-salary { font-weight: 700; font-size: 0.92rem; color: var(--navy); margin-bottom: 6px; }
.job-list-date { font-size: 0.75rem; color: var(--gray); margin-bottom: 10px; }

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}
.page-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--navy);
}
.page-btn:hover, .page-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ---- AUTH ---- */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 100px 24px 60px;
}
.auth-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.auth-brand { text-align: center; margin-bottom: 28px; }
.auth-brand h2 { font-family: var(--font-display); font-size: 1.9rem; color: var(--navy); margin-bottom: 6px; }
.auth-brand p { color: var(--gray); font-size: 0.9rem; }

.auth-tabs {
  display: flex;
  background: var(--gray-lt);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 28px;
}
.tab-btn {
  flex: 1;
  padding: 9px;
  border: none;
  border-radius: 7px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  background: transparent;
  color: var(--gray);
  transition: var(--transition);
}
.tab-btn.active { background: var(--white); color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row.between { display: flex; justify-content: space-between; align-items: center; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
  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;
  transition: border-color var(--transition);
}
.form-group input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(16,185,129,0.12); }

.input-icon-wrap { position: relative; }
.input-icon-wrap input { padding-right: 44px; }
.toggle-pw {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  cursor: pointer; font-size: 1rem; color: var(--gray);
}

.checkbox-group label {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 0.83rem; font-weight: 400;
  text-transform: none; letter-spacing: 0;
}
.checkbox-group a { color: var(--green); }
.checkbox-label { font-size: 0.85rem; color: var(--gray); display: flex; gap: 6px; align-items: center; }
.forgot-link { font-size: 0.83rem; color: var(--green); }
.forgot-link:hover { text-decoration: underline; }

.auth-footer { text-align: center; font-size: 0.85rem; color: var(--gray); margin-top: 18px; }
.auth-footer a { color: var(--green); font-weight: 600; }

.msg { margin-top: 12px; padding: 10px 14px; border-radius: 8px; font-size: 0.85rem; display: none; }
.msg.success { display: block; background: rgba(16,185,129,0.1); color: var(--green); border: 1px solid rgba(16,185,129,0.3); }
.msg.error { display: block; background: rgba(239,68,68,0.1); color: var(--red); border: 1px solid rgba(239,68,68,0.2); }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-mark { background: rgba(255,255,255,0.1); }
.footer-brand .logo-text { color: rgba(255,255,255,0.8); }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.65; max-width: 280px; margin-bottom: 20px; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.socials a:hover { background: var(--gold); color: var(--navy); }

.footer-links h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { color: rgb(255, 255, 255); font-size: 0.8rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial.featured-quote { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .jobs-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
}

@media (max-width: 700px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; box-shadow: var(--shadow); }
  .nav-actions.open { display: flex; flex-direction: column; position: absolute; top: calc(68px + 200px); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 24px; gap: 8px; box-shadow: var(--shadow); }
  .nav-actions.open .btn-ghost, .nav-actions.open .btn-primary { width: 100%; text-align: center; }
  .hamburger { display: block; }
  .hero { background-attachment: scroll; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 24px; }
  .stat-div { width: 60px; height: 1px; }
  .search-bar { flex-direction: column; }
  .search-divider { width: 90%; height: 1px; }
  .search-btn { width: 100%; }
  .jobs-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
