/* =========================================================
   PRISTINE PROFESSIONAL CLEANING LIMITED — Global Styles
   ========================================================= */

:root {
  /* Brands — brighter, luminous sky blue direction */
  --sky: #63C2F1;        /* light luminous blue */
  --sky-strong: #49AEEA; /* main bright blue */
  --sky-deep: #2E9AD8;   /* medium blue */

  --blue: #197DB8;       /* support blue */
  --blue-deep: #0E5F91;  /* deep blue — contrast only */

  --gold: #B98A27;        /* deep gold */
  --gold-strong: #A87B1F; /* strong/rich gold */
  --gold-soft: #D6AE4A;   /* main gold */
  --gold-light: #F0D477;  /* light gold */

  --white: #FFFFFF;
  --ink: #0E2A3F;
  --body: #3D5668;
  --muted: #647B8C;

  --line: #E2ECF5;

  /* Spacing */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;

  /* Type */
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(11, 79, 122, 0.06);
  --shadow-md: 0 14px 36px rgba(11, 79, 122, 0.13);
  --shadow-lg: 0 28px 64px rgba(11, 79, 122, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-hover: cubic-bezier(0.85, 0, 0.15, 1);

  --container: 1320px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.2px;
}

button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -999px; top: -999px;
}
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 2000;
  background: var(--blue-deep); color: #fff; padding: 0.6rem 1rem; border-radius: 8px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1200;
  padding: 0.4rem 0;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 236, 245, 0.9);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(11, 79, 122, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand-logo {
  height: 78px;
  width: auto;
  object-fit: contain;
  transition: height 0.35s var(--ease-out);
}
.site-header.scrolled .brand-logo { height: 64px; }
.primary-nav { display: flex; align-items: center; gap: 1.2rem; }
.nav-list { display: flex; align-items: center; gap: 0.4rem; }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  letter-spacing: 0.2px;
  border-radius: 10px;
  transition: color 0.3s var(--ease-hover), background 0.3s var(--ease-hover);
}
.nav-link:hover {
  color: var(--sky-strong);
  background: #F2F9FE;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem; right: 0.95rem; bottom: 0.28rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link.active {
  color: var(--blue-deep);
  font-weight: 600;
}
.nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  margin-left: 0.2rem;
  padding: 0.66rem 1.3rem;
  font-size: 0.9rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Layout ---------- */
.container { width: min(var(--container), 92%); margin-inline: auto; }

.section { padding-block: clamp(3.5rem, 8vw, var(--sp-7)); }

/* =========================================================
   ABOUT INTRO — premium elegant texture
   Applies only to the first "Who We Are" section via :has()
   ========================================================= */
.section:has(.about-intro-grid) {
  background-color: var(--white);
  background-image:
    linear-gradient(180deg, #ffffff, #fbfdff);
  position: relative;
  isolation: isolate;
  padding-top: clamp(5rem, 9vw, 7rem);
}
.section:has(.about-intro-grid)::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  /* fine paper-mesh for a premium feel */
  background-image:
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(14, 95, 145, 0.0221) 34px 35px);
  pointer-events: none;
}

/* Gallery without page-hero: add top clearance for fixed header */
.gallery-page { padding-top: calc(clamp(7rem, 14vw, 11rem) + clamp(3.5rem, 8vw, var(--sp-7))); }
.center { text-align: center; }

/* ---------- Benefits Bar (below Hero) — trust strip ---------- */
.benefits-bar {
  background: linear-gradient(180deg, #F5FAFF 0%, var(--white) 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(1.1rem, 2.5vw, 1.8rem);
}
.benefits-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 1.5vw, 1.2rem);
  border-block: 1px solid var(--line);
}
.benefit {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: left;
  padding: 1rem clamp(0.6rem, 1.5vw, 1.2rem);
  border: 1.5px solid rgba(168, 195, 216, 0.6);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 6px 18px rgba(11, 79, 122, 0.06);
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.benefit:hover {
  border-color: rgba(185, 138, 39, 0.55);
  box-shadow: 0 10px 22px rgba(11, 79, 122, 0.1);
  transform: translateY(-2px);
}
.benefit + .benefit {
  border-left: 1.5px solid rgba(168, 195, 216, 0.6);
}
.benefit-ico {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(185, 138, 39, 0.1);
  transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.benefit:hover .benefit-ico {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff;
  transform: translateY(-2px);
}
.benefit-ico svg { width: 20px; height: 20px; }
.benefit-txt {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.benefit-txt h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.benefit-txt p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 17rem;
}

/* ---------- About Band (editorial) ---------- */
.about-band {
  background: linear-gradient(180deg, var(--white) 0%, #F4FAFF 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.about-band-inner {
  max-width: 64ch;
  margin-inline-start: auto;
  margin-inline-end: auto;
  text-align: center;
}
.about-band-title {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  color: var(--ink);
  letter-spacing: 0.2px;
}
.about-band-text {
  margin-top: 1rem;
  color: var(--body);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

/* ---------- Responsive ---------- */
@media (min-width: 861px) {
  .about-band { min-height: 260px; }
}
@media (max-width: 860px) {
  .benefits-inner { grid-template-columns: repeat(2, 1fr); gap: 0.75rem 0.75rem; }
  .benefit { padding: 0.9rem 0.7rem; }
  .benefit + .benefit { border-left: 1.5px solid rgba(168, 195, 216, 0.6); }
  .about-band-inner { text-align: center; margin-inline: auto; }
  .about-band-inner .about-band-title,
  .about-band-inner .about-band-text { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .benefits-inner { grid-template-columns: 1fr; gap: 0.75rem; justify-items: center; }
  .benefit { flex-direction: column; align-items: center; justify-content: center; text-align: center; width: 100%; }
  .benefit-ico { margin: 0 auto; }
  .benefit-txt { align-items: center; text-align: center; }
  .benefit-txt h3,
  .benefit-txt p { text-align: center; }
  .benefit + .benefit { border-left: 1.5px solid rgba(168, 195, 216, 0.6); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease-hover), box-shadow 0.35s var(--ease-hover), background-color 0.35s, color 0.35s, border-color 0.35s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-soft) 40%, var(--gold));
  color: #fff;
  box-shadow: 0 8px 22px rgba(185, 138, 39, 0.35), inset 0 1px 0 rgba(255,255,255,0.35), 0 0 26px rgba(240, 212, 119, 0.22);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -120%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease-out);
}
.btn-gold:hover::after { left: 130%; }
.btn-gold:hover { box-shadow: 0 16px 34px rgba(185, 138, 39, 0.48), inset 0 1px 0 rgba(255,255,255,0.4); }

/* ---- All CTAs unified to GOLD ---- */
.btn-primary,
.btn-outline,
.btn-outline-light {
  position: relative;
  overflow: hidden;
  border: none;
}
.btn-primary,
.btn-outline-light {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-soft) 40%, var(--gold));
  color: #fff;
  text-shadow: 0 1px 4px rgba(139, 91, 32, 0.45);
  box-shadow: 0 8px 20px rgba(185, 138, 39, 0.34), inset 0 1px 0 rgba(255,255,255,0.35), 0 0 24px rgba(240, 212, 119, 0.20);
}
.btn-primary:hover,
.btn-outline-light:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 30px rgba(185, 138, 39, 0.48), inset 0 1px 0 rgba(255,255,255,0.4);
  text-shadow: none;
}
/* GOLD outline variant */
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold-strong);
  background: transparent;
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-soft) 40%, var(--gold));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(185, 138, 39, 0.44);
}
/* GOLD CTAs: hover shine-sweep (same as .btn-gold) applied to all unified gold buttons */
.btn-primary::after,
.btn-outline-light::after {
  content: "";
  position: absolute; top: 0; bottom: 0; left: -120%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover::after,
.btn-outline-light:hover::after { left: 130%; }

.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.82rem; }

/* ---------- Section head ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sky-strong);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.section-label.gold { color: var(--gold); }

.section-head { max-width: 640px; margin-bottom: var(--sp-5); }
.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
@media (min-width: 761px) { .section-head h2 { white-space: nowrap; } }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .section-label::before { display: none; }
.section-sub { margin-top: 0.9rem; color: var(--muted); font-size: 1.05rem; }

/* Reveal sequencing inside a section head: label → title → subtitle */
.section-head .section-label,
.section-head h2,
.section-head .section-sub,
.section-foot {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.section-head.is-visible .section-label { opacity: 1; transform: none; transition-delay: 0.05s; }
.section-head.is-visible h2           { opacity: 1; transform: none; transition-delay: 0.16s; }
.section-head.is-visible .section-sub { opacity: 1; transform: none; transition-delay: 0.28s; }
.section-foot.is-visible              { opacity: 1; transform: none; }

.section-foot { margin-top: var(--sp-5); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: clamp(560px, 74vh, 720px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-block: var(--sp-6);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
}
/* polished shine sweep across the hero */
.hero::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 45%; left: -50%;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 45%,
    rgba(170, 220, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.07) 55%,
    transparent 100%);
  transform: skewX(-14deg);
  animation: hero-shine 11s var(--ease-out) infinite;
  pointer-events: none;
  z-index: 2;
}
.hero::after { animation-delay: 0.8s; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(25, 125, 184, 0.74) 0%,
    rgba(30, 150, 210, 0.48) 38%,
    rgba(30, 150, 210, 0.12) 65%,
    rgba(30, 150, 210, 0) 82%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, transparent 30%, rgba(14, 95, 145, 0.10) 100%),
    linear-gradient(180deg, rgba(9, 61, 95, 0.22) 0%, transparent 32%, transparent 72%, rgba(14, 95, 145, 0.24) 100%);
}
/* whisper-thin architectural datum + fine grain over the hero image */
.hero-vignette::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 120px 100%, 200px 200px;
  background-position: 0 0, 0 0;
  opacity: 0.5;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero-content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-block: 1rem;
  padding-top: clamp(5rem, 10vw, 8rem);
}
.hero-content-inner {
  max-width: 780px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
@media (max-width: 760px) {
  .hero { min-height: clamp(540px, 88vh, 680px); align-items: flex-end; }
  .hero-bg { object-position: center; }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(14, 95, 145, 0.28) 0%,
      rgba(46, 154, 216, 0.55) 42%,
      rgba(25, 125, 184, 0.78) 100%);
  }
  .hero-sub { color: rgba(255, 255, 255, 0.97); }
  .hero-sub br { display: none; }
  .hero-sub { text-wrap: balance; max-width: 32rem; }
  .hero-content { padding-bottom: 1.5rem; padding-top: clamp(6.5rem, 14vw, 10rem); }
  .hero-content-inner { max-width: 100%; align-items: center; text-align: center; margin: 0 auto; justify-content: center; }
  .hero-title { text-align: center; }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; align-items: center; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 26rem; margin: 0 auto; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 1.05rem 1.6rem; font-size: 1rem; }
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.85rem;
  font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; font-size: 0.98rem;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
}
.kicker-dash {
  width: 42px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
  display: inline-block;
}
.hero-title {
  color: #fff;
  font-size: clamp(3.9rem, 5.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  text-align: left;
  text-shadow: 0 2px 18px rgba(9, 61, 95, 0.55), 0 1px 2px rgba(9, 61, 95, 0.3);
}
.hero-title .word-gold {
  color: #fff;
  text-shadow: none;
}
.hero-sub {
  font-size: clamp(1.04rem, 2.16vw, 1.24rem);
  color: #ffffff;
  max-width: 37rem;
  margin: 0 0 2.7rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
  text-shadow: 0 1px 4px rgba(9, 45, 72, 0.55), 0 2px 18px rgba(9, 61, 95, 0.65);
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 1.25rem; position: relative; }
.hero-actions .btn {
  padding: 1.05rem 2rem;
  font-size: 1.05rem;
  gap: 0.6rem;
}

.hero-meta {
  position: absolute;
  bottom: clamp(2.2rem, 6vh, 4rem);
  left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.01rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-meta .meta-dot { color: var(--gold); font-size: 1.15rem; }

/* =========================================================
   INTRO SECTION
   ========================================================= */
.intro-section { background: var(--white); position: relative; }
.intro-section::after {
  content: "";
  position: absolute; inset: 0;
  /* near-imperceptible paper weave on the white surface */
  background-image:
    linear-gradient(180deg, rgba(14, 95, 145, 0.014) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: auto 1px, 240px 240px;
  background-position: 0 0, 0 0;
  opacity: 0.32;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.intro-section::before {
  content: "";
  position: absolute;
  top: 0; right: 0; width: 40%; height: 100%;
  background: linear-gradient(260deg, rgba(99, 183, 232, 0.10), transparent 70%);
  pointer-events: none;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}
.intro-copy h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 1.2rem; }
.intro-copy h2 em {
  font-style: italic;
  color: transparent;
  background: linear-gradient(120deg, var(--sky-deep), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
}
.intro-copy p { font-size: 1.12rem; color: var(--muted); max-width: 30rem; margin-bottom: var(--sp-4); }

/* Intro framed image */
.intro-media { position: relative; justify-self: end; }
.intro-frame {
  position: relative;
  width: min(420px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
}
.intro-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(25, 125, 184, 0.22));
  pointer-events: none;
}
.intro-frame::before,
.about-frame::before {
  content: "";
  position: absolute; top: -25%; bottom: -25%; left: -45%;
  width: 52%; z-index: 2;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 45%,
    rgba(190, 228, 250, 0.18) 50%,
    rgba(255, 255, 255, 0.14) 55%,
    transparent 100%);
  transform: skewX(-14deg);
  animation: img-gleam 11s var(--ease-out) infinite;
  pointer-events: none;
}
.intro-frame::before { animation-delay: 1.2s; }
.about-frame::before { animation-delay: 3.4s; }
@keyframes img-gleam {
  0%, 60% { transform: skewX(-14deg) translateX(0); opacity: 0; }
  76%     { transform: skewX(-14deg) translateX(380%); opacity: 1; }
  86%, 100% { transform: skewX(-14deg) translateX(380%); opacity: 0; }
}
.intro-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92) contrast(1.02); }
.frame-corner {
  position: absolute; width: 40px; height: 40px;
  border: 2px solid var(--gold-soft);
  z-index: 2;
  opacity: 0.9;
  pointer-events: none;
  filter: drop-shadow(0 0 5px rgba(240, 212, 119, 0.35));
}
.corner-tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; border-radius: 8px 0 0 0; }
.corner-br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; border-radius: 0 0 8px 0; }
.frame-badge {
  position: absolute; bottom: -1px; right: -1px;
  z-index: 3;
  width: 78px; height: 78px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 22px 0 0 0;
  box-shadow: -6px -6px 20px rgba(185, 138, 39, 0.32), 0 0 24px rgba(240, 212, 119, 0.30);
}
.frame-monogram {
  font-family: var(--font-head);
  font-size: 2.4rem; font-weight: 700; color: #fff;
  line-height: 1;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section { background: #C7EBFD; position: relative; overflow: hidden; }
.services-section > .container { position: relative; z-index: 2; }
/* Premium refined texture: fine grain + whisper-thin architectural verticals +
   a soft luminous blue/gold sheen for a polished, pristine finish */
.services-section::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(14, 95, 145, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 95, 145, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 40%),
    linear-gradient(135deg, rgba(214, 174, 74, 0.06), transparent 45%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
  background-position: 0 0, 104px 0, 0 0, 0 0, 0 0;
  background-size: auto 100%, auto 100%, 100% 100%, 100% 100%, 180px 180px;
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
}
/* faint horizontal datum line near the top of the section */
.services-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 174, 74, 0.35), transparent);
  pointer-events: none;
}
/* Premium geometric accents — refined lines, diamond motifs and soft gold
   halos that echo polished glass and pristine architectural surfaces */
.geo-shape {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}
.geo-shape--ring {
  border: 1px solid rgba(214, 174, 74, 0.40);
  border-radius: 50%;
}
.geo-shape--diamond {
  width: 26px; height: 26px;
  border: 1px solid rgba(14, 95, 145, 0.32);
  transform: rotate(45deg);
}
.geo-shape--arch {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}
.geo-shape--line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 174, 74, 0.30), transparent);
}
/* position the 5 geometric motifs around the section */
.geo-r1  { top: 9%;  left: 5%;  width: 44px;  height: 44px; }
.geo-r2  { top: 22%; right: 6%; width: 30px;  height: 30px; }
.geo-d1  { bottom: 14%; left: 11%; }
.geo-d2  { top: 12%; right: 24%; }
.geo-a1  { bottom: 10%; right: 16%; width: 52px; height: 34px; }
.geo-l1  { top: 47%; left: 3%;   width: 84px; }
.geo-l2  { bottom: 36%; right: 3%; width: 64px; }
/* diamond + arch keep natural rotation for the static texture */
.geo-shape--diamond { margin: -8px 0 0 -8px; }
.geo-shape--arch   { transform-origin: bottom center; }
/* Textos e botões externos aos cards — contraste sobre o degradê claro */
.services-section .section-label.gold { color: var(--gold); }
.services-section .section-head h2 { color: var(--ink); }
.services-section .section-sub { color: var(--body); }
#services .btn-outline:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #fff;
  border-color: transparent;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 174, 74, 0.50);
  box-shadow: var(--shadow-md);
}
/* Card image header */
.service-thumb {
  position: relative;
  height: 168px;
  overflow: hidden;
}
.service-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.7s var(--ease-out), filter 0.5s;
}
.service-card:hover .service-thumb img { transform: scale(1.07); filter: saturate(1) contrast(1.02); }
.service-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(25, 125, 184, 0.06) 0%,
    rgba(25, 125, 184, 0.10) 46%,
    rgba(14, 95, 145, 0.40) 100%);
}
/* Mirco polish sweep over card imagery — very low intensity */
.service-thumb::before {
  content: "";
  position: absolute; top: -20%; bottom: -20%; left: -30%;
  width: 55%; z-index: 1;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(190, 228, 250, 0.20) 50%,
    rgba(255, 255, 255, 0.12) 55%,
    transparent 100%);
  transform: skewX(-14deg);
  animation: card-gleam 9s var(--ease-out) infinite;
  animation-delay: calc(var(--del, 0) * 0.5s);
  pointer-events: none;
}
@keyframes card-gleam {
  0%, 50% { transform: skewX(-14deg) translateX(0); opacity: 0; }
  62%     { transform: skewX(-14deg) translateX(360%); opacity: 1; }
  78%, 100% { transform: skewX(-14deg) translateX(360%); opacity: 0; }
}
.service-card-body {
  padding: var(--sp-3);
  display: flex; flex-direction: column; flex: 1;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
}
.service-icon {
  width: 52px; height: 52px;
  margin-top: -32px;   /* overlap onto image */
  position: relative;
  z-index: 2;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--white);
  border: 1.5px solid rgba(214, 174, 74, 0.45);
  box-shadow: 0 6px 16px rgba(25, 125, 184, 0.16);
  color: var(--gold);
  margin-bottom: 0.5rem;
  margin-left: auto; margin-right: auto;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon {
  color: var(--blue-deep);
  border-color: rgba(46, 154, 216, 0.45);
  background: linear-gradient(135deg, rgba(99, 194, 241, 0.20), rgba(25, 125, 184, 0.08));
}
.service-card h3 {
  font-size: 1.22rem; font-weight: 600; font-family: var(--font-body); color: var(--ink);
  line-height: 1.3; margin-bottom: 0.15rem;
}
.service-card-body p { font-size: 0.94rem; color: var(--muted); flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 0.4rem;
  font-size: 0.85rem; font-weight: 600; color: var(--sky-strong);
  transition: color 0.3s;
}
.service-link span { transition: transform 0.3s var(--ease-out); }
.service-link:hover { color: var(--gold); }
.service-link:hover span { transform: translateX(4px); }

/* =========================================================
   DIFFERENTIATORS
   ========================================================= */
.differ-section {
  background: linear-gradient(180deg, var(--white) 0%, #EAF6FD 35%, #F6FCFF 75%, rgba(99, 194, 241, 0.18) 100%);
  border-block: 1px solid rgba(73, 174, 234, 0.14);
  position: relative;
}
.differ-section::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    /* minimalist inner-frame datum lines — extremely faint */
    linear-gradient(rgba(14, 95, 145, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 95, 145, 0.05) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 100% 132px, 128px 100%, 220px 220px;
  background-position: 0 0, 0 0, 0 0;
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.differ-section::before {
  content: "";
  position: absolute; top: 2rem; left: 50%;
  transform: translateX(-50%);
  width: min(640px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 194, 241, 0.55), transparent);
}
.differ-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
  margin-top: var(--sp-5);
}
.differ-item {
  text-align: center;
  padding: var(--sp-4) var(--sp-2) var(--sp-5);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.4s var(--ease-out), background-color 0.4s, box-shadow 0.4s;
  border: 1px solid transparent;
}
.differ-item::before {
  content: "";
  position: absolute; bottom: 1.2rem; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out);
}
.differ-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(214, 174, 74, 0.30);
  box-shadow: 0 18px 40px rgba(25, 125, 184, 0.14);
}
.differ-item:hover::before { transform: translateX(-50%) scaleX(1); }
.differ-icon {
  width: 92px; height: 92px;
  margin: 0 auto 1.2rem;
  display: grid; place-items: center;
  border-radius: 24px;
  color: var(--gold);
  background: linear-gradient(150deg, rgba(240, 212, 119, 0.26), rgba(185, 138, 39, 0.10));
  border: 1px solid rgba(214, 174, 74, 0.45);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, color 0.4s;
}
/* Micropolish reflection over the icon — faint glass gleam that breathes */
.differ-icon::before {
  content: "";
  position: absolute; top: -30%; bottom: -30%; left: -80%;
  width: 55%; z-index: 2;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.42) 48%,
    rgba(190, 228, 250, 0.34) 52%,
    transparent 100%);
  transform: skewX(-16deg);
  animation: icon-gleam 6.5s var(--ease-out) infinite;
  animation-delay: calc(var(--del, 0) * 1s);
  pointer-events: none;
}
@keyframes icon-gleam {
  0%, 52% { transform: skewX(-16deg) translateX(0); opacity: 0; }
  64%     { transform: skewX(-16deg) translateX(340%); opacity: 1; }
  76%, 100% { transform: skewX(-16deg) translateX(340%); opacity: 0; }
}
.differ-icon::after {
  content: "";
  position: absolute; inset: 6px;
  border-radius: 18px;
  border: 1px dashed rgba(214, 174, 74, 0.50);
  pointer-events: none;
}
.differ-item:hover .differ-icon {
  transform: scale(1.06) translateY(-3px);
  color: var(--gold-light);
  box-shadow: 0 16px 34px rgba(214, 174, 74, 0.4), 0 0 28px rgba(240, 212, 119, 0.28);
}
/* Soft polished glow on the gold icons — diffuse, never neon */
.differ-icon svg { width: 40px; height: 40px; filter: drop-shadow(0 0 6px rgba(240, 212, 119, 0.35)); }
.differ-item h3 {
  font-family: var(--font-body); font-size: 1.16rem; font-weight: 700;
  color: var(--blue-deep); margin-bottom: 0.55rem;
  letter-spacing: 0.01em;
}
.differ-item p { font-size: 0.94rem; color: #2C4556; max-width: 13rem; margin-inline: auto; line-height: 1.6; }

/* Stagger inside each differ item: icon → title → description */
.differ-icon,
.differ-item h3,
.differ-item p {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.differ-item.is-visible .differ-icon {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.05s;
}
.differ-item.is-visible h3 { opacity: 1; transform: none; transition-delay: 0.18s; }
.differ-item.is-visible p  { opacity: 1; transform: none; transition-delay: 0.30s; }

/* =========================================================
   ABOUT PREVIEW
   ========================================================= */
.about-preview { background: var(--white); position: relative; }
.about-preview::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(14, 95, 145, 0.014) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: auto 1px, 240px 240px;
  background-position: 0 0, 0 0;
  opacity: 0.30;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.about-preview::before {
  content: "";
  position: absolute; bottom: 0; left: 0; width: 42%; height: 100%;
  background: linear-gradient(90deg, rgba(99, 194, 241, 0.10), transparent);
  pointer-events: none;
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, var(--sp-6));
  align-items: center;
}
.about-preview-media { position: relative; }
.about-preview-media::before {
  content: "";
  position: absolute; top: -18px; left: -18px;
  width: 120px; height: 120px;
  border-radius: 24px;
  border: 1px solid rgba(214, 174, 74, 0.40);
  z-index: 0;
}
.about-frame {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.about-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}
.about-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(25, 80, 140, 0.16) 0%, transparent 45%, rgba(185, 138, 39, 0.10) 100%);
}
.about-preview-copy h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 1.2rem; }
.about-preview-copy { position: relative; }
.about-preview-copy p { font-size: 1.1rem; color: var(--muted); margin-bottom: 1.6rem; max-width: 30rem; }
.about-points {
  display: flex; flex-direction: column; gap: 0.85rem;
  margin-bottom: var(--sp-4);
}
.about-points li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 1rem; font-weight: 500; color: var(--ink);
}
.point-icon { color: var(--gold); font-size: 1.05rem; }

/* =========================================================
   CTA
   ========================================================= */
.cta-section {
  position: relative;
  background: var(--blue-deep);
  color: #fff;
  padding-block: clamp(4rem, 9vw, var(--sp-7));
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute; inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E"),
    linear-gradient(120deg,
      rgba(9, 61, 95, 0.94) 0%,
      rgba(25, 125, 184, 0.88) 55%,
      rgba(46, 154, 216, 0.82) 100%);
  background-blend-mode: overlay;
  background-size: 200px 200px, auto;
}
@media (max-width: 760px) {
  .cta-overlay {
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E"),
      linear-gradient(120deg, rgba(9, 61, 95, 0.95) 0%, rgba(25, 125, 184, 0.92) 60%, rgba(37, 122, 184, 0.88) 100%);
    background-blend-mode: overlay;
    background-size: 200px 200px, auto;
  }
}
.cta-section::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 15% 20%, rgba(240, 212, 119, 0.18), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.12), transparent 45%);
}
/* shine sweep for CTA and inner pages */
.cta-section::after,
.page-hero::before {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 45%; left: -50%;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(120, 200, 244, 0.22) 50%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 100%);
  transform: skewX(-14deg);
  animation: hero-shine 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes hero-shine {
  0%   { transform: skewX(-14deg) translateX(0); opacity: 0; }
  12%  { opacity: 1; }
  55%  { opacity: 1; }
  68%  { transform: skewX(-14deg) translateX(260vw); opacity: 0; }
  100% { transform: skewX(-14deg) translateX(260vw); opacity: 0; }
}
@keyframes shine-slow {
  0%   { transform: skewX(-14deg) translateX(0); opacity: 0; }
  12%  { opacity: 1; }
  55%  { opacity: 1; }
  68%  { transform: skewX(-14deg) translateX(260vw); opacity: 0; }
  100% { transform: skewX(-14deg) translateX(260vw); opacity: 0; }
}
.cta-section::after { animation-name: shine-slow; }
.cta-section.interactive-shine, .cta-section.interactive-shine .cta-inner { position: relative; }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 680px; }
.cta-kicker {
  display: inline-block;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.78rem; font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.cta-inner h2 { color: #fff; font-size: clamp(2rem, 4.8vw, 3.1rem); margin-bottom: 1.1rem; }
.cta-inner p { color: rgba(255, 255, 255, 0.9); font-size: 1.12rem; margin-bottom: var(--sp-4); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: linear-gradient(165deg, #ffffff 0%, #f5f7fa 45%, #edf1f6 100%);
  color: #16456b;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(14, 95, 145, 0.1);
}
.site-footer::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(240, 212, 119, 0.2), transparent 35%),
    radial-gradient(circle at 92% 40%, rgba(99, 194, 241, 0.12), transparent 40%);
  pointer-events: none;
}
.site-footer .container { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.2fr 1.2fr;
  gap: clamp(1.2rem, 2.4vw, var(--sp-3));
  padding-block: clamp(1.25rem, 2.6vw, var(--sp-3)) clamp(1.1rem, 1.9vw, var(--sp-2));
  align-items: start;
}
.footer-logo {
  width: auto; height: 69px;
  margin-bottom: 0.65rem;
}
.footer-brand { padding-right: 0.75rem; }
.footer-brand p { font-size: 0.84rem; max-width: 16rem; line-height: 1.48; color: #2c4a66; }
.footer-col h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
  position: relative;
  padding-bottom: 0.38rem;
}
.footer-col h4::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 21px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li { margin-bottom: 0; }
.footer-col ul a { font-size: 0.84rem; color: #16456b; transition: color 0.3s, padding-left 0.3s; }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.contact-list li { font-size: 0.84rem; line-height: 1.42; color: #2c4a66; }
.contact-list a { color: #16456b; transition: color 0.3s; }
.contact-list a:hover { color: var(--gold); }
.footer-cta { margin-top: 0.8rem; }

.footer-bottom {
  border-top: 1px solid rgba(14, 95, 145, 0.14);
  padding-block: 0.6rem;
  background: rgba(14, 95, 145, 0.045);
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom-inner p { font-size: 0.8rem; color: #5b7391; }
.footer-tagline { font-style: italic; color: var(--gold); letter-spacing: 0.02em; }

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 1100;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5); }
.wa-float svg { width: 28px; height: 28px; }

/* =========================================================
   TWINKLE SPARKLE LIGHTS — polished-surface reflection
   =========================================================
   Small 4-point sparkle accents that fade in/out softly,
   conveying clean, polished, pristine, premium surfaces.
   Pure CSS, pointer-events:none, low intensity, staggered.
   ---------------------------------------------------------- */
.sparkle {
  position: absolute;
  z-index: 3;
  width: 10px; height: 10px;
  pointer-events: none;
  /* Removed the blinking "twinkle" flicker effect — sparkles are now
     static accents (no pulsing). */
  opacity: 0.55;
  animation: none;
}
.sparkle::before,
.sparkle::after {
  content: "";
  position: absolute; inset: 0;
  margin: auto;
  background: radial-gradient(circle, var(--sc, rgba(255,255,255,0.95)) 0%, transparent 70%);
  border-radius: 50%;
}
.sparkle::before { width: 100%; height: 2px; border-radius: 2px; }
.sparkle::after  { width: 2px; height: 100%; border-radius: 2px; }
.sparkle.ring::before,
.sparkle.ring::after {
  background: radial-gradient(circle, var(--sc, rgba(255,255,255,0.9)) 0%, transparent 75%);
  border-radius: 50%;
  /* ring sparkle: thin dot glow instead of cross */
}
.sparkle.ring::before { width: 3px; height: 3px; box-shadow: 0 0 6px var(--sc, #fff); }
.sparkle.ring::after  { display: none; }
.sparkle.gold { --sc: rgba(240, 212, 119, 0.95); }
.sparkle.blue { --sc: rgba(145, 214, 250, 0.95); }

/* Clear 4-point star (no radial circle glow) */
.sparkle.star::before,
.sparkle.star::after {
  background: var(--sc, rgba(255,255,255,0.95));
}
.sparkle.star::before { width: 100%; height: 2px; border-radius: 2px; }
.sparkle.star::after  { width: 2px; height: 100%; border-radius: 2px; }

/* Real 4-point star — a small, subtle sparkling diamond of light
   (not a ball, not a square). Drawn via clip-path so it keeps its
   starburst shape. Sized like the small sparkles and given a gentle
   drift so it never becomes a big locked shape — it appears and
   wanders softly across the hero. */
.sparkle.star2 {
  background: #fff;
  width: 9px; height: 9px;
  opacity: 0;
  filter: drop-shadow(0 0 3px rgba(255,255,255,0.8))
          drop-shadow(0 0 8px rgba(255,255,255,0.4));
  -webkit-clip-path: polygon(50% 0%, 68% 32%, 100% 50%, 68% 68%,
                             50% 100%, 32% 68%, 0% 50%, 32% 32%);
  clip-path: polygon(50% 0%, 68% 32%, 100% 50%, 68% 68%,
                     50% 100%, 32% 68%, 0% 50%, 32% 32%);
}
.sparkle.star2.gold {
  background: #f8e6b6;
  filter: drop-shadow(0 0 3px rgba(247,225,158,0.8))
          drop-shadow(0 0 8px rgba(247,225,158,0.4));
}
.sparkle.star2.blue {
  background: #c8e8fa;
  filter: drop-shadow(0 0 3px rgba(180,225,252,0.8))
          drop-shadow(0 0 8px rgba(180,225,252,0.4));
}
.sparkle.star2::before,
.sparkle.star2::after { display: none; }

@keyframes twinkle {
  0%   { opacity: 0; transform: scale(0.4) rotate(0deg); }
  35%  { opacity: 1; transform: scale(1)   rotate(45deg); }
  65%  { opacity: 1; transform: scale(1)   rotate(45deg); }
  100% { opacity: 0; transform: scale(0.4) rotate(90deg); }
}

/* Star twinkle — gentle scale + fade in place (no rotation, no
   translate, so the 4-point star never distorts into a "ball" or "X"
   and never slides sideways. It simply sparkles where it sits, with
   random timing via per-sparkle --dur / --del). */
.sparkle.star2 {
  animation: twinkle-glow var(--dur, 3.2s) var(--ease-out) infinite;
  animation-delay: var(--del, 0s);
}
@keyframes twinkle-glow {
  0%   { opacity: 0;   transform: scale(0.4); }
  40%  { opacity: 1;   transform: scale(1); }
  70%  { opacity: 0.8; transform: scale(0.9); }
  100% { opacity: 0;   transform: scale(0.5); }
}

/* Existing shine-dot toggle lights (page heroes, CTA & footer) */
.shine-dot {
  position: absolute;
  z-index: 2;
  width: 9px; height: 9px;
  border-radius: 0;
  background: #fff;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 10px 2px rgba(255,255,255,0.55);
  pointer-events: none;
  opacity: 0;
  animation: dot-shine var(--dur, 12s) linear infinite;
  animation-delay: var(--del, 0s);
}
.shine-dot.blue { background: #9fd8f5; box-shadow: 0 0 10px 2px rgba(159, 216, 245, 0.6); }
@keyframes dot-shine {
  0%, 5%   { opacity: 0; transform: scale(0.6); }
  10%, 18% { opacity: 0.9; transform: scale(1); }
  28%, 100%{ opacity: 0; transform: scale(0.6); }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
/* Base reveal state: fade + slight vertical drift */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
  transition-delay: var(--d, 0s);
}
[data-animate="fade-right"] { transform: translateX(-26px); }
[data-animate="fade-left"] { transform: translateX(26px); }
[data-animate="fade-in"] { transform: none; }

/* Visible state */
[data-animate="fade-up"].is-visible,
[data-animate="fade-right"].is-visible,
[data-animate="fade-left"].is-visible,
[data-animate="fade-in"].is-visible,
[data-animate].is-visible { opacity: 1; transform: none; }

/* Copy blocks: the container itself stays visible (subtle), only children stagger */
.intro-copy,
.about-preview-copy,
.commitment-copy,
.about-intro-copy {
  opacity: 1 !important;
  transform: none !important;
}

/* --- Copy blocks: smooth sequential text reveal ----------------------- */
.intro-copy > *,
.about-preview-copy > *,
.commitment-copy > *,
.about-intro-copy > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.intro-copy.is-visible > *:nth-child(1),
.about-preview-copy.is-visible > *:nth-child(1),
.commitment-copy.is-visible > *:nth-child(1),
.about-intro-copy.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.intro-copy.is-visible > *:nth-child(2),
.about-preview-copy.is-visible > *:nth-child(2),
.commitment-copy.is-visible > *:nth-child(2),
.about-intro-copy.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.16s; }
.intro-copy.is-visible > *:nth-child(3),
.about-preview-copy.is-visible > *:nth-child(3),
.commitment-copy.is-visible > *:nth-child(3),
.about-intro-copy.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.28s; }
.intro-copy.is-visible > *:nth-child(4),
.about-preview-copy.is-visible > *:nth-child(4),
.commitment-copy.is-visible > *:nth-child(4),
.about-intro-copy.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.40s; }
.intro-copy.is-visible > *:nth-child(5),
.about-preview-copy.is-visible > *:nth-child(5),
.commitment-copy.is-visible > *:nth-child(5),
.about-intro-copy.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.50s; }

/* Subtle scale reveal for imagery inside media blocks */
.intro-media img,
.about-preview-media img,
.commitment-media img,
.about-intro-media img {
  transition: transform 1.1s var(--ease-out), opacity 0.8s var(--ease-out);
}
.intro-media[data-animate]:not(.is-visible) img,
.about-preview-media[data-animate]:not(.is-visible) img,
.commitment-media[data-animate]:not(.is-visible) img,
.about-intro-media[data-animate]:not(.is-visible) img {
  transform: scale(0.98);
  opacity: 0;
}
.intro-media.is-visible img,
.about-preview-media.is-visible img,
.commitment-media.is-visible img,
.about-intro-media.is-visible img {
  transform: scale(1);
  opacity: 1;
}

/* --- Stagger helper for grids/cards of the same type --- */
[data-animate][data-delay="1"] { --d: 0.08s; }
[data-animate][data-delay="2"] { --d: 0.16s; }
[data-animate][data-delay="3"] { --d: 0.24s; }
[data-animate][data-delay="4"] { --d: 0.32s; }
[data-animate][data-delay="5"] { --d: 0.40s; }
[data-animate][data-delay="6"] { --d: 0.48s; }
[data-animate][data-delay="7"] { --d: 0.56s; }
[data-animate][data-delay="8"] { --d: 0.64s; }
.differ-item[data-delay="1"] { --del: 0.5s; }
.differ-item[data-delay="2"] { --del: 1.7s; }
.differ-item[data-delay="3"] { --del: 2.9s; }
.differ-item[data-delay="4"] { --del: 4.1s; }
.differ-item[data-delay="5"] { --del: 5.3s; }
.service-card[data-delay]:nth-child(odd) { --del: 0.4s; }
.service-card[data-delay]:nth-child(even) { --del: 2.1s; }

/* Auto-stagger for card grids via nth-child — avoids manual markup */
.services-grid > *:nth-child(1),
.work-grid > *:nth-child(1),
.values-grid > *:nth-child(1),
.services-page-grid > *:nth-child(1) { --d: 0.05s; }
.services-grid > *:nth-child(2),
.work-grid > *:nth-child(2),
.values-grid > *:nth-child(2),
.services-page-grid > *:nth-child(2) { --d: 0.13s; }
.services-grid > *:nth-child(3),
.work-grid > *:nth-child(3),
.values-grid > *:nth-child(3),
.services-page-grid > *:nth-child(3) { --d: 0.21s; }
.services-grid > *:nth-child(4),
.values-grid > *:nth-child(4),
.services-page-grid > *:nth-child(4) { --d: 0.29s; }
.services-grid > *:nth-child(5),
.services-page-grid > *:nth-child(5) { --d: 0.37s; }
.services-grid > *:nth-child(6),
.services-page-grid > *:nth-child(6) { --d: 0.45s; }
.services-grid > *:nth-child(7),
.services-page-grid > *:nth-child(7) { --d: 0.53s; }
.services-grid > *:nth-child(8),
.services-page-grid > *:nth-child(8) { --d: 0.61s; }
.services-page-grid > *:nth-child(9) { --d: 0.69s; }
.services-page-grid > *:nth-child(10) { --d: 0.77s; }
.services-page-grid > *:nth-child(11) { --d: 0.85s; }
.services-page-grid > *:nth-child(12) { --d: 0.93s; }

/* --- HERo: sweet sequential entrance on load --- */
.hero-content > * .hero-kicker,
.hero .hero-kicker,
.hero .hero-title,
.hero .hero-sub,
.hero .hero-actions {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.hero .hero-kicker { transition-delay: 0.55s; }
.hero .hero-title  { transition-delay: 0.70s; }
.hero .hero-sub    { transition-delay: 0.85s; }
.hero .hero-actions{ transition-delay: 1.00s; }
body.hero-ready .hero .hero-kicker,
body.hero-ready .hero .hero-title,
body.hero-ready .hero .hero-sub,
body.hero-ready .hero .hero-actions { opacity: 1; transform: none; }

/* When IntersectionObserver is unavailable the hero must still show */
[data-hero-fallback] .hero .hero-kicker,
[data-hero-fallback] .hero .hero-title,
[data-hero-fallback] .hero .hero-sub,
[data-hero-fallback] .hero .hero-actions { opacity: 1; transform: none; }

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes slide-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* Page partial styles shared */
.page-hero {
  position: relative;
  padding-block: clamp(8rem, 16vw, 12rem) clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(120deg, #0E5F91 0%, #197DB8 55%, #49AEEA 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
  background-size: auto, 200px 200px;
  background-blend-mode: normal, overlay;
  color: #fff;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 80% 15%, rgba(240, 212, 119, 0.20), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(99, 194, 241, 0.28), transparent 45%);
  background-size: 124px 100%, auto, auto;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: rgba(255, 255, 255, 0.85); margin-top: 0.8rem; max-width: 34rem; font-size: 1.05rem; }
.page-hero .breadcrumb { margin-top: 1rem; font-size: 0.82rem; color: var(--gold-light); letter-spacing: 0.05em; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-intro-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(2.5rem, 3.5vw, 3.5rem); align-items: center; }
.about-intro-copy h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 1.4rem; max-width: 24ch; }
.about-intro-copy p { color: var(--body); margin-bottom: 1.35rem; max-width: 32rem; line-height: 1.82; font-size: 1.02rem; }
.about-intro-copy p + p { margin-top: 0.75rem; }
.about-intro-media { position: relative; }
.about-intro-media img { width: 100%; height: 100%; max-height: 600px; object-fit: cover; border-radius: var(--radius-lg); }

.work-section { background: #F5FAFE; position: relative; }
.work-section::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  opacity: 0.45;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.work-section .container { position: relative; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 1rem; }
.work-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.9rem 1.8rem 2.1rem;
  position: relative; box-shadow: 0 4px 16px rgba(11, 79, 122, 0.05);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  display: flex; flex-direction: column;
}
.work-item:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(11, 79, 122, 0.10); }
.work-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; }
.work-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: grid; place-items: center;
  margin: 1rem 0 1.1rem;
  border-radius: 14px;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(240,212,119,0.22), rgba(185,138,39,0.10));
  border: 1px solid rgba(185,138,39,0.22);
  transition: transform 0.35s var(--ease-out), background 0.35s var(--ease-out), color 0.35s var(--ease-out);
}
.work-icon svg { width: 26px; height: 26px; }
.work-item:hover .work-icon { transform: translateY(-3px); background: var(--gold); color: #fff; }
.work-item h3 { font-family: var(--font-body); font-size: 1.18rem; font-weight: 700; margin: 0 0 0.55rem; color: var(--blue-deep); letter-spacing: -0.01em; }
.work-item p { font-size: 0.97rem; color: var(--body); line-height: 1.68; }

.commitment-section {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%),
    var(--white);
}
.commitment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14, 95, 145, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 95, 145, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
}
.commitment-section > * { position: relative; }

/* Reduce vertical gap before the final CTA (About page only) */
.commitment-section { padding-block-end: clamp(3rem, 7vw, 5.1rem); }
.commitment-section + .cta-section { padding-block-start: clamp(3.5rem, 8vw, 5.1rem); }
.commitment-grid { display: grid; grid-template-columns: 1fr 0.95fr; gap: clamp(2.5rem, 4vw, 3.5rem); align-items: center; }
.commitment-copy h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 1.3rem; max-width: 20ch; }
.commitment-copy p { color: var(--body); margin-bottom: 1.2rem; line-height: 1.8; font-size: 1.02rem; max-width: 30rem; }
.commitment-copy h3 { color: var(--blue-deep); font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; margin: 1.8rem 0 0.6rem; }
.commitment-copy .quote {
  font-family: var(--font-head); font-size: 1.7rem; color: var(--ink);
  font-style: italic; line-height: 1.3; margin: 1.8rem 0 0.9rem; max-width: 26rem;
  border-left: 3px solid var(--gold); padding-left: 1.1rem;
}
.commitment-copy .btn { margin-top: 1.1rem; padding: 1.05rem 2.05rem; font-size: 1.02rem; }
.commitment-media { position: relative; display: flex; }
.commitment-media img { width: 100%; height: 100%; max-height: 610px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* About CTA — slightly larger premium Get a Quote button (scope to About) */
.cta-section .btn-lg.btn { padding: 1.35rem 3.05rem; font-size: 1.22rem; }

.values-section { background: linear-gradient(180deg, var(--white), #F5FAFE); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: var(--sp-4); }
.value-item { text-align: center; padding: var(--sp-4) var(--sp-2); border-radius: var(--radius); transition: transform 0.4s var(--ease-out); }
.value-item:hover { transform: translateY(-6px); }
.value-item h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
.value-item p { font-size: 0.88rem; color: var(--muted); }

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.services-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-page-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--sp-4);
  display: flex; flex-direction: column; gap: 0.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s;
}
.service-page-card:hover { transform: translateY(-8px); border-color: var(--sky); box-shadow: var(--shadow-md); }
.sp-icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 12px; color: var(--blue-deep); margin-bottom: 0.3rem;
  background: linear-gradient(135deg, rgba(99,194,241,0.18), rgba(25,125,184,0.10));
}
.service-page-card:hover .sp-icon { color: var(--gold); background: linear-gradient(135deg, rgba(240,212,119,0.22), rgba(185,138,39,0.08)); }
.sp-icon svg { width: 26px; height: 26px; }
.service-page-card h2 { font-family: var(--font-body); font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.service-page-card p { flex: 1; font-size: 0.94rem; color: var(--muted); }
.service-page-card .btn { align-self: flex-start; }
.service-page-card .sp-image {
  margin: calc(var(--sp-4) * -1) calc(var(--sp-4) * -1) 0;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden; aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, rgba(99,194,241,0.12), rgba(25,125,184,0.06));
}
.service-page-card .sp-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s var(--ease-out);
}
.service-page-card:hover .sp-image img { transform: scale(1.06); }

/* =========================================================
   GALLERY PAGE
   ========================================================= */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-bottom: var(--sp-5); }
.filter-btn {
  padding: 0.6rem 1.4rem; border-radius: 999px;
  border: 1.5px solid var(--sky);
  background: transparent; color: var(--blue-deep);
  font-weight: 600; font-size: 0.88rem;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}
.filter-btn:hover { transform: translateY(-2px); }
.filter-btn.active { background: var(--sky-strong); border-color: var(--sky-strong); color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery-item {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer;
  position: relative;
}
.gallery-item::after {
  content: "";
  position: absolute; top: -25%; bottom: -25%; left: -45%;
  width: 52%; z-index: 2;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(185, 225, 252, 0.16) 50%,
    rgba(255, 255, 255, 0.12) 55%,
    transparent 100%);
  transform: skewX(-14deg);
  animation: img-gleam 14s var(--ease-out) infinite;
  pointer-events: none;
}
.gallery-item:nth-child(2n)::after { animation-delay: 4.2s; }
.gallery-item:nth-child(3n)::after { animation-delay: 8.6s; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.hidden { display: none; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--sp-6); align-items: start; }
.contact-grid .contact-info:only-child { grid-column: 1 / -1; justify-self: center; max-width: 44rem; text-align: center; }
.contact-info h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
.contact-info > p { color: var(--muted); margin-bottom: var(--sp-4); max-width: 30rem; margin-left: auto; margin-right: auto; }

.contact-details { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: var(--sp-4); align-items: center; justify-content: center; width: 100%; }
.contact-detail { display: flex; align-items: center; justify-content: center; gap: 1rem; text-align: center; width: 100%; max-width: 420px; background: #F5FAFE; border: 1px solid var(--line); border-radius: 14px; padding: 1.25rem 1.5rem; }
.contact-detail > div { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.contact-detail a, .contact-detail .cd-value { word-break: break-word; }
.cd-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 12px;
  color: var(--blue-deep);
  background: linear-gradient(135deg, rgba(99,194,241,0.18), rgba(25,125,184,0.10));
}
.cd-icon.gold { color: var(--gold); background: linear-gradient(135deg, rgba(240,212,119,0.22), rgba(185,138,39,0.08)); }
.cd-icon svg { width: 24px; height: 24px; }
.contact-detail h3 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.15rem; }
.contact-detail a, .contact-detail .cd-value { font-size: 1.05rem; font-weight: 500; color: var(--ink); transition: color 0.3s; }
.contact-detail a:hover { color: var(--blue); }
.contact-wa { width: 100%; max-width: 360px; }

.contact-social {
  background: #F5FAFE; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--sp-5) var(--sp-4);
}
.contact-social h2 { font-size: 1.7rem; margin-bottom: 0.8rem; }
.contact-social > p { color: var(--muted); margin-bottom: var(--sp-4); }
.social-list { display: flex; gap: 0.9rem; margin-bottom: var(--sp-4); }
.social-link {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; color: var(--blue-deep);
  border: 1.5px solid var(--sky); background: var(--white);
  transition: background-color 0.3s, color 0.3s, transform 0.3s var(--ease-out), border-color 0.3s;
}
.social-link:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: #fff; transform: translateY(-3px); }
.social-link svg { width: 22px; height: 22px; }
.social-note { font-size: 0.85rem; color: var(--muted); font-style: italic; padding: 0.7rem 1rem; background: var(--white); border: 1px dashed var(--sky); border-radius: 10px; }

/* ---------- Contact page enhanced ---------- */
.contact-hero {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto var(--sp-6);
}
.contact-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1rem;
}
.contact-hero p { color: var(--muted); font-size: 1.05rem; max-width: 38rem; margin: 0 auto; }

.contact-grid { grid-template-columns: 1.55fr 1fr; }

/* Form panel */
.contact-form-solo {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.contact-form-panel {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--sp-5);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.contact-form-panel::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  /* premium light texture to keep the white panel elegant, not flat */
  background-image:
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(14, 95, 145, 0.02) 30px 31px),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(14, 95, 145, 0.018) 30px 31px),
    linear-gradient(135deg, rgba(214, 174, 74, 0.05), transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: auto, auto, 100% 100%, 180px 180px;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.contact-form-panel > * { position: relative; }
.form-panel-head { margin-bottom: var(--sp-4); }
.form-panel-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-panel-head p { color: var(--muted); max-width: 32rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue-deep);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: #F7FBFE;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
  resize: vertical;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky-strong);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(99, 194, 241, 0.18);
}
.field input::placeholder,
.field textarea::placeholder { color: #9DB2C1; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%230E5F91' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.form-submit svg { width: 18px; height: 18px; }
.form-note { font-size: 0.86rem; color: var(--muted); margin-top: 0.2rem; }
.form-note a { color: var(--blue-deep); font-weight: 600; text-decoration: underline; }
.form-note a:hover { color: var(--gold); }

/* Side panel */
.contact-side { display: flex; flex-direction: column; gap: var(--sp-3); }
.contact-card {
  background: #F5FAFE;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
}
.contact-card .section-label { margin-bottom: var(--sp-3); display: block; }
.contact-card .contact-detail {
  max-width: 100%;
  background: var(--white);
}

/* Response banner */
.response-banner {
  background: linear-gradient(135deg, #F4FAFF 0%, #EAF6FF 55%, #F6FAFC 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
}
.response-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  text-align: center;
}
.response-item { padding: var(--sp-3) var(--sp-2); }
.resp-icon {
  width: 60px; height: 60px;
  margin: 0 auto var(--sp-3);
  display: grid; place-items: center;
  border-radius: 16px;
  color: var(--blue-deep);
  background: linear-gradient(135deg, rgba(99,194,241,0.22), rgba(25,125,184,0.10));
  border: 1px solid rgba(99, 194, 241, 0.35);
}
.resp-icon svg { width: 28px; height: 28px; }
.response-item h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.response-item p { color: var(--muted); font-size: 0.94rem; max-width: 16rem; margin: 0 auto; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-side { order: -1; }
}
@media (max-width: 760px) {
  .field-row { grid-template-columns: 1fr; }
  .response-inner { grid-template-columns: 1fr; gap: var(--sp-2); }
  .contact-form-panel { padding: var(--sp-4); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .differ-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .differ-item p { max-width: 14rem; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
}

@media (max-width: 900px) {
  .intro-grid, .about-preview-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .intro-media { justify-self: center; order: -1; }
  .about-preview-media { order: -1; }
}

@media (max-width: 760px) {
  .services-grid { grid-template-columns: 1fr; }
  .differ-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .service-thumb { height: 190px; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-3); justify-items: center; text-align: center; }
  .footer-brand { padding-right: 0; display: flex; flex-direction: column; align-items: center; }
  .footer-col { display: flex; flex-direction: column; align-items: center; }
  .footer-col ul { align-items: center; }
  .footer-logo { margin-inline: auto; }
  .brand-logo, .site-header.scrolled .brand-logo { height: 84px; }
  .wa-float { bottom: 18px; right: 18px; }
  .hero-meta { display: none; }
  .footer-logo { height: 63px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }

  /* Mobile header / nav */
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: min(86vw, 340px);
    padding: 88px 1.5rem calc(2rem + env(safe-area-inset-bottom));
    gap: 1rem;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: -18px 0 40px rgba(11, 79, 122, 0.12);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 1100;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    min-height: 100dvh;
  }
  body.nav-open .primary-nav { transform: translateX(0); }
  .primary-nav .nav-list { flex-shrink: 0; }
  .primary-nav .nav-cta { flex-shrink: 0; margin-top: auto; }
  body.nav-open::after {
    content: "";
    position: fixed; inset: 0;
    background: rgba(9, 46, 69, 0.42);
    z-index: 1050;
    opacity: 1;
  }
  body.nav-open { overflow: hidden; }
  .nav-list { flex-direction: column; align-items: stretch; width: 100%; gap: 0.2rem; }
  .nav-link {
    width: 100%;
    font-size: 1rem;
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
  }
  .nav-link::after { display: none; }
  .nav-link.active { background: #F2F9FE; }
  .nav-cta { width: 100%; justify-content: center; margin-top: 1.2rem; }
}

@media (max-width: 1024px) {
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .about-intro-grid, .commitment-grid, .contact-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .about-intro-media { order: -1; margin-top: var(--sp-5); }
  .commitment-media { order: -1; }
  .about-intro-media img { max-height: 430px; }
  .commitment-media img { max-height: 450px; }
  .about-intro-copy p, .commitment-copy p { max-width: 100%; }
  .about-intro-copy { text-align: center; }
  .about-intro-copy h2 { margin-inline: auto; }
  .about-intro-copy p { margin-inline: auto; }
  .commitment-copy { text-align: center; }
  .commitment-copy h2 { margin-inline: auto; }
  .commitment-copy p { margin-inline: auto; }
  .commitment-copy .quote { margin-inline: auto; }
  .commitment-copy .btn { margin-inline: auto; }
}

@media (max-width: 600px) {
  .services-page-grid, .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item { text-align: center; align-items: center; }
  .work-icon { margin-inline: auto; }
  .contact-detail a, .contact-detail .cd-value { font-size: 1rem; }

  /* SERVICES PAGE — mobile refinements */
  .services-page-grid { gap: 1.15rem; }
  .service-page-card { gap: 0.7rem; padding: 1.4rem; }
  .service-page-card .sp-image {
    margin: -1.4rem -1.4rem 0;
    aspect-ratio: 16 / 10;
  }
  .service-page-card { text-align: center; align-items: center; }
  .service-page-card .sp-icon { margin-bottom: 0.2rem; margin-inline: auto; }
  .service-page-card h2 { font-size: 1.12rem; line-height: 1.3; }
  .service-page-card p { font-size: 0.95rem; line-height: 1.6; }
  .service-page-card .btn { align-self: stretch; justify-content: center; padding: 0.8rem 1.4rem; font-size: 0.95rem; text-align: center; }
  .cleanfor-item { align-items: flex-start; gap: 0.9rem; }
  .steps-item { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .differ-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; }

  /* SERVICES PAGE — small screens */
  .service-page-card { padding: 1.2rem; }
  .service-page-card .sp-image { margin: -1.2rem -1.2rem 0; aspect-ratio: 5 / 3; }
  .service-page-card h2 { font-size: 1.05rem; }
  .sp-icon { width: 46px; height: 46px; }
  .sp-icon svg { width: 23px; height: 23px; }
  .service-page-card .btn { font-size: 0.9rem; }
}

/* =========================================================
   TESTIMONIALS CAROUSEL
   ========================================================= */
.testimonials-section {
  background:
    radial-gradient(60% 120% at 100% 0%, rgba(99, 194, 241, 0.10), transparent 60%),
    linear-gradient(180deg, #F4FAFE 0%, #EAF4FC 100%);
  padding: var(--sp-7) 0;
  overflow: hidden;
}
.testimonials-head { text-align: center; max-width: 640px; margin: 0 auto var(--sp-5); }
.testimonials-head h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; color: var(--ink); margin: 0.4rem 0 0.6rem; }
.testimonials-head .eyebrow { color: var(--gold-strong); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; }
.testimonials-head p { color: var(--muted); margin: 0; }

.testimonials-carousel {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow: hidden;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg, 0 18px 50px rgba(11, 79, 122, 0.12));
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  width: 100%;
  box-sizing: border-box;
}
.testimonial-stars { display: flex; gap: 0.15rem; color: var(--gold-soft); font-size: 1.15rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  color: var(--body);
  font-style: normal;
  max-width: 720px;
  margin: 0;
  quotes: "\201C" "\201D";
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--line);
  padding-top: var(--sp-3);
  margin-top: auto;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--blue-deep));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.testimonial-author div { text-align: left; }
.testimonial-author strong { display: block; color: var(--ink); font-weight: 600; }
.testimonial-role { font-size: 0.85rem; color: var(--muted); }

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue-deep);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-hover, cubic-bezier(0.85, 0, 0.15, 1)), background 0.3s;
  z-index: 5;
}
.testimonial-nav svg { width: 22px; height: 22px; }
.testimonial-nav:hover { background: var(--sky-strong); color: var(--white); }
.testimonial-prev { left: -12px; }
.testimonial-next { right: -12px; }
@media (min-width: 1100px) {
  .testimonial-prev { left: -64px; }
  .testimonial-next { right: -64px; }
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: var(--sp-4);
}
.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #C8DCE9;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s var(--ease-hover, cubic-bezier(0.85, 0, 0.15, 1)), background 0.3s;
}
.testimonial-dots button.is-active {
  background: var(--gold-soft);
  transform: scale(1.25);
}
@media (max-width: 600px) {
  .testimonial-prev { left: -4px; }
  .testimonial-next { right: -4px; }
}

/* =========================================================
   SERVICES PAGE — EXTENDED SECTIONS
   ========================================================= */
/* ---- Who We Clean For ---- */
.cleanfor-section { background: linear-gradient(180deg, var(--white), #F5FAFE); }
.cleanfor-section .section-head { margin-bottom: var(--sp-3); }
.cleanfor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--sp-4);
}
.cleanfor-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-4);
  display: flex; align-items: flex-start; gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s;
}
.cleanfor-item:hover { transform: translateY(-6px); border-color: var(--sky); box-shadow: var(--shadow-md); }
.cleanfor-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(240,212,119,0.22), rgba(185,138,39,0.08));
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease-out);
}
.cleanfor-item:hover .cleanfor-icon { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #fff; transform: scale(1.06); }
.cleanfor-icon svg { width: 26px; height: 26px; }
.cleanfor-item h3 { font-family: var(--font-body); font-size: 1.06rem; font-weight: 600; color: var(--blue-deep); margin-bottom: 0.35rem; }
.cleanfor-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ---- How It Works (3 steps) ---- */
.steps-section {
  background: var(--white);
  position: relative;
  isolation: isolate;
}
.steps-section::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  /* premium light texture: fine grain + whisper-thin architectural grid +
     faint gold sheen for a polished finish */
  background-image:
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(14, 95, 145, 0.024) 32px 33px),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(14, 95, 145, 0.022) 32px 33px),
    linear-gradient(135deg, rgba(214, 174, 74, 0.055), transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: auto, auto, 100% 100%, 200px 200px;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.steps-section > .container { position: relative; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: var(--sp-4);
}
.steps-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s;
}
.steps-item:hover { transform: translateY(-8px); border-color: var(--sky); box-shadow: var(--shadow-md); }
.steps-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--gold);
  border: 1.5px solid rgba(214,174,74,0.45);
  background: linear-gradient(135deg, #FFFBF0, #FDF6E1);
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.steps-item:hover .steps-icon {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff;
  box-shadow: 0 12px 26px rgba(184,138,39,0.28);
  transform: translateY(-3px);
}
.steps-icon svg { width: 28px; height: 28px; }
.steps-item h3 { font-family: var(--font-body); font-size: 1.12rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.steps-item p { font-size: 0.94rem; color: var(--muted); max-width: 22rem; margin-inline: auto; }
.step-num {
  position: absolute; top: -22px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 0.92rem; font-weight: 700; letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, var(--sky-strong), var(--blue-deep));
  padding: 0.34rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(11,79,122,0.22);
}

/* ---- FAQ accordion ---- */
.faq-section { background: linear-gradient(180deg, #F5FAFE, var(--white)); }
.faq-list {
  max-width: 760px;
  margin: 0 auto var(--sp-2);
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.faq-item.is-open { border-color: rgba(25,125,184,0.35); box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--blue-deep); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(240,212,119,0.22), rgba(185,138,39,0.08));
  transition: transform 0.4s var(--ease-out), background 0.4s, color 0.4s;
}
.faq-icon::before { content: "+"; font-size: 1.1rem; font-weight: 500; line-height: 1; transition: transform 0.4s var(--ease-out); }
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #fff; }
.faq-item.is-open .faq-icon::before { transform: rotate(0deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.45s var(--ease-out);
}
.faq-item.is-open .faq-answer {
  max-height: 320px;
}
.faq-answer p {
  padding: 0 1.4rem 1.4rem;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 0;
}

/* Auto-stagger for the new card grids */
.cleanfor-grid > *:nth-child(1) { --d: 0.05s; }
.cleanfor-grid > *:nth-child(2) { --d: 0.13s; }
.cleanfor-grid > *:nth-child(3) { --d: 0.21s; }
.cleanfor-grid > *:nth-child(4) { --d: 0.29s; }
.cleanfor-grid > *:nth-child(5) { --d: 0.37s; }
.cleanfor-grid > *:nth-child(6) { --d: 0.45s; }
.steps-grid > *:nth-child(1) { --d: 0.05s; }
.steps-grid > *:nth-child(2) { --d: 0.13s; }
.steps-grid > *:nth-child(3) { --d: 0.21s; }

/* Responsive for new sections */
@media (max-width: 1024px) {
  .cleanfor-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
}
@media (max-width: 760px) {
  .cleanfor-grid { grid-template-columns: 1fr; }
  .cleanfor-item { flex-direction: column; align-items: center; text-align: center; gap: 0.9rem; }
  .cleanfor-icon { margin-inline: auto; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .steps-item { padding-top: var(--sp-5); }
  .faq-question { font-size: 1.05rem; padding: 1rem 1.1rem; }
}

/* =========================================================
   BUILDING BLOCKS / REVEAL RESET
   ========================================================= */
/* Building blocks from styles.css */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-animate],
  [data-animate] > *,
  .differ-icon, .differ-item h3, .differ-item p,
  .section-head .section-label, .section-head h2,
  .section-head .section-sub, .section-foot,
  .intro-media img, .about-preview-media img,
  .commitment-media img, .about-intro-media img,
  .cleanfor-item, .steps-item, .faq-item { opacity: 1 !important; transform: none !important; }

  .hero .hero-kicker, .hero .hero-title,
  .hero .hero-sub, .hero .hero-actions { opacity: 1 !important; transform: none !important; }
  .cta-section::after,
  .page-hero::before { display: none; }
}

/* =========================================================
   HOME — centralização dos textos APENAS no mobile
   ========================================================= */
@media (max-width: 480px) {
  /* Cabeçalhos de seção */
  .section-head,
  .section-head.center,
  .section-head .section-label,
  .section-head h2,
  .section-head .section-sub,
  .section-foot.center {
    text-align: center;
  }
  /* Afasta o título "Professional Cleaning Services" do topo no mobile */
  .section-head h1 { padding-top: var(--sp-4); }
@media (min-width: 1201px) { .section-head h1 { font-size: clamp(3.2rem, 5vw, 4rem); } }
  .section-head.center .section-label,
  .section-head .section-label.gold {
    margin-left: auto;
    margin-right: auto;
  }
  .section-head h2 { margin-left: auto; margin-right: auto; }
  .section-head .section-sub { margin-left: auto; margin-right: auto; }

  /* Benefits bar (4 cards empilhados) */
  .benefit { justify-content: center; text-align: center; }
  .benefit-ico { margin: 0 auto; }
  .benefit-txt h3,
  .benefit-txt p { text-align: center; }

  /* About band */
  .about-band-inner { text-align: center; }
  .about-band-title,
  .about-band-text { margin-left: auto; margin-right: auto; }
  .about-band-inner .btn { margin-left: auto; margin-right: auto; }

  /* About Preview (section 3) */
  .about-preview-copy,
  .about-preview-copy h2,
  .about-preview-copy p { text-align: center; }
  .about-preview-copy h2,
  .about-preview-copy p { margin-left: auto; margin-right: auto; }
  .about-points { align-items: center; }
  .about-points li { justify-content: center; text-align: center; }

  /* Cards de serviços */
  .service-card,
  .service-card-body { text-align: center; }
  .service-card-body h3,
  .service-card-body p,
  .service-link { text-align: center; }

  /* Steps (Como funciona) */
  .steps-item { text-align: center; }
  .steps-icon { margin: 0 auto; }
  .steps-item h3,
  .steps-item p { text-align: center; }

  /* Diferenciadores */
  .differ-item { text-align: center; }
  .differ-icon { margin: 0 auto; }
  .differ-item h3,
  .differ-item p { text-align: center; }

  /* Depoimentos */
  .testimonials-head,
  .testimonials-head h2,
  .testimonials-head p { text-align: center; }
  .testimonial-card { text-align: center; }
  .testimonial-author { justify-content: center; }

  /* CTA */
  .cta-inner { text-align: center; }
  .cta-inner .btn { margin-left: auto; margin-right: auto; }
}
