/* ===========================
   DBR â€” David Blackwell Recruitment
   Brand: Navy #1B2A4A | Gold #F5A800
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy:   #1B2A4A;
  --navy2:  #142038;
  --gold:   #F5A800;
  --gold2:  #e09800;
  --white:  #ffffff;
  --offwhite: #F8F8F6;
  --grey:   #6B7280;
  --light:  #E8ECF4;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

/* â”€â”€ NAV â”€â”€ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-logo-badge {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  padding: 4px 10px;
  letter-spacing: 1px;
}

.nav-logo-text {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 20px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold2) !important; color: var(--navy) !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 5px;
}

.hamburger span {
  display: block; width: 25px; height: 2px;
  background: var(--white); transition: 0.3s;
}

/* â”€â”€ BUTTONS â”€â”€ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); }

/* â”€â”€ HERO â”€â”€ */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 60px solid var(--gold);
  opacity: 0.15;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 30%;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 40px solid var(--gold);
  opacity: 0.08;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  display: flex; flex-direction: column; gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(245,168,0,0.3);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
}

.stat-icon {
  width: 50px; height: 50px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  color: var(--light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* â”€â”€ SECTION LAYOUT â”€â”€ */
.section {
  padding: 90px 5%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-offwhite {
  background: var(--offwhite);
}

.section-label {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-dark .section-label { color: var(--gold); }

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-dark h2 { color: var(--white); }
.section-dark h2 span { color: var(--gold); }
h2 span { color: var(--gold); }

.section-intro {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 48px;
}

.section-dark .section-intro { color: var(--light); }

/* â”€â”€ SECTORS â”€â”€ */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.sector-card {
  background: var(--white);
  border: 2px solid var(--light);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.2s;
  cursor: default;
}

.sector-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sector-icon { font-size: 2rem; margin-bottom: 12px; }

.sector-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* â”€â”€ PROCESS â”€â”€ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.process-step {
  position: relative;
  padding: 32px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,168,0,0.2);
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.process-step p { color: var(--light); font-size: 0.9rem; }

/* â”€â”€ JOB CARDS â”€â”€ */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.job-card {
  border: 2px solid var(--light);
  padding: 28px;
  transition: all 0.2s;
  background: var(--white);
}

.job-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.job-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.job-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
}

.job-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 20px;
}

.job-meta span {
  font-size: 0.85rem;
  color: var(--grey);
  display: flex; align-items: center; gap: 6px;
}

.job-meta span::before { font-size: 0.9rem; }

.job-card .btn { width: 100%; text-align: center; }

/* â”€â”€ FORM â”€â”€ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex; flex-direction: column; gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
}

.section-dark label { color: var(--light); }

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
}

textarea { resize: vertical; min-height: 140px; }

.form-submit { margin-top: 8px; }

/* â”€â”€ TWO COLUMN â”€â”€ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* â”€â”€ TESTIMONIAL â”€â”€ */
.testimonial-strip {
  background: var(--gold);
  padding: 48px 5%;
  text-align: center;
}

.testimonial-strip blockquote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto 16px;
  text-transform: uppercase;
  line-height: 1.2;
}

.testimonial-strip cite {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy2);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* â”€â”€ FOOTER â”€â”€ */
footer {
  background: var(--navy2);
  color: var(--light);
  padding: 60px 5% 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand p {
  color: var(--light);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 300px;
  opacity: 0.8;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  color: var(--light);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.footer-col ul a:hover { opacity: 1; color: var(--gold); }

.social-links {
  display: flex; gap: 12px; margin-top: 20px;
}

.social-links a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(245,168,0,0.3);
  border-radius: 50%;
  color: var(--light);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.social-links svg { width: 18px; height: 18px; fill: currentColor; }

.footer-col ul a.phone-link {
  display: inline-flex; align-items: center; gap: 6px;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}

.footer-bottom p { font-size: 0.8rem; opacity: 0.6; }

/* â”€â”€ PAGE HEADER â”€â”€ */
.page-header {
  background: var(--navy);
  padding: 130px 5% 60px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-header h1 span { color: var(--gold); }

.page-header p {
  color: var(--light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* â”€â”€ UTILITY â”€â”€ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-40 { margin-bottom: 40px; }

.gold-bar {
  width: 50px; height: 4px;
  background: var(--gold);
  margin: 16px 0 24px;
}

.center .gold-bar { margin: 16px auto 24px; }

/* â”€â”€ MOBILE â”€â”€ */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  nav {
    flex-wrap: wrap;
    height: auto;
    padding: 16px 5%;
    gap: 16px;
  }

  .nav-links {
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--navy2);
    padding: 20px 5%;
    gap: 16px;
  }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .nav-logo-img { height: 36px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
