/* =========================================================
   Perfect Cleaner — Premium one-page styles
   Brand: navy + teal accents + logo vermilion CTAs
   ========================================================= */

:root {
  --navy: #0b1f3a;
  --navy-mid: #143052;
  --navy-soft: #1e3a5f;
  --teal: #0f9d8a;
  --teal-dark: #0b7c6d;
  --teal-soft: #e6f7f4;
  --accent: #e85d04;
  --accent-hover: #cf4f00;
  --accent-soft: #fff1e8;
  --ink: #142033;
  --muted: #5a6b7d;
  --line: #e4eaf1;
  --bg: #f5f8fb;
  --bg-alt: #eef3f8;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 12px 36px rgba(11, 31, 58, 0.1);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --topbar-h: 38px;
  --header-h: 78px;
  --mobile-cta-h: 64px;
  --container: 1180px;
  --font-display: "Outfit", sans-serif;
  --font-body: "Figtree", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
}

h3 {
  font-size: 1.2rem;
  font-weight: 650;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section--alt {
  background: var(--bg);
}

.section--navy {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 55%, #0a2a3d 100%);
  color: var(--white);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--navy p {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section__head {
  max-width: 720px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.section__head p {
  font-size: 1.05rem;
}

.section--navy .eyebrow {
  color: #7ee0d0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(232, 93, 4, 0.28);
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--secondary {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--secondary:hover {
  background: var(--teal-soft);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11, 31, 58, 0.18);
}

.btn--outline:hover {
  border-color: var(--navy);
  background: var(--bg);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(15, 157, 138, 0.25);
}

.btn--teal:hover {
  background: var(--teal-dark);
}

.btn--sm {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Top bar ---------- */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1001;
  height: var(--topbar-h);
  background: linear-gradient(90deg, #061525, var(--navy-mid));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.topbar__inner {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: inherit;
  transition: color 0.2s var(--ease);
}

.topbar__item:hover {
  color: #7ee0d0;
}

.topbar__item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.9;
}

.topbar__location {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  :root {
    --topbar-h: 34px;
  }

  .topbar {
    font-size: 0.74rem;
  }

  .topbar__location span {
    display: none;
  }

  .topbar__location::after {
    content: "Vadodara, Gujarat";
  }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: var(--white);
  border-radius: 10px;
  padding: 3px;
}

.logo__text {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.site-header.is-scrolled .logo__text,
.site-header.menu-open .logo__text {
  color: var(--navy);
}

.nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.45rem 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .nav a,
.site-header.menu-open .nav a {
  color: var(--navy);
}

.site-header.is-scrolled .nav a:hover,
.site-header.menu-open .nav a:hover {
  background: var(--bg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: 0.25s var(--ease);
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-header.is-scrolled .icon-btn,
.site-header.menu-open .icon-btn {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(11, 31, 58, 0.08);
}

.header-cta {
  display: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: 0.25s var(--ease);
}

.site-header.is-scrolled .nav-toggle,
.site-header.menu-open .nav-toggle {
  background: var(--bg);
  color: var(--navy);
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: calc(var(--topbar-h) + var(--header-h)) 0 auto;
  background: var(--white);
  padding: 1rem 1.25rem 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  max-height: calc(100vh - var(--topbar-h) - var(--header-h));
  overflow-y: auto;
  animation: slideDown 0.35s var(--ease-out);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.site-header.menu-open .mobile-nav {
  display: flex;
}

.mobile-nav a {
  padding: 0.85rem 0.5rem;
  font-weight: 650;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
}

.mobile-nav .btn {
  margin-top: 0.75rem;
  width: 100%;
}

@media (min-width: 1100px) {
  .nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 34, 0.55) 0%, rgba(6, 18, 34, 0.35) 35%, rgba(6, 18, 34, 0.78) 100%),
    linear-gradient(90deg, rgba(6, 18, 34, 0.72) 0%, rgba(6, 18, 34, 0.2) 70%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  padding: calc(var(--topbar-h) + var(--header-h) + 2.5rem) 0 3.5rem;
}

.hero__brand,
.hero h1,
.hero__lead,
.hero .btn-group,
.hero .trust-row,
.hero__badge {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 0.9s var(--ease-out) forwards;
}

.hero__brand { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.22s; }
.hero__lead { animation-delay: 0.34s; }
.hero .btn-group { animation-delay: 0.46s; }
.hero .trust-row { animation-delay: 0.58s; }
.hero__badge { animation-delay: 0.7s; }

@keyframes heroIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero__brand span {
  color: #ffb086;
}

.hero h1 {
  color: var(--white);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.hero__lead {
  max-width: 52ch;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
}

.hero .btn-group {
  margin-bottom: 1.75rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-bottom: 1.25rem;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.trust-row svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #7ee0d0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 157, 138, 0.25);
}

/* ---------- Quick service bar ---------- */
.service-bar {
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-bar__track {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.service-bar__track::-webkit-scrollbar {
  display: none;
}

.service-bar a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 650;
  font-size: 0.9rem;
  transition: 0.25s var(--ease);
  white-space: nowrap;
}

.service-bar a:hover {
  background: rgba(15, 157, 138, 0.25);
  border-color: rgba(126, 224, 208, 0.45);
}

.service-bar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

/* ---------- About ---------- */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
  }

  .split--reverse {
    grid-template-columns: 1fr 1.05fr;
  }

  .split--reverse .split__media {
    order: 2;
  }
}

.split__media {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.split__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(11, 31, 58, 0.35));
  pointer-events: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1.75rem 0;
}

.stat {
  padding: 1rem 1.05rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.stat span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 157, 138, 0.35);
}

.service-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.5s var(--ease);
}

.service-card:hover .service-card__img img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
  flex: 1;
}

.service-card .btn {
  align-self: flex-start;
}

/* ---------- Feature pills / lists ---------- */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 1.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 650;
  border: 1px solid rgba(15, 157, 138, 0.15);
}

.section--navy .pill {
  background: rgba(255, 255, 255, 0.08);
  color: #dff7f2;
  border-color: rgba(255, 255, 255, 0.14);
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 1.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 550;
}

.section--navy .check-list li {
  color: rgba(255, 255, 255, 0.92);
}

.check-list svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0 1.75rem;
}

.plan {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 650;
  text-align: center;
}

/* ---------- Why / Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.1rem;
}

.feature {
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: 0.3s var(--ease);
}

.feature:hover {
  border-color: rgba(15, 157, 138, 0.35);
  box-shadow: var(--shadow-sm);
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal-dark);
  margin-bottom: 0.9rem;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature p {
  font-size: 0.94rem;
  margin: 0;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.5rem 1.25rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 750;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- Before / After ---------- */
.ba-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ba-card h3 {
  margin: 0.9rem 0 0;
  text-align: center;
  font-size: 1.05rem;
}

.ba-slider {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
  overflow: hidden;
  user-select: none;
  touch-action: none;
  box-shadow: var(--shadow-md);
  cursor: ew-resize;
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-slider__after {
  clip-path: inset(0 50% 0 0);
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 2;
}

.ba-slider__handle::after {
  content: "⟷";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.ba-label {
  position: absolute;
  top: 12px;
  z-index: 3;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.72);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ba-label--before {
  left: 12px;
}

.ba-label--after {
  right: 12px;
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.86rem;
  cursor: pointer;
  transition: 0.2s var(--ease);
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: var(--bg-alt);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.45s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem 0.75rem 0.7rem;
  background: linear-gradient(transparent, rgba(11, 31, 58, 0.75));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 650;
  text-align: left;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 18, 34, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(960px, 100%);
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ---------- Areas ---------- */
.areas-wrap {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .areas-wrap {
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
  }
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0;
}

.area-chips span {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-soft);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* ---------- Testimonials ---------- */
.reviews-badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: -0.5rem auto 2rem;
  max-width: 520px;
  padding: 0.85rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.reviews-badge__google {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.reviews-badge__google svg {
  width: 22px;
  height: 22px;
}

.reviews-badge__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #e8f5e9;
  color: #1b5e20;
  font-size: 0.78rem;
  font-weight: 700;
}

.reviews-badge__verified svg {
  width: 14px;
  height: 14px;
}

.testimonial-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  padding: 1.35rem 1.25rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.15rem;
  color: var(--white);
  flex-shrink: 0;
  background: #7b1fa2;
}

.testimonial__avatar[data-tone="1"] { background: #7b1fa2; }
.testimonial__avatar[data-tone="2"] { background: #1565c0; }
.testimonial__avatar[data-tone="3"] { background: #00897b; }
.testimonial__avatar[data-tone="4"] { background: #ef6c00; }
.testimonial__avatar[data-tone="5"] { background: #5e35b1; }

.testimonial__meta strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.2;
}

.testimonial__meta span {
  font-size: 0.78rem;
  color: var(--muted);
}

.testimonial__stars {
  color: #fbbc04;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  line-height: 1;
}

.testimonial__source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #5f6368;
}

.testimonial__source svg {
  width: 14px;
  height: 14px;
}

.testimonial p {
  font-size: 0.94rem;
  color: var(--ink);
  margin: 0;
  flex: 1;
}

.testimonial__time {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 650;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--teal);
  font-weight: 500;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-answer {
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ---------- Contact / Form ---------- */
.contact-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .form-card {
    padding: 2rem;
  }
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid .full {
    grid-column: 1 / -1;
  }
}

.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 650;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d5dee8;
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  background: #fbfcfe;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 157, 138, 0.15);
  background: var(--white);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.form-success {
  display: none;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--teal-soft);
  border: 1px solid rgba(15, 157, 138, 0.25);
  color: var(--teal-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-success.is-visible {
  display: block;
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.35rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card h3 {
  margin-bottom: 0.35rem;
}

.contact-card p {
  font-size: 0.94rem;
  margin-bottom: 1rem;
}

.contact-card address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* ---------- Floating CTAs ---------- */
.float-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
}

.float-whatsapp:hover {
  transform: scale(1.06);
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.mobile-cta-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 1100;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(11, 31, 58, 0.1);
  padding: 0.45rem 0.4rem calc(0.45rem + env(safe-area-inset-bottom));
}

.mobile-cta-bar a,
.mobile-cta-bar button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 52px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.72rem;
  cursor: pointer;
  font-family: var(--font-display);
}

.mobile-cta-bar .is-accent {
  color: var(--accent);
}

.mobile-cta-bar .is-wa {
  color: #128c7e;
}

.mobile-cta-bar svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (min-width: 900px) {
  .mobile-cta-bar {
    display: none;
  }

  .float-whatsapp {
    display: flex;
  }

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 899px) {
  body {
    padding-bottom: var(--mobile-cta-h);
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #081628;
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  }
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.site-footer .logo img {
  background: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #7ee0d0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-32px);
}

[data-reveal="right"] {
  transform: translateX(32px);
}

[data-reveal="scale"] {
  transform: scale(0.94) translateY(16px);
}

[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="scale"].is-visible {
  transform: none;
}

.service-card,
.feature,
.step,
.gallery-item,
.contact-card,
.stat,
.plan {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease);
}

.feature:hover,
.step:hover,
.contact-card:hover,
.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.icon-btn {
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.icon-btn:hover {
  transform: scale(1.08);
}

.float-whatsapp {
  animation: waPulse 2.4s var(--ease) infinite;
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.12);
  }
}

.split__media img,
.service-card__img img {
  transition: transform 0.7s var(--ease-out);
}

.split__media:hover img {
  transform: scale(1.04);
}

.faq-item {
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.faq-item[open] {
  border-color: rgba(15, 157, 138, 0.35);
  box-shadow: var(--shadow-sm);
}

.pill {
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease);
}

.pill:hover {
  transform: translateY(-2px);
}

.area-chips span {
  transition: transform 0.25s var(--ease-out), border-color 0.25s, background 0.25s;
}

.area-chips span:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 157, 138, 0.4);
  background: var(--teal-soft);
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.is-hidden {
  display: none !important;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--accent-soft), #fff8f2 45%, var(--teal-soft));
  border: 1px solid rgba(232, 93, 4, 0.15);
  margin-top: 2rem;
}

.cta-band p {
  margin: 0;
  color: var(--navy);
  font-weight: 650;
  max-width: 42ch;
}

@media (max-width: 640px) {
  .hero__content {
    padding-bottom: 2.5rem;
  }

  .btn {
    width: 100%;
  }

  .hero .btn-group .btn {
    flex: 1 1 calc(50% - 0.4rem);
    width: auto;
  }

  .hero .btn-group .btn--primary {
    flex: 1 1 100%;
  }
}
