/* ==========================================================================
   VEVI Compliance and Labour Consulting — Stylesheet
   ========================================================================== */

:root {
  --navy: #00204A;
  --navy-light: #0A3268;
  --navy-dark: #001430;
  --gold: #C58B13;
  --gold-light: #E0A93C;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --ink-soft: #4A5568;
  --border-soft: rgba(0, 32, 74, 0.1);

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --header-h: 84px;
  --header-h-scrolled: 68px;

  --container: 1180px;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(0, 32, 74, 0.06);
  --shadow-md: 0 12px 32px rgba(0, 32, 74, 0.12);
  --shadow-lg: 0 24px 60px rgba(0, 32, 74, 0.18);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; color: var(--navy); line-height: 1.15; }
.accent { color: var(--gold); font-style: italic; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(197, 139, 19, 0.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(197, 139, 19, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-soft);
}
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-nav {
  background: var(--navy);
  color: var(--white);
  padding: 11px 22px;
  font-size: 0.85rem;
}
.btn-nav:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Sticky Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: height 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header.scrolled {
  height: var(--header-h-scrolled);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-soft);
}
.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: height 0.35s var(--ease), transform 0.3s var(--ease);
}
.logo:hover .logo-img { transform: scale(1.03); }
.site-header.scrolled .logo-img { height: 38px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong {
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.logo-text em {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav ul { display: flex; gap: 8px; }
.nav-link {
  position: relative;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  border-radius: 8px;
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-photo-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 44%;
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 12%;
  background-repeat: no-repeat;
  opacity: 0.9;
}
.hero-photo-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--navy) 0%, rgba(0,32,74,0.9) 14%, rgba(0,32,74,0.55) 32%, rgba(0,32,74,0.12) 55%, transparent 72%),
    linear-gradient(0deg, rgba(0,20,48,0.55) 0%, transparent 22%, transparent 78%, rgba(0,20,48,0.35) 100%);
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.shape-2 {
  width: 420px; height: 420px;
  bottom: -140px; left: -120px;
  background: radial-gradient(circle at 60% 60%, rgba(197,139,19,0.22), rgba(197,139,19,0) 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.hero .btn-ghost:hover { border-color: var(--white); }
.hero-tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 32px;
}

.hero-contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.25s var(--ease);
}
a.hero-contact-item:hover { color: var(--gold-light); }
.hero-contact-icon { display: flex; }
.hero-contact-icon svg { width: 16px; height: 16px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal-up 0.8s var(--ease) forwards;
}
.hero-inner .eyebrow.reveal { animation-delay: 0.05s; }
.hero-inner h1.reveal { animation-delay: 0.15s; }
.hero-inner .hero-lead.reveal { animation-delay: 0.28s; }
.hero-inner .hero-cta.reveal { animation-delay: 0.4s; }
.hero-inner .hero-tagline.reveal { animation-delay: 0.52s; }
.hero-inner .hero-contact-bar.reveal { animation-delay: 0.64s; }
@keyframes reveal-up { to { opacity: 1; transform: translateY(0); } }

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scroll-cue-move 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-move {
  0% { top: 8px; opacity: 1; }
  70% { top: 20px; opacity: 0; }
  71% { top: 8px; opacity: 0; }
  100% { top: 8px; opacity: 1; }
}

/* ---------- Section shared ---------- */
section { padding: 120px 0; position: relative; }
.section-head { max-width: 680px; margin: 0 auto 64px; text-align: center; }
.section-head--tight { margin-bottom: 44px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 18px; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Floating Trust Cards ---------- */
.hero-stats {
  position: relative;
  z-index: 5;
  margin-top: -76px;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,32,74,0.2); }
.stat-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 10px 20px rgba(197,139,19,0.3);
}
.stat-icon svg { width: 26px; height: 26px; }
.stat-card h4 { font-size: 1rem; margin-bottom: 8px; }
.stat-card p { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- About ---------- */
.about {
  background: var(--white) url('../assets/img/about-bg.jpg') center center / cover no-repeat;
  padding-top: 76px;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}
.pillar-card {
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.pillar-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  color: var(--gold);
}
.pillar-icon svg { width: 30px; height: 30px; }
.pillar-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.pillar-card p { color: var(--ink-soft); font-size: 0.96rem; }

.values-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.value-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s var(--ease);
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: rgba(197,139,19,0.15); }
.value-item h4 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.value-item p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ---------- Services ---------- */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  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(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--off-white);
  border-radius: 14px;
  margin-bottom: 18px;
  color: var(--navy);
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon { color: var(--white); background: var(--navy); }
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 0.92rem; flex-grow: 1; margin-bottom: 20px; }
.service-cta {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold);
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
  display: inline-flex;
  align-self: flex-start;
}
.service-cta:hover { color: var(--navy); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,20,48,0.94) 0%, rgba(0,32,74,0.88) 42%, rgba(0,32,74,0.55) 75%, rgba(0,32,74,0.4) 100%);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin-bottom: 18px; }
.cta-banner-lead { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 32px; }
.cta-banner .eyebrow { color: var(--gold-light); }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-bottom: 96px;
}

.contact-form-wrap {
  background: var(--off-white);
  border-radius: 20px;
  padding: 44px;
  border: 1px solid var(--border-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(197,139,19,0.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-status { margin-top: 14px; font-size: 0.9rem; font-weight: 600; min-height: 1.2em; }
.form-status.success { color: #1a7f37; }
.form-status.error { color: #c0392b; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.whatsapp-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #25D366, #1da851);
  border-radius: 18px;
  padding: 26px;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.whatsapp-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(37, 211, 102, 0.4); }
.whatsapp-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
}
.whatsapp-text { display: flex; flex-direction: column; gap: 4px; }
.whatsapp-text strong { font-size: 1.05rem; }
.whatsapp-text span { font-size: 0.85rem; opacity: 0.92; }

.info-card {
  background: var(--navy);
  border-radius: 18px;
  padding: 32px;
  color: var(--white);
  flex-grow: 1;
}
.info-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 20px; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.94rem;
  color: rgba(255,255,255,0.88);
}
.info-list li:last-child { border-bottom: none; }
.info-list a:hover { color: var(--gold-light); }
.info-icon { flex-shrink: 0; color: var(--gold-light); display: flex; }
.info-icon svg { width: 19px; height: 19px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  background: var(--off-white);
  transition: border-color 0.25s var(--ease);
}
.faq-item.open { border-color: var(--gold); background: var(--white); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.faq-icon {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scale(0); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer > p {
  overflow: hidden;
  padding: 0 24px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.faq-answer { overflow: hidden; }
.faq-item.open .faq-answer > p { padding-bottom: 22px; }

/* ---------- Policy Page ---------- */
.policy { padding-top: calc(var(--header-h) + 64px); padding-bottom: 100px; }
.policy-container { max-width: 760px; }
.policy h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.policy-updated { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 44px; }
.policy-content h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 14px;
}
.policy-content p, .policy-content ul { color: var(--ink-soft); font-size: 1rem; margin-bottom: 16px; }
.policy-content ul { padding-left: 22px; list-style: disc; }
.policy-content li { margin-bottom: 8px; }
.policy-content a { color: var(--gold); font-weight: 600; }
.policy-content a:hover { color: var(--navy); }
.policy-note {
  margin-top: 32px;
  padding: 20px 22px;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  font-size: 0.9rem !important;
  font-style: italic;
}
.policy-back { margin-top: 32px; }

/* ---------- 404 ---------- */
.not-found {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 120px;
  min-height: 70svh;
  display: flex;
  align-items: center;
}
.not-found-container { max-width: 560px; text-align: center; margin: 0 auto; }
.not-found h1 { font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 16px; }
.not-found-lead { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 32px; }
.not-found-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 56px 0 28px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}
.footer-brand .logo-text--footer strong { color: var(--white); }
.footer-brand p { font-size: 0.78rem; letter-spacing: 0.1em; color: var(--gold-light); margin-top: 6px; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { font-weight: 600; font-size: 0.92rem; transition: color 0.25s var(--ease); }
.footer-nav a:hover { color: var(--gold-light); }
.footer-meta { text-align: right; font-size: 0.82rem; line-height: 1.7; }
.footer-meta a { text-decoration: underline; text-underline-offset: 2px; transition: color 0.25s var(--ease); }
.footer-meta a:hover { color: var(--gold-light); }

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  z-index: 900;
  animation: fab-pulse 2.6s ease-in-out infinite;
  transition: transform 0.3s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); }
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-photo-panel { width: 58%; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; --header-h-scrolled: 62px; }
  section { padding: 84px 0; }
  .hero-stats { margin-top: -56px; }
  .hero-stats-grid { grid-template-columns: 1fr; gap: 14px; }
  .about { padding-top: 56px; }
  .hero-contact-bar { gap: 10px 20px; }
  .cta-banner { padding: 70px 0; }
  .cta-banner-overlay { background: linear-gradient(180deg, rgba(0,20,48,0.94) 0%, rgba(0,32,74,0.88) 100%); }
  .hero-photo-panel { display: none; }

  .main-nav {
    position: fixed;
    top: var(--header-h-scrolled);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 28px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .main-nav ul { flex-direction: column; gap: 4px; margin-bottom: 16px; }
  .nav-link { display: block; padding: 14px 12px; border-bottom: 1px solid var(--border-soft); border-radius: 0; }
  .nav-link::after { display: none; }
  .btn-nav { width: 100%; }
  .nav-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .values-band { grid-template-columns: repeat(2, 1fr); }
  .value-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .value-item:nth-child(2n) { border-right: none; }

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

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 24px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 480px) {
  .hero-inner { padding-top: 32px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .logo-img { height: 34px; }
  .logo-text strong { font-size: 1.1rem; }
  .logo-text em { display: none; }
  .whatsapp-fab { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .contact-form-wrap { padding: 24px 18px; }
  .whatsapp-card { flex-direction: column; text-align: center; }
}
