/* =========================================================
   Ambika Associates — Modern Redesign
   Self-contained stylesheet (no Bootstrap dependency)
   ========================================================= */

:root {
  /* Brand carried over from the original app: purple/magenta (#884287),
     re-tuned into a fresh violet→fuchsia AI-landing palette. */
  --navy: #160a24;          /* deep plum-black (dark surfaces) */
  --navy-700: #241038;      /* raised plum */
  --brand: #884287;         /* original brand purple */
  --blue: #7c3aed;          /* primary violet (CTA / links) */
  --blue-600: #9333ea;      /* hover violet */
  --accent: #d946ef;        /* fuchsia accent */
  --accent-600: #c026d3;
  --ink: #1b1320;
  --body: #564a5c;
  --muted: #7a6f80;
  --line: #ece6f2;
  --bg: #ffffff;
  --bg-soft: #faf7fe;
  --bg-soft-2: #f3ecfb;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(60, 20, 80, 0.07);
  --shadow: 0 14px 40px rgba(60, 20, 80, 0.12);
  --shadow-lg: 0 30px 70px rgba(40, 12, 60, 0.22);
  --container: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .6rem;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1rem; }

a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--blue-600); }

img { max-width: 100%; display: block; }

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

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  font: 600 .98rem/1 "Plus Jakarta Sans", sans-serif;
  color: #fff;
  background: var(--btn-bg);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  box-shadow: 0 10px 24px rgba(124, 58, 237, .32);
}
.btn { background: linear-gradient(135deg, var(--blue), var(--accent)); }
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(124, 58, 237, .42); }
.btn--accent { --btn-bg: var(--accent); background: linear-gradient(135deg, var(--accent), #f0abfc); box-shadow: 0 10px 24px rgba(217, 70, 239, .35); }
.btn--accent:hover { box-shadow: 0 16px 34px rgba(217, 70, 239, .45); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  box-shadow: none;
}
.btn--ghost:hover { color: #fff; background: rgba(255, 255, 255, .12); }
.btn--outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover { color: var(--blue); border-color: var(--blue); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: #cfe0ff;
  font-size: .85rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
}
.topbar a { color: #cfe0ff; }
.topbar a:hover { color: #fff; }
.topbar-contact { display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: center; }
.topbar-contact span { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-social { display: flex; gap: .5rem; }
.topbar-social a {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}
.topbar-social a:hover { background: var(--accent); color: var(--navy); }
/* WhatsApp hotlink — bright green, pulsing ring */
.topbar-social a.wa-hot {
  background: #25d366;
  color: #fff;
  position: relative;
}
.topbar-social a.wa-hot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.topbar-social a.wa-hot:hover { background: #1db954; }
@media (max-width: 860px) { .topbar { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* No backdrop-filter here — moved to ::before so fixed children
     (mobile nav) are NOT clipped by it (Safari/WebKit bug) */
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
/* Frosted glass effect via pseudo-element — doesn't clip fixed children */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  z-index: -1;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
/* Real logo — 1198×162 wide banner, shown at fixed height */
.brand img {
  height: 48px;
  width: auto;
  max-width: 220px;
  border-radius: 6px;
  object-fit: contain;
  display: block;
}
/* Hide brand-text entirely — the logo image already contains the company name */
.brand-text { display: none; }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav > ul {
  display: flex;
  align-items: center;
  gap: .2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .75rem;
  border-radius: 10px;
  color: var(--ink);
  font: 600 .9rem/1 "Plus Jakarta Sans", sans-serif;
  white-space: nowrap;
}
@media (max-width: 1120px) {
  .nav a { padding: .5rem .55rem; font-size: .85rem; }
  .nav-cta { margin-left: .3rem; }
  .nav-cta .btn { padding: .7rem 1.1rem; font-size: .88rem; }
}
.nav a:hover, .nav .current > a { color: var(--blue); background: var(--bg-soft); }

.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .6;
}
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: .5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .22s var(--ease);
  z-index: 50;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem .7rem;
  font-weight: 500;
  font-size: .9rem;
  color: var(--body);
  border-radius: 9px;
}
.dropdown a:hover { background: var(--bg-soft); color: var(--blue); }
.dropdown .has-dropdown > a::after { transform: rotate(-45deg); }
.dropdown .dropdown {
  top: -.5rem;
  left: calc(100% + 8px);
  max-height: 70vh;
  overflow-y: auto;
}

.nav-cta { margin-left: .6rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 11px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: rotate(-45deg) translateY(-1px); }
body.nav-open { overflow: hidden; }

/* Mobile nav backdrop */
body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(10, 4, 20, .55);
  z-index: 999;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;           /* full height, anchored right */
    width: min(340px, 88vw);
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: -8px 0 40px rgba(40, 12, 60, .25);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1rem 2rem;     /* top padding clears the header */
    gap: 0;
    transform: translateX(105%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
    z-index: 1001;               /* above header (1000) and backdrop (999) */
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav > ul { flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav a { padding: .8rem .9rem; font-size: 1rem; }
  .has-dropdown > a::after { margin-left: auto; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: .2rem 0 .4rem .6rem;
    padding: 0 0 0 .4rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease);
  }
  .has-dropdown.open > .dropdown { max-height: 1600px; }
  .dropdown .dropdown { left: 0; }
  .nav-cta { margin: .8rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #eaf1ff;
  padding: calc(var(--header-h) + 70px) 0 110px;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(217, 70, 239, .30), transparent 60%),
    radial-gradient(950px 620px at -5% 25%, rgba(124, 58, 237, .42), transparent 55%),
    linear-gradient(160deg, #1c0d2e 0%, #160a24 55%, #100619 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, #000, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #eccbff;
  font: 600 .8rem/1 "Plus Jakarta Sans";
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin: 1.1rem 0 1rem;
}
.hero h1 .grad {
  background: linear-gradient(90deg, #e9a5ff, #c084fc 55%, #f0abfc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p { color: #d4c6e6; font-size: 1.08rem; max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-trust { display: flex; gap: 2rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-trust div strong {
  display: block;
  font: 800 3.2rem/1 "Plus Jakarta Sans";
  color: #fff;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.hero-trust div strong span { font: inherit; color: inherit; }
/* The + is a CSS after so it never wraps away from the number */
.hero-count::after { content: "+"; }
.hero-trust div span { font-size: .95rem; color: #b3a3c6; letter-spacing: .06em; text-transform: uppercase; margin-top: .4rem; display: block; }

.hero-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  padding: 1.6rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; }
.hero-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.hero-card li { display: flex; align-items: center; gap: .7rem; color: #dce6fb; font-size: .96rem; }
.hero-card li i {
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: rgba(217, 70, 239, .2);
  color: #f0abfc;
}
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; }
.hero-wave svg { width: 100%; height: 70px; display: block; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero { padding-bottom: 90px; }
  .hero-card { order: 2; }
}

/* ---------- Section scaffolding ---------- */
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section-head { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.section-head .kicker {
  display: inline-block;
  color: var(--blue);
  font: 700 .82rem/1 "Plus Jakarta Sans";
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-top: .4rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -22px; right: -10px;
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .8rem;
}
.about-badge strong { font-size: 1.9rem; color: var(--navy); font-family: "Plus Jakarta Sans"; line-height: 1; }
.about-badge span { font-size: .82rem; color: var(--muted); }
.about-content h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1rem; }
.about-content p { color: var(--body); }
.about-points { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .8rem; }
.about-points li { display: flex; gap: .7rem; align-items: flex-start; }
.about-points i {
  flex: none; margin-top: 2px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(0, 194, 168, .14);
  color: var(--accent-600);
  font-size: .7rem;
}
.about-points b { color: var(--ink); }

.value-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .ic {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.2rem; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .about-media.is-right { order: -1; }
  .value-cards { grid-template-columns: 1fr; }
}

/* ---------- Stats ---------- */
.stats {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(217, 70, 239, .22), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(124, 58, 237, .28), transparent 60%),
    linear-gradient(135deg, #1c0d2e, #160a24);
  color: #fff;
}
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1rem; }
.stat .num { font: 800 2.6rem/1 "Plus Jakarta Sans"; color: #fff; }
.stat .num .suffix { color: #f0abfc; }
.stat p { margin: .5rem 0 0; color: #c2b2d6; font-weight: 500; }
/* .growth-badge removed — growth is applied silently in JS */
@media (max-width: 760px) { .stats .container { grid-template-columns: 1fr 1fr; gap: 1rem; } .stat .num { font-size: 2.1rem; } }

/* ---------- Services ---------- */
.group-label {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 2.2rem 0 1.3rem;
}
.group-label:first-of-type { margin-top: .6rem; }
.group-label i {
  width: 38px; height: 38px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff;
  font-size: 1.1rem;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

/* ---------- Partners ---------- */
.partner-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.partner-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-align: center;
  min-height: 100px;
  padding: 1.2rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font: 600 .82rem/1.3 "Plus Jakarta Sans", sans-serif;
  color: var(--muted);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), color .25s, border-color .25s;
}
.partner-grid li img {
  max-height: 44px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .3s var(--ease);
}
.partner-grid li:hover {
  transform: translateY(-4px);
  color: var(--blue);
  border-color: transparent;
  box-shadow: var(--shadow);
}
.partner-grid li:hover img { filter: none; }
@media (max-width: 1100px) { .partner-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px)  { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px)  { .partner-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- NJ Wealth Dedicated Section ---------- */
.nj-section {
  background:
    radial-gradient(800px 500px at 100% 50%, rgba(204, 0, 0, .07), transparent 60%),
    radial-gradient(600px 400px at 0% 50%, rgba(124, 58, 237, .08), transparent 55%),
    var(--bg-soft);
}
.nj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.nj-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}
.nj-left h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 1rem; }
.nj-left p { color: var(--body); }
.nj-tagline {
  font: 700 1.15rem/1 "Plus Jakarta Sans";
  color: var(--blue);
  margin: 1.2rem 0 1.6rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
}
.nj-right h3 { font-size: 1.2rem; margin-bottom: 1.2rem; }
.nj-features {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: .9rem;
}
.nj-features li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .9rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: .94rem;
  color: var(--body);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nj-features li:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.nj-ic {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff;
  font-size: 1.1rem;
}
.nj-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, .1);
  border: 1px solid rgba(124, 58, 237, .2);
  color: var(--blue);
  font: 700 .88rem/1 "Plus Jakarta Sans";
}
.nj-badge i { font-size: 1.1rem; }
@media (max-width: 900px) { .nj-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.service {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.service::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service:hover::before { transform: scaleX(1); }
.service .ic {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--bg-soft-2);
  color: var(--blue);
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.service:hover .ic { background: linear-gradient(135deg, var(--blue), var(--accent)); color: #fff; }
.service h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.service p { color: var(--muted); font-size: .95rem; margin: 0; }
@media (max-width: 960px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Claim Forms Grid ---------- */
.claim-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.claim-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--body);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s, color .25s;
}
.claim-item:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.claim-ic {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(124, 58, 237, .1);
  color: var(--blue);
  font-size: 1.3rem;
  transition: background .25s var(--ease), color .25s;
}
.claim-ic--ckyc { background: rgba(0, 163, 108, .1); color: #00a36c; }
.claim-item:hover .claim-ic { background: linear-gradient(135deg, var(--blue), var(--accent)); color: #fff; }
.claim-body { flex: 1; min-width: 0; }
.claim-body strong { display: block; font: 600 .98rem/1.2 "Plus Jakarta Sans"; color: var(--ink); margin-bottom: .2rem; }
.claim-body span { font-size: .82rem; color: var(--muted); }
.claim-arrow { flex: none; color: var(--muted); opacity: 0; transform: translateX(-4px); transition: all .25s var(--ease); }
.claim-item:hover .claim-arrow { opacity: 1; transform: translateX(0); color: var(--blue); }
@media (max-width: 760px) { .claim-grid { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.reviews-widget {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}
.reviews-rating-box {
  background: linear-gradient(160deg, var(--navy), #241038);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.reviews-stars { display: flex; justify-content: center; gap: .3rem; font-size: 1.5rem; color: #facc15; margin-bottom: .6rem; }
.reviews-score { font: 800 3.5rem/1 "Plus Jakarta Sans"; color: #fff; }
.reviews-label { color: #c2b2d6; font-size: .9rem; margin: .5rem 0 1.4rem; }
.reviews-btn { width: 100%; justify-content: center; font-size: .88rem; padding: .75rem 1rem; }
.reviews-cards { display: grid; gap: 1rem; }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-top { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.review-avatar {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff;
  display: grid; place-items: center;
  font: 700 1.1rem/1 "Plus Jakarta Sans";
}
.review-top strong { display: block; font-size: .96rem; color: var(--ink); }
.review-stars { display: flex; gap: .15rem; font-size: .85rem; color: #facc15; margin-top: .15rem; }
.review-card p { margin: 0; font-size: .93rem; color: var(--body); font-style: italic; line-height: 1.65; }
.reviews-note { text-align: center; margin-top: 1.6rem; font-size: .88rem; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: .4rem; }
@media (max-width: 820px) { .reviews-widget { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item::after {
  content: "\f06e"; /* eye via fontawesome-like fallback handled with svg below */
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10, 26, 60, .55));
  opacity: 0;
  transition: opacity .3s var(--ease);
  display: grid; place-items: center;
  color: #fff;
  font-family: inherit;
  font-size: 0;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-zoom {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--navy);
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s var(--ease);
  z-index: 2;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 16, 36, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s;
}
.lightbox button:hover { background: rgba(255, 255, 255, .25); }
.lb-close { top: 4vw; right: 4vw; }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }
@media (max-width: 620px) { .lb-prev, .lb-next { top: auto; bottom: 4vw; transform: none; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.4rem; align-items: stretch; }
.contact-cards { display: grid; gap: 1.2rem; align-content: start; }
.contact-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease);
}
.contact-card:hover { transform: translateY(-3px); }
.contact-card .ic {
  flex: none;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff; font-size: 1.25rem;
}
.contact-card h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.contact-card p { margin: 0; font-size: .95rem; color: var(--body); }
.contact-card a { font-weight: 600; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { padding: 70px 0; }
.cta-inner {
  background:
    radial-gradient(700px 300px at 100% 0%, rgba(240, 171, 252, .3), transparent 60%),
    linear-gradient(135deg, var(--brand), var(--blue) 60%, var(--accent));
  border-radius: 26px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-inner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0; }
.cta-inner p { color: #f3e3ff; margin: .5rem 0 0; }

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(124, 58, 237, .22), transparent 60%),
    var(--navy);
  color: #c2b2d6;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 48px;
}
.footer-brand strong { color: #fff; font-family: "Plus Jakarta Sans"; font-size: 1.25rem; }
.footer-brand p { margin-top: .8rem; max-width: 28rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-col a { color: #c2b2d6; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-col .line { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; }
.footer-col .line i { color: var(--accent); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .88rem;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(124, 58, 237, .42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .3s var(--ease);
  z-index: 900;
  border: none;
  cursor: pointer;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--blue-600); }

/* ---------- Floating WhatsApp Widget ---------- */
.wa-widget {
  position: fixed;
  left: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.8rem;
  z-index: 900;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .5);
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
/* Outer pulsing ring */
.wa-widget::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid #25d366;
  animation: wa-ring 2s ease-out infinite;
  pointer-events: none;
}
/* Second ring offset */
.wa-widget::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid #25d366;
  animation: wa-ring 2s ease-out infinite .7s;
  pointer-events: none;
}
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: .8; }
  80%  { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}
.wa-widget:hover { transform: scale(1.1); box-shadow: 0 14px 36px rgba(37, 211, 102, .65); color: #fff; }

/* Tooltip on hover */
.wa-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  bottom: 50%;
  transform: translateY(50%);
  background: var(--navy);
  color: #fff;
  font: 600 .82rem/1 "Plus Jakarta Sans";
  padding: .45rem .8rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  transform: translateY(50%) translateX(-4px);
}
.wa-tooltip::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--navy);
}
.wa-widget:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

/* WhatsApp contact card overrides */
.wa-ic { background: linear-gradient(135deg, #25d366, #128c7e) !important; }
.wa-card-btn {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .35) !important;
  font-size: .9rem;
  padding: .7rem 1.3rem;
}
.wa-card-btn:hover { box-shadow: 0 12px 28px rgba(37, 211, 102, .5) !important; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* simple inline icon font replacement via unicode chars */
.i { font-style: normal; font-weight: 700; }
