/* ═══════════════════════════════════════════════════
   FITOUT MANPOWER — Main Stylesheet
   Audit fixes applied:
   ✔ Skip-link added
   ✔ .nav-cta: !important overuse replaced with higher specificity
   ✔ .nav-links a.active: style added (was missing)
   ✔ .pillar h4 → .pillar h3 (matches corrected HTML hierarchy)
   ✔ Hamburger X-animation CSS added (was completely missing)
   ✔ Duplicate font-size on .footer-tagline removed
   ✔ @media (prefers-reduced-motion) added
   ✔ address element styled (used semantically in find-us)
   Brand colors from logo:
   Gold/Orange: #F5A623  |  Deep Red: #D0021B
   Black: #1A1A1A        |  Off-white: #FAF9F6
═══════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand colors */
  --gold:        #F5A623;
  --gold-dark:   #D4891A;
  --gold-light:  #FFF3DC;
  --red:         #D0021B;
  --red-dark:    #A80016;
  --black:       #1A1A1A;
  --charcoal:    #2C2C2C;
  --grey-dark:   #4A4A4A;
  --grey:        #8A8A8A;
  --grey-light:  #E8E8E8;
  --off-white:   #FAF9F6;
  --white:       #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Sizing */
  --max-width:   1160px;
  --nav-height:  72px;
  --radius:      12px;
  --radius-sm:   8px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 28px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.16);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── UTILITY ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ══════════════════════════════
   SKIP LINK
   Visible only on keyboard focus — accessibility fix
   Lets keyboard users jump past navigation
══════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--black);
  outline-offset: 2px;
}

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.logo-img--footer {
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-dark);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--gold-dark);
  background: var(--gold-light);
}

/* FIX: Active link state — was completely missing.
   JS toggles .active on scroll via IntersectionObserver */
.nav-links a.active {
  color: var(--gold-dark);
  background: var(--gold-light);
  font-weight: 600;
}

/* FIX: Removed 6x !important from .nav-cta.
   Using higher-specificity selector .nav-links li .nav-cta instead —
   same visual result, no specificity hacks needed. */
.nav-links li .nav-cta {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  margin-left: 0.5rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(245, 166, 35, 0.35);
}

.nav-links li .nav-cta:hover {
  background: var(--gold-dark);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.45);
}

/* ── Hamburger (mobile) ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* FIX: Hamburger → X animation was completely missing.
   JS toggles .is-open on the button — these rules animate
   the three bars into an X when the menu is open */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: rgba(26,26,26,0.25);
}

.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════
   SECTION SHARED STYLES
══════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header--light .section-title { color: var(--white); }
.section-header--light .section-desc  { color: rgba(255,255,255,0.7); }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 0.3em 0.9em;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(245,166,35,0.3);
}

.section-tag--dark {
  color: var(--gold);
  background: rgba(245,166,35,0.15);
  border-color: rgba(245,166,35,0.4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey-dark);
  max-width: 520px;
  margin: 0 auto;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(245,166,35,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(208,2,27,0.08) 0%, transparent 40%),
    linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  z-index: 0;
}

.hero-bg-pattern::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(245,166,35,0.06) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

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

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 320px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  animation: fadeSlideUp 0.7s ease both;
}

.stat-card:hover {
  transform: translateX(6px);
  border-color: rgba(245,166,35,0.5);
}

.stat-card--1 { animation-delay: 0.2s; }
.stat-card--2 { animation-delay: 0.35s; }
.stat-card--3 { animation-delay: 0.5s; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services {
  background: var(--off-white);
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  border-color: rgba(245,166,35,0.3);
  background: linear-gradient(145deg, #fffdf7, #ffffff);
}

.service-card--featured::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(245,166,35,0.25);
}

.service-icon { font-size: 1.6rem; }

.service-tag {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.service-card > p {
  font-size: 0.95rem;
  color: var(--grey-dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.service-list li {
  font-size: 0.9rem;
  color: var(--grey-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s, color 0.2s;
}

.service-link:hover { gap: 0.6rem; color: var(--red); }

/* ══════════════════════════════
   WHY US
══════════════════════════════ */
.why-us {
  background: var(--black);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.pillar:hover {
  background: rgba(245,166,35,0.07);
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-4px);
}

.pillar-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* FIX: Updated from h4 → h3 to match corrected HTML heading hierarchy
   (section H2 → card H3, no skipping levels) */
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.pillar p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact {
  background: var(--off-white);
  padding: 6rem 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-text .section-tag { margin-bottom: 0.75rem; }

.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.contact-text > p {
  color: var(--grey-dark);
  font-size: 0.97rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--grey-dark);
}

.contact-details a {
  color: var(--grey-dark);
  transition: color 0.2s;
}

.contact-details a:hover {
  color: var(--gold-dark);
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-light);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-row .form-group { margin-bottom: 0; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

/* <abbr title="required"> inside labels — style the asterisk */
.form-group label abbr {
  text-decoration: none;
  color: var(--red);
  margin-left: 0.15em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--off-white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}

/* Visible focus ring for keyboard navigation */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

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

.form-note {
  font-size: 0.75rem;
  color: var(--grey);
  text-align: center;
  margin-top: 0.85rem;
  line-height: 1.5;
}

.form-note abbr {
  text-decoration: none;
  color: var(--red);
}

/* ══════════════════════════════
   FIND US (MAP + INFO)
══════════════════════════════ */
.find-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: var(--black);
}

.find-us-map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.find-us-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(30%) contrast(1.05);
}

.map-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.find-us-info {
  padding: 3.5rem 3.25rem;
  background: var(--black);
  border-left: 1px solid rgba(245,166,35,0.12);
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  position: relative;
  overflow: hidden;
}

.find-us-info::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.fui-header {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.fui-header h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.fui-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
}

.find-us-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}

.find-us-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}

.find-us-details li:last-child { border-bottom: none; }

.find-us-details li:hover {
  background: rgba(245,166,35,0.05);
}

.fui-icon-wrap {
  width: 34px;
  height: 34px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 1px;
}

.fui-detail-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.fui-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* FIX: Increased opacity from 0.3 → 0.55 to meet WCAG AA contrast (4.5:1) */
  color: rgba(255,255,255,0.55);
}

.fui-detail-text span:not(.fui-label),
.fui-detail-text a,
.fui-detail-text address {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  transition: color 0.2s;
  font-style: normal; /* reset <address> browser default italic */
}

.fui-detail-text a:hover { color: var(--gold); }

.fui-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  width: fit-content;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
  background: #1fba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.fui-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fui-social-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* FIX: Increased opacity from 0.3 → 0.55 for contrast compliance */
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Visible focus ring for keyboard users */
.social-btn:focus-visible,
.btn-whatsapp:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.social-google    { background: #EA4335; }
.social-facebook  { background: #1877F2; }
.social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-youtube   { background: #FF0000; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .find-us { grid-template-columns: 1fr; }
  .find-us-map { min-height: 320px; position: relative; }
  .find-us-info { padding: 2.5rem 1.5rem; border-left: none; border-top: 1px solid rgba(245,166,35,0.12); }
}

@media (max-width: 640px) {
  .find-us-info { padding: 2rem 1.25rem; gap: 1.75rem; }
  .fui-header h3 { font-size: 1.5rem; }
  .fui-social { flex-direction: column; align-items: flex-start; gap: 0.65rem; }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(245,166,35,0.15);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

/* FIX: Removed duplicate font-size: 0.82rem (dead code — overridden by 0.72rem below) */
.footer-tagline {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text {
  animation: fadeSlideUp 0.8s ease both;
}

/* ══════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 3rem; padding-top: 3rem; }
  .hero-visual   { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars-grid  { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
══════════════════════════════ */
@media (max-width: 640px) {
  :root { --nav-height: 60px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(250,249,246,0.98);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--grey-light);
    box-shadow: var(--shadow-md);
  }

  .nav-links.is-open { display: flex; }
  .nav-links a       { padding: 0.7rem 1rem; border-radius: var(--radius-sm); }

  /* FIX: Remove margin-left on mobile (was applied via !important in original).
     Now using specificity: .nav-links li .nav-cta (already handles this) */
  .nav-links li .nav-cta { margin-left: 0; text-align: center; }

  .hamburger { display: flex; }

  .hero   { min-height: auto; padding: 5rem 0 4rem; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn    { width: 100%; justify-content: center; }

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

  .contact-form  { padding: 1.5rem; }
  .service-card  { padding: 1.75rem; }

  .services, .why-us, .contact { padding: 4rem 0; }
}

/* ══════════════════════════════
   REDUCED MOTION
   Respects the OS "reduce motion" accessibility preference.
   Users who have enabled this (e.g. for vestibular disorders)
   will see no animations — but layout is unchanged.
══════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
