/* Novalent Staffing Ltd - Corporate Recruitment Website */
/* Hirxpert-inspired: professional, clean, corporate */

:root {
  /* Primary palette */
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --navy-600: #475569;
  --navy-500: #64748b;
  /* Accent */
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --accent-light: #e0f2fe;
  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  /* Typography */
  --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font-primary);
  /* Spacing */
  --section-padding: 5rem 0;
  --container-max: 1200px;
  /* Transitions */
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy-700);
  background: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
  margin-top: 0;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

main {
  overflow-x: hidden;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy-900);
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--navy-700);
  font-weight: 500;
  font-size: 0.9375rem;
}
.nav-links a:hover { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
}

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

.btn-large { padding: 1rem 2rem; font-size: 1rem; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-800);
}

/* Hero */
.hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: url('../assets/images/hero-team.jpg') center/cover;
  opacity: 0.25;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero .btn-primary { background: var(--white); color: var(--navy-900); }
.hero .btn-primary:hover { background: var(--gray-100); }
.hero .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.hero .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* Sections */
.section {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}
.section-alt { background: var(--gray-50); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--navy-600);
}

/* Section labels (eyebrows) */
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Content blocks - readable prose */
.content-block {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.content-block h2 {
  font-size: 1.375rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.content-block h2:first-child { margin-top: 0; }
.content-block p { margin-bottom: 1.25rem; line-height: 1.7; }

/* Lead paragraph */
.lead {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--navy-600);
  margin-bottom: 1.5rem;
}

/* Form card wrapper */
.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
  width: 100%;
  min-width: 0;
}

/* Checklist styling */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.check-list li i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Two-column content layout */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 992px) {
  .content-split { grid-template-columns: 1fr; }
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: 1.25rem;
}

.service-icon i { color: inherit; }

.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--navy-600); margin-bottom: 0; }

/* Stats */
.stats {
  padding: 4rem 0;
  background: var(--navy-900);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.stat-item p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
}

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.industry-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  font-weight: 500;
  color: var(--navy-700);
  transition: all var(--transition);
}

.industry-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(14,165,233,0.15);
}

.industry-tag svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* CTA blocks */
.cta-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cta-block {
  padding: 3rem;
  border-radius: 16px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(30,41,59,0.8) 100%);
}

.cta-block > * { position: relative; z-index: 1; }

.cta-block h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-block p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.cta-block .btn {
  background: var(--white);
  color: var(--navy-900);
}
.cta-block .btn:hover {
  background: var(--gray-100);
  color: var(--navy-900);
}

.cta-employers { background-image: url('../assets/images/employers-meeting.jpg'); }
.cta-jobseekers { background-image: url('../assets/images/jobseekers-business.jpg'); }

/* Testimonials */
.testimonials {
  background: var(--gray-50);
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 4px solid var(--accent);
}

.testimonial-card p {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--navy-600);
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
}

.testimonial-name { font-weight: 600; color: var(--navy-900); }
.testimonial-role { font-size: 0.875rem; color: var(--navy-500); }

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-num {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9375rem; color: var(--navy-600); margin: 0; }

/* Footer */
.footer {
  background: var(--navy-900);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.footer h4 {
  color: var(--white);
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer ul a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  display: block;
  padding: 0.25rem 0;
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.footer-cms-link { margin-top: 0.5rem; }
.footer-edit-link { color: rgba(255,255,255,0.7); font-size: 0.8125rem; }
.footer-edit-link:hover { color: var(--accent-light); }

/* Floating "Edit content" pill when ?edit=1 (CMS baked into site) */
.cms-edit-pill {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--navy-800);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
}
.cms-edit-pill:hover { background: var(--navy-700); color: var(--white); transform: translateY(-2px); }

/* Page header */
.page-hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.125rem; margin-bottom: 0; max-width: 540px; margin-left: auto; margin-right: auto; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: minmax(280px, 400px) minmax(500px, 1fr);
  }
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.25rem; color: var(--navy-600); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

/* Form multi-column grid (up to 4 columns) */
.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.25rem;
  width: 100%;
  min-width: 0;
}

.form-grid .form-group {
  margin-bottom: 0;
  min-width: 0;
}

.form-grid .form-group:not([class*="col-"]) { grid-column: 1 / -1; }
.form-grid .form-group.col-1 { grid-column: span 1; }
.form-grid .form-group.col-2 { grid-column: span 2; }
.form-grid .form-group.col-3 { grid-column: span 3; }
.form-grid .form-group.col-4 { grid-column: 1 / -1; }

/* Submit button full width in grid */
.form-grid .form-actions {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

@media (max-width: 992px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid .form-group.col-1,
  .form-grid .form-group.col-2 { grid-column: span 1; }
  .form-grid .form-group.col-3 { grid-column: span 2; }
  .form-grid .form-group.col-4 { grid-column: span 2; }
}

@media (max-width: 576px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-grid .form-group:not([class*="col-"]),
  .form-grid .form-group.col-1,
  .form-grid .form-group.col-2,
  .form-grid .form-group.col-3,
  .form-grid .form-group.col-4 { grid-column: span 1; margin-bottom: 0; }
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--navy-800);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group textarea { min-height: 100px; resize: vertical; }

.form-group .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
}

.form-group .checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.team-card h4 { margin-bottom: 0.25rem; }
.team-card .role { color: var(--navy-500); font-size: 0.9375rem; }

/* Responsive */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero::before { width: 100%; opacity: 0.2; }
  .hero-actions { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .cta-blocks { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 2rem 2rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-links.active { transform: translateX(0); }

  .nav-toggle { display: flex; }

  .hero { padding: 6rem 0 4rem; }
  .page-hero { padding: 6rem 0 3.5rem; }
  .section { padding: 3rem 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Content images */
.content-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.content-img img {
  width: 100%;
  height: auto;
  display: block;
}

.img-caption {
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  font-size: 0.875rem;
  color: var(--navy-600);
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  min-height: 240px;
}

.carousel-inner {
  position: relative;
  width: 100%;
  min-height: 240px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.carousel-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.carousel-slide .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-size: 0.875rem;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255,255,255,0.95);
  color: var(--navy-800);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background var(--transition), color var(--transition);
  z-index: 2;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--accent);
  color: var(--white);
}

.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.carousel-dot:hover,
.carousel-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* Job listings */
.jobs-grid {
  display: grid;
  gap: 1.5rem;
}

.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.job-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(14,165,233,0.12);
}

.job-card h3 { margin-bottom: 0.5rem; }

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--navy-600);
  margin-bottom: 0.75rem;
}

.job-meta span { display: flex; align-items: center; gap: 0.35rem; }

.job-meta i { color: var(--accent); width: 1rem; }

.job-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* Industries with images */
.industry-with-img {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.industry-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.industry-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.industry-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.industry-card-content { padding: 1.25rem; }

.industry-card h4 { margin-bottom: 0.5rem; }
.industry-card p { font-size: 0.9375rem; margin: 0; color: var(--navy-600); }

/* Filters */
.filters-bar {
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.filters-bar.form-grid {
  display: grid;
}

.filters-bar:not(.form-grid) {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.filters-bar:not(.form-grid) label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--navy-700);
}

.filters-bar:not(.form-grid) select,
.filters-bar:not(.form-grid) input {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9375rem;
  margin-left: 0.25rem;
}

.filters-bar:not(.form-grid) select:focus,
.filters-bar:not(.form-grid) input:focus {
  outline: none;
  border-color: var(--accent);
}

/* Page content flow */
.section-body {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

/* Booking form sections */
.booking-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.booking-section h3 {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent-light);
  font-size: 1.125rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.25rem;
}

.form-row .form-group { margin-bottom: 0; }
.form-row .form-group.col-1 { grid-column: span 1; }
.form-row .form-group.col-2 { grid-column: span 2; }
.form-row .form-group.col-3 { grid-column: span 3; }
.form-row .form-group.col-4 { grid-column: span 4; }

@media (max-width: 992px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row .form-group.col-1,
  .form-row .form-group.col-2 { grid-column: span 1; }
  .form-row .form-group.col-3 { grid-column: span 2; }
  .form-row .form-group.col-4 { grid-column: span 2; }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-row .form-group.col-1,
  .form-row .form-group.col-2,
  .form-row .form-group.col-3,
  .form-row .form-group.col-4 { grid-column: span 1; }
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--navy-600);
}

.empty-state i {
  font-size: 3rem;
  color: var(--gray-200);
  margin-bottom: 1rem;
}

/* CTA section (final call-to-action on pages) */
.cta-section {
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 { margin-bottom: 0.75rem; }
.cta-section p { margin-bottom: 1.5rem; color: var(--navy-600); }

/* Page intro - first section after hero */
.page-intro {
  padding: 4rem 0 3rem;
}

.page-intro .content-block { margin-bottom: 0; }

/* Utilities */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.me-2 { margin-inline-end: 0.5rem; }

/* Form wrapper max-width for long forms */
.form-wrapper { max-width: 680px; }

@media (max-width: 768px) {
  .job-card { grid-template-columns: 1fr; }
  .job-actions { flex-wrap: wrap; }
}
