/* ============================================================
   MASTER TEMPLATE STYLESHEET
   ------------------------------------------------------------
   Reusable DESIGN layer. Business-specific text/data lives in
   js/content.js — this file should rarely need to change when
   customizing for a new client, aside from the color palette
   below and optionally the fonts.

   Structure:
    1  Design tokens
    2  Reset
    3  Buttons
    4  Topbar
    5  Header / nav
    6  Hero
    7  Section scaffolding
    8  Scroll-reveal / entrance animation system
    9  Services (editorial cards)
   10  Before/after compare slider
   11  Gallery (masonry + lightbox)
   12  Why choose us (dark split section)
   13  About
   14  Process (timeline)
   15  Testimonials
   16  Service area
   17  FAQ
   18  Final CTA banner
   19  Contact
   20  Footer
   21  Floating WhatsApp + mobile CTA bar
   22  Reduced motion
   23  Responsive
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  --color-primary: #0f9b8e;
  --color-primary-dark: #0b7b71;
  --color-primary-light: #e6f6f4;
  --color-accent: #f5a623;
  --color-accent-dark: #d68d0f;
  --color-ink: #0b2545;
  --color-ink-2: #082038;
  --color-ink-soft: #3a4a63;
  --color-body: #4b5768;
  --color-bg: #ffffff;
  --color-bg-alt: #f6f8fa;
  --color-border: #e6eaef;
  --color-white: #ffffff;

  --font-heading: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --container-w: 1200px;
  --container-narrow-w: 780px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.16);

  /* Motion system — premium/calm/deliberate, not snappy. */
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 320ms var(--ease-premium); /* hover / micro-interactions: 250-400ms */
  --transition-slow: 900ms var(--ease-premium); /* scroll reveal: 700-1000ms */
  --transition-image: 1000ms var(--ease-premium); /* image zoom/reveal: 800-1200ms */
}

/* ---------- 2. Reset ---------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  line-height: 1.2;
  margin: 0 0 16px;
}
p {
  margin: 0 0 16px;
}
button {
  font-family: inherit;
}
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow-w);
}

/* Sections with an anchor id: offset scroll target so the sticky
   header never covers the heading when jumping via nav links. */
section[id] {
  scroll-margin-top: 92px;
}

/* ---------- 3. Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 650ms var(--ease-premium);
  pointer-events: none;
}
.btn:hover::before {
  transform: translateX(120%);
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-ink);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}
.btn-block {
  width: 100%;
}

/* ---------- 4. Top utility bar ---------- */
.topbar {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 16px;
}
.topbar__info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar__area {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}
.topbar__icon {
  display: inline-flex;
  width: 13px;
  height: 13px;
  color: var(--color-accent);
}
.topbar__icon svg {
  width: 100%;
  height: 100%;
}
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  transition: color var(--transition);
}
.topbar__link:hover {
  color: var(--color-accent);
}
.topbar__sep {
  opacity: 0.5;
}

/* ---------- 5. Header / nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
.header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__word {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}
.logo-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.logo-mark__bg {
  fill: var(--color-primary);
}
.logo-mark__drop {
  fill: var(--color-white);
}
.logo-mark__spark {
  fill: var(--color-accent);
}

.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav a:hover,
.nav a.is-active {
  color: var(--color-primary);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}
.nav a:hover::after,
.nav a.is-active::after {
  width: 100%;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 16px 24px 24px;
}
.mobile-nav a {
  padding: 12px 4px;
  font-weight: 500;
  color: var(--color-ink-soft);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav .btn {
  margin-top: 12px;
}
.mobile-nav.is-open {
  display: flex;
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  color: var(--color-white);
  isolation: isolate;
  background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-primary-dark) 55%, var(--color-primary) 100%);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  transform: scale(1.06);
  animation: heroZoom 34s ease-in-out infinite alternate;
}
.hero__img.is-fallback {
  display: none;
}
@keyframes heroZoom {
  0% { transform: scale(1.06); }
  100% { transform: scale(1.15); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(245, 166, 35, 0.22), transparent 60%),
    linear-gradient(115deg, rgba(11, 37, 69, 0.94) 0%, rgba(11, 37, 69, 0.82) 38%, rgba(15, 155, 142, 0.55) 100%);
}
.hero__decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  animation: floatSlow 20s ease-in-out infinite;
}
.hero__decor--1 {
  width: 260px;
  height: 260px;
  background: var(--color-accent);
  top: 8%;
  right: 8%;
}
.hero__decor--2 {
  width: 200px;
  height: 200px;
  background: var(--color-primary);
  bottom: 10%;
  left: 4%;
  animation-delay: -9s;
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-18px) translateX(10px); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 132px 24px 88px;
}
.hero__content {
  max-width: 680px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.eyebrow-center {
  display: block;
  text-align: center;
}
.eyebrow-light {
  color: var(--color-accent);
}
.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}
.hero__subheadline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.hero__badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero__badges li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* Hero load-in stagger (not scroll-triggered — hero is always the
   first thing visible, so it animates in on page load instead). */
.hero-anim {
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 850ms var(--ease-premium) forwards;
  animation-delay: calc(var(--d, 0) * 130ms + 150ms);
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Trust strip: white card row that overlaps the hero's bottom edge */
.trust-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 22px 28px;
  margin: 0 auto;
  transform: translateY(50%);
  max-width: 960px;
}
/* Fades in on load like the rest of the hero, but only animates
   opacity — the permanent translateY(50%) overlap above must never be
   touched by a fill-mode:forwards animation, or it would get locked at
   the animation's end value and lose the overlap once it finishes. */
.trust-strip--anim {
  opacity: 0;
  animation: trustStripIn var(--transition-slow) forwards;
  animation-delay: calc(var(--d, 5) * 130ms + 150ms);
}
@keyframes trustStripIn {
  to { opacity: 1; }
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-ink);
  border-right: 1px solid var(--color-border);
}
.trust-strip li:last-child {
  border-right: none;
}
.trust-strip__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-strip__icon svg {
  width: 16px;
  height: 16px;
}

/* ---------- 7. Section scaffolding ---------- */
.section {
  position: relative;
  padding: 96px 0;
}
.section-alt {
  background: var(--color-bg-alt);
}
.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  max-width: 640px;
  margin: 0 auto 12px;
}
.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  color: var(--color-ink-soft);
}
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ---------- 8. Scroll-reveal / entrance animation system ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal--left {
  transform: translateX(-32px);
}
.reveal--right {
  transform: translateX(32px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ---------- 9. Services (editorial cards) ---------- */
.services {
  overflow: hidden;
}
.services__decor {
  position: absolute;
  top: -120px;
  right: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  /* No overflow:hidden here — the inner .img-frame already clips the
     photo to this box, and the floating icon badge below is meant to
     overlap past this box's bottom edge into the card body. */
}
.service-card__media .img-frame,
.service-card__media .img-frame__img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.service-card:hover .img-frame__img {
  transform: scale(1.08);
}
.service-card__icon {
  position: absolute;
  left: 16px;
  bottom: -20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.service-card__icon svg {
  width: 22px;
  height: 22px;
}
.service-card__body {
  padding: 34px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--color-body);
  margin-bottom: 16px;
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-primary);
  transition: gap var(--transition);
}
.service-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.service-card:hover .service-card__link {
  gap: 10px;
}
.service-card:hover .service-card__link svg {
  transform: translateX(2px);
}

/* ---------- 9b. Reusable image frame + graceful fallback ---------- */
.img-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
}
.img-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-image);
}
.img-frame__fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-bg-alt));
  color: var(--color-primary);
}
.img-frame__fallback svg {
  width: 30%;
  height: 30%;
  max-width: 64px;
  max-height: 64px;
  opacity: 0.6;
}
.img-frame.is-fallback .img-frame__img {
  display: none;
}
.img-frame.is-fallback .img-frame__fallback {
  display: flex;
}

/* ---------- 10. Before/after compare slider ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.compare {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.compare:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.compare__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  --pos: 50%;
}
.compare__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare__img--before {
  filter: grayscale(65%) brightness(0.78) contrast(0.92);
}
.compare__before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.compare__before-wrap .compare__img {
  position: absolute;
  inset: 0;
}
.compare__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  background: var(--color-white);
  box-shadow: 0 0 0 1px rgba(11, 37, 69, 0.15);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}
.compare__handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: var(--shadow-md);
  transform: translate(-50%, -50%);
  transition: transform var(--transition), box-shadow var(--transition);
  pointer-events: none;
}
.compare__handle svg {
  width: 14px;
  height: 14px;
}
.compare:hover .compare__handle {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: var(--shadow-lg);
}
.compare__tag {
  position: absolute;
  top: 12px;
  z-index: 3;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(11, 37, 69, 0.72);
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
}
.compare__tag--before {
  left: 12px;
}
.compare__tag--after {
  right: 12px;
  background: var(--color-primary);
}
.compare__range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.compare__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
}
.compare__range::-moz-range-thumb {
  width: 4px;
  height: 100%;
  border: none;
  background: transparent;
}
.compare__caption {
  padding: 16px 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-ink);
}

/* ---------- 11. Gallery (masonry + lightbox) ---------- */
.gallery-section {
  overflow: hidden;
}
.gallery-section__decor {
  position: absolute;
  top: -120px;
  left: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  pointer-events: none;
}
.gallery-grid {
  position: relative;
  z-index: 1;
  columns: 3;
  column-gap: 20px;
}
.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: none;
  padding: 0;
  display: block;
  width: 100%;
  background: none;
  font: inherit;
}
.gallery-item .img-frame {
  border-radius: 0;
  aspect-ratio: 1 / 1;
}
.gallery-item--tall .img-frame {
  aspect-ratio: 3 / 4;
}
.gallery-item--wide .img-frame {
  aspect-ratio: 16 / 10;
}
.gallery-item:hover .img-frame__img {
  transform: scale(1.07);
}
.gallery-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-white);
  background: linear-gradient(0deg, rgba(11, 37, 69, 0.85) 0%, rgba(11, 37, 69, 0) 100%);
  transform: translateY(6px);
  opacity: 0.92;
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-item__caption {
  transform: translateY(0);
}
.gallery-item__zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-item__zoom svg {
  width: 15px;
  height: 15px;
}
.gallery-item:hover .gallery-item__zoom {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 32, 56, 0.92);
  padding: 24px;
  animation: lightboxIn 320ms var(--ease-premium);
}
.lightbox[hidden] {
  display: none;
}
@keyframes lightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox__figure {
  max-width: min(900px, 90vw);
  max-height: 86vh;
  margin: 0;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: 74vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}
.lightbox__figure figcaption {
  text-align: center;
  color: var(--color-white);
  font-size: 0.9rem;
  margin-top: 14px;
}
.lightbox__btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}
.lightbox__btn svg {
  width: 18px;
  height: 18px;
}
.lightbox__close {
  top: 20px;
  right: 20px;
}
.lightbox__nav--prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav--next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- 12. Why choose us (dark split section) ---------- */
.why-us {
  background: linear-gradient(160deg, var(--color-ink) 0%, var(--color-ink-2) 100%);
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}
.why-us__decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
  animation: floatSlow 24s ease-in-out infinite;
}
.why-us__decor--1 {
  width: 320px;
  height: 320px;
  background: var(--color-primary);
  top: -80px;
  left: -100px;
}
.why-us__decor--2 {
  width: 260px;
  height: 260px;
  background: var(--color-accent);
  bottom: -80px;
  right: -60px;
  animation-delay: -11s;
}
.why-us__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.why-us__visual {
  position: relative;
}
.why-us__frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.why-us__badge {
  position: absolute;
  right: -18px;
  top: -18px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.why-us__badge svg {
  width: 16px;
  height: 16px;
}
.why-us h2 {
  color: var(--color-white);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
}
.why-us__lead {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-list__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(15, 155, 142, 0.22);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-list__icon svg {
  width: 18px;
  height: 18px;
}
.feature-list h4 {
  color: var(--color-white);
  font-size: 0.98rem;
  margin: 0 0 4px;
}
.feature-list p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ---------- 13. About ---------- */
.about {
  overflow: hidden;
}
.about__decor {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  bottom: -160px;
  right: -140px;
  pointer-events: none;
}
.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__frame-decor {
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about__frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__floatcard {
  position: absolute;
  left: -20px;
  bottom: -20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  max-width: 260px;
}
.about__floatcard-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__floatcard-icon svg {
  width: 20px;
  height: 20px;
}
.about__floatcard-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-ink);
}
.about__floatcard-sub {
  font-size: 0.8rem;
  color: var(--color-ink-soft);
}
.stats {
  display: flex;
  gap: 36px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-primary);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
}

/* ---------- 14. Process (timeline) ---------- */
/* Soft elevated surface the whole timeline sits on — adds depth to the
   section without turning each step into its own bordered card. The
   padding lives here, not on .timeline itself, so .timeline__line's
   percentage-based positioning below stays correct. */
.timeline-surface {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 52px 40px 44px;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.timeline__line {
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}
.timeline__line-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1600ms var(--ease-premium);
}
.timeline.is-visible .timeline__line-fill {
  transform: scaleX(1);
}
.timeline__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.timeline__num {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  box-shadow: var(--shadow-sm), 0 0 0 6px var(--color-primary-light);
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}
.timeline__num svg {
  width: 22px;
  height: 22px;
}
.timeline__num-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.timeline__step:hover .timeline__num {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 6px var(--color-primary-light);
}
.timeline__step h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.timeline__step p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---------- 15. Testimonials ---------- */
.testimonials {
  overflow: hidden;
}
.testimonials__decor {
  position: absolute;
  top: -140px;
  left: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  pointer-events: none;
}
.testimonial {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonial__quote-mark {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-primary-light);
  line-height: 1;
  pointer-events: none;
}
.testimonial__stars {
  display: flex;
  gap: 3px;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.testimonial__stars svg {
  width: 16px;
  height: 16px;
}
.testimonial p {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  margin-bottom: 18px;
  position: relative;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial__name {
  font-weight: 600;
  color: var(--color-ink);
  font-size: 0.9rem;
}
.testimonial__loc {
  font-size: 0.78rem;
  color: var(--color-ink-soft);
}

/* ---------- 16. Service area ---------- */
.areas-section {
  overflow: hidden;
}
.areas-section__decor {
  position: absolute;
  bottom: -140px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  pointer-events: none;
}
.areas-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-ink);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.area-chip:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.area-chip svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ---------- 17. FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-ink);
  transition: color var(--transition);
}
.faq-item__q:hover {
  color: var(--color-primary);
}
.faq-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-item__icon svg {
  width: 14px;
  height: 14px;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
  background: var(--color-primary);
  color: var(--color-white);
}
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms var(--ease-premium);
}
.faq-item__a-inner {
  overflow: hidden;
}
.faq-item__a-inner p {
  font-size: 0.94rem;
  color: var(--color-body);
  margin: 0 0 22px;
}
.faq-item.is-open .faq-item__a {
  grid-template-rows: 1fr;
}

/* ---------- 18. Final CTA banner ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-primary-dark) 60%, var(--color-primary) 100%);
  padding: 100px 0;
  text-align: center;
}
.cta-banner__decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 15% 0%, rgba(245, 166, 35, 0.25), transparent 60%),
    radial-gradient(700px 400px at 85% 100%, rgba(255, 255, 255, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner h2 {
  color: var(--color-white);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ---------- 19. Contact ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
}
.contact__lead {
  color: var(--color-ink-soft);
  margin-bottom: 28px;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--color-ink);
}
.contact__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__icon svg {
  width: 18px;
  height: 18px;
}
.contact__form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  margin-bottom: 18px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 6px;
}
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-ink);
  background: var(--color-bg-alt);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px var(--color-primary-light);
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233a4a63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
textarea {
  resize: vertical;
}
.form-note {
  margin: 14px 0 0;
  font-size: 0.86rem;
  color: var(--color-primary-dark);
  min-height: 1.2em;
}
.form-disclaimer {
  margin: 6px 0 0;
  font-size: 0.76rem;
  color: var(--color-ink-soft);
  opacity: 0.8;
}

/* ---------- 20. Footer ---------- */
.footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.75);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 64px 24px 48px;
}
.brand--footer .brand__word {
  color: var(--color-white);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__brand p {
  font-size: 0.9rem;
  max-width: 280px;
  margin: 0;
}
.footer__col h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a, .footer__col span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.footer__col a:hover {
  color: var(--color-accent);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
}
.footer__disclaimer {
  opacity: 0.6;
  margin: 0;
}
.footer__bottom p {
  margin: 0;
}

/* ---------- 21. Floating WhatsApp + mobile CTA bar ---------- */
.floating-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25b26a;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transition: transform var(--transition);
}
.floating-btn:hover {
  transform: scale(1.08);
}
.floating-btn__icon svg {
  width: 28px;
  height: 28px;
}
.floating-btn__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25b26a;
  opacity: 0.55;
  animation: pulse 2.8s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 190;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 24px rgba(11, 37, 69, 0.08);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
}
.mobile-cta-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 12px;
  border-radius: var(--radius-sm);
}
.mobile-cta-bar__btn svg {
  width: 16px;
  height: 16px;
}
.mobile-cta-bar__btn--call {
  background: var(--color-bg-alt);
  color: var(--color-ink);
  border: 1px solid var(--color-border);
}
.mobile-cta-bar__btn--quote {
  background: var(--color-accent);
  color: var(--color-ink);
}

/* ---------- 22. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-anim {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  /* Deliberately does NOT reset transform: .trust-strip's permanent
     translateY(50%) overlap must stay even with motion reduced — only
     the fade-in itself is disabled. */
  .trust-strip--anim {
    opacity: 1 !important;
    animation: none !important;
  }
  .hero__img {
    animation: none;
    transform: scale(1.02);
  }
  .hero__decor,
  .why-us__decor {
    animation: none;
  }
  .floating-btn__pulse {
    animation: none;
    display: none;
  }
  .timeline__line-fill {
    transition: none;
  }
  .service-card:hover,
  .testimonial:hover,
  .compare:hover,
  .gallery-item:hover .img-frame__img,
  .service-card:hover .img-frame__img,
  .btn:hover,
  .area-chip:hover,
  .timeline__step:hover .timeline__num {
    transform: none;
  }
  .btn::before {
    display: none;
  }
}

/* ============================================================
   23. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-surface {
    padding: 44px 32px 36px;
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }
  .timeline__line {
    display: none;
  }
  .why-us__inner {
    grid-template-columns: 1fr;
  }
  .why-us__visual {
    max-width: 360px;
    margin: 0 auto 48px;
  }
  .about__inner {
    grid-template-columns: 1fr;
  }
  .about__visual {
    max-width: 360px;
    margin: 0 auto 36px;
  }
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .topbar__info span:not(:first-child) { display: none; }
  .topbar__sep { display: none; }
  .topbar__area { display: none; }
  .nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .header__actions .btn-sm {
    display: none;
  }
  .hero__inner {
    padding: 90px 24px 64px;
  }
  section[id] {
    scroll-margin-top: 76px;
  }
  .section {
    padding: 72px 0;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .compare-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .timeline-surface {
    padding: 36px 24px 30px;
  }
  .timeline {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .gallery-grid {
    columns: 2;
    column-gap: 14px;
  }
  .gallery-item {
    margin-bottom: 14px;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .trust-strip {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    margin: 0 0 40px;
    padding: 16px 20px;
  }
  .trust-strip li {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 12px 4px;
  }
  .trust-strip li:last-child {
    border-bottom: none;
  }

  .why-us__badge {
    right: 8px;
    top: -14px;
  }
  .about__frame-decor {
    inset: 12px -12px -12px 12px;
  }

  .cta-banner {
    padding: 72px 0;
  }

  body {
    padding-bottom: 66px; /* room for the fixed mobile CTA bar */
  }
  .mobile-cta-bar {
    display: flex;
  }
  .floating-btn {
    right: 16px;
    bottom: 82px; /* sits above the mobile CTA bar */
    width: 52px;
    height: 52px;
  }
  .lightbox__nav--prev {
    left: 8px;
  }
  .lightbox__nav--next {
    right: 8px;
  }
}

@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    columns: 1;
  }
  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact__form {
    padding: 24px;
  }
  .topbar__inner {
    justify-content: center;
  }
  .about__floatcard {
    position: static;
    max-width: none;
    margin-top: 16px;
  }
  .about__frame-decor {
    display: none;
  }
  .mobile-cta-bar__btn {
    font-size: 0.8rem;
    padding: 11px;
  }
}
