/* ═══════════════════════════════════════════════════════════════
   XEN HRA — Shared Stylesheet
   Extracted from original single-page site. Design, colors, fonts,
   spacing and animations are unchanged.
═══════════════════════════════════════════════════════════════ */

/* ── RESET & VARIABLES ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:   #0a1628;
  --navy2:  #122040;
  --gold:   #c9a84c;
  --gold2:  #e8c96a;
  --cream:  #f9f5ee;
  --white:  #ffffff;
  --gray:   #6b7280;
  --lgray:  #f3f0ea;
  --border: rgba(201,168,76,0.25);
  --shadow: 0 8px 40px rgba(10,22,40,0.12);
  --ff-head: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', sans-serif;
  --nav-h:  76px;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── UTILITY ───────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--navy);
}
.section-title.light { color: var(--white); }
.lead {
  font-size: 1.05rem; color: var(--gray);
  max-width: 640px; margin-top: 14px;
}
.lead.light { color: rgba(255,255,255,0.75); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 4px;
  font-family: var(--ff-body); font-size: 14px;
  font-weight: 600; letter-spacing: 0.5px;
  cursor: pointer; border: none; transition: all .25s;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.divider { width: 56px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2)); border-radius: 2px; margin: 20px 0; }
.divider.center { margin: 20px auto; }

/* ── NAV ───────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
#navbar.scrolled { background: rgba(10,22,40,1); }
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 46px; height: auto; }
.nav-logo-text { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.5px; color: rgba(255,255,255,0.82); transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--gold); transition: width .25s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; width: 100%; background: var(--navy); border-top: 1px solid var(--border); z-index: 999; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a { display: block; padding: 16px 24px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.06); transition: color .2s, background .2s; }
.mobile-menu ul li a:hover { color: var(--gold); background: rgba(201,168,76,0.06); }

/* ── HERO ──────────────────────────────────────────────────────── */
#home {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #1a3058 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
#home::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(201,168,76,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); border-radius: 50px; padding: 6px 16px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }
.hero-title { font-family: var(--ff-head); font-size: clamp(2.8rem, 5.5vw, 4.4rem); font-weight: 700; line-height: 1.1; color: var(--white); }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin: 20px 0 36px; max-width: 480px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 52px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-num { font-family: var(--ff-head); font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }
.hero-image-wrap { position: relative; border-radius: 12px; overflow: hidden; }
.hero-image-wrap img { width: 100%; height: 520px; object-fit: cover; border-radius: 12px; }
.hero-image-wrap::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent); z-index: 1; border-radius: 12px; }
.hero-testimonial-badge { position: absolute; bottom: 24px; left: -24px; background: var(--white); border-radius: 10px; padding: 16px 20px; z-index: 2; box-shadow: 0 12px 40px rgba(10,22,40,0.2); display: flex; align-items: center; gap: 12px; }
.testi-icon-group { display: flex; align-items: center; }
.testi-icon { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold2)); display: flex; align-items: center; justify-content: center; margin-right: -8px; border: 2px solid var(--white); }
.testi-icon svg { width: 18px; height: 18px; color: var(--navy); }
.testi-badge-text { font-size: 13px; font-weight: 600; color: var(--navy); }
.testi-badge-sub { font-size: 11px; color: var(--gray); }
.hero-deco { position: absolute; top: -20px; right: -20px; width: 120px; height: 120px; border: 2px solid rgba(201,168,76,0.3); border-radius: 8px; z-index: 0; }

/* ── SEO KEYWORD STRIP ─────────────────────────────────────────── */
.keyword-strip {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.keyword-strip-inner {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 24px;
}
.keyword-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
}
.keyword-pill::before { content: '✦'; color: var(--gold); font-size: 9px; }

/* ── ABOUT ─────────────────────────────────────────────────────── */
#about { padding: 110px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow); }
.about-accent { position: absolute; bottom: -24px; right: -24px; width: 200px; height: 200px; background: linear-gradient(135deg, var(--gold), var(--gold2)); border-radius: 10px; z-index: -1; opacity: 0.2; }
.quote-block { background: var(--navy); color: var(--white); border-left: 4px solid var(--gold); border-radius: 6px; padding: 28px 32px; margin: 32px 0; font-family: var(--ff-head); font-size: 1.25rem; font-style: italic; line-height: 1.5; }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.mvv-card { background: var(--white); border-radius: 10px; padding: 32px 28px; border: 1px solid var(--border); transition: box-shadow .25s, transform .25s; }
.mvv-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.mvv-icon { width: 48px; height: 48px; border-radius: 10px; background: linear-gradient(135deg, var(--gold), var(--gold2)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; }
.mvv-title { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.mvv-text { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── TEAM FEATURES ─────────────────────────────────────────────── */
.features-band { background: var(--navy); padding: 72px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.feat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.18); border-radius: 10px; padding: 28px; transition: background .25s, border-color .25s; }
.feat-card:hover { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.45); }
.feat-num { font-family: var(--ff-head); font-size: 2.4rem; font-weight: 700; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 12px; }
.feat-title { font-family: var(--ff-head); font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.feat-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── CAREER ────────────────────────────────────────────────────── */
#career { padding: 110px 0; background: var(--white); }
.career-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.career-img img { width: 100%; height: 460px; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow); }
.offer-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 50px; border: 1.5px solid var(--border); font-size: 13px; font-weight: 500; color: var(--navy); background: var(--cream); transition: all .2s; }
.pill:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.pill svg { width: 15px; height: 15px; color: var(--gold); }
.perks-list { margin-top: 28px; }
.perk-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--lgray); }
.perk-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(201,168,76,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.perk-text { font-size: 14px; color: var(--navy); font-weight: 500; }
.perk-sub { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ── SERVICES ──────────────────────────────────────────────────── */
#services { padding: 110px 0; background: var(--cream); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .lead { margin: 14px auto 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; }
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(10,22,40,0.15); }
.svc-img { height: 210px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-body { padding: 28px; }
.svc-icon-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.svc-icon { width: 42px; height: 42px; border-radius: 8px; background: linear-gradient(135deg, var(--gold), var(--gold2)); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.svc-name { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.svc-desc { font-size: 13.5px; color: var(--gray); line-height: 1.65; }

/* Payroll section */
.payroll-section { background: var(--navy); border-radius: 14px; padding: 48px; margin-top: 60px; }
.payroll-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.payroll-list { margin-top: 20px; }
.payroll-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.payroll-check { width: 26px; height: 26px; flex-shrink: 0; background: rgba(201,168,76,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 12px; margin-top: 2px; }
.payroll-title { font-weight: 600; color: var(--white); margin-bottom: 3px; font-size: 14px; }
.payroll-sub { font-size: 12.5px; color: rgba(255,255,255,0.5); }
.payroll-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.payroll-stat-card { background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 10px; padding: 24px; text-align: center; }
.payroll-stat-num { font-family: var(--ff-head); font-size: 2.4rem; font-weight: 700; color: var(--gold); }
.payroll-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* FAQ */
.faq-wrap { margin-top: 70px; }
.faq-title { font-family: var(--ff-head); font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.faq-quote { font-style: italic; color: var(--gold); margin-bottom: 32px; font-family: var(--ff-head); font-size: 1.1rem; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; font-family: var(--ff-body); font-size: 15px; font-weight: 600; color: var(--navy); text-align: left; transition: color .2s; }
.faq-q:hover { color: var(--gold); }
.faq-arrow { width: 30px; height: 30px; flex-shrink: 0; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .3s, background .2s; }
.faq-q.open .faq-arrow { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); }
.faq-q.open .faq-arrow svg { color: var(--navy); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; font-size: 14px; color: var(--gray); line-height: 1.7; }
.faq-a.open { max-height: 300px; padding-bottom: 20px; }

/* ── TESTIMONIALS ──────────────────────────────────────────────── */
.testi-band { background: var(--navy); padding: 90px 0; }
.testi-header { text-align: center; margin-bottom: 54px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2); border-radius: 12px; padding: 32px; }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 18px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; font-style: italic; }
.testi-footer { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.testi-avatar-icon { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold2)); display: flex; align-items: center; justify-content: center; border: 2px solid var(--gold); flex-shrink: 0; }
.testi-avatar-icon svg { width: 22px; height: 22px; color: var(--navy); }
.testi-name { font-weight: 600; color: var(--white); font-size: 14px; }
.testi-role { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── WHY CHOOSE US ─────────────────────────────────────────────── */
.why-band { padding: 90px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-img img { width: 100%; height: 420px; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow); }
.why-list { margin-top: 28px; }
.why-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--lgray); }
.why-check { width: 28px; height: 28px; flex-shrink: 0; background: rgba(201,168,76,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gold); margin-top: 2px; }
.why-item-title { font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-item-text { font-size: 13.5px; color: var(--gray); }

/* ── GMB MAP SECTION ───────────────────────────────────────────── */
.gmb-section { background: var(--cream); padding: 80px 0; }
.gmb-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }
.gmb-info h2 { font-family: var(--ff-head); font-size: 2.2rem; font-weight: 700; color: var(--navy); }
.gmb-info p { font-size: 14.5px; color: var(--gray); line-height: 1.7; margin: 16px 0 28px; }
.gmb-details-list { list-style: none; }
.gmb-details-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--navy); }
.gmb-details-list li span:first-child { color: var(--gold); font-size: 18px; flex-shrink: 0; }
.gmb-map { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.gmb-map iframe { width: 100%; height: 380px; border: none; display: block; }

/* ── CTA BAND ──────────────────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--gold) 0%, #b8922e 100%); padding: 72px 0; text-align: center; }
.cta-band h2 { font-family: var(--ff-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.cta-band p { color: rgba(10,22,40,0.7); font-size: 1.05rem; margin-bottom: 32px; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); }

/* ── CONTACT ───────────────────────────────────────────────────── */
#contact { padding: 110px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info h3 { font-family: var(--ff-head); font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.contact-info p { font-size: 14px; color: var(--gray); margin-bottom: 36px; }
.info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.info-icon { width: 48px; height: 48px; flex-shrink: 0; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.info-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.info-value { font-size: 14.5px; color: var(--navy); font-weight: 500; }
.contact-form { background: var(--white); border-radius: 14px; padding: 44px; box-shadow: var(--shadow); }
.form-title { font-family: var(--ff-head); font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 16px; border: 1.5px solid #e2ddd5; border-radius: 6px; font-family: var(--ff-body); font-size: 14px; color: var(--navy); background: var(--cream); transition: border-color .2s, box-shadow .2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 16px; }

/* ── FOOTER ────────────────────────────────────────────────────── */
footer { background: var(--navy); border-top: 1px solid rgba(201,168,76,0.15); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { width: 42px; }
.footer-brand-name { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.footer-brand-name span { color: var(--gold); }
.footer-about { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 10px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.footer-contact-item span:first-child { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-socials { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255,255,255,0.5); transition: all .2s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
/* SEO footer text */
.footer-seo-text { border-top: 1px solid rgba(255,255,255,0.05); padding: 24px 0; font-size: 12px; color: rgba(255,255,255,0.25); line-height: 1.8; text-align: center; }

/* ── BACK TO TOP ───────────────────────────────────────────────── */
#backTop { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--navy); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; z-index: 900; opacity: 0; transform: translateY(12px); transition: opacity .3s, transform .3s; box-shadow: 0 4px 16px rgba(201,168,76,0.4); }
#backTop.visible { opacity: 1; transform: translateY(0); }
#backTop:hover { background: var(--gold2); }

/* ── ANIMATIONS ────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .payroll-grid { grid-template-columns: 1fr; }
  .gmb-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* Stack all two-column grids */
  .hero-grid, .about-grid, .career-grid,
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  /* Hide hero image on mobile — shows text only */
  .hero-image-wrap { display: none; }
  /* Reduce heavy section padding for mobile */
  #about, #career, #services, #contact { padding: 64px 0; }
  .testi-band, .why-band { padding: 56px 0; }
  .gmb-section { padding: 56px 0; }
  /* Hero grid padding */
  .hero-grid { padding: 48px 0 40px; }
  /* Single column grids */
  .mvv-grid { grid-template-columns: 1fr; }
  .services-grid, .features-grid, .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  /* Hero stats: wrap into 2×2 grid */
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
  .payroll-stats { grid-template-columns: 1fr 1fr; }
  .keyword-strip-inner { gap: 6px 16px; }
  /* Quote block horizontal padding */
  .quote-block { padding: 20px 20px; font-size: 1.05rem; }
  /* GMB grid single column */
  .gmb-grid { grid-template-columns: 1fr; }
  /* Map reasonable height on mobile */
  .gmb-map iframe { height: 260px; }
  /* Payroll grid already handled at 1024px; ensure stats are 2-col */
  .payroll-grid { grid-template-columns: 1fr; }
  /* Contact form padding */
  .contact-form { padding: 28px 20px; }
  /* Payroll section */
  .payroll-section { padding: 32px 20px; border-radius: 10px; }
  /* Hero testimonial badge — hide on mobile, it overflows */
  .hero-testimonial-badge { display: none; }
  /* Staffing grid 1 col */
  .staffing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .btn { padding: 12px 22px; font-size: 13px; }
  /* Tighter container padding on very small screens */
  .container { padding: 0 16px; }
  /* Hero title size floor */
  .hero-title { font-size: 2.2rem; }
  /* Section titles */
  .section-title { font-size: 1.8rem; }
  /* Stats into single column on very small phones */
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .payroll-stats { grid-template-columns: 1fr 1fr; }
  /* MVP cards — make sure padding doesn't squeeze */
  .mvv-card { padding: 24px 20px; }
  /* Service card body */
  .svc-body { padding: 20px; }
  /* Testi card padding */
  .testi-card { padding: 22px 18px; }
  /* Footer grid already 1-col, reduce gap */
  .footer-grid { gap: 28px; }
  /* CTA band padding */
  .cta-band { padding: 48px 0; }
  /* Back-to-top button positioning */
  #backTop { bottom: 20px; right: 16px; width: 40px; height: 40px; }
  /* Pill wrap on career section */
  .offer-pills { gap: 8px; }
  .pill { padding: 8px 14px; font-size: 12px; }
}

/* ── PAGE HERO (non-home pages) ───────────────────────────────────
   Used on About / Career / Services / Contact for a slim intro band
   instead of the full-height homepage hero, since their content now
   lives on standalone pages. Same navy gradient + gold accents. */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #1a3058 100%);
  padding: calc(var(--nav-h) + 64px) 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-title { font-family: var(--ff-head); font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 700; color: var(--white); }
.page-hero-title em { font-style: normal; color: var(--gold); }
.page-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.5px; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.page-breadcrumb a { color: rgba(255,255,255,0.55); transition: color .2s; }
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb span.sep { color: rgba(255,255,255,0.3); }
.page-breadcrumb span.current { color: var(--gold); }
@media (max-width: 768px) {
  .page-hero { padding: calc(var(--nav-h) + 40px) 0 40px; }
}
