:root {
  --ink: #081018;
  --ink-soft: #233241;
  --muted: #64717d;
  --line: #d9e3e6;
  --paper: #f7fbfb;
  --white: #ffffff;
  --cyan: #00aeea;
  --cyan-dark: #066e9b;
  --lime: #98d63a;
  --lime-dark: #5b8c16;
  --navy: #051d34;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(5, 29, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(247, 251, 251, 0.9);
  border-bottom: 1px solid rgba(217, 227, 230, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(140px, 18vw, 220px);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px) clamp(34px, 6vw, 76px);
  background:
    linear-gradient(115deg, rgba(5, 29, 52, 0.99) 0%, rgba(5, 29, 52, 0.96) 50%, rgba(247, 251, 251, 0.96) 50.1%, rgba(247, 251, 251, 1) 100%);
}

.hero-copy {
  max-width: 690px;
  color: var(--white);
}

.hero-brand-name {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 11px;
  color: var(--navy);
  background: var(--white);
  border-left: 5px solid var(--lime);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 950;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 6.2vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 174, 234, 0.22);
}

.button.primary {
  color: var(--ink);
  background: var(--lime);
}

.button.whatsapp {
  color: #042d17;
  background: #69df86;
}

.button.call {
  border-color: rgba(0, 174, 234, 0.5);
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.button-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.whatsapp-icon {
  color: #ffffff;
  background: #128c4a;
}

.phone-icon {
  color: #08233b;
  background: #d8f5ff;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.button.secondary.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
}

.button.secondary.dark {
  color: var(--navy);
  border-color: rgba(5, 29, 52, 0.18);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 470px;
}

.hero-photo {
  width: 100%;
  height: min(72svh, 740px);
  min-height: 470px;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-mascot {
  position: absolute;
  right: min(2vw, 22px);
  bottom: -36px;
  width: clamp(170px, 23vw, 320px);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.quick-strip div {
  min-height: 126px;
  padding: 28px clamp(18px, 4vw, 46px);
  background: var(--white);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 1.05rem;
}

.quick-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: 820px;
}

.section-heading.compact {
  display: block;
  max-width: 820px;
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 240px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  color: var(--navy);
  background: #dff8ff;
  border: 1px solid #b8ecfb;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card p,
.process-list p,
.result-copy p,
.contact-panel p,
.site-footer p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--white);
}

.result-copy {
  max-width: 540px;
}

.result-showcase {
  display: grid;
  gap: 14px;
}

.clean-reveal {
  --reveal: 52%;
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: ew-resize;
  touch-action: none;
}

.clean-reveal img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.clean-reveal-before {
  filter: brightness(0.94) contrast(1.08);
}

.clean-reveal-after {
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
}

.clean-reveal-handle {
  position: absolute;
  inset-block: 0;
  left: var(--reveal);
  z-index: 3;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(5, 29, 52, 0.12), 0 0 32px rgba(0, 174, 234, 0.42);
  transform: translateX(-50%);
}

.clean-reveal-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--lime);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(5, 29, 52, 0.22);
  transform: translate(-50%, -50%);
}

.clean-reveal-handle span::before,
.clean-reveal-handle span::after {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid var(--navy);
  border-left: 2px solid var(--navy);
}

.clean-reveal-handle span::before {
  transform: translateX(-5px) rotate(-45deg);
}

.clean-reveal-handle span::after {
  transform: translateX(5px) rotate(135deg);
}

.clean-reveal-labels {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.clean-reveal-labels span {
  padding: 8px 10px;
  color: var(--white);
  background: rgba(5, 29, 52, 0.78);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cyan-dark);
  font-weight: 900;
  border-bottom: 2px solid var(--lime);
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: minmax(220px, 280px);
  gap: 14px;
}

.compact-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 210px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  color: var(--white);
  background: rgba(5, 29, 52, 0.78);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
}

.process {
  background: #edf5f6;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--white);
}

.location-copy {
  max-width: 760px;
}

.location-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.map-card {
  min-height: 320px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 29, 52, 0.92), rgba(6, 110, 155, 0.78)),
    url("assets/images/rug-cleaning.jpeg") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-label {
  display: inline-flex;
  margin-bottom: 52px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.map-card strong,
.map-card p,
.map-rating,
.map-card a {
  display: block;
}

.map-card strong {
  max-width: 320px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
}

.map-card p {
  max-width: 320px;
  margin: 10px 0 22px;
  color: rgba(255, 255, 255, 0.75);
}

.map-rating {
  margin-bottom: 24px;
}

.map-rating span {
  display: block;
  color: var(--lime);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.map-rating small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.map-card a {
  width: fit-content;
  padding-bottom: 3px;
  color: var(--white);
  border-bottom: 2px solid var(--lime);
  font-weight: 950;
}

.reviews {
  background:
    linear-gradient(180deg, #ffffff 0%, #f0f7f8 100%);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.review-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.review-summary strong,
.review-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.review-summary strong {
  color: var(--navy);
  background: var(--lime);
}

.review-summary span {
  color: var(--cyan-dark);
  background: #dff8ff;
}

.review-card {
  min-height: 255px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(5, 29, 52, 0.06);
}

.review-card p {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.review-card strong {
  display: block;
  color: var(--navy);
}

.review-source {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.review-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--cyan-dark);
  font-weight: 950;
  border-bottom: 2px solid var(--lime);
}

.featured-review {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.featured-review p,
.featured-review strong,
.featured-review .review-source,
.featured-review .review-link {
  color: var(--white);
}

.review-rating {
  margin-bottom: 22px;
  color: var(--lime-dark);
  font-size: 1rem;
  letter-spacing: 0;
}

.featured-review .review-rating {
  color: var(--lime);
}

.review-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.review-platforms a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.process-list article {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-list span {
  display: block;
  margin-bottom: 34px;
  color: var(--cyan-dark);
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 1;
}

.quote {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #edf5f6;
}

.quote-copy {
  max-width: 580px;
}

.quote-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(5, 29, 52, 0.08);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-message,
.quote-form button {
  grid-column: 1 / -1;
}

.contact {
  color: var(--white);
  background: var(--navy);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  max-width: 1120px;
  margin-inline: auto;
}

.contact-panel h2 {
  max-width: 760px;
}

.contact-panel p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.phone-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  max-width: 520px;
  min-height: 86px;
  margin: 24px 0 22px;
  padding: 14px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(0, 174, 234, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.phone-card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 50%;
}

.phone-card svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.phone-card small,
.phone-card strong,
.phone-card em {
  display: block;
}

.phone-card small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-card strong {
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1;
}

.phone-card em {
  padding: 7px 10px;
  color: #08233b;
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.qr-box {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.qr-box img {
  width: 220px;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
  border: 10px solid var(--white);
  border-radius: var(--radius);
}

.qr-box span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  max-width: 560px;
  margin-bottom: 0;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px;
  color: #042d17;
  background: #69df86;
  border: 1px solid rgba(4, 45, 23, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(4, 45, 23, 0.22);
  font-weight: 950;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp svg {
  width: 23px;
  height: 23px;
  fill: #128c4a;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background: var(--navy);
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-photo {
    height: 520px;
    min-height: 360px;
  }

.quick-strip,
  .service-grid,
  .location,
  .review-grid,
  .quote,
  .process-list,
  .split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    display: block;
  }

  .contact-panel {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-photo {
    height: 410px;
    min-height: 330px;
    border-width: 5px;
  }

  .clean-reveal {
    min-height: 330px;
  }

  .hero-mascot {
    right: 10px;
    bottom: -24px;
    width: 148px;
  }

  .service-grid,
  .review-grid,
  .quote-form,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: 260px;
  }

  .compact-gallery {
    grid-auto-rows: 220px;
  }

  .gallery-item.tall {
    grid-row: auto;
  }

  .button {
    width: 100%;
  }

  .location-actions {
    display: grid;
  }

  .quote-form button {
    width: 100%;
  }

  .phone-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .phone-card em {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .site-footer {
    display: grid;
    padding-bottom: 86px;
  }

  .site-footer p {
    text-align: left;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 12px;
    left: auto;
    justify-content: center;
    width: 52px;
    min-height: 52px;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }
}
