/* ═══════════════════════════════════════════════════════════
   NOVAM LEGAL — GLOBAL CSS
   Design token → component approach.
   All animations respect prefers-reduced-motion.
   All interactive elements have visible focus-visible rings.
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Design Tokens ─────────────────────────────────────── */
:root {
  /* Brand colours */
  --navy-deeper : #0D1257;
  --navy-dark   : #1A237E;
  --navy        : #283593;
  --blue        : #2962FF;
  --blue-hover  : #1E4FD8;
  --blue-tint   : #EFF6FF;
  --gold        : #E8A020;
  --gold-light  : #F5C842;
  --gold-pale   : #FEF9ED;
  --green       : #16A34A;
  --green-pale  : #DCFCE7;
  --red-err     : #DC2626;
  --white       : #FFFFFF;

  /* Neutral scale */
  --gray-50  : #F9FAFB;
  --gray-100 : #F3F4F6;
  --gray-200 : #E5E7EB;
  --gray-300 : #D1D5DB;
  --gray-400 : #9CA3AF;
  --gray-500 : #6B7280;
  --gray-600 : #4B5563;
  --gray-700 : #374151;

  /* Typography */
  --font-body    : 'Inter', system-ui, -apple-system, sans-serif;
  --font-display : 'Inter', system-ui, sans-serif;
  --lh-tight     : 1.2;
  --lh-snug      : 1.4;
  --lh-base      : 1.6;
  --lh-relaxed   : 1.75;

  /* Spacing (4px base) */
  --sp-1 : 4px;  --sp-2 : 8px;  --sp-3 : 12px; --sp-4 : 16px;
  --sp-5 : 20px; --sp-6 : 24px; --sp-7 : 28px; --sp-8 : 32px;
  --sp-10: 40px; --sp-12: 48px; --sp-14: 56px; --sp-16: 64px;
  --sp-20: 80px; --sp-24: 96px;

  /* Border radius */
  --r-sm  : 6px;
  --r-md  : 10px;
  --r-lg  : 14px;
  --r-xl  : 20px;
  --r-2xl : 28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm : 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md : 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg : 0 8px 24px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl : 0 16px 48px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);

  /* Transitions */
  --ease-out : cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in  : cubic-bezier(0.4, 0, 1, 1);
  --dur-fast : 150ms;
  --dur-base : 220ms;
  --dur-slow : 350ms;

  /* Layout */
  --container-width : 1220px;
  --section-pad     : clamp(56px, 8vw, 96px);
  --header-h        : 68px;
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: var(--lh-base);
  color: var(--gray-700);
  background: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: var(--lh-tight); font-weight: 700; color: var(--navy-dark); }

/* Accessible focus ring — only shown for keyboard navigation */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip to content — accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  padding: var(--sp-2) var(--sp-4);
  background: var(--blue);
  color: var(--white);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  z-index: 99999;
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus-visible { top: 0; }

/* Screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── 3. Layout ────────────────────────────────────────────── */
.container {
  width: min(100%, var(--container-width));
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* ── 4. Typography ───────────────────────────────────────── */
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.5px;
  margin-bottom: var(--sp-4);
}

.section-sub {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--gray-500);
  line-height: var(--lh-relaxed);
  max-width: 600px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

/* ── 5. Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 11px 22px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition:
    background var(--dur-fast) var(--ease-out),
    color      var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    transform  var(--dur-fast) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  min-height: 44px; /* WCAG minimum touch target */
}

.btn:active:not(:disabled) { transform: translateY(1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn .material-symbols-outlined { font-size: 18px; }

.btn-primary {
  padding: 13px 24px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700;
  border-color: transparent;
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(41,98,255,0.3); }
.btn-primary.large { padding: 16px 32px; font-size: 15px; }

.btn-secondary {
  padding: 12px 24px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: var(--r-md);
  font-size: 14px;
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-secondary.light { color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-secondary.light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

.btn.large { padding: 14px 28px; font-size: 15px; min-height: 50px; }

/* Card icon sizes */
.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.card-icon.blue  { background: var(--blue-tint);  color: var(--blue);  }
.card-icon.gold  { background: var(--gold-pale);   color: var(--gold);  }
.card-icon.green { background: var(--green-pale);  color: var(--green); }
.card-icon .material-symbols-outlined { font-size: 22px; }

/* ── 6. Forms ────────────────────────────────────────────── */
.form-group { margin-bottom: var(--sp-4); }

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: var(--sp-2);
}

.form-input,
.form-select {
  width: 100%;
  height: 46px;
  padding: 0 var(--sp-4);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  box-sizing: border-box;
}
.form-input:hover { border-color: var(--gray-400); }
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(41,98,255,0.12);
  outline: none;
}
.form-input::placeholder  { color: var(--gray-400); }
.form-input.input-error   { border-color: var(--red-err); }
.form-input.input-success  { border-color: var(--green); }

/* Phone row */
.phone-row { display: flex; align-items: flex-start; }

.cc-wrap { position: relative; flex-shrink: 0; }

.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 var(--sp-3) 0 var(--sp-3);
  height: 46px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-right: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--dur-fast),
    border-color var(--dur-fast);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cc-btn:hover { background: #EEF2FF; border-color: var(--navy); }
.cc-btn[aria-expanded="true"] {
  background: #EEF2FF;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(41,98,255,0.1);
}
.cc-flag-img { display: block; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }
.cc-code { font-size: 13px; font-weight: 700; color: var(--navy-dark); }
.cc-sep { width: 1px; height: 16px; background: var(--gray-200); flex-shrink: 0; }
.cc-chevron {
  font-size: 16px !important;
  color: var(--gray-400);
  transition: transform var(--dur-base) var(--ease-out);
}
.cc-btn[aria-expanded="true"] .cc-chevron { transform: rotate(180deg); color: var(--blue); }

.cc-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  min-width: 244px;
  max-height: 272px;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 10000;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  animation: ccOpen var(--dur-base) var(--ease-out) both;
}
@keyframes ccOpen {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
.cc-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 9px 14px;
  cursor: pointer;
  font-size: 13px;
  transition: background var(--dur-fast);
}
.cc-list li:hover { background: var(--blue-tint); }
.cc-opt-name { flex: 1; color: var(--navy-dark); font-weight: 500; }
.cc-opt-code { color: var(--gray-400); font-size: 12px; font-weight: 600; }

.phone-input-col { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.phone-input-col .form-input {
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.phone-err {
  display: block;
  font-size: 11px;
  color: var(--red-err);
  margin-top: 5px;
  padding-left: 2px;
  line-height: 1.4;
  min-height: 0;
}

/* ── 7. Announcement Bar ─────────────────────────────────── */
.ann-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 9px var(--sp-10);
  background: var(--navy-deeper);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  position: relative;
}
.ann-bar .material-symbols-outlined { font-size: 14px; color: var(--gold); }
.ann-close {
  position: absolute;
  right: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  border-radius: var(--r-sm);
  transition: color var(--dur-fast);
}
.ann-close:hover { color: var(--white); }

/* Mega menu extras (show more/less) */
.mm-extras { display: none; flex-direction: column; gap: 2px; }
.mega-col.mm-open .mm-extras { display: flex; }
.mm-toggle {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  text-align: left;
  transition: color var(--dur-fast);
  margin-top: 2px;
}
.mm-toggle:hover { color: var(--navy-dark); }

/* Dropdown — single/two-column */
.dd-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-width: 440px; }
.dd-col { padding: var(--sp-3) var(--sp-2); }
.dd-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 4px 12px;
  margin-bottom: 4px;
}

/* Announcement bar */
.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px var(--sp-10);
  background: var(--navy-deeper);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  position: relative;
  gap: var(--sp-2);
}
.ann-text {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.ann-text .material-symbols-outlined { font-size: 14px; color: var(--gold); }
.ann-close {
  position: absolute;
  right: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: var(--r-sm);
  transition: color var(--dur-fast);
}
.ann-close:hover { color: var(--white); }
.ann-close .material-symbols-outlined { font-size: 16px; }

/* ── 8. Header ───────────────────────────────────────────── */
.site-header {
  position: relative;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.2s;
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.navbar {
  display: flex;
  align-items: center;
  height: 66px;
  gap: 24px;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-link img { height: 44px; width: auto; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--r-sm);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.nav-link .material-symbols-outlined { font-size: 15px; transition: transform 0.2s; }
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--gray-100);
}
.nav-item.mm-active > .nav-link .material-symbols-outlined,
.nav-item.mob-open  > .nav-link .material-symbols-outlined {
  transform: rotate(180deg);
}

/* Mega menu */
@keyframes dd-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-item.has-mega { position: static; }
.nav-item.has-mega.mm-active > .mega-menu { display: block; animation: dd-fade 0.18s ease; }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--blue);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  display: none;
  z-index: 400;
}
.mega-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 24px 24px;
}
.mega-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mega-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 20px 0;
}
.mega-col {
  padding: 0 24px 8px 0;
  border-right: 1px solid var(--gray-100);
}
.mega-col:last-child { border-right: none; }
.mega-col:not(:first-child) { padding-left: 20px; }
.mega-col-head,
.mega-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--navy);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 8px;
}
.mm-link {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: var(--gray-500);
  transition: color 0.15s;
  line-height: 1.5;
}
.mm-link:hover { color: var(--blue); }
.mm-extras { display: none; }
.mega-col.mm-open .mm-extras { display: block; }
.mm-toggle {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
}
.mm-toggle:hover { text-decoration: underline; }

/* Small dropdowns (Licenses, Documents, Personal) */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 16px;
  display: none;
  min-width: 220px;
  z-index: 300;
}
.nav-item.has-dd.mm-active .dropdown-menu { display: flex; gap: 20px; animation: dd-fade 0.18s ease; }
.dd-col { display: flex; flex-direction: column; gap: 0; }
.dd-col + .dd-col { margin-top: 12px; }
.dd-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  padding: 4px 6px 6px;
}
.dd-link {
  display: block;
  padding: 6px 8px;
  font-size: 14px;
  color: var(--gray-500);
  border-radius: var(--r-sm);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dd-link:hover { background: var(--gray-50); color: var(--navy); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1.5px solid var(--blue);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
  background: transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-call:hover { background: var(--blue-tint); border-color: var(--blue); color: var(--blue); }
.nav-call .material-symbols-outlined { font-size: 16px; color: var(--blue); }

/* Drawer injected elements — hidden on desktop */
.mob-overlay,
.mob-drawer-close,
.mob-drawer-logo,
.mob-drawer-footer { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── 9. Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deeper);
  color: rgba(255,255,255,0.88);
  padding: var(--sp-14) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: var(--lh-relaxed);
  margin-top: var(--sp-4);
  max-width: 280px;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: var(--sp-5);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  padding: 5px 0;
  transition: color var(--dur-fast);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  transition: color var(--dur-fast);
}
.footer-legal-links a:hover { color: var(--gold-light); }

.footer-socials { display: flex; align-items: center; gap: var(--sp-3); }

.social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232,160,32,0.1);
}
.social-icon svg { width: 15px; height: 15px; }

/* ── 10. Mobile Sticky Bar ───────────────────────────────── */
.mob-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.mob-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px var(--sp-4);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast);
  min-height: 52px;
  text-decoration: none;
}
.mob-sticky-wa {
  background: #25D366;
  color: var(--white);
}
.mob-sticky-wa:hover { background: #20BA5A; }
.mob-sticky-contact {
  background: var(--navy-dark);
  color: var(--white);
}
.mob-sticky-contact:hover { background: var(--navy-deeper); }

/* ── 11. Floating WhatsApp (desktop) ─────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 800;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

/* ── 12. Breadcrumb ──────────────────────────────────────── */
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-5);
}
.bc-inner { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb > span:last-child,
.bc-inner > span:last-child { color: var(--gold-light); font-weight: 600; }
.bc-sep { color: rgba(255,255,255,0.25); font-size: 14px; }

/* ── 13. Blog Card ───────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-base), transform var(--dur-base);
  contain: layout;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.blog-card-img-wrap { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.blog-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease-out); }
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.04); }
.blog-card-body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.blog-card-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--sp-2);
}
.blog-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-3);
  flex: 1;
}
.blog-card-title a { transition: color var(--dur-fast); }
.blog-card-title a:hover { color: var(--blue); }
.blog-card-excerpt { font-size: 13px; color: var(--gray-500); line-height: var(--lh-relaxed); margin-bottom: var(--sp-4); }
.blog-card-meta { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: var(--sp-2); margin-top: auto; }

/* ── 14. Data-reveal scroll animation ────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity  550ms var(--ease-out),
    transform 550ms var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ── 15. Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 0; }
  .nav-link  { font-size: 12px; padding: 7px 9px; }
}

@media (max-width: 768px) {
  .nav-call  { display: none; }
  .hamburger { display: flex; }

  /* Mobile drawer */
  .nav-links {
    position: fixed;
    top: 0; right: -110%; bottom: 0;
    width: 300px;
    max-width: calc(100vw - 48px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 32px;
    gap: 0;
    box-shadow: -8px 0 40px rgba(0,0,0,0.18);
    transition: right 0.32s cubic-bezier(0.4,0,0.2,1);
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 2001;
  }
  .nav-links.open { right: 0; }

  /* Drawer spacer for logo area */
  .nav-links::before {
    content: '';
    display: block;
    height: 64px;
    flex-shrink: 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
    background: var(--white);
  }

  /* Backdrop */
  .mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 100;
  }
  .mob-overlay.active { display: block; }
  .mob-drawer-close  { display: flex; }
  .mob-drawer-logo   { display: block; }
  .mob-drawer-footer { display: flex; }

  .mob-drawer-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-600);
    font-size: 20px;
    z-index: 1;
  }
  .mob-drawer-logo {
    position: absolute;
    top: 16px; left: 20px;
  }
  .mob-drawer-logo img { height: 30px; }

  /* Nav items */
  .nav-item { width: 100%; border-bottom: 1px solid var(--gray-100); }
  .nav-link {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-link .material-symbols-outlined { font-size: 18px; color: var(--gray-400); transition: transform 0.2s; }
  .nav-item.mob-open > .nav-link .material-symbols-outlined { transform: rotate(180deg); color: var(--blue); }
  .nav-item.mob-open > .nav-link { color: var(--blue); }
  .nav-item.has-mega { position: relative; }

  /* Dropdowns in drawer */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    padding: 4px 0 8px 20px;
    flex-direction: column;
    gap: 0;
    display: none;
    min-width: unset;
    border-radius: 0;
    border-top: 1px solid var(--gray-100);
  }
  .nav-item.mob-open .dropdown-menu { display: flex; }
  .dd-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray-400); padding: 10px 0 4px; }
  .dd-link  { padding: 8px 0; color: var(--gray-700); font-size: 13px; }

  /* Mega menu in drawer */
  .mega-menu {
    position: static;
    border-top: 1px solid var(--gray-100);
    box-shadow: none;
    display: none;
    background: var(--gray-50);
    padding: 4px 0 8px 20px;
  }
  .nav-item.has-mega.mob-open .mega-menu { display: block; }
  .mega-inner { padding: 4px 0; max-width: 100%; }
  .mega-row   { grid-template-columns: 1fr; }
  .mega-col   { border-right: none; border-bottom: 1px solid var(--gray-200); padding: 8px 0; }
  .mega-col:not(:first-child) { padding-left: 0; }
  .mega-col:last-child { border-bottom: none; }
  .mega-divider { display: none; }
  .mega-col-head { color: var(--navy); font-size: 10px; padding: 4px 0; border-bottom: none; }
  .mm-link { padding: 6px 0; color: var(--gray-700); font-size: 13px; }
  .mm-extras { display: none; }
  .mega-col.mm-open .mm-extras { display: block; }

  /* Drawer footer */
  .mob-drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mob-drawer-footer .btn { width: 100%; justify-content: center; padding: 13px; font-size: 14px; }
  .mob-drawer-cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--r-md);
    color: var(--navy-dark);
    font-size: 14px;
    font-weight: 600;
  }
  .mob-drawer-cta-call .material-symbols-outlined { font-size: 16px; color: var(--blue); }

  /* Hamburger animation */
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mob-sticky-bar { display: flex; }
  .wa-float { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: var(--sp-4); }
  .footer-legal-links { justify-content: center; }
  .footer-socials { justify-content: center; }

  .container { padding-inline: var(--sp-4); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-actions .btn { display: none; }
}
