/* ═══════════════════════════════════════════
   Clearstone Group, LLC — mybellacare.com
   Personal Support & Residential Care
   ═══════════════════════════════════════════ */

:root {
  --teal: #2C4A5A;
  --teal-dark: #1a2f3a;
  --teal-light: #3d6b7a;
  --gold: #D4A855;
  --gold-hover: #c49645;
  --sage: #4a7c6f;
  --sage-hover: #3d6b5e;
  --slate: #64748b;
  --light: #f8fafb;
  --white: #ffffff;
  --border: #e2e8f0;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 10px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.2s;
}
.btn-primary {
  background: var(--sage); color: white;
}
.btn-primary:hover { background: var(--sage-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-full { width: 100%; }

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(26,47,58,0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  color: white;
}
.logo-icon { font-size: 24px; color: var(--gold); }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
}
.logo-accent {
  color: var(--gold);
  margin-left: 2px;
}
.nav-links {
  display: flex; gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: white; }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold); color: var(--teal-dark);
  padding: 10px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  transition: all 0.2s;
}
/* Portal Login Buttons */
.nav-portals {
  display: flex; gap: 8px;
}
.nav-portal-btn {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  font-family: inherit;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.nav-portal-btn.staff {
  background: #059669; color: white;
}
.nav-portal-btn.staff:hover {
  background: #047857;
}
.nav-portal-btn.client {
  background: transparent; color: white;
  border-color: rgba(255,255,255,0.4);
}
.nav-portal-btn.client:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}
.nav-links-portals {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px;
  flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #1a2f3a 0%, #2C4A5A 40%, #4a7c6f 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212,168,85,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(74,124,111,0.2) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 120px 0 80px;
}
.hero-tag {
  display: inline-block;
  font-size: 14px; font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-accent {
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.8);
  max-width: 680px; margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-badges {
  display: flex; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex; flex-direction: column; align-items: center;
}
.badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
  color: var(--gold);
}
.badge-label {
  font-size: 13px; color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--light);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--teal-dark);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px; color: var(--text-muted);
  max-width: 600px; margin: 0 auto;
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card.featured {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: white;
  border: none;
}
.service-card.featured h3 { color: var(--gold); }
.service-card.featured p { color: rgba(255,255,255,0.85); }
.service-card.featured .service-features li { color: rgba(255,255,255,0.8); }
.service-card.featured .service-features li::before { color: var(--gold); }
.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 20px;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.service-card > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.service-features li {
  font-size: 13px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.service-features li::before {
  content: '\2713';
  position: absolute; left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text .section-tag { text-align: left; }
.about-text h2 {
  font-size: 36px; color: var(--teal-dark);
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-muted); font-size: 16px;
  margin-bottom: 16px; line-height: 1.7;
}
.about-stats {
  display: flex; gap: 32px; margin-top: 32px;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700;
  color: var(--sage);
}
.stat-label {
  font-size: 13px; color: var(--text-muted);
  margin-top: 2px;
}
.about-visual {
  display: flex; flex-direction: column; gap: 20px;
}
.about-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.3s;
}
.about-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.about-card.accent {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: white;
  border: none;
}
.about-card.accent h3 { color: var(--gold); }
.about-card h3 {
  font-size: 20px; color: var(--teal-dark);
  margin-bottom: 10px;
}
.about-card p {
  color: var(--text-muted); font-size: 15px; line-height: 1.6;
}
.about-card.accent p,
.about-card.accent .values-list li {
  color: rgba(255,255,255,0.85);
}
.values-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.values-list li {
  font-size: 14px; line-height: 1.5;
  color: var(--text-muted);
}
.values-list li strong {
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   HEALTHCARE STAFFING
   ═══════════════════════════════════════════ */
.staffing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.staffing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.3s;
}
.staffing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.staffing-card.highlight {
  background: linear-gradient(135deg, var(--sage), var(--sage-hover));
  color: white;
  border: none;
}
.staffing-card.highlight h3 { color: white; }
.staffing-card.highlight p { color: rgba(255,255,255,0.9); }
.staffing-card h3 {
  font-size: 20px; color: var(--teal-dark);
  margin-bottom: 12px;
}
.staffing-card p {
  color: var(--text-muted); font-size: 15px; line-height: 1.6;
}
.staffing-steps {
  list-style: none; counter-reset: step;
  display: flex; flex-direction: column; gap: 12px;
}
.staffing-steps li {
  counter-increment: step;
  font-size: 14px; color: var(--text);
  padding-left: 32px; position: relative;
  line-height: 1.5;
}
.staffing-steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--sage);
  color: white;
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.staffing-cta {
  text-align: center;
  padding: 32px;
  background: var(--light);
  border-radius: var(--radius-xl);
}
.staffing-cta p {
  font-size: 18px; font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

/* ═══════════════════════════════════════════
   CAREERS
   ═══════════════════════════════════════════ */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.career-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.3s;
}
.career-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.career-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.career-card h3 {
  font-size: 18px; color: var(--teal-dark);
  margin-bottom: 10px;
}
.career-card p {
  color: var(--text-muted); font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.career-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px; font-weight: 500;
  color: var(--sage);
}
.careers-cta {
  text-align: center;
}
.cta-note {
  font-size: 13px; color: var(--text-muted);
  margin-top: 12px;
}

/* ═══════════════════════════════════════════
   PARTNERS
   ═══════════════════════════════════════════ */
.partners-row {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 16px;
}
.partner-badge {
  padding: 16px 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  font-size: 14px; font-weight: 600;
  color: var(--teal-dark);
  transition: all 0.3s;
}
.partner-badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--sage);
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 18px; color: var(--teal-dark);
  margin-bottom: 10px;
}
.why-card p {
  color: var(--text-muted); font-size: 14px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card > p {
  color: var(--text);
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--teal-dark);
}
.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   LOCATIONS
   ═══════════════════════════════════════════ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.location-card.main-office {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: white;
  border: none;
}
.location-card.main-office h3 { color: var(--gold); }
.location-card.main-office .location-address,
.location-card.main-office .location-desc { color: rgba(255,255,255,0.85); }
.location-card.main-office .tag {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}
.location-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  background: #ede9fe;
  color: #5b21b6;
}
.location-badge.alf {
  background: #dcfce7;
  color: #166534;
}
.location-badge.office {
  background: rgba(212,168,85,0.2);
  color: var(--gold);
}
.location-card h3 {
  font-size: 22px;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.location-address {
  font-size: 15px;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.5;
}
.location-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.location-services {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 20px;
}
.location-actions {
  display: flex; gap: 10px;
}
.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 8px;
}
.btn-outline-dark {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--border);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline-dark:hover {
  border-color: var(--teal);
  background: var(--light);
}
.location-card.main-office .btn-outline-dark {
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.location-card.main-office .btn-outline-dark:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px; font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.form-group textarea { resize: vertical; }
.form-group select optgroup {
  font-weight: 600;
  color: var(--teal-dark);
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: #dcfce7;
  color: #166534;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  text-align: center;
}
.contact-info {
  display: flex; flex-direction: column; gap: 16px;
}
.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: all 0.3s;
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.info-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.info-card h3 {
  font-size: 16px; color: var(--teal-dark);
  margin-bottom: 6px;
}
.info-card a {
  color: var(--sage);
  font-weight: 600;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}
.info-card a:hover { color: var(--sage-hover); }
.info-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--teal-dark);
  color: white;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.footer-logo .logo-icon { font-size: 20px; color: var(--gold); }
.footer-logo .logo-text { font-size: 18px; }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 13px; line-height: 1.6;
  max-width: 300px;
}
.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--gold);
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  padding: 3px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-links p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

/* ═══════════════════════════════════════════
   SHIFTPULSE WIDGET
   ═══════════════════════════════════════════ */
.widget-container {
  margin-top: 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.services-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.4s; }
.why-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.why-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.why-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.why-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.why-grid .reveal:nth-child(6) { transition-delay: 0.4s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.staffing-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.staffing-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.careers-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.careers-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .staffing-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,47,58,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; color: white; }
  .nav-portals { display: none; }
  .nav-links-portals {
    display: flex; gap: 12px;
    margin-top: 16px;
  }
  .nav-links-portals .nav-portal-btn {
    padding: 12px 28px;
    font-size: 16px;
  }
  .hamburger { display: flex; z-index: 1001; }

  /* Hero */
  .hero { min-height: auto; padding: 0; }
  .hero-content { padding: 140px 0 80px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-badges { gap: 24px; }

  /* Sections */
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .staffing-grid { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .partners-row { gap: 12px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 120px 16px 60px; }
  .service-card { padding: 28px 24px; }
  .contact-form { padding: 24px; }
  .about-stats { flex-direction: column; gap: 20px; }
  .staffing-card { padding: 24px; }
  .career-card { padding: 24px; }
}
