/* ============================================================
   A&A PROFESSIONAL SERVICES — Luxury Bookkeeping Website
   Vanilla CSS | Navy & Gold | Depth · Glassmorphism · Motion
   Designed & developed by Novelio Technologies · 2026
   ============================================================ */

/* ----------  DESIGN TOKENS  ---------- */
:root {
  /* Brand palette (derived from logo — navy & gold) */
  --navy-900: #071f3d;
  --navy-800: #0a2c56;
  --navy-700: #0d3b6e;   /* primary */
  --navy-600: #14508f;
  --navy-500: #1e6bb8;
  --gold-600: #b1913f;
  --gold-500: #c9a84c;   /* secondary / accent */
  --gold-400: #e0c878;
  --gold-glow: rgba(201, 168, 76, .45);

  --bg: #f6f9ff;
  --bg-alt: #eef3fb;
  --surface: #ffffff;
  --text: #14203a;
  --text-soft: #445069;
  --muted: #64748b;
  --border: #dbe6f7;
  --line: rgba(13, 59, 110, .10);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(9, 30, 66, .06), 0 2px 6px rgba(9, 30, 66, .06);
  --shadow-md: 0 6px 18px rgba(9, 30, 66, .08), 0 12px 32px rgba(9, 30, 66, .10);
  --shadow-lg: 0 18px 40px rgba(9, 30, 66, .14), 0 30px 70px rgba(9, 30, 66, .16);
  --shadow-gold: 0 10px 30px rgba(201, 168, 76, .35);
  --glass: rgba(255, 255, 255, .72);
  --glass-brd: rgba(255, 255, 255, .55);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --maxw: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);

  --ff-head: 'Montserrat', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .28s;

  --z-top: 60;
  --z-nav: 50;
  --z-sticky: 45;
  --z-float: 30;
}

/* ----------  RESET / BASE  ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; color: var(--navy-800); }
h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
p { color: var(--text-soft); }

/* ----------  LAYOUT HELPERS  ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--alt { background: linear-gradient(180deg, var(--bg-alt), var(--bg)); }
.section--navy { background: radial-gradient(120% 120% at 80% 0%, var(--navy-700), var(--navy-900)); color: #eaf1fb; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #c5d4ea; }
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--gold-500), transparent); }
.section--navy .eyebrow { color: var(--gold-400); }
.lead { font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 62ch; }
.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }

/* ----------  BUTTONS  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-head); font-weight: 700; font-size: .95rem;
  padding: .95rem 1.7rem; border-radius: var(--radius-pill);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur);
  cursor: pointer; will-change: transform; position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn--gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px var(--gold-glow); }
.btn--navy { background: linear-gradient(135deg, var(--navy-600), var(--navy-800)); color: #fff; box-shadow: var(--shadow-md); }
.btn--navy:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--navy-700); border: 1.5px solid var(--border); }
.btn--outline:hover { border-color: var(--gold-500); color: var(--gold-600); transform: translateY(-3px); }
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1.02rem; }

/* ----------  TOP BAR  ---------- */
.topbar {
  background: linear-gradient(90deg, var(--navy-900), var(--navy-700));
  color: #dbe7f7; font-size: .84rem; position: relative; z-index: var(--z-top);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .5rem; }
.topbar__contact { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__contact a { display: inline-flex; align-items: center; gap: .45rem; color: #dbe7f7; transition: color var(--dur); }
.topbar__contact a:hover { color: var(--gold-400); }
.topbar__contact svg { width: 15px; height: 15px; color: var(--gold-400); }
.topbar__socials { display: flex; align-items: center; gap: .6rem; }
.topbar__socials a {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.08); transition: background var(--dur), transform var(--dur);
}
.topbar__socials a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-2px); }
.topbar__socials svg { width: 15px; height: 15px; }
@media (max-width: 760px){ .topbar__contact .hide-sm { display: none; } .topbar__inner { justify-content: center; } }

/* ----------  NAVBAR  ---------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(255,255,255,.78); backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line); transition: box-shadow var(--dur), background var(--dur);
}
.nav.scrolled { box-shadow: var(--shadow-md); background: rgba(255,255,255,.92); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding-block: .7rem; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 46px; width: auto; }
.brand__txt { font-family: var(--ff-head); font-weight: 800; color: var(--navy-800); line-height: 1; font-size: 1.05rem; }
.brand__txt span { display: block; font-size: .62rem; letter-spacing: .18em; color: var(--gold-600); font-weight: 700; margin-top: 3px; }
.nav__menu { display: flex; align-items: center; gap: .25rem; }
.nav__link {
  position: relative; font-family: var(--ff-head); font-weight: 600; font-size: .93rem;
  color: var(--navy-800); padding: .6rem .85rem; border-radius: var(--radius-sm); transition: color var(--dur);
}
.nav__link::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .35rem; height: 2px;
  background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--gold-600); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { margin-left: .5rem; }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .5rem; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all var(--dur) var(--ease);
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: flex; align-items: center; gap: .6rem; padding: .7rem .8rem; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600; color: var(--navy-800); transition: background var(--dur), color var(--dur); }
.drop a:hover { background: var(--bg-alt); color: var(--gold-600); }
.drop a svg { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; }

.nav__toggle { display: none; width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--bg-alt); }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--navy-800); margin: 4px auto; transition: transform var(--dur), opacity var(--dur); }
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px){
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(88%, 360px); flex-direction: column;
    align-items: stretch; gap: .1rem; background: var(--surface); padding: 5.5rem 1.3rem 2rem;
    box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform var(--dur) var(--ease); overflow-y: auto;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link { padding: .9rem 1rem; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: .2rem .2rem .6rem 1rem; }
  .nav__cta { margin: 1rem 0 0; }
  .nav-open { overflow: hidden; }
}

/* ----------  HERO  ---------- */
.hero { position: relative; overflow: hidden; background: radial-gradient(120% 120% at 85% 10%, var(--navy-700), var(--navy-900)); color: #fff; padding-block: clamp(3.5rem, 9vw, 7rem); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .grad { background: linear-gradient(120deg, var(--gold-400), var(--gold-600)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { color: #c9d8ee; font-size: 1.12rem; max-width: 52ch; margin-top: 1.3rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__stats { display: flex; gap: 2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero__stat b { font-family: var(--ff-head); font-size: 1.9rem; color: var(--gold-400); display: block; }
.hero__stat span { font-size: .82rem; color: #b6c7e0; letter-spacing: .03em; }
.hero__visual { position: relative; }
.hero__img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: relative;
  transform: perspective(1200px) rotateY(-9deg) rotateX(3deg); transition: transform .6s var(--ease);
  border: 1px solid rgba(255,255,255,.18);
}
.hero__visual:hover .hero__img { transform: perspective(1200px) rotateY(-4deg) rotateX(1deg); }
.hero__badge {
  position: absolute; background: var(--glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-brd); border-radius: var(--radius); padding: .8rem 1.1rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .7rem; color: var(--navy-800);
}
.hero__badge b { font-family: var(--ff-head); font-size: 1.15rem; display: block; line-height: 1; }
.hero__badge small { font-size: .72rem; color: var(--muted); }
.hero__badge svg { width: 34px; height: 34px; color: var(--gold-600); }
.hero__badge--1 { top: 8%; left: -6%; animation: float 6s ease-in-out infinite; }
.hero__badge--2 { bottom: 8%; right: -5%; animation: float 6s ease-in-out infinite 1.5s; }
.hero__glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; filter: blur(90px); background: var(--gold-glow); top: -60px; right: -40px; z-index: 0; opacity: .5; }
@media (max-width: 900px){
  .hero__grid { grid-template-columns: 1fr; }
  .hero__img { transform: none; }
  .hero__badge--1 { left: 2%; } .hero__badge--2 { right: 2%; }
}

/* floating blobs / parallax decor */
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .28; z-index: 0; pointer-events: none; }
.blob--gold { background: var(--gold-500); }
.blob--navy { background: var(--navy-500); }

/* ----------  TRUST STRIP  ---------- */
.trust { background: var(--surface); border-block: 1px solid var(--line); }
.trust__inner { display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 3.5rem); flex-wrap: wrap; padding-block: 1.8rem; }
.trust img { height: 46px; width: auto; opacity: .85; filter: grayscale(.2); transition: opacity var(--dur), filter var(--dur), transform var(--dur); }
.trust img:hover { opacity: 1; filter: grayscale(0); transform: translateY(-3px); }

/* ----------  CARDS / SERVICES  ---------- */
.cards { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
  cursor: pointer;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--gold-400), var(--gold-600)); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(13,59,110,.10), rgba(201,168,76,.16)); color: var(--navy-700);
  box-shadow: inset 0 0 0 1px rgba(13,59,110,.06);
}
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .95rem; }
.card__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; font-family: var(--ff-head); font-weight: 700; font-size: .88rem; color: var(--gold-600); }
.card__link svg { width: 16px; height: 16px; transition: transform var(--dur); }
.card:hover .card__link svg { transform: translateX(4px); }

/* ----------  FEATURE / SPLIT  ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.split__media .deco { position: absolute; inset: auto -20px -20px auto; width: 55%; height: 60%; border: 2px solid var(--gold-500); border-radius: var(--radius-lg); z-index: -1; }
.checklist { margin-top: 1.5rem; display: grid; gap: .85rem; }
.checklist li { display: flex; align-items: flex-start; gap: .7rem; color: var(--text-soft); }
.checklist svg { width: 22px; height: 22px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } .split--rev .split__media { order: 0; } }

/* ----------  STATS BAND  ---------- */
.stats { grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); text-align: center; }
.stat b { font-family: var(--ff-head); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold-400); display: block; line-height: 1; }
.stat span { color: #c5d4ea; font-size: .9rem; margin-top: .4rem; display: block; }

/* ----------  REVIEWS  ---------- */
.reviews__tabs { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; }
.rtab {
  font-family: var(--ff-head); font-weight: 600; font-size: .88rem; padding: .6rem 1.2rem;
  border-radius: var(--radius-pill); border: 1.5px solid var(--border); color: var(--navy-700);
  background: var(--surface); transition: all var(--dur);
}
.rtab:hover { border-color: var(--gold-500); }
.rtab.active { background: var(--navy-700); color: #fff; border-color: var(--navy-700); box-shadow: var(--shadow-md); }
.review-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.review {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm); position: relative; transition: transform var(--dur), box-shadow var(--dur);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review__stars { display: flex; gap: 2px; color: var(--gold-500); margin-bottom: .9rem; }
.review__stars svg { width: 18px; height: 18px; }
.review p { color: var(--text); font-size: .96rem; }
.review__who { display: flex; align-items: center; gap: .8rem; margin-top: 1.3rem; }
.review__ava { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--navy-600), var(--gold-600)); }
.review__who b { font-family: var(--ff-head); color: var(--navy-800); font-size: .95rem; }
.review__who small { color: var(--muted); font-size: .78rem; display: flex; align-items: center; gap: .3rem; }
.review__cat { position: absolute; top: 1.4rem; right: 1.4rem; font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--gold-600); background: rgba(201,168,76,.12); padding: .25rem .6rem; border-radius: var(--radius-pill); }
.google-badge { display: inline-flex; align-items: center; gap: .6rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: .7rem 1.3rem; box-shadow: var(--shadow-sm); font-weight: 600; color: var(--navy-800); }
.google-badge svg { width: 22px; height: 22px; }
.google-badge b { color: var(--gold-600); }

/* ----------  CTA BAND  ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; background: radial-gradient(120% 140% at 50% 0%, var(--navy-600), var(--navy-900)); color: #fff; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c9d8ee; max-width: 56ch; margin-inline: auto; margin-top: .9rem; }
.cta-band .hero__cta { justify-content: center; }

/* ----------  FORM  ---------- */
.form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-family: var(--ff-head); font-weight: 600; font-size: .85rem; color: var(--navy-800); margin-bottom: .45rem; }
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .96rem; color: var(--text);
  padding: .85rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); transition: border-color var(--dur), box-shadow var(--dur);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(201,168,76,.15); outline: none; background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field.two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-error { color: #c0392b; font-size: .8rem; margin-top: .35rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field.invalid .field-error { display: block; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .5rem; }
.form-success { display: none; text-align: center; padding: 1.5rem; background: rgba(39,174,96,.08); border: 1px solid rgba(39,174,96,.35); border-radius: var(--radius); color: #1e7d47; font-weight: 600; }
.form-success.show { display: block; animation: pop .4s var(--ease); }
@media (max-width: 520px){ .field.two { grid-template-columns: 1fr; } }

/* ----------  FAQ  ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .9rem; overflow: hidden; transition: box-shadow var(--dur); }
.faq__item[open] { box-shadow: var(--shadow-md); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.2rem 1.4rem; font-family: var(--ff-head); font-weight: 700; color: var(--navy-800); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.6rem; color: var(--gold-600); font-weight: 400; transition: transform var(--dur); line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 1.4rem 1.3rem; font-size: .95rem; }

/* ----------  PAGE HEADER (inner pages)  ---------- */
.pagehead { background: radial-gradient(120% 130% at 80% 0%, var(--navy-700), var(--navy-900)); color: #fff; padding-block: clamp(3rem, 7vw, 5.5rem); position: relative; overflow: hidden; }
.pagehead h1 { color: #fff; }
.pagehead p { color: #c9d8ee; max-width: 60ch; margin-top: 1rem; }
.crumbs { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .85rem; color: #a9bcda; margin-bottom: 1.1rem; }
.crumbs a { color: var(--gold-400); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { color: #a9bcda; }

/* ----------  FOOTER  ---------- */
.footer { background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); color: #b8c8e0; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand img { height: 54px; background: rgba(255,255,255,.9); padding: .4rem .6rem; border-radius: 12px; }
.footer__brand p { color: #9fb3d1; margin-top: 1rem; font-size: .92rem; max-width: 34ch; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.2rem; font-family: var(--ff-head); }
.footer__links a { display: block; padding: .35rem 0; color: #b8c8e0; font-size: .92rem; transition: color var(--dur), padding-left var(--dur); }
.footer__links a:hover { color: var(--gold-400); padding-left: 6px; }
.footer__contact li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .9rem; font-size: .92rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--gold-400); flex-shrink: 0; margin-top: 3px; }
.footer__contact a { color: #b8c8e0; }
.footer__contact a:hover { color: var(--gold-400); }
.footer__socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer__socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: background var(--dur), transform var(--dur); }
.footer__socials a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: #8ea3c4; }
.footer__bar a { color: var(--gold-400); font-weight: 600; }
@media (max-width: 860px){ .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer__grid { grid-template-columns: 1fr; } .footer__bar { justify-content: center; text-align: center; } }

/* ----------  STICKY MOBILE BUTTONS  ---------- */
.sticky-actions { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-sticky); box-shadow: 0 -6px 24px rgba(9,30,66,.18); }
.sticky-actions a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem; font-family: var(--ff-head); font-weight: 700; font-size: .95rem; color: #fff; }
.sticky-actions svg { width: 20px; height: 20px; }
.sticky-actions .sa-call { background: linear-gradient(135deg, var(--navy-600), var(--navy-800)); }
.sticky-actions .sa-wa { background: linear-gradient(135deg, #25d366, #128c47); }
@media (max-width: 768px){ .sticky-actions { display: flex; } body { padding-bottom: 56px; } }

/* Floating WhatsApp bubble (desktop) */
.wa-float { position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, #25d366, #128c47); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(18,140,71,.5); z-index: var(--z-float); animation: pulse 2.4s infinite; }
.wa-float svg { width: 30px; height: 30px; color: #fff; }
@media (max-width: 768px){ .wa-float { display: none; } }

/* ----------  SCROLL REVEAL  ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .1s; }
.reveal[data-d="2"]{ transition-delay: .2s; }
.reveal[data-d="3"]{ transition-delay: .3s; }
.reveal[data-d="4"]{ transition-delay: .4s; }

/* progress bar */
.scroll-prog { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold-400), var(--gold-600)); z-index: 70; transition: width .1s linear; }

/* ----------  KEYFRAMES  ---------- */
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes pop { from{ transform: scale(.9); opacity: 0; } to{ transform: scale(1); opacity: 1; } }

/* ----------  UTIL / MISC  ---------- */
.pill { display: inline-flex; align-items: center; gap: .45rem; font-size: .8rem; font-weight: 600; color: var(--navy-700); background: rgba(13,59,110,.06); padding: .4rem .85rem; border-radius: var(--radius-pill); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold-500); color: var(--navy-900); padding: .7rem 1.2rem; border-radius: 0 0 10px 0; z-index: 100; font-weight: 700; }
.skip-link:focus { left: 0; }

/* ----------  REDUCED MOTION  ---------- */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__img { transform: none; }
}
