/* =========================================================
   BN Dreamlight Solutions — Global Stylesheet
   Palette: Blue & White
   ========================================================= */

:root {
  --navy: #0a2540;
  --navy-900: #061a30;
  --blue: #0b63ce;
  --blue-600: #1877e6;
  --blue-500: #2f8bff;
  --sky: #38bdf8;
  --sky-soft: #e6f2ff;
  --cyan: #22d3ee;
  --white: #ffffff;
  --ink: #0f2033;
  --muted: #5b7185;
  --line: #e2ecf6;
  --bg-soft: #f4f9ff;
  --shadow-sm: 0 4px 14px rgba(10, 37, 64, .08);
  --shadow-md: 0 12px 34px rgba(10, 37, 64, .12);
  --shadow-lg: 0 26px 60px rgba(10, 37, 64, .18);
  --radius: 18px;
  --radius-sm: 12px;
  --grad: linear-gradient(135deg, #0b63ce 0%, #0a2540 100%);
  --grad-bright: linear-gradient(135deg, #2f8bff 0%, #22d3ee 100%);
  --maxw: 1200px;
  --ease: cubic-bezier(.16, .84, .44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  line-height: 1.15;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -.02em;
}

.container { width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto; }

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  border: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  background: var(--btn-bg);
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 99, 206, .32);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(11, 99, 206, .42); }
.btn--ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .55);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .22); box-shadow: none; }
.btn--light { background: #fff; color: var(--blue); box-shadow: var(--shadow-md); }
.btn--wa { background: #25d366; box-shadow: 0 10px 24px rgba(37, 211, 102, .4); }
.btn--wa:hover { box-shadow: 0 16px 34px rgba(37, 211, 102, .5); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 1.1rem 0;
}
.header.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(10, 37, 64, .08);
  padding: .65rem 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: .7rem; font-weight: 800; color: #fff; }
.header.scrolled .brand { color: var(--navy); }
.brand__mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-bright);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1.15rem;
  box-shadow: 0 8px 20px rgba(47, 139, 255, .4);
  font-family: "Poppins", sans-serif;
  overflow: hidden; flex: none;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.brand__mark svg { width: 100%; height: 100%; display: block; }
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.06); box-shadow: 0 12px 26px rgba(47, 139, 255, .55); }
.brand__name { font-family: "Poppins", sans-serif; font-size: 1.12rem; line-height: 1.05; letter-spacing: -.01em; }
.brand__name small { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; opacity: .75; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { color: rgba(255, 255, 255, .9); font-weight: 500; position: relative; transition: color .3s; }
.header.scrolled .nav__links a { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--sky); transition: width .3s var(--ease);
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a.active { color: #fff; }
.header.scrolled .nav__links a.active { color: var(--blue); }

.nav__cta { display: flex; align-items: center; gap: .8rem; }
.nav__phone { display: flex; align-items: center; gap: .5rem; color: #fff; font-weight: 600; }
.header.scrolled .nav__phone { color: var(--navy); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 110; }
.hamburger span { width: 26px; height: 2.5px; background: #fff; border-radius: 3px; transition: .3s; }
.header.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 0 5rem;
  color: #fff; overflow: hidden;
  background: var(--navy);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(6, 26, 48, .93) 0%, rgba(10, 37, 64, .82) 42%, rgba(11, 99, 206, .58) 100%);
}
.hero__glow {
  position: absolute; z-index: 1; border-radius: 50%;
  filter: blur(70px); opacity: .55; pointer-events: none;
}
.hero__glow--1 { width: 420px; height: 420px; background: #1877e6; top: -80px; right: -60px; }
.hero__glow--2 { width: 360px; height: 360px; background: #22d3ee; bottom: -120px; left: -80px; opacity: .35; }

.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22);
  padding: .5rem 1.05rem; border-radius: 60px; font-size: .82rem; font-weight: 500;
  letter-spacing: .04em; margin-bottom: 1.6rem; backdrop-filter: blur(6px);
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #25d366; box-shadow: 0 0 0 4px rgba(37, 211, 102, .25); }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6vw, 4.4rem); margin-bottom: 1.3rem; }
.hero h1 .accent { background: var(--grad-bright); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: rgba(255, 255, 255, .9); max-width: 620px; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 2.4rem; }
.hero__stat b { display: block; font-family: "Poppins", sans-serif; font-size: 2rem; color: #fff; line-height: 1; }
.hero__stat span { font-size: .86rem; color: rgba(255, 255, 255, .75); }
.hero__scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255, 255, 255, .7); font-size: .78rem; letter-spacing: .18em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero__scroll .mouse { width: 22px; height: 36px; border: 2px solid rgba(255, 255, 255, .5); border-radius: 14px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; background: #fff; border-radius: 3px; animation: scrollWheel 1.6s infinite; }
@keyframes scrollWheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ---------- Section headings ---------- */
.section { padding: 6rem 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #fff; }
.head { max-width: 680px; margin: 0 auto 3.4rem; text-align: center; }
.head--left { margin-inline: 0; text-align: left; }
.tag {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue); margin-bottom: .9rem;
}
.section--navy .tag { color: var(--sky); }
.head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.section--navy .head h2 { color: #fff; }
.head p { color: var(--muted); font-size: 1.06rem; }
.section--navy .head p { color: rgba(255, 255, 255, .78); }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.6rem; }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.svc::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-bright);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc:hover::before { transform: scaleX(1); }
.svc__icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: var(--sky-soft); color: var(--blue); margin-bottom: 1.3rem;
  transition: background .4s, color .4s, transform .4s;
}
.svc:hover .svc__icon { background: var(--grad-bright); color: #fff; transform: rotate(-6deg) scale(1.05); }
.svc__icon svg { width: 30px; height: 30px; }
.svc h3 { font-size: 1.2rem; margin-bottom: .55rem; }
.svc p { color: var(--muted); font-size: .96rem; }
.svc__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; color: var(--blue); font-weight: 600; font-size: .92rem; }
.svc__link svg { transition: transform .3s; }
.svc:hover .svc__link svg { transform: translateX(4px); }

/* ---------- Feature / Why ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3.4rem; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 100%; object-fit: cover; }
.split__badge {
  position: absolute; bottom: -22px; right: -18px; background: #fff; border-radius: 16px;
  padding: 1.1rem 1.4rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .9rem;
}
.split__badge b { font-family: "Poppins", sans-serif; font-size: 1.7rem; color: var(--blue); line-height: 1; }
.split__badge span { font-size: .82rem; color: var(--muted); }
.feature-list { display: grid; gap: 1.2rem; margin-top: 1.8rem; }
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--sky-soft); color: var(--blue); display: grid; place-items: center; }
.feature__ic svg { width: 22px; height: 22px; }
.feature h4 { font-size: 1.05rem; margin-bottom: .2rem; }
.feature p { color: var(--muted); font-size: .93rem; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card { text-align: center; padding: 1.4rem; }
.stat-card b { font-family: "Poppins", sans-serif; font-size: clamp(2.2rem, 5vw, 3.2rem); background: var(--grad-bright); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; line-height: 1; }
.stat-card span { color: rgba(255, 255, 255, .8); font-size: .95rem; }

/* ---------- Steps / Process ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.6rem 1.8rem; position: relative; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num { counter-increment: step; font-family: "Poppins", sans-serif; font-weight: 800; font-size: 2.4rem; background: var(--grad-bright); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.step h4 { margin: .6rem 0 .4rem; font-size: 1.12rem; }
.step p { color: var(--muted); font-size: .94rem; }

/* ---------- Testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s; }
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review__stars { color: #ffb020; margin-bottom: .9rem; letter-spacing: 2px; }
.review p { color: var(--ink); font-style: italic; margin-bottom: 1.2rem; }
.review__by { display: flex; align-items: center; gap: .8rem; }
.review__av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: "Poppins", sans-serif; }
.review__by b { display: block; font-size: .96rem; color: var(--navy); }
.review__by span { font-size: .82rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad); color: #fff; border-radius: 28px; padding: 3.6rem clamp(1.6rem, 5vw, 4rem); position: relative; overflow: hidden; text-align: center; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; filter: blur(60px); }
.cta-band::before { width: 300px; height: 300px; background: rgba(34, 211, 238, .35); top: -100px; right: -60px; }
.cta-band::after { width: 260px; height: 260px; background: rgba(24, 119, 230, .5); bottom: -120px; left: -40px; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .9rem; }
.cta-band p { color: rgba(255, 255, 255, .88); max-width: 560px; margin: 0 auto 2rem; }
.cta-band .hero__actions { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, .75); padding: 4rem 0 1.8rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; margin-bottom: 3rem; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.footer a { color: rgba(255, 255, 255, .72); transition: color .3s; }
.footer a:hover { color: var(--sky); }
.footer__links { display: grid; gap: .6rem; }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer__about { font-size: .93rem; max-width: 320px; }
.footer__contact li { display: flex; gap: .7rem; margin-bottom: .7rem; font-size: .93rem; align-items: flex-start; }
.footer__contact svg { flex: none; margin-top: 3px; color: var(--sky); }
.footer__socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer__socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; color: #fff; transition: background .3s, transform .3s; }
.footer__socials a:hover { background: var(--blue); transform: translateY(-3px); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 1.6rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .86rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 10rem 0 4rem; background: var(--navy); color: #fff; position: relative; overflow: hidden; text-align: center; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,26,48,.7), rgba(10,37,64,.92)); z-index: 1; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: .8rem; }
.page-hero p { color: rgba(255, 255, 255, .85); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { display: inline-flex; gap: .5rem; font-size: .88rem; color: rgba(255,255,255,.7); margin-top: 1.2rem; }
.breadcrumb a:hover { color: var(--sky); }

/* ---------- Detailed service rows ---------- */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4.5rem; }
.svc-row:last-child { margin-bottom: 0; }
.svc-row--rev .svc-row__media { order: 2; }
.svc-row__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.svc-row__badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--sky-soft); color: var(--blue); padding: .45rem 1rem; border-radius: 60px; font-size: .82rem; font-weight: 700; margin-bottom: 1rem; }
.svc-row h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .9rem; }
.svc-row p { color: var(--muted); margin-bottom: 1.2rem; }
.ticklist { display: grid; gap: .65rem; margin-bottom: 1.6rem; }
.ticklist li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink); font-size: .96rem; }
.ticklist svg { flex: none; color: #25d366; margin-top: 3px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info { display: grid; gap: 1.2rem; }
.info-card { display: flex; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card__ic { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--grad-bright); color: #fff; display: grid; place-items: center; }
.info-card h4 { font-size: 1.02rem; margin-bottom: .2rem; }
.info-card p, .info-card a { color: var(--muted); font-size: .95rem; }
.info-card a:hover { color: var(--blue); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: #fbfdff; transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11, 99, 206, .12); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: .8rem; text-align: center; }
.form-success { background: #e9f9ef; border: 1px solid #b7ebc8; color: #147a3d; padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; display: none; }
.form-success.show { display: block; }

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

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 1rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .3s; }
.faq__item.open { box-shadow: var(--shadow-md); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.25rem 1.4rem; font: inherit; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__q .ic { flex: none; transition: transform .3s; color: var(--blue); }
.faq__item.open .faq__q .ic { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 1.4rem 1.3rem; color: var(--muted); }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s; }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value__ic { width: 54px; height: 54px; border-radius: 14px; background: var(--sky-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 1.1rem; }
.value h4 { font-size: 1.12rem; margin-bottom: .5rem; }
.value p { color: var(--muted); font-size: .95rem; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 24px; z-index: 90;
  display: flex; align-items: center; gap: .6rem;
  background: #25d366; color: #fff; padding: .85rem 1.15rem; border-radius: 60px;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .45); font-weight: 600; font-size: .95rem;
  transform: translateY(120px); opacity: 0; transition: transform .5s var(--ease), opacity .5s, box-shadow .3s;
}
.wa-float.show { transform: translateY(0); opacity: 1; }
.wa-float:hover { box-shadow: 0 18px 40px rgba(37, 211, 102, .6); transform: translateY(-3px); }
.wa-float svg { width: 24px; height: 24px; }
.wa-float__pulse { position: absolute; inset: 0; border-radius: 60px; box-shadow: 0 0 0 0 rgba(37, 211, 102, .6); animation: waPulse 2.2s infinite; }
@keyframes waPulse { 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); } }
.wa-float .label-txt { white-space: nowrap; }

/* ---------- Page pager (prev / next) ---------- */
.pager-section { padding: 0 0 5rem; }
.pager-head { text-align: center; margin-bottom: 1.6rem; }
.pager-head span { font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
.pager-head h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); color: var(--navy); margin-top: .3rem; }
.pager { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.pager__link {
  display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.5rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.pager__link:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.pager__next { justify-content: flex-end; text-align: right; }
.pager__ic {
  flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sky-soft); color: var(--blue); transition: background .35s, color .35s, transform .35s;
}
.pager__link:hover .pager__ic { background: var(--grad-bright); color: #fff; }
.pager__prev:hover .pager__ic { transform: translateX(-4px); }
.pager__next:hover .pager__ic { transform: translateX(4px); }
.pager__dir { display: block; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.pager__title { display: block; font-family: "Poppins", sans-serif; font-weight: 700; color: var(--navy); font-size: 1.08rem; line-height: 1.2; }

/* ---------- Mobile bottom navigation bar ---------- */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 96; display: none;
  background: rgba(255, 255, 255, .97); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 26px rgba(10, 37, 64, .1);
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.bottom-nav a {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: .6rem 0 .55rem; color: var(--muted); font-size: .7rem; font-weight: 600;
  transition: color .3s;
}
.bottom-nav a svg { width: 23px; height: 23px; transition: transform .3s; }
.bottom-nav a.active { color: var(--blue); }
.bottom-nav a.active svg { transform: translateY(-1px) scale(1.06); }
.bottom-nav a.active::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 30px; height: 3px; border-radius: 0 0 3px 3px; background: var(--grad-bright);
}
.bottom-nav a:active { color: var(--navy); }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-46px); }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal="zoom"] { transform: scale(.9); }
[data-reveal].in { transform: none; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: var(--grad-bright); transition: width .1s linear; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 1.4rem 0; border-block: 1px solid var(--line); background: #fff; }
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; gap: .6rem; color: var(--muted); font-weight: 600; white-space: nowrap; }
.marquee__item svg { color: var(--blue); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .split, .contact-grid, .svc-row, .svc-row--rev .svc-row__media { grid-template-columns: 1fr; }
  .svc-row--rev .svc-row__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .nav__phone { display: none; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 6rem 2rem 2rem; gap: 1.5rem; transform: translateX(100%);
    transition: transform .4s var(--ease); box-shadow: -10px 0 40px rgba(10,37,64,.2); z-index: 105;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { color: var(--ink); font-size: 1.1rem; }
  .header.scrolled .nav__links a { color: var(--ink); }
  .hamburger { display: flex; }
  .nav__cta .btn { display: none; }
  /* Always-visible app-style bottom nav on small screens */
  .bottom-nav { display: grid; }
  body { padding-bottom: 66px; }
  .footer { padding-bottom: 5.5rem; }
  .wa-float { bottom: 84px; right: 16px; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.4rem; }
  .wa-float .label-txt { display: none; }
  .split__badge { right: 10px; }
  .pager { grid-template-columns: 1fr; }
  .pager__link { padding: 1.05rem 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
