:root {
  --navy: #002b45;
  --navy-2: #073b58;
  --turquoise: #0097a7;
  --gold: #f2b705;
  --ink: #102333;
  --muted: #6b7b86;
  --line: #e7edf0;
  --soft: #f5f8f9;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(0, 43, 69, 0.14);
  --header-height: 96px;
  --content-max: 100%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Manrope, 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: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
  border: 0;
  border-radius: 0;
  padding: 14px clamp(28px, 5vw, 90px);
  color: var(--white);
  background: linear-gradient(90deg, rgba(0, 18, 30, 0.82), rgba(0, 18, 30, 0.34));
  box-shadow: none;
  backdrop-filter: blur(10px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    top 180ms ease;
}

.site-header.is-scrolled {
  top: 0;
  background: rgba(0, 43, 69, 0.95);
  box-shadow: 0 14px 40px rgba(0, 18, 30, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  padding-left: 2px;
}

.brand-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.brand-mark svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.brand strong {
  display: block;
  font-family: Allura, cursive;
  font-size: 2.65rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  word-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
  min-width: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 850;
}

.nav-links a {
  border-radius: 6px;
  padding: 10px 9px;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.lang-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.lang-switcher button {
  min-width: 46px;
  height: 42px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.lang-switcher button[aria-pressed="true"] {
  color: var(--navy);
  background: var(--gold);
}

.header-call {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  border-radius: 8px;
  padding: 0 24px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    url("../img/hero-cleaning.png")
    center top / cover;
  transform: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 18, 30, 0.58) 0%, rgba(0, 43, 69, 0.28) 40%, rgba(0, 43, 69, 0.04) 100%),
    linear-gradient(0deg, rgba(0, 18, 30, 0.24), transparent 52%);
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: 590px;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  align-items: center;
  gap: 40px;
  padding: 146px clamp(28px, 5vw, 90px) 66px;
}

.hero-copy {
  max-width: 790px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.55rem, 4vw, 4.7rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: var(--gold);
  font-family: Allura, cursive;
  margin-top: 4px;
  font-size: 0.96em;
  font-weight: 400;
  line-height: 0.95;
}

.hero-lead {
  max-width: 430px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.btn-primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 18px 38px rgba(242, 183, 5, 0.28);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn-large {
  min-width: 250px;
}

.hero-card {
  display: none;
}

.service-pills {
  display: grid;
  gap: 8px;
}

.service-pills span {
  display: block;
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 850;
}

.hero-score {
  display: flex;
  align-items: end;
  gap: 14px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}

.hero-score strong {
  color: var(--gold);
  font-size: 3rem;
  line-height: 0.9;
}

.hero-score span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: none;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  background: var(--navy);
  color: var(--white);
}

.trust-strip div {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
}

.trust-strip .icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.section {
  padding: clamp(58px, 6vw, 92px) clamp(20px, 5vw, 72px);
}

.section-services {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-inline: 0;
  background: var(--soft);
}

.section-services .section-heading {
  display: none;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2,
.split-copy h2,
.contact-section h2 {
  margin: 0;
}

.section-heading p:last-child,
.split-copy p:last-child,
.contact-section p {
  max-width: 620px;
}

.why-highlight {
  margin-top: 30px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 22px 24px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 43, 69, 0.07);
}

.why-highlight strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
}

.why-highlight p {
  margin: 10px 0 0;
  color: var(--muted);
}

.why-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.why-checks span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 850;
}

.why-checks span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--turquoise);
  font-weight: 950;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: none;
  margin: 0 auto;
  gap: 0;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 44%;
  min-height: clamp(230px, 14vw, 290px);
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

.service-card:last-child {
  border-right: 0;
}

.service-card img {
  order: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%);
  mask-image: linear-gradient(90deg, transparent 0, #000 18%);
}

.service-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 2.2vw, 42px);
}

.service-card span {
  color: var(--turquoise);
  font-size: clamp(0.82rem, 0.78vw, 0.96rem);
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 10px 0 10px;
  color: var(--navy);
  font-size: clamp(1.18rem, 1.08vw, 1.45rem);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 0.82vw, 1.04rem);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 34px clamp(28px, 4vw, 72px) 44px;
  background: var(--soft);
}

.stats-row div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  color: var(--turquoise);
}

.stats-row div:last-child {
  border-right: 0;
}

.stats-row strong {
  color: var(--turquoise);
  font-size: clamp(2.25rem, 2.1vw, 3.1rem);
}

.stats-row span {
  color: var(--muted);
  font-size: clamp(0.86rem, 0.78vw, 1rem);
  font-weight: 800;
}

.service-card.is-featured {
  background: var(--navy);
}

.service-card.is-featured h3,
.service-card.is-featured p {
  color: var(--white);
}

.service-card.is-featured span {
  color: var(--gold);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  background: var(--soft);
  padding-top: clamp(44px, 4vw, 66px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.feature-grid span {
  color: var(--gold);
  font-weight: 950;
}

.feature-grid h3 {
  margin: 24px 0 8px;
  color: var(--navy);
  font-size: 1.3rem;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--navy);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(0, 43, 69, 0.78);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.quote-band {
  padding: clamp(46px, 6vw, 76px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 43, 69, 0.96), rgba(0, 151, 167, 0.72)),
    url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=1800&q=82")
    center / cover;
}

.quote-band blockquote {
  max-width: 860px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.testimonials-section {
  background: var(--soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 43, 69, 0.07);
}

.testimonial-grid span {
  color: var(--gold);
  font-weight: 900;
}

.testimonial-grid p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: none;
}

.faq-section {
  padding-top: clamp(44px, 4vw, 64px);
  padding-bottom: clamp(44px, 4vw, 64px);
}

.faq-section .section-heading {
  margin-bottom: 24px;
}

.faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  color: var(--muted);
}

.footer-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 43, 69, 0.96), rgba(0, 151, 167, 0.72)),
    url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=1800&q=82")
    center / cover;
}

.footer-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(58px, 7vw, 112px) clamp(24px, 5vw, 90px);
}

.footer-cta h2 {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
}

.footer-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 151, 167, 0.2), transparent 28%),
    linear-gradient(135deg, #001b2b 0%, var(--navy) 56%, #052536 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr 0.9fr;
  gap: 18px;
  padding: clamp(42px, 5vw, 76px) clamp(24px, 5vw, 90px);
}

.footer-brand,
.footer-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand p,
.footer-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-card a {
  color: var(--white);
  font-weight: 800;
}

.footer-contact a:last-child {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px clamp(24px, 5vw, 90px);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: var(--white);
}

@media (max-width: 1280px) {
  .site-header {
    gap: 16px;
    padding-inline: 24px;
  }

  .brand strong {
    font-size: 2.25rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .nav-links {
    gap: 2px;
    font-size: 0.82rem;
  }

  .nav-links a {
    padding-inline: 6px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-card {
    max-width: none;
  }

  .trust-strip,
  .service-grid,
  .stats-row,
  .split-section,
  .gallery-grid,
  .testimonial-grid,
  .faq-list,
  .footer-cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card img {
    order: 0;
    height: 220px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .trust-strip div {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 0;
    left: 0;
    right: 0;
    min-height: 66px;
    padding: 8px;
  }

  .brand small,
  .header-call {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10vw, 3.45rem);
    line-height: 0.95;
  }

  .hero,
  .hero-inner {
    min-height: 590px;
  }

  .hero-inner {
    padding: 104px 16px 34px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding-inline: 16px;
  }

  .section-services {
    padding-inline: 0;
  }

  .service-card img {
    height: 260px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .why-checks {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure {
    min-height: 300px;
  }

  .site-footer {
    padding-bottom: 100px;
  }

  .footer-cta-inner,
  .footer-grid,
  .footer-bottom {
    padding-inline: 16px;
  }

  .footer-cta .btn {
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }
}
