/* ZK Manpower Services — Premium Design System */

:root {
  --navy: #082B5C;
  --navy-dark: #041B3D;
  --blue: #0B4EA2;
  --gold: #D4A63F;
  --gold-dark: #B88A2E;
  --text: #101828;
  --text-muted: #475467;
  --bg: #F6F8FB;
  --white: #FFFFFF;
  --border: #E4E7EC;
  --whatsapp: #25D366;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(8, 43, 92, 0.08);
  --shadow-lg: 0 16px 40px rgba(8, 43, 92, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --header-top: 40px;
  --header-main: 80px;
  --font: 'Plus Jakarta Sans', 'Manrope', 'Inter', sans-serif;
  --container: 1200px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: var(--space-2); color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.section { padding: var(--space-10) 0; }
.section-bg { background: var(--bg); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.8); }

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.section-intro {
  max-width: 640px;
  margin-bottom: var(--space-6);
}

.section-intro.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover { filter: brightness(0.95); color: var(--white); }

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* ========== HEADER ========== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  height: var(--header-top);
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold); }

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-main {
  height: var(--header-main);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.logo img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { position: relative; }

.main-nav > a,
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius);
}

.main-nav > a:hover,
.nav-parent:hover,
.main-nav > a.active,
.nav-parent.active {
  color: var(--blue);
  background: var(--bg);
}

.nav-parent::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 320px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 20;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Mobile drawer */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 27, 61, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 1100;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 92vw);
  height: 100%;
  background: var(--navy-dark);
  color: var(--white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  padding: var(--space-3);
  overflow-y: auto;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.mobile-nav-head img {
  height: 42px;
  width: auto;
  background: var(--white);
  padding: 6px 10px;
  border-radius: 6px;
  filter: none;
}
.mobile-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-links a,
.mobile-drop-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 600;
  color: var(--white);
  width: 100%;
  background: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
}

.mobile-sub {
  display: none;
  padding: 0 0 8px 12px;
}

.mobile-sub.open { display: block; }
.mobile-sub a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  border: none;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(4,27,61,0.94) 0%, rgba(4,27,61,0.78) 42%, rgba(4,27,61,0.45) 72%, rgba(4,27,61,0.28) 100%),
    url('../images/hero-manpower-bg.webp') right center / cover no-repeat;
  color: var(--white);
  padding: var(--space-8) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-6);
  align-items: center;
  width: 100%;
}

.hero h1 { color: var(--white); margin-bottom: var(--space-2); max-width: 16ch; }
.hero .lead {
  color: rgba(255,255,255,0.88);
  font-size: 1.0625rem;
  max-width: 48ch;
  margin-bottom: var(--space-4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hero-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.hero-form h3 {
  margin-bottom: 4px;
  font-size: 1.25rem;
}

.hero-form > p {
  font-size: 0.875rem;
  margin-bottom: var(--space-3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.form-group {
  margin-bottom: var(--space-2);
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: 0.9375rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 78, 162, 0.12);
}

.form-group textarea { min-height: 90px; resize: vertical; }
.form-group.full { grid-column: 1 / -1; }

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9375rem;
}

.trust-strip-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.125rem;
}

/* Split about */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.split-media {
  position: relative;
  padding-bottom: 28px; /* room for overlap image past main image */
}

.split-media .main-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.split-media .overlap-img {
  position: absolute;
  width: 48%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  right: 0;
  bottom: 0;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: var(--space-3) 0 var(--space-4);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9375rem;
}

.check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
}

/* Counters */
.counters {
  padding: var(--space-8) 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  text-align: center;
}

.counter-item .num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
}

.counter-item .label {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.9375rem;
}

.placeholder-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: var(--space-3);
  text-align: center;
}

/* Services grid cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 166, 63, 0.45);
}

.service-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  background: var(--bg);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-media img { transform: scale(1.06); }

.service-card-body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.35;
}

.service-card p {
  font-size: 0.875rem;
  margin-bottom: var(--space-2);
  flex: 1;
}

.service-card .link-more { margin-top: auto; }

.services-grid-foot {
  margin-top: var(--space-5);
  text-align: center;
}

.link-more {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.9rem;
}
.link-more:hover { color: var(--gold); }

/* Compact service / industry cards */
.service-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.service-slide {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  background: var(--white);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-slide:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-slide .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
  font-size: 1.25rem;
  font-weight: 800;
}

.service-slide h3 { margin-bottom: 8px; }
.service-slide p { font-size: 0.9375rem; margin-bottom: var(--space-2); }

.feature-service {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.feature-service img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.feature-service-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Industry collage — simple equal tiles */
.industry-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

.industry-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  display: block;
}

.industry-tile img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4,27,61,0.85) 100%);
}

.industry-tile span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.industry-tile:hover img { transform: scale(1.05); }

/* Why choose asymmetric */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-6);
  align-items: center;
}

.why-points {
  display: grid;
  gap: 14px;
  margin-top: var(--space-4);
}

.why-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}

.why-point .n {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
}

.why-point h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.why-point p {
  font-size: 0.9rem;
  margin: 0;
}

.why-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Process timeline */
.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-2);
  position: relative;
  margin-top: var(--space-5);
}

.process-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step .step-n {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  color: var(--navy);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.process-step h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.8125rem;
  margin: 0;
  color: var(--text-muted);
}

/* Country tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-4);
}

.tab-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
}

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.country-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.country-chip {
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  font-weight: 700;
  color: var(--navy);
}

/* CTA banner */
.cta-banner {
  position: relative;
  padding: var(--space-10) 0;
  background:
    linear-gradient(90deg, rgba(4,27,61,0.88) 0%, rgba(4,27,61,0.70) 48%, rgba(4,27,61,0.35) 100%),
    url('../images/cta-manpower-bg.webp') right center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: var(--space-2); }
.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto var(--space-4);
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.testimonial-slide.active { display: block; }

.testimonial-slide blockquote {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: var(--space-3);
  line-height: 1.7;
}

.testimonial-meta {
  font-weight: 700;
  color: var(--navy);
}

.testimonial-meta span {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-3);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
}

.slider-dot.active { background: var(--gold); }

/* Logo slider */
.logo-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  display: flex;
  gap: var(--space-6);
  animation: logoScroll 28s linear infinite;
  width: max-content;
}

.logo-item {
  width: 140px;
  height: 64px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--white);
  flex-shrink: 0;
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 1rem;
}

.faq-question .icon { color: var(--gold); font-size: 1.25rem; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 20px 18px; color: var(--text-muted); }
.faq-item.active .faq-answer { max-height: 240px; }

/* Page hero */
.page-hero {
  background:
    linear-gradient(90deg, rgba(4,27,61,0.92), rgba(4,27,61,0.72)),
    url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--white);
  padding: calc(var(--space-10) + 20px) 0 var(--space-8);
}

.page-hero.service-hero {
  background:
    linear-gradient(90deg, rgba(4,27,61,0.9), rgba(4,27,61,0.65)),
    var(--service-hero-img) center/cover no-repeat;
}

.page-hero .lead {
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0;
}

.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.875rem;
  margin-bottom: var(--space-2);
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: var(--gold); }

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-5);
}

.contact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.contact-card h3 { color: var(--gold); margin-bottom: var(--space-3); }
.contact-card p, .contact-card a { color: rgba(255,255,255,0.85); }
.contact-line {
  display: flex;
  gap: 12px;
  margin-bottom: var(--space-3);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Editorial rows for services page */
.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
  margin-bottom: var(--space-8);
}

.editorial-row.reverse .editorial-media { order: 2; }
.editorial-row.reverse .editorial-body { order: 1; }

.editorial-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Single service detail pages */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-6);
  align-items: start;
}

.service-featured-img {
  margin: 0 0 var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-featured-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-main h2 {
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}

.service-main h3 {
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}

.benefits-list {
  display: grid;
  gap: 12px;
  margin: var(--space-3) 0 var(--space-4);
}

.benefits-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 166, 63, 0.2);
}

.service-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin: var(--space-3) 0 var(--space-5);
}

.service-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-step:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.service-step-num {
  display: inline-block;
  font-weight: 800;
  color: var(--gold-dark);
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.service-step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.service-step p {
  margin: 0;
  font-size: 0.9rem;
}

.service-sidebar {
  position: sticky;
  top: calc(var(--header-main) + 16px);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-cta-card,
.service-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.service-cta-card h3 { margin-bottom: 8px; }
.service-cta-card p { font-size: 0.9rem; }

.service-sidebar-card h4 {
  color: var(--navy);
  margin-bottom: var(--space-2);
  font-size: 1rem;
}

.service-sidebar-card ul { display: grid; gap: 10px; }
.service-sidebar-card li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}

.related-services {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-2);
}

.related-links a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.related-links a:hover {
  border-color: var(--gold);
  background: var(--white);
  color: var(--blue);
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.78);
  padding-top: var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
}

.footer-brand img {
  display: block;
  height: auto;
  width: min(200px, 100%);
  max-width: 200px;
  margin-bottom: var(--space-2);
  background: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  /* Keep brand colors — do not invert multi-color logo */
  filter: none;
}

.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

.footer-col h4 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: var(--space-2);
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-3) 0;
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
  font-size: 0.8125rem;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  z-index: 900;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.whatsapp-float:hover { transform: scale(1.06); }

/* Reveal animations */
.reveal, .reveal-left {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal.visible, .reveal-left.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left { opacity: 1; transform: none; transition: none; }
  .logo-track { animation: none; }
}
