/* ===============================
   Global / Base
   =============================== */
:root {
  --brand: #004080;
  --brand-dark: #003366;
  --brand-light: #0b5394;
  --text: #333;
  --bg: #f8f9fa;
  --card-bg: #fff;
  --muted: #444;
  --shadow-1: 0 2px 5px rgba(0,0,0,0.1);
  --shadow-2: 0 5px 15px rgba(0,0,0,0.2);

  /* fixed element heights */
  --banner-h: 32px;
  --header-h: 72px;
  --nav-h: 25px;

  /* default stack offset; JS will overwrite with the real measured value */
  --stack-offset: calc(var(--banner-h) + var(--header-h) + var(--nav-h));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  height: 100%;
  scroll-padding-top: calc(var(--stack-offset) + 12px);
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--banner-h) + var(--header-h) + var(--nav-h));
}

main { flex: 1 1 auto; }
main > *:first-child { margin-top: 0; }

/* ===============================
   Motion (header/nav reveal)
   =============================== */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===============================
   Top Banner (Desktop Only)
   =============================== */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: #000; 
  color: #fff;
  padding: 0 20px;
  line-height: 1.3;
  font-size: 0.85rem;
  font-weight: bold; 
  letter-spacing: 0.3px;
  z-index: 1100;
  height: var(--banner-h);
}

.top-banner span,
.top-banner a {
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 1;
  color: #fcff46;
  text-decoration: none;
}

.top-banner a:hover { 
  color: #ffec99; 
}

/* ===============================
   Floating Phone Button (Mobile Only)
   =============================== */
.floating-phone {
  display: none; /* Hidden by default (desktop) */
}

/* ===============================
   Social Media Bar (Fixed Bottom)
   =============================== */
.social-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: linear-gradient(to right, #003d7a 0%, #0056b3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 900;
  box-shadow: 0 -2px 8px rgba(0, 61, 122, 0.2);
  padding: 0 20px;
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-bar a:hover {
  background: rgba(255, 204, 0, 0.2);
  transform: scale(1.1);
}

.social-bar svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* Phone button in social bar - gold highlight */
.social-bar .phone-btn {
  background: linear-gradient(135deg, #ffcc00 0%, #ffa500 100%);
}

.social-bar .phone-btn:hover {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  transform: scale(1.15);
}

.social-bar .phone-btn svg {
  fill: #003d7a;
}

/* Email button styling */
.social-bar .email-btn {
  background: rgba(255, 204, 0, 0.15);
}

.social-bar .email-btn:hover {
  background: rgba(255, 204, 0, 0.3);
}

/* Move Tawk chat widget above social bar */
iframe[title*="chat widget"],
.tawk-min-container,
#tawk-bubble-container {
  bottom: 65px !important;
}

/* ===============================
   Header (fixed at top)
   =============================== */
.site-header {
  position: fixed;
  top: var(--banner-h);
  left: 0;
  width: 100%;
  height: var(--header-h);
  background-color: var(--brand);
  color: #fff;
  z-index: 1050;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  will-change: opacity, transform;
  animation: fadeSlideDown .45s ease-out .05s both;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}
.logo {
  display: block;
  height: calc(var(--header-h) - 0px);
  width: auto;
  margin-left: 20px;
}

/* ===============================
   Nav Bar (gradient + animated hover)
   =============================== */
.nav-bar {
  position: fixed;
  top: calc(var(--banner-h) + var(--header-h));
  left: 0;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0px;
  padding: 0;
  gap: 40px;
  background: linear-gradient(to bottom, var(--brand) 0%, var(--brand-light) 100%);
  color: #fff;
  z-index: 1025;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08) inset;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  will-change: opacity, transform;
  animation: fadeSlideDown .5s ease-out .1s both;
}

.nav-bar a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 0;
  margin: 0;
  line-height: 1;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-bar a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 80%;
  height: 2px;
  background-color: rgba(255,255,255,0.8);
  transition: transform 0.3s ease;
}

.nav-bar a:hover {
  color: #ffec99;
  text-shadow: 0 0 6px rgba(255,255,255,0.4);
}

.nav-bar a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-bar a.active::after {
  transform: translateX(-50%) scaleX(1);
  background-color: #ffcc00;
}

/* ===============================
   Universal Page Layout
   =============================== */
.page {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}
.page--narrow { max-width: 800px; }
.page--wide   { max-width: 1200px; }

.page-header { margin-bottom: 24px; text-align: center; }
.page-header h1, .page-header h2 { margin: 0 0 8px; }

.page-lead {
  margin: 0 auto 24px;
  line-height: 1.6;
  max-width: 70ch;
  color: var(--muted);
}

.section { margin-block: 32px; }
.section--tight  { margin-block: 16px; }
.section--loose  { margin-block: 48px; }

/* ===============================
   Services
   =============================== */
.services { background: #fff; padding: 80px 20px 40px; text-align: center; }
.services h2 {  text-align: center; font-size: 2rem; margin-bottom: 20px; margin-top: 0px; color: var(--brand); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Two-card centered layout */
.services-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  gap: 50px;
}
.service-card, .service {
  background: var(--card-bg);
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-1);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
  width: 100%;
}
.service-card:hover, .service:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.service-card h3, .service h3 { 
  font-size: 1.2rem; 
  color: var(--brand); 
  margin-bottom: 10px; 
  min-height: 2.8em; /* Ensures space for 2 lines, keeping body text aligned */
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card p, .service p { color: #555; font-size: 1rem; line-height: 1.6; margin-bottom: 15px; }
.highlight { border: 2px solid #ff9900; background: #fffbe6; }
.cta-button {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 30px;
  transition: background .3s;
  cursor: pointer;
  border: none;
  min-height: 44px;
}
.cta-button:hover { background: var(--brand-dark); }

/* ===============================
   Why Choose Us
   =============================== */
.why-choose-us { background: #fff; padding: 40px 20px; text-align: center; }
.why-choose-us h2 { font-size: 2rem; margin-bottom: 20px; color: var(--brand); }
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}
.benefit-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-1);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit-item::before {
  display: none !important;
}
.benefit-item img::before,
.benefit-item img::after {
  display: none !important;
}
.benefit-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.benefit-icon { width: 50px; height: 50px; margin-bottom: 15px; object-fit: contain; }
.benefit-item h3 { font-size: 1.2rem; color: var(--brand); margin-bottom: 10px; }
.benefit-item p { color: #555; font-size: 1rem; line-height: 1.6; }

/* 4-column benefits grid for For Clients page */
.benefits--four {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefits--four .benefit-item {
  padding: 24px 20px;
}
.benefits--four .benefit-item p {
  font-size: 0.95rem;
}
@media (max-width: 1100px) {
  .benefits--four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .benefits--four {
    grid-template-columns: 1fr;
  }
  
  .direct-placement-benefits li {
    white-space: normal;
  }
}

/* ===============================
   About
   =============================== */
.team {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.team-member {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-1);
  flex: 1 1 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-member img {
  width: 150px; height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
.team-member h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}
.team-title {
  margin: 0 0 12px;
  color: #555;
  font-weight: 500;
}
.team-bio {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.info-card {
  background: var(--card-bg);
  border: 1px solid #e6e9ef;
  border-radius: 8px;
  box-shadow: var(--shadow-1);
  padding: 20px;
}
.info-card h3 { margin: 0 0 8px; }
.info-card p { margin: 0; line-height: 1.6; }

/* ===============================
   Contact – 3-column grid
   =============================== */
.page-contact { padding-inline: 0; } 
.contact-section { 
  padding: 40px 20px; 
  max-width: 1400px;
  margin: 0 auto;
}

/* Contact Header (Phone & Email) */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-header p {
  margin: 0;
  font-size: 1.05rem;
  color: #333;
}

.contact-header a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.contact-header a:hover {
  text-decoration: underline;
}

/* Three Column Layout */
.contact-three-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 30px;
  align-items: start;
}

/* Contact Boxes */
.contact-box {
  background: white;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-box h3 {
  color: var(--brand);
  font-size: 1.5rem;
  margin-bottom: 16px;
  text-align: center;
}

.contact-pitch {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
  text-align: center;
}

.contact-subtext {
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
}

/* Engineers & Clients Boxes */
.contact-box-engineers,
.contact-box-clients {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.contact-box-engineers .cta-button,
.contact-box-clients .cta-button {
  margin-top: auto;
}

/* Form Box */
.contact-box-form {
  background: #f8f9fb;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 15px;
  line-height: 1.4;
  background: white;
  font-family: inherit;
}

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

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

.contact-form button {
  background: var(--brand);
  color: white;
  padding: 14px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.contact-form button:hover {
  background: var(--brand-dark);
}

/* Remove old contact grid styles */
.contact-grid,
.contact-info-inline,
.contact-spacer {
  display: none;
}


/* ===============================
   Footer (with matching animated links)
   =============================== */
footer {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 24px 16px 80px; /* Extra bottom padding for social bar */
  margin-top: auto;
  width: 100%;
  max-width: none;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}
footer p {
  margin: 6px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
footer a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin: 0 10px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
footer a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 60%;
  height: 1.5px;
  background-color: rgba(255, 204, 0, 0.8);
  transition: transform 0.3s ease;
}
footer a:hover {
  color: #ffec99;
  text-shadow: 0 0 6px rgba(255,255,255,0.4);
}
footer a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ===============================
   Testimonials
   =============================== */
.section-title { text-align: center; margin: 0 0 16px; color: var(--brand); }
.t-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  padding: 0;
  margin: 0;
  transition: transform .45s ease;
}
.t-card { margin: 0; width: 100%; box-sizing: border-box; }
.t-carousel { overflow: hidden; padding: 16px 44px; position: relative; }
.t-quote { font-size: 1.05rem; line-height: 1.6; color: #333; }
.t-meta { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: #eef3f8; }
.t-name { font-weight: 700; color: var(--brand-dark); }
.t-role { color: #666; font-size: .95rem; }
.t-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: #fff; border: 1px solid #e6e8eb; box-shadow: var(--shadow-1);
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  font-size: 20px; line-height: 1; color: #333;
}
.t-prev { left: 8px; }
.t-next { right: 8px; }
.t-nav:hover { box-shadow: var(--shadow-2); }
.t-dots { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.t-dot { width: 9px; height: 9px; border-radius: 50%; background: #cbd3dc; border: none; cursor: pointer; }
.t-dot[aria-selected="true"] { background: var(--brand); }

/* ===============================
   Get Started (depth + motion)
   =============================== */
#get-started {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: clip;
  --overlay: rgba(0, 51, 102, 0.85);
}
#get-started .bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--overlay), var(--overlay)),
    url('images/blueprint-bg.jpg') center/cover no-repeat;
  will-change: transform;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
  z-index: 0;
}
#get-started .content {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: translateY(0); }
#get-started .cta {
  display: inline-block;
  background: #fff;
  color: var(--brand-dark);
  padding: 14px 36px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: var(--shadow-2);
  transition: transform .15s ease, box-shadow .2s ease;
  min-height: 48px;
}
#get-started .cta:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,.25); }

.cta-link-button {
  background: #fff;
  color: var(--brand-dark);
  padding: 14px 36px;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  box-shadow: var(--shadow-2);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  min-height: 48px;
}
.cta-link-button:hover {
  background: #f0f4f8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ===============================
   HERO – Split Layout (B2B)
   =============================== */
.hero--split { background: var(--bg); }
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}
.hero__copy h1 { margin: 0 0 2px; text-align: left; font-weight: 400; font-size: 2.5rem; }
.hero__copy h1.hero-lead { font-weight: 700; font-size: 2.8rem; }
.hero__copy p  { margin: 0 0 20px; color: var(--muted); text-align: left; margin-bottom: 14px; }
.hero .cta-button { margin-bottom: 18px; margin-top: 14px; }

.trust-list {
  list-style: none;
  padding: 0; margin: 0;
  max-width: 520px; text-align: left;
  display: grid; gap: 8px;
}
.trust-list--compact li {
  position: relative; padding-left: 26px;
  line-height: 1.45; font-size: 15px; margin-top: -4px;
}
.trust-list--compact li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px;
  background: var(--brand);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.55 17.05 4.5 12l1.4-1.4 3.65 3.65 8.6-8.6L19.5 7l-9.95 10.05Z"/></svg>') no-repeat 50% 50% / contain;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.55 17.05 4.5 12l1.4-1.4 3.65 3.65 8.6-8.6L19.5 7l-9.95 10.05Z"/></svg>') no-repeat 50% 50% / contain;
  opacity: .95;
}

.hero__image {
  min-height: 440px;
  border-radius: 16px;
  background: url("images/Recruitment Image.png") center/cover no-repeat;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  position: relative;
}
.hero__image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,.08), rgba(0,0,0,.22));
  border-radius: inherit;
}

/* For Clients page hero image */
.hero__image--clients {
  background: url("images/For_Clients.png") center/cover no-repeat;
}

/* For Engineers page hero image */
.hero__image--engineers {
  background: url("images/For_Engineers.png") center/cover no-repeat;
}

/* Centered hero image container */
.hero-image-centered {
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-image-centered .hero__image {
  min-height: 330px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  position: relative;
}

.roi, .expedite-keywords {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ===============================
   Home Quote Section
   =============================== */
.quote-section {
  background:#fff;
  border-top:1px solid #e8eaef;
  border-bottom:1px solid #e8eaef;
  padding: 40px 20px 48px;
}
.quote-inner { max-width: 1100px; margin: 0 auto; }
.quote-section h2 {
  margin: 0 0 6px;
  color: var(--brand);
  text-align: center;
}
.quote-lead { text-align: center; color:#586174; margin: 0 0 20px; }
.quote-form {
  max-width: 760px;
  margin: 0 auto;
  background:#fff;
  border:1px solid #e6e9ef;
  border-radius:12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  padding: 18px;
  display: grid; gap: 12px;
}
.quote-form .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cfd6df;
  font-size: 16px; line-height: 1.4;
  background: #fff;
}
.quote-form textarea { min-height: 120px; resize: vertical; }
.quote-submit {
  background: var(--brand); color:#fff; border:0;
  border-radius:10px; padding: 12px 18px; font-weight:700; cursor:pointer;
  min-height: 48px;
}
.quote-submit:hover { background: var(--brand-dark); }
.quote-micro { margin: 6px 0 0; color:#586174; font-size:.95rem; text-align:center; }
.quote-form .hp { position:absolute; left:-9999px; opacity:0; }
.cta-micro {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ===============================
   Who We Work With
   =============================== */
.audience-section {
  background:#fff;
  padding: 80px 20px 40px;
  border-top: 1px solid #e8eaef;
  border-bottom: 1px solid #e8eaef;
}
.audience-inner { max-width: 1100px; margin: 0 auto; }
.audience-section h2 {
  margin: 0 0 6px;
  color: var(--brand);
  text-align: center;
  font-size: 2rem;
}
.audience-lead { text-align: center; color:#586174; margin: 0 0 18px; }
.audience-lead--primary { 
  font-size: 1.1rem; 
  font-weight: 500; 
  margin-bottom: 8px;
  color: #4a5568;
}
.audience-lead--secondary { 
  font-size: 0.95rem; 
  margin-top: 0;
  margin-bottom: 20px;
  color: #718096;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.audience-card {
  background: var(--card-bg);
  border: 1px solid #e6e8eb;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  border-color: #d7dbe0;
}
.audience-card h3 {
  margin: 10px 0 6px;
  color: var(--brand);
  font-size: 1.05rem;
}
.audience-card p {
  margin: 0; color: #555; font-size: .98rem; line-height: 1.5;
}
.ai-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--brand);
  background: #eef3f8;
  border-radius: 8px;
}

/* ===============================
   Service Details (reveal)
   =============================== */
.service-details {
  opacity: 0; 
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
  margin-top: 24px;
  grid-column: 1 / -1; /* Span full width of grid */
  max-height: 0;
  overflow: hidden;
}
.service-details.is-open.sd-reveal {
  opacity: 1; 
  transform: translateY(0);
  max-height: 1000px;
  overflow: visible;
}
.service-details__inner {
  display: flex;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.service-details__inner img {
  width: 400px;
  flex-shrink: 0;
  border-radius: 8px;
}
.service-details__content {
  flex: 1;
  max-width: 550px;
}
.service-details__content ul {
  padding-left: 20px;
}
.service-card.active {
  border: 2px solid var(--brand);
  background: #f0f7ff;
}

.site-main .container > h2 {
  text-align: center;
  margin: 40px 0 20px;
}
.site-main .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
  color: #555;
  line-height: 1.6;
}
.trust-strip {
  background: #f0f4f8;
  padding: 20px 20px 24px;
  text-align: center;
  border-top: 1px solid #e6e9ef;
  border-bottom: 1px solid #e6e9ef;
}
.trust-strip p {
  margin: 0;
  color: #586174;
  font-size: 0.95rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ===============================
   For Engineers Page Styles
   =============================== */
.jobs-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0px 40px 60px;
  background: linear-gradient(135deg, #f8f9fb 0%, #fff 100%);
  border-radius: 0 0 20px 20px;
}

.jobs-header h2 {
  margin: 0 0 24px;
  color: var(--brand);
  font-size: 3rem;
  font-weight: 700;
}

.jobs-header p {
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
}

.jobs-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.jobs-filters select {
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: white;
  font-size: 15px;
  cursor: pointer;
  min-width: 150px;
}

.jobs-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.job-card {
  background: white;
  border: 1px solid #e6e9ef;
  border-radius: 8px;
  padding: 20px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.job-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: var(--brand);
}

.job-card-content {
  flex: 1;
  min-width: 0;
}

.job-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.job-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0;
  flex-shrink: 0;
}

.job-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #666;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.job-meta-item::before {
  content: "•";
  color: var(--brand);
  font-weight: bold;
}

.job-meta-item:first-child::before {
  content: "";
}

.job-actions {
  flex-shrink: 0;
}

.apply-btn {
  background: var(--brand);
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease;
  display: inline-block;
  white-space: nowrap;
}

.apply-btn:hover {
  background: var(--brand-dark);
}

.loading-state {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--brand);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.no-jobs {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e6e9ef;
}

.no-jobs h3 {
  color: var(--brand);
  margin-bottom: 12px;
}

.no-jobs p {
  color: #666;
  margin-bottom: 20px;
}

/* ===============================
   For Engineers - New Sections
   =============================== */

/* Why Submit Section */
.why-submit-section {
  background: #f8f9fb;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.why-submit-section h3 {
  color: var(--brand);
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.why-submit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.why-submit-list li {
  padding-left: 32px;
  position: relative;
  line-height: 1.6;
  color: #333;
}

.why-submit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Resume Submit Section */
.resume-submit-section {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 40px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e6e9ef;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.resume-submit-section h3 {
  color: var(--brand);
  font-size: 1.8rem;
  margin-bottom: 12px;
  text-align: center;
}

.form-intro {
  text-align: center;
  color: #666;
  margin-bottom: 32px;
}

.resume-form {
  display: grid;
  gap: 20px;
}

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

.resume-form input,
.resume-form select,
.resume-form textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease;
  background: white;
}

.resume-form input:focus,
.resume-form select:focus,
.resume-form textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.file-upload-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-upload-label {
  flex: 1;
  background: white;
  color: var(--brand);
  border: 2px solid var(--brand);
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  transition: all 0.2s ease;
}

.file-upload-label:hover {
  background: #f8f9fb;
  border-color: var(--brand-dark);
}

.file-upload-label input[type="file"] {
  display: none;
}

.file-name {
  flex: 1;
  color: #666;
  font-size: 14px;
}

.submit-btn {
  background: var(--brand);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  justify-self: center;
  min-width: 200px;
}

.submit-btn:hover {
  background: var(--brand-dark);
}

.form-note {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: -8px;
}

/* Honeypot */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

/* Looking For Section */
.looking-for-section {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 40px;
}

.looking-for-section h3 {
  color: var(--brand);
  font-size: 1.8rem;
  margin-bottom: 32px;
  text-align: center;
}

.role-descriptions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 32px;
}

.role-desc h4 {
  color: var(--brand);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.role-desc p {
  line-height: 1.7;
  color: #333;
}

.role-context {
  text-align: center;
  padding: 20px;
  background: #f8f9fb;
  border-radius: 8px;
  color: #555;
  font-weight: 500;
  line-height: 1.8;
}

/* Direct Placement Section */
.direct-placement-section {
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 40px 40px 30px;
  background: #f8f9fb;
  border-radius: 12px;
  text-align: center;
}

.direct-placement-section h3 {
  color: var(--brand);
  font-size: 1.8rem;
  margin-bottom: 0;
}

.direct-placement-section p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 24px;
}

.direct-placement-benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}

.direct-placement-benefits li {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  white-space: nowrap;
}

.direct-placement-benefits li::before {
  content: "✓";
  color: var(--brand);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Process Section */
.process-section {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 40px;
  background: #f8f9fb;
  border-radius: 12px;
}

.process-section h3 {
  color: var(--brand);
  font-size: 1.8rem;
  margin-bottom: 40px;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

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

.step-number {
  width: 50px;
  height: 50px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 16px;
}

.step-content h4 {
  color: var(--brand);
  font-size: 1.1rem;
  margin-bottom: 12px;
  min-height: 5em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.step-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.process-note {
  text-align: center;
  color: var(--brand);
  font-weight: 800;
  font-size: 2rem;
  margin-top: 60px;
}

.error-state {
  text-align: center;
  padding: 60px 20px;
  background: #fff5f5;
  border: 1px solid #ffcccb;
  border-radius: 12px;
  color: #c33;
}

/* ===============================
   HAMBURGER MENU STYLES
   =============================== */

/* Hamburger button - hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger animation when active */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* ===============================
   MOBILE RESPONSIVE STYLES
   =============================== */

/* Tablet breakpoint */
@media (max-width: 1000px) {
  .audience-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px;
  }
  
  .hero__image {
    order: -1;
    min-height: 320px;
  }
}

/* Mobile breakpoint */

/* ===============================
   Tablet Styles (769px - 1024px)
   =============================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
  }
}

/* Tablet breakpoint for process steps */
@media (max-width: 1024px) and (min-width: 769px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --banner-h: 0px; /* Hide banner on mobile */
    --header-h: 60px;
    --nav-h: 0;
  }
  
  /* Hide top banner on mobile */
  .top-banner {
    display: none;
  }
  
  /* Mobile: Move Tawk higher above social bar */
  iframe[title*="chat"],
  iframe[src*="tawk"],
  .tawk-min-container,
  #tawk-bubble-container,
  .tawk-button-circle,
  div[class*="tawk"],
  .widget-visible iframe {
    bottom: 65px !important;
    margin-bottom: 0 !important;
  }
  
  /* Adjust body padding for mobile - only header */
  body {
    padding-top: var(--header-h);
  }
  
  /* Header position updated for mobile (no banner) */
  .site-header {
    top: 0;
  }
  
  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }
  
  /* Header Mobile */
  .logo {
    height: 50px;
    margin-left: 10px;
  }
  
  /* Mobile Navigation - Hidden by default, slides in from right */
  .nav-bar {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    max-height: calc(100vh - var(--header-h));
    
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    gap: 20px;
    
    background: linear-gradient(to bottom, var(--brand) 0%, var(--brand-dark) 100%);
    
    /* Hidden by default - slide from right */
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
    
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1020;
  }
  
  /* Show navigation when open */
  .nav-bar.nav-open {
    transform: translateX(0);
    visibility: visible;
  }
  
  /* Navigation links in mobile menu */
  .nav-bar a {
    font-size: 1.3rem;
    padding: 14px 24px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    border-radius: 8px;
    transition: background 0.2s ease;
    white-space: nowrap;
  }
  
  .nav-bar a:hover,
  .nav-bar a:focus {
    background: rgba(255, 255, 255, 0.15);
  }
  
  .nav-bar a::after {
    display: none; /* Remove underline animation on mobile */
  }
  
  /* Backdrop overlay when menu is open */
  .nav-bar.nav-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
    animation: fadeIn 0.3s ease;
  }
  
  /* Show floating phone button on mobile */
  .floating-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .floating-phone:hover,
  .floating-phone:active {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: var(--brand-dark);
  }
  
  .floating-phone svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
  }
  
  /* Typography Mobile */
  h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  .services h2,
  .why-choose-us h2,
  .audience-section h2,
  .quote-section h2 {
    font-size: 1.6rem;
  }
  
  /* Page Spacing Mobile */
  .page {
    padding: 0 16px;
    margin: 24px auto;
  }
  
  /* Hero Mobile */
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 24px;
  }
  
  .hero__copy h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .hero__copy p {
    font-size: 0.95rem;
  }
  
  .hero__image {
    min-height: 240px;
    order: -1;
  }
  
  .trust-list--compact li {
    font-size: 0.9rem;
    padding-left: 24px;
  }
  
  .trust-list--compact li::before {
    width: 16px;
    height: 16px;
  }
  
  /* Services Mobile */
  .services {
    padding: 32px 16px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }
  
  .service-card {
    padding: 18px;
  }
  
  .service-details__inner {
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
  }
  
  .service-details__inner img {
    width: 200px;
    margin: 0 auto;
  }
  
  .service-details__content {
    order: 1;
    max-width: 100%;
  }
  
  /* Benefits Mobile */
  .why-choose-us {
    padding: 32px 16px;
  }
  
  .benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .benefit-icon {
    display: none; /* Hide icons on mobile */
  }
  
  /* Quote Form Mobile */
  .quote-section {
    padding: 32px 16px;
  }
  
  .quote-form {
    padding: 16px;
  }
  
  .quote-form .row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 16px; /* Prevents iOS zoom */
  }
  
  /* Audience Section Mobile */
  .audience-section {
    padding: 32px 16px;
  }
  
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  /* Contact Form Mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }
  
  .contact-info-inline {
    grid-column: 1;
    justify-self: start;
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
    order: -1; /* Move contact info above form */
  }
  
  #contactForm {
    grid-column: 1;
    max-width: 100%;
    padding: 20px;
  }
  
  .contact-spacer {
    display: none;
  }
  
  /* Get Started Mobile */
  #get-started .content {
    padding: 60px 20px;
  }
  
  #get-started h2 {
    font-size: 1.6rem;
  }
  
  #get-started p {
    font-size: 1rem;
  }
  
  /* Buttons Mobile */
  .cta-button,
  .quote-submit,
  .cta-link-button,
  #get-started .cta,
  #contactForm button {
    padding: 14px 28px;
    font-size: 1rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Team Mobile */
  .team {
    flex-direction: column;
    align-items: center;
  }
  
  .team-member {
    flex: 1 1 100%;
    max-width: 400px;
  }
  
  /* Info Grid Mobile */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Testimonials Mobile */
  .t-carousel {
    padding: 12px 40px 56px;
  }
  
  .t-quote {
    font-size: 1rem;
  }
  
  .t-nav {
    width: 44px;
    height: 44px;
    top: auto;
    bottom: 8px;
    transform: none;
  }
  
  .t-prev {
    left: 8px;
  }
  
  .t-next {
    right: 8px;
  }
  
  /* Footer Mobile */
  footer {
    padding: 20px 10px;
  }
  
  footer a {
    display: inline-block;
    margin: 6px 8px;
    font-size: 0.9rem;
  }
  
  /* For Engineers Page Mobile */
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  
  .job-card-header {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
  }
  
  .job-meta {
    flex-direction: column;
    gap: 4px;
  }
  
  .job-actions {
    width: 100%;
  }
  
  .apply-btn {
    width: 100%;
    text-align: center;
  }
  
  /* New For Engineers Sections Mobile */
  .jobs-header {
    padding: 50px 20px 40px;
    margin-bottom: 32px;
  }
  
  .jobs-header h2 {
    font-size: 2rem;
  }
  
  .jobs-header p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .why-submit-section {
    padding: 24px 20px;
  }
  
  .resume-submit-section {
    padding: 24px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .file-upload-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  
  .file-name {
    text-align: center;
    padding: 8px;
  }
  
  .role-descriptions {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .looking-for-section {
    padding: 24px 20px;
  }
  
  .process-section {
    padding: 24px 20px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  /* Contact Page Mobile */
  .contact-three-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .contact-header {
    flex-direction: column;
    gap: 12px;
  }
  
  .contact-box-engineers,
  .contact-box-clients {
    min-height: auto;
  }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
  .hero__copy h1 {
    font-size: 1.4rem;
  }
  
  .services h2,
  .why-choose-us h2,
  .audience-section h2,
  .quote-section h2 {
    font-size: 1.4rem;
  }
  
  #get-started h2 {
    font-size: 1.4rem;
  }
  
  .cta-button,
  .quote-submit {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
  
  .quote-form {
    padding: 12px;
  }
  
  #contactForm {
    padding: 16px;
  }
}

/* Landscape mobile fix */
@media (max-width: 900px) and (orientation: landscape) {
  .hero__image {
    min-height: 200px;
  }
  
  #get-started .content {
    padding: 40px 20px;
  }
}

/* ===============================
   Privacy Policy Page
   =============================== */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.policy-container h1 {
  font-size: 2rem;
  color: var(--brand);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.policy-container .effective-date {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}

.policy-container h2 {
  font-size: 1.3rem;
  color: var(--brand);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.policy-container p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.policy-container ul {
  margin: 1rem 0 1rem 1.5rem;
  line-height: 1.7;
}

.policy-container li {
  margin-bottom: 0.5rem;
}

.policy-container strong {
  color: var(--brand);
}

.policy-container a {
  color: var(--brand-light);
  text-decoration: none;
}

.policy-container a:hover {
  text-decoration: underline;
}

.policy-container .contact-box {
  background: var(--card-bg);
  border: 1px solid #ddd;
  padding: 1.5rem;
  margin-top: 1rem;
  border-radius: 4px;
  box-shadow: var(--shadow-1);
}

.policy-container .contact-box p {
  margin-bottom: 0.4rem;
}

/* ===============================
   Privacy Acknowledgment (Resume Form)
   =============================== */
.privacy-acknowledgment {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.privacy-acknowledgment a {
  color: var(--brand-light);
  text-decoration: underline;
}

.privacy-acknowledgment a:hover {
  color: var(--brand);
}

/* Privacy checkbox option */
.privacy-checkbox {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.privacy-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}

.privacy-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--brand);
}

.privacy-checkbox a {
  color: var(--brand-light);
  text-decoration: underline;
}

.privacy-checkbox a:hover {
  color: var(--brand);
}

/* Privacy Policy Mobile */
@media (max-width: 768px) {
  .policy-container {
    padding: 24px 16px 60px;
  }
  
  .policy-container h1 {
    font-size: 1.6rem;
  }
  
  .policy-container h2 {
    font-size: 1.15rem;
  }
}

/* Animation keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .site-header, 
  .nav-bar { 
    animation: none !important; 
  }
  
  .t-track, 
  #get-started .bg, 
  .reveal,
  .service-details,
  .hamburger-line,
  .nav-bar { 
    transition: none !important; 
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
  
  @keyframes fadeIn {
    from, to { opacity: 1; }
  }
}