/* ==========================================================================
   PrimeGuard Solutions — shared stylesheet
   Palette sourced from the PrimeGuard logo (navy + gold)
   ========================================================================== */

:root {
  /* Brand colors */
  --navy-950: #0e2044;
  --navy-900: #16305c;
  --navy-800: #1c3a6e;
  --navy-700: #24447f;
  --navy-600: #2f5596;
  --gold-700: #b47c1f;
  --gold-600: #c8912a;
  --gold-500: #d9a438;
  --gold-300: #f0c262;
  --gold-100: #fbeed3;
  --whatsapp: #25d366;

  /* Neutrals */
  --ink: #16202e;
  --body-text: #3d4657;
  --muted: #667085;
  --muted-light: #98a2b3;
  --line: #e6e9f0;
  --paper: #f7f8fb;
  --paper-alt: #eef1f6;
  --white: #ffffff;

  /* Type */
  --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  /* Effects */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(14, 32, 68, 0.06);
  --shadow-md: 0 10px 30px rgba(14, 32, 68, 0.1);
  --shadow-lg: 0 24px 60px rgba(14, 32, 68, 0.16);
  --container: 1180px;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.35rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p.lead { font-size: 1.15rem; color: var(--muted); }

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

section { position: relative; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tight { padding: 56px 0; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
}

.bg-navy { background: var(--navy-900); color: #cdd7ea; }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-paper { background: var(--paper); }
.bg-white { background: var(--white); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 14px;
}
.bg-navy .kicker { color: var(--gold-300); }
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-600);
  border-radius: 2px;
}
.bg-navy .kicker::before { background: var(--gold-300); }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 1.05rem; }
.bg-navy .section-head p { color: #aebbd6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(200, 145, 42, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(200, 145, 42, 0.45); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-800); transform: translateY(-2px); }
.btn-ghost {
  background: var(--paper-alt);
  color: var(--navy-900);
}
.btn-ghost:hover { background: var(--line); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy-900);
  border-bottom: 2px solid var(--gold-500);
  padding-bottom: 2px;
  transition: gap 0.2s ease, color .2s ease;
}
.text-link:hover { gap: 12px; color: var(--gold-700); }
.text-link svg { width: 16px; height: 16px; }

/* ---------- Icon chips ---------- */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gold-100);
  color: var(--navy-900);
  flex-shrink: 0;
}
.icon-circle svg { width: 26px; height: 26px; }
.icon-circle.lg { width: 68px; height: 68px; border-radius: 18px; }
.icon-circle.lg svg { width: 32px; height: 32px; }
.icon-circle.navy { background: var(--navy-800); color: var(--gold-300); }
.icon-circle.gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: var(--navy-950); }
.icon-circle.round { border-radius: 50%; }
.icon-circle.whatsapp { background: rgba(37,211,102,0.14); color: #1a9e51; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar {
  background: var(--navy-950);
  font-size: 0.82rem;
  color: #aebbd6;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 18px;
}
.topbar-links { display: flex; align-items: center; gap: 22px; }
.topbar-links a { display: inline-flex; align-items: center; gap: 6px; transition: color .2s ease; }
.topbar-links a:hover { color: var(--gold-300); }
.topbar-links svg { width: 14px; height: 14px; }
.topbar-tag { color: #7f8db1; }
@media (max-width: 700px) { .topbar { display: none; } }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; border-radius: 6px; }
.brand-word { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.15rem; letter-spacing: -0.01em; }
.brand-word span { color: var(--gold-300); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: #dbe2f0;
  padding: 8px 0;
  position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold-400, var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  width: 42px; height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    background: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    padding: 100px 28px 28px;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,0.35);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-scrim {
    position: fixed; inset: 0; background: rgba(9,16,32,0.55);
    opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 90;
  }
  .nav-scrim.open { opacity: 1; pointer-events: auto; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 85% -10%, rgba(200,145,42,0.25), transparent 60%),
              linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 104px 0 120px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--gold-300);
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--gold-500); display: inline-flex; align-items: center; justify-content: center; color: var(--navy-950); }
.hero-eyebrow .dot svg { width: 14px; height: 14px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold-300); font-style: normal; }
.hero .lead { color: #c3cee4; font-size: 1.12rem; max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--white); }
.hero-stats div span { font-size: 0.85rem; color: #9fadc8; }

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.hero-art-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  border-radius: 32px;
  background: linear-gradient(155deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art-card svg.brand-mark { width: 62%; height: 62%; }
.hero-float {
  position: absolute;
  background: var(--white);
  color: var(--navy-900);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  animation: float 6s ease-in-out infinite;
}
.hero-float .icon-circle { width: 40px; height: 40px; border-radius: 12px; }
.hero-float .icon-circle svg { width: 20px; height: 20px; }
.hero-float span { color: var(--muted); font-weight: 500; display: block; font-size: 0.78rem; }
.hero-float-1 { top: 4%; left: -6%; animation-delay: 0s; }
.hero-float-2 { bottom: 8%; right: -8%; animation-delay: 1.4s; }
.hero-float-3 { bottom: -6%; left: 12%; animation-delay: 2.6s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 300px; margin-top: 20px; }
  .hero-float { display: none; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: var(--white);
  padding: 74px 0 84px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; right: -10%; top: -30%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,145,42,0.28), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #9fadc8; margin-bottom: 18px; }
.breadcrumb svg { width: 14px; height: 14px; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: #c3cee4; max-width: 640px; font-size: 1.05rem; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--paper); padding: 34px 0; border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); }
.trust-strip .container { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: space-between; }
.trust-strip-label { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.pill-row { display: flex; gap: 12px; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.pill svg { width: 15px; height: 15px; color: var(--gold-600); }

/* ---------- Cards: services ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(200,145,42,0.35); }
.card h3 { margin: 20px 0 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card .text-link { margin-top: 18px; }

.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .tag-list { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.78rem; font-weight: 600; font-family: var(--font-head);
  background: var(--paper-alt); color: var(--navy-800);
  padding: 5px 12px; border-radius: 999px;
}

.feature-row { display: flex; gap: 18px; align-items: flex-start; }
.feature-row h4 { margin-bottom: 6px; }
.feature-row p { color: var(--muted); font-size: 0.94rem; }

.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.96rem;
  color: var(--body-text);
}
.check-list li:last-child { border-bottom: none; }
.check-list li svg {
  flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px;
  color: var(--gold-600);
  background: var(--gold-100);
  border-radius: 50%; padding: 3px; box-sizing: content-box;
}
.check-list.on-dark li { color: #d7dfef; border-color: rgba(255,255,255,0.12); }

/* ---------- Service detail block ---------- */
.service-block { padding: 90px 0; border-bottom: 1px solid var(--line); }
.service-block:last-child { border-bottom: none; }
.service-block-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.service-block.reverse .service-block-grid { grid-template-columns: 1.1fr 0.9fr; }
.service-block.reverse .service-block-visual { order: 2; }
@media (max-width: 900px) {
  .service-block-grid, .service-block.reverse .service-block-grid { grid-template-columns: 1fr; }
  .service-block.reverse .service-block-visual { order: 0; }
}
.service-block-visual {
  border-radius: var(--radius-lg);
  padding: 44px;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-block-visual svg.deco { position: absolute; opacity: 0.5; }
.service-block-visual.tone-navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: var(--white); }
.service-block-visual.tone-gold { background: linear-gradient(160deg, var(--gold-100), #fff); }
.service-block-visual .icon-circle.lg { margin-bottom: 22px; }
.service-block-visual h3 { color: inherit; font-size: 1.5rem; }
.service-block-visual.tone-navy h3 { color: var(--white); }
.service-block-visual p { color: rgba(255,255,255,0.75); }
.service-block-visual.tone-gold p { color: var(--muted); }
.service-block-stats { display: flex; gap: 24px; margin-top: 26px; }
.service-block-stats div strong { display: block; font-family: var(--font-head); font-size: 1.4rem; }
.service-block-stats div span { font-size: 0.78rem; opacity: 0.75; }

/* ---------- Why us / values ---------- */
.value-card { text-align: left; }
.stat-band { background: var(--navy-900); color: var(--white); border-radius: var(--radius-lg); padding: 52px 44px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-grid strong { display: block; font-family: var(--font-head); font-size: 2.1rem; color: var(--gold-300); }
.stat-grid span { font-size: 0.86rem; color: #b8c3dc; }
@media (max-width: 800px) { .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; } }

/* ---------- Founder / About ---------- */
.founder-section { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .founder-section { grid-template-columns: 1fr; } }
.founder-photo-wrap { position: relative; }
.founder-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  outline: 1px solid var(--line);
  aspect-ratio: 4/4.6;
  object-fit: cover;
}
.founder-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.founder-badge strong { display: block; font-family: var(--font-head); color: var(--navy-900); }
.founder-badge span { font-size: 0.8rem; color: var(--muted); }
.founder-quote {
  margin-top: 22px;
  padding: 20px 22px;
  background: var(--paper);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 14px 14px 0;
  font-style: italic;
  color: var(--navy-900);
}
.founder-cred { display: flex; gap: 26px; margin-top: 26px; flex-wrap: wrap; }
.founder-cred div { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--navy-800); }
.founder-cred svg { width: 18px; height: 18px; color: var(--gold-600); }

/* ---------- Timeline / process ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .timeline { grid-template-columns: 1fr; } }
.timeline-step { position: relative; padding-top: 8px; }
.timeline-step .num {
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  color: var(--gold-600); letter-spacing: 0.06em; margin-bottom: 10px; display: block;
}

/* ---------- Testimonial / CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  border-radius: 50%; background: radial-gradient(circle, rgba(200,145,42,0.35), transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: #c3cee4; }
.cta-banner .actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
@media (max-width: 800px) { .cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #9fadc8; padding-top: 76px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-word { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: 0.92rem; color: #8b98b8; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-950); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 0.92rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-300); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-300); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; font-size: 0.82rem; color: #77839f; flex-wrap: wrap; gap: 10px; }
.footer-bottom a:hover { color: var(--gold-300); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  padding: 42px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--navy-900); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); background: var(--white);
}
.field-hint { font-size: 0.78rem; color: var(--muted-light); margin-top: 6px; }
.form-msg { display: none; padding: 14px 18px; border-radius: 12px; font-size: 0.92rem; margin-top: 18px; align-items: center; gap: 10px; }
.form-msg svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-msg.success { display: flex; background: #e9f9ef; color: #1a7a3f; }
.form-msg.error { display: flex; background: #fdecec; color: #b3261e; }

.contact-info-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--line);
}
.contact-info-card h4 { margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: var(--muted); font-size: 0.94rem; }
.contact-info-card a:hover { color: var(--navy-900); }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-family: var(--font-head); font-weight: 600; color: var(--navy-900); }
.faq-q svg { width: 20px; height: 20px; color: var(--gold-600); transition: transform .25s ease; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding-top: 14px; color: var(--muted); }

/* ---------- Reveal animation ----------
   Progressive enhancement: content stays fully visible unless JS confirms
   it's running (documentElement gets a "js" class) — so anyone without
   JavaScript, or if a script fails to load, still sees everything. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ---------- Misc utilities ---------- */
.mt-0 { margin-top: 0 !important; }
.center { text-align: center; }
.divider { height: 1px; background: var(--line); margin: 0; }
.badge-floating {
  position: absolute; top: -18px; right: 28px;
  background: var(--gold-500); color: var(--navy-950);
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-md);
}
.eyebrow-line { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.85rem; margin-bottom: 10px; }

::selection { background: var(--gold-300); color: var(--navy-950); }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold-500); color: var(--navy-950);
  padding: 10px 16px; z-index: 999; border-radius: 0 0 10px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- WhatsApp floating widget ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-float-label {
  background: var(--white);
  color: var(--navy-900);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.wa-float:hover .wa-float-label {
  opacity: 1;
  transform: translateX(0);
}
.wa-float-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  transition: transform .2s ease, box-shadow .2s ease;
  flex-shrink: 0;
}
.wa-float-btn svg { width: 30px; height: 30px; }
.wa-float-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 34px rgba(37, 211, 102, 0.55); }
.wa-float-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: 0.55;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  80% { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (max-width: 600px) {
  .wa-float { right: 16px; bottom: 16px; }
  .wa-float-btn { width: 54px; height: 54px; }
  .wa-float-btn svg { width: 27px; height: 27px; }
  .wa-float-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float-btn::before { animation: none; display: none; }
}
