/* ==========================================================================
   Prestige Recruitment - Main Stylesheet
   Design inspired by modern recruitment agency websites
   ========================================================================== */

/* CSS Variables - Color Scheme */
:root {
  /* Primary Colors */
  --primary: #1a365d;
  --primary-dark: #0f2440;
  --primary-light: #2d4a7c;

  /* Sector Colors */
  --healthcare: #22c55e;
  --healthcare-light: #dcfce7;
  --education: #f97316;
  --education-light: #ffedd5;
  --professional: #8b5cf6;
  --professional-light: #ede9fe;
  --socialwork: #ec4899;
  --socialwork-light: #fce7f3;

  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Accent */
  --accent: #3b82f6;
  --accent-light: #dbeafe;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Top Sector Bar
   ========================================================================== */
.sector-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 8px 0;
}

.sector-bar-inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.sector-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition-fast);
}

.sector-link:hover {
  color: var(--gray-900);
}

.sector-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.sector-icon.healthcare { background: var(--healthcare); }
.sector-icon.education { background: var(--education); }
.sector-icon.professional { background: var(--professional); }
.sector-icon.socialwork { background: var(--socialwork); }

/* ==========================================================================
   Header
   ========================================================================== */
header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.brand-tagline {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-600);
  border-radius: 8px;
  transition: var(--transition-fast);
}

nav a:hover {
  color: var(--primary);
  background: var(--gray-100);
}

nav a.active {
  color: var(--primary);
  background: var(--accent-light);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--gray-700);
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(26, 54, 93, 0.8) 0%, rgba(15, 36, 64, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 60px 20px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Search Box */
.search-box {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.search-box h3 {
  color: var(--gray-800);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.search-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.search-field {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search-field i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
}

.search-field input {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  transition: var(--transition-fast);
}

.search-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.search-links {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
}

.search-links a {
  color: var(--accent);
  font-weight: 600;
}

.search-links a:hover {
  text-decoration: underline;
}

.search-links span {
  color: var(--gray-300);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.btn-light:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

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

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   Overview Section
   ========================================================================== */
.overview-section {
  background: var(--gray-50);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-content .lead {
  font-size: 1.15rem;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.overview-content p {
  color: var(--gray-600);
  margin-bottom: 24px;
}

.overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--accent);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ==========================================================================
   Specialisms Section
   ========================================================================== */
.specialisms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.specialism-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
  display: block;
}

.specialism-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.specialism-card.healthcare-card:hover { border-color: var(--healthcare); }
.specialism-card.education-card:hover { border-color: var(--education); }
.specialism-card.professional-card:hover { border-color: var(--professional); }
.specialism-card.socialwork-card:hover { border-color: var(--socialwork); }

.specialism-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--white);
}

.healthcare-card .specialism-icon { background: var(--healthcare); }
.education-card .specialism-icon { background: var(--education); }
.professional-card .specialism-icon { background: var(--professional); }
.socialwork-card .specialism-icon { background: var(--socialwork); }

.specialism-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.specialism-card p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.5;
}

.card-link {
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.healthcare-card .card-link { color: var(--healthcare); }
.education-card .card-link { color: var(--education); }
.professional-card .card-link { color: var(--professional); }
.socialwork-card .card-link { color: var(--socialwork); }

/* ==========================================================================
   Jobs Preview Section
   ========================================================================== */
.jobs-preview-section {
  background: var(--gray-50);
}

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

.job-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.job-sector {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.job-sector.healthcare { background: var(--healthcare); }
.job-sector.education { background: var(--education); }
.job-sector.professional { background: var(--professional); }
.job-sector.socialwork { background: var(--socialwork); }

.job-time {
  font-size: 12px;
  color: var(--gray-400);
}

.job-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.4;
}

.job-location, .job-salary {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-location i, .job-salary i {
  width: 16px;
  color: var(--gray-400);
}

.job-card .btn {
  margin-top: 16px;
  width: 100%;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  background: var(--white);
}

.rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.stars {
  color: #fbbf24;
  font-size: 18px;
}

.rating-badge span {
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  margin-bottom: 24px;
}

.quote-icon {
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 12px;
  opacity: 0.5;
}

.testimonial-content p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 15px;
  color: var(--gray-900);
}

.author-info span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ==========================================================================
   Accreditations Section
   ========================================================================== */
.accreditations-section {
  background: var(--gray-50);
  padding: 60px 0;
}

.accreditations-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.accreditation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
}

.accreditation-item i {
  font-size: 32px;
  color: var(--gray-400);
}

.accreditation-item span {
  font-size: 13px;
  font-weight: 600;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-800);
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition-fast);
}

.social-links a:hover {
  background: var(--accent);
  color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: var(--gray-400);
  padding: 6px 0;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--gray-500);
  width: 16px;
}

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

.footer-bottom p {
  font-size: 14px;
  color: var(--gray-500);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: var(--gray-500);
}

.footer-legal a:hover {
  color: var(--white);
}

/* ==========================================================================
   Page-Specific Styles
   ========================================================================== */

/* About Page */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-split img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.value-card {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-card h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1rem;
}

.value-card p {
  font-size: 14px;
  color: var(--gray-600);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 100%;
  height: 200px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--gray-400);
}

.team-info {
  padding: 20px;
}

.team-info h4 {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.team-info span {
  font-size: 14px;
  color: var(--gray-500);
}

/* Services Page */
.service-detail {
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}

.service-detail:nth-child(even) {
  background: var(--gray-50);
}

.service-detail .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail:nth-child(even) .container {
  direction: rtl;
}

.service-detail:nth-child(even) .container > * {
  direction: ltr;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 20px;
}

.service-icon-large.healthcare { background: var(--healthcare); }
.service-icon-large.education { background: var(--education); }
.service-icon-large.professional { background: var(--professional); }
.service-icon-large.socialwork { background: var(--socialwork); }

.service-detail h2 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.service-detail p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  margin: 20px 0;
}

.service-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--gray-700);
}

.service-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--healthcare);
}

.service-image {
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

/* Jobs Page */
.jobs-filter {
  background: var(--gray-50);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.filter-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-row select,
.filter-row input {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  min-width: 180px;
  background: var(--white);
}

.filter-row select:focus,
.filter-row input:focus {
  outline: none;
  border-color: var(--accent);
}

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

.jobs-list .job {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  transition: var(--transition);
}

.jobs-list .job:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

.jobs-list .job.healthcare { border-left-color: var(--healthcare); }
.jobs-list .job.education { border-left-color: var(--education); }
.jobs-list .job.professional { border-left-color: var(--professional); }
.jobs-list .job.socialwork { border-left-color: var(--socialwork); }

.job-details h3 {
  font-size: 1.1rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.job-details .job-meta-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--gray-500);
}

.job-details .job-meta-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--gray-50);
  padding: 32px;
  border-radius: 16px;
}

.contact-info-card h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

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

.contact-item-content h4 {
  font-size: 15px;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.contact-item-content p,
.contact-item-content a {
  font-size: 14px;
  color: var(--gray-600);
}

.contact-item-content a:hover {
  color: var(--accent);
}

.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.contact-form-card > p {
  color: var(--gray-500);
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  transition: var(--transition-fast);
  font-family: inherit;
}

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

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

.contact-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin-top: 48px;
}

.contact-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.contact-banner p {
  opacity: 0.9;
  margin-bottom: 24px;
}

/* Apply Form */
.apply-form {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  margin-top: 32px;
}

.apply-form h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.apply-form input,
.apply-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 16px;
  font-family: inherit;
}

.apply-form input:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.apply-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.apply-form button {
  width: 100%;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
  .specialisms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .sector-bar {
    display: none;
  }

  .header-inner {
    padding: 12px 16px;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
  }

  nav.active {
    display: flex;
  }

  nav a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .search-box {
    padding: 24px;
  }

  .search-form {
    flex-direction: column;
  }

  .search-field {
    min-width: 100%;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .specialisms-grid {
    grid-template-columns: 1fr;
  }

  .jobs-slider {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .service-detail .container {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .container {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .jobs-list .job {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .section {
    padding: 48px 0;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .accreditations-grid {
    gap: 24px;
  }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

/* Smooth scroll indicator */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
