﻿/* ============================================================
   BASE — :root variables + reset + container + typography
   ============================================================ */

:root {
  /* Core Palette */
  --navy-950: #020817;
  --navy-900: #0a1628;
  --navy-800: #0f2240;
  --navy-700: #1a3460;
  --navy-600: #1e3f73;

  --blue-600: #1d6aef;
  --blue-500: #2979ff;
  --blue-400: #5294ff;
  --blue-300: #80b0ff;
  --blue-200: #bfdbfe;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;

  --green-500: #22c55e;
  --wa:        #25d366;

  /* Semantic */
  --primary:        var(--navy-900);
  --accent:         var(--blue-500);
  --text-primary:   var(--slate-900);
  --text-secondary: var(--slate-600);
  --text-muted:     var(--slate-400);
  --bg:             var(--white);
  --bg-subtle:      var(--slate-50);
  --border:         var(--slate-200);
  --border-strong:  var(--slate-300);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', Inter, Poppins, 'Segoe UI', Arial, sans-serif;
  --font-body:    Inter, Poppins, 'Segoe UI', Arial, sans-serif;

  /* Spacing */
  --space-1:  0.25rem;  --space-2:  0.5rem;   --space-3:  0.75rem;
  --space-4:  1rem;     --space-5:  1.25rem;  --space-6:  1.5rem;
  --space-7:  1.75rem;
  --space-8:  2rem;     --space-10: 2.5rem;   --space-12: 3rem;
  --space-14: 3.5rem;   --space-16: 4rem;     --space-20: 5rem;
  --space-24: 6rem;

  /* Radius */
  --radius-sm:   6px;   --radius-md:   10px;  --radius-lg:   16px;
  --radius-xl:   24px;  --radius-2xl:  32px;  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(2,8,23,.06), 0 1px 2px rgba(2,8,23,.04);
  --shadow-md:   0 4px 16px rgba(2,8,23,.08), 0 2px 6px rgba(2,8,23,.04);
  --shadow-lg:   0 10px 40px rgba(2,8,23,.12), 0 4px 12px rgba(2,8,23,.06);
  --shadow-xl:   0 24px 64px rgba(2,8,23,.16), 0 8px 24px rgba(2,8,23,.08);
  --shadow-blue: 0 8px 32px rgba(41,121,255,.28);

  /* Motion */
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease-io:     cubic-bezier(.4,0,.2,1);
  --dur-fast:    150ms;
  --dur-base:    240ms;
  --dur-slow:    400ms;
  --dur-slower:  600ms;

  --nav-h: 72px;
}

/* --- RESET --- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; min-width:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration:none; color:inherit; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
ul,ol { list-style:none; }
img,svg { display:block; max-width:100%; height:auto; }
p, li, td, th, h1, h2, h3, h4, h5, h6, span { overflow-wrap: break-word; word-break: break-word; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}
.section-label::before {
  content:'';
  display:block;
  width:18px; height:2px;
  background: var(--accent);
  border-radius: var(--radius-full);
}

/* scroll-margin for all navigable targets */
[id] {
  scroll-margin-top: calc(var(--nav-h) + 32px);
}


/* ============================================================
   COMPONENTS — buttons, breadcrumb, card highlight, active nav,
   animations, focus styles, skip-link, sr-only
   ============================================================ */

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .875rem;
  border-radius: var(--radius-full);
  padding: .7rem 1.5rem;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  letter-spacing: -.01em;
}
.btn-primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(10,22,40,.2);
}
.btn-primary:hover {
  background: var(--navy-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10,22,40,.28);
}
.btn-accent {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-accent:hover {
  background: var(--blue-600);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(41,121,255,.36);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost-dark:hover {
  border-color: var(--navy-900);
  background: var(--bg-subtle);
}
.btn-wa {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.28);
}
.btn-wa:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,.36);
}
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.125rem; font-size: .8125rem; }

/* --- SCROLL ANIMATIONS --- */
@keyframes aUp {
  to { opacity:1; transform: translateY(0); }
}
@keyframes aRight {
  to { opacity:1; transform: translateX(0); }
}
[data-a] {
  opacity:0;
  transition: opacity var(--dur-slower) var(--ease-out), transform var(--dur-slower) var(--ease-out);
}
[data-a="up"]    { transform: translateY(28px); }
[data-a="left"]  { transform: translateX(-28px); }
[data-a="right"] { transform: translateX(28px); }
[data-a="scale"] { transform: scale(.94); }
[data-a].visible { opacity:1; transform: none; }

/* --- BREADCRUMB --- */
.svc-breadcrumb {
  padding: 0 0 var(--space-5);
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  list-style: none;
  font-size: .72rem;
  font-weight: 500;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}
.breadcrumb li:not(:last-child)::after {
  content: '›';
  color: var(--slate-300);
  font-size: .875rem;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur-fast);
  border-radius: 3px;
}
.breadcrumb a:hover { color: var(--blue-500); }
.breadcrumb a:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}
.breadcrumb li:last-child {
  color: var(--navy-900);
  font-weight: 600;
}

/* --- CARD HIGHLIGHT ANIMATION --- */
@keyframes cardHighlight {
  0%   { box-shadow: 0 0 0 0 rgba(41,121,255,0), var(--shadow-sm); }
  15%  { box-shadow: 0 0 0 4px rgba(41,121,255,.45), 0 0 40px rgba(41,121,255,.18); }
  70%  { box-shadow: 0 0 0 3px rgba(41,121,255,.25), 0 0 24px rgba(41,121,255,.08); }
  100% { box-shadow: 0 0 0 0 rgba(41,121,255,0), var(--shadow-sm); }
}
.svc-card--highlighted {
  animation: cardHighlight 2.4s var(--ease-out) forwards;
}
.svc-card:target {
  animation: cardHighlight 2.4s var(--ease-out) forwards;
  scroll-margin-top: calc(var(--nav-h) + 32px);
}

/* --- ACTIVE NAV --- */
.nav-link.nav-active {
  color: var(--white) !important;
  font-weight: 600;
}
#navbar.scrolled .nav-link.nav-active {
  color: var(--blue-400) !important;
}
.mega-item.mega-item--active {
  background: var(--blue-50);
}
.mega-item.mega-item--active .mega-item-name { color: var(--blue-600); }

/* --- FOCUS IMPROVEMENTS --- */
.mega-item:focus-visible,
.drop-item:focus-visible,
.mob-item:focus-visible,
.svc-filter:focus-visible,
.svc-card-detail:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

/* --- FAB PING ANIMATION --- */
@keyframes fabPing {
  0%,100%{transform:scale(1);opacity:1}
  50%{transform:scale(1.3);opacity:.65}
}

/* --- SKIP LINK --- */
.skip-link {
  position:absolute;top:-100%;left:var(--space-4);
  background:var(--navy-900);color:#fff;
  padding:.5rem 1rem;border-radius:0 0 var(--radius-md) var(--radius-md);
  font-size:.875rem;font-weight:600;text-decoration:none;z-index:9999;
  transition:top .2s;
}
.skip-link:focus { top:0; }

/* --- DOT PULSE (hero eyebrow + preview dot) --- */
@keyframes dotPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.75); }
}

/* --- BUTTON ACTIVE STATES --- */
.btn:active { transform: translateY(0) scale(.98); transition-duration: 80ms; }
.btn-accent:active { box-shadow: 0 2px 8px rgba(41,121,255,.2); }
.btn-wa:active     { box-shadow: 0 2px 8px rgba(37,211,102,.2); }

/* --- ICON SCALE ON HOVER (for fa- icons inside links/cards) --- */
.sd-related-card:hover .sd-related-icon { transform: scale(1.08); }
.sd-related-icon { transition: transform var(--dur-base) var(--ease-out); }

/* --- FOCUS RING — unified --- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2.5px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --- SELECTION COLOR --- */
::selection { background: rgba(41,121,255,.18); color: var(--navy-900); }

/* --- SMOOTH UNDERLINE for text links --- */
.ft-links a,
.ft-contact-list a {
  position: relative;
}
.ft-links a::after,
.ft-contact-list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: width var(--dur-base) var(--ease-out);
}
.ft-links a:hover::after,
.ft-contact-list a:hover::after { width: 100%; }

/* --- BREADCRUMB CHEVRON ANIMATION --- */
.sd-breadcrumb .fa-chevron-right {
  font-size: 8px;
  opacity: .35;
  transition: opacity var(--dur-fast);
}

/* --- CARD LIFT --- */
.sd-related-card:hover { transform: translateY(-3px); }



/* ============================================================
   LAYOUT — navbar, mega menu, mobile menu, footer, mob-bar, FAB
   ============================================================ */

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  height: var(--nav-h);
  overflow: visible;
  display: flex;
  align-items: center;
  background: rgba(2,8,23,.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition: background var(--dur-slow) var(--ease-io),
              box-shadow  var(--dur-slow) var(--ease-io);
}
#navbar.scrolled {
  background: rgba(2,8,23,.97);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 6px 32px rgba(2,8,23,.55);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  max-height: 44px;
  overflow: hidden;
}
.nav-logo img,
.nav-logo-img {
  height: 44px !important;
  max-height: 44px;
  width: auto !important;
  max-width: none;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: .5rem .875rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  border-radius: var(--radius-md);
  transition: color var(--dur-fast), background var(--dur-fast);
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.09); }
.nav-link i.chev {
  font-size: 10px;
  opacity: .45;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-item.open > .nav-link i.chev { transform: rotate(180deg); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
  flex-shrink: 0;
}
.nav-tel {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  padding: .45rem .875rem;
  border-radius: var(--radius-md);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav-tel:hover { background: rgba(255,255,255,.09); color: var(--white); }
.nav-tel i { font-size: 13px; color: var(--blue-400); }

/* Mobile toggle */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  transition: background var(--dur-fast);
}
.nav-burger:hover { background: rgba(255,255,255,.1); }
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--dur-base) var(--ease-out);
}
.nav-burger span:nth-child(1) { width: 20px; }
.nav-burger span:nth-child(2) { width: 14px; }
.nav-burger span:nth-child(3) { width: 18px; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 18px; }
.nav-burger.open span:nth-child(2) { opacity:0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 18px; }

/* ── MEGA MENU ── */
.mega {
  position: fixed;
  top: calc(var(--nav-h) + 8px);
  top: calc(72px + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: min(820px, calc(100vw - 32px));
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out);
  overflow: hidden;
}
.nav-item.open .mega {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.mega-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--border);
}
.mega-top-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mega-body {
  display: grid;
  grid-template-columns: 188px 1fr;
}
.mega-sidebar {
  background: var(--slate-50);
  border-right: 1px solid var(--border);
  padding: var(--space-4) var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mega-tab {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--slate-600);
  cursor: pointer;
  transition: all var(--dur-fast);
  width: 100%;
  text-align: left;
}
.mega-tab-icon {
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--slate-400);
  flex-shrink: 0;
  transition: all var(--dur-fast);
}
.mega-tab:hover,
.mega-tab.active {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.mega-tab:hover .mega-tab-icon,
.mega-tab.active .mega-tab-icon {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}
.mega-tab.active { font-weight: 600; }

.mega-content { padding: var(--space-5) var(--space-6); min-height: 300px; }
.mega-panel { display:none; animation: panelSlide var(--dur-base) var(--ease-out); }
.mega-panel.active { display: block; }
@keyframes panelSlide {
  from { opacity:0; transform: translateX(8px); }
  to   { opacity:1; transform: none; }
}
.mega-panel-heading {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border);
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast);
}
.mega-item:hover { background: var(--slate-50); }
.mega-item:hover .mega-item-ico { background: var(--blue-500); border-color: var(--blue-500); }
.mega-item:hover .mega-item-ico i { color: var(--white); }
.mega-item-ico {
  width: 34px; height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--slate-400);
  transition: all var(--dur-fast);
}
.mega-item-name {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.3;
}
.mega-item-desc {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}
.mega-bottom {
  border-top: 1px solid var(--border);
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--slate-50);
}
.mega-bottom-links { display:flex; gap: var(--space-5); }
.mega-bottom-link {
  font-size: .78rem;
  font-weight: 500;
  color: var(--slate-500);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  transition: color var(--dur-fast);
}
.mega-bottom-link:hover { color: var(--navy-900); }

/* Simple dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: var(--space-2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.nav-item.open .dropdown { opacity:1; pointer-events:all; transform: none; }
.drop-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: all var(--dur-fast);
  cursor: pointer;
  text-decoration: none;
}
.drop-item:hover { background: var(--slate-50); color: var(--navy-900); }
.drop-item i { width:20px; text-align:center; font-size:12px; color: var(--slate-400); }
.drop-item:hover i { color: var(--blue-500); }

/* ── MOBILE MENU ── */
#mob-menu {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--white);
  padding-top: var(--nav-h);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  pointer-events: none;
}
#mob-menu.open {
  transform: none;
  pointer-events: all;
}
.mob-section { border-bottom: 1px solid var(--border); }
.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  font-weight: 600;
  font-size: .875rem;
  color: var(--navy-900);
  cursor: pointer;
}
.mob-head i { font-size:11px; color: var(--slate-400); transition: transform var(--dur-base); }
.mob-section.open .mob-head i { transform: rotate(180deg); }
.mob-items {
  display: none;
  flex-direction: column;
  padding: 0 var(--space-4) var(--space-4);
  gap: 2px;
}
.mob-section.open .mob-items { display: flex; }
.mob-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: .875rem;
  color: var(--slate-600);
  font-weight: 500;
  transition: all var(--dur-fast);
  text-decoration: none;
}
.mob-item:hover { background: var(--slate-50); color: var(--navy-900); }
.mob-item i { width:20px; text-align:center; color: var(--slate-400); font-size:13px; }
.mob-actions {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ── FAB (desktop floating buttons) ── */
#fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  transition: opacity var(--dur-base), transform var(--dur-base);
}
#fab.hidden { opacity: 0; pointer-events: none; transform: translateY(8px); }

/* ── MOBILE STICKY BOTTOM BAR ── */
#mob-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(2,8,23,.1);
  padding-bottom: env(safe-area-inset-bottom);
}
.mob-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: var(--space-3) var(--space-2);
  font-size: .6875rem;
  font-weight: 600;
  color: var(--slate-500);
  text-decoration: none;
  transition: color var(--dur-fast), background var(--dur-fast);
  border: none;
  background: transparent;
  cursor: pointer;
}
.mob-bar-btn i { font-size: 18px; }
.mob-bar-btn:hover, .mob-bar-btn:focus { color: var(--navy-900); }
.mob-bar-wa  { color: #16a34a; }
.mob-bar-form { color: var(--blue-500); }

/* ── FOOTER ── */
#footer { background: var(--navy-950); }

.ft-main { padding: var(--space-12) 0; }
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: var(--space-10);
}

.ft-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: var(--space-4);
}
.ft-logo img,
.ft-logo-img {
  height: 36px !important;
  max-height: 36px;
  width: auto !important;
  max-width: none;
  display: block;
  object-fit: contain;
  filter: brightness(1.18);
}
.ft-tagline { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.65; max-width: 280px; margin-bottom: var(--space-5); }

.ft-socials { display: flex; gap: var(--space-2); margin-bottom: var(--space-5); }
.ft-social {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 14px;
  text-decoration: none;
  transition: all var(--dur-fast);
}
.ft-social:hover { background: rgba(255,255,255,.12); color: var(--white); transform: translateY(-2px); }
.ft-social-wa { background: rgba(37,211,102,.15); border-color: rgba(37,211,102,.25); color: #4ade80; }
.ft-social-wa:hover { background: var(--wa); color: var(--white); }

.ft-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: .78rem;
  color: rgba(255,255,255,.58);
}
.ft-stars { display: flex; gap: 2px; color: #fbbf24; font-size: 12px; }

.ft-col-title {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: var(--space-4);
}
.ft-links { display: flex; flex-direction: column; gap: 10px; }
.ft-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color var(--dur-fast);
  display: inline-block;
}
.ft-links a:hover { color: var(--white); }

.ft-contact-list { display: flex; flex-direction: column; gap: 12px; }
.ft-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: .875rem;
  color: rgba(255,255,255,.78);
}
.ft-contact-list i { font-size: 14px; color: var(--blue-400); margin-top: 2px; flex-shrink: 0; width: 16px; text-align: center; }
.ft-contact-list a { color: rgba(255,255,255,.78); text-decoration: none; transition: color var(--dur-fast); }
.ft-contact-list a:hover { color: var(--white); }

.ft-bar {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--space-5) 0;
}
.ft-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.ft-copy { font-size: .8125rem; color: rgba(255,255,255,.45); }
.ft-bar-links { display: flex; gap: var(--space-5); }
.ft-bar-links a { font-size: .8125rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color var(--dur-fast); }
.ft-bar-links a:hover { color: var(--white); }
.ft-top-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--dur-fast);
}
.ft-top-btn:hover { background: rgba(255,255,255,.12); color: var(--white); transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ft-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .ft-brand { grid-column: 1/-1; max-width: 500px; }
}
@media (max-width: 900px) {
  .nav-links,.nav-tel { display:none; }
  .nav-burger { display:flex; }
  #fab { display: none; }
  #mob-bar { display: flex; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  #navbar { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
  /* Mobile logo — max 36px */
  .nav-logo img,
  .nav-logo-img { height: 36px !important; max-height: 36px; }
  .nav-logo { max-height: 36px; }
  .ft-logo img,
  .ft-logo-img  { height: 30px; }
}
@media (max-width: 640px) {
  .ft-grid { grid-template-columns: 1fr; }
  .ft-brand { grid-column: auto; max-width: 100%; }
  .ft-bar-inner { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
}

/* ── Shared component classes — replace inline styles in navbar/footer ── */
.mega-top-all-link { font-size: .75rem; }
.mega-top-all-link i { font-size: 10px; }
.mob-actions .btn { justify-content: center; }
.ft-cta-link { margin-top: var(--space-5); display: inline-flex; }
.fab-primary-btn { box-shadow: var(--shadow-lg); }
.fab-wa-btn { position: relative; padding-right: 1.4rem; }
.fab-wa-ping {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wa);
  border: 2px solid #fff;
  animation: fabPing 1.6s ease-in-out infinite;
}


/* ============================================================
   UTILITIES — Single-purpose helper classes
   Load order: base → utilities → components → layout → page
   ============================================================ */

/* ── TEXT ── */
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ── DISPLAY ── */
.d-flex       { display: flex; }
.d-inline-flex { display: inline-flex; }

/* ── SPACING ── */
.mx-auto      { margin-inline: auto; }
.mt-auto      { margin-top: auto; }

/* ── SECTIONS ── */
.section    { padding: var(--space-20) 0; }
.section-sm { padding: var(--space-16) 0; }

/* ── BACKGROUNDS ── */
.bg-navy   { background: var(--navy-900); }
.bg-subtle { background: var(--bg-subtle); }

/* ── BUTTONS ── */
.btn-block   { width: 100%; justify-content: center; }
.shadow-lg   { box-shadow: var(--shadow-lg); }

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