@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Lato:wght@300;400;600&display=swap');

:root {
  --green: #25d366;
  --green-dark: #1aad52;
  --dark: #1a1a1a;
  --light: #f9f7f4;
  --accent: #c8a96e;
}
section {
  scroll-margin-top: 60px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--light);
  color: var(--dark);
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid rgba(200, 169, 110, 0.3);
}

.nav-brand {
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-align: center;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  align-items: center;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  background-color: var(--green) !important;
  color: #fff !important;
  padding: 0.35rem 0.9rem !important;
  border-radius: 4px;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  background-image: url("hero-cleaning.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.35) 60%,
    rgba(10, 10, 10, 0.05) 100%
  );
}

.hero-text {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
}

.subtext {
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  max-width: 420px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.cta-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  margin-bottom: -0.3rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--green);
  color: #ffffff;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
  background-color: var(--green-dark);
  transform: translateY(-2px);
}
/* ── SERVICES ── */
.services {
  padding: 3.5rem 1.2rem;
  background-color: var(--light);
}

.services h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

.services-list {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.services-list li {
  background: #fff;
  padding: 1.5rem 1rem;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-top: 3px solid var(--accent);
}
.services-list li:nth-child(5) {
  grid-column: 1 / -1;
}
/* ── WHY US ── */
.why-us {
  padding: 3.5rem 1.2rem;
  background-color: var(--dark);
  color: #fff;
}

.why-us h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 2rem;
  color: #fff;
}

.why-us ul {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.why-us li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.6;
}

.why-us li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── AREAS ── */
.areas {
  padding: 3.5rem 1.2rem;
  background-color: var(--light);
  text-align: center;
}

.areas h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.areas p {
  max-width: 580px;
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ── FOOTER ── */
.footer {
  background-color: #111;
  color: #999;
  text-align: center;
  padding: 2.5rem 1.5rem;
  line-height: 2.2;
  border-top: 1px solid rgba(200,169,110,0.2);
  font-size: 0.9rem;
}

.footer strong {
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

.footer a {
  color: var(--green);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ── DESKTOP ── */
@media (min-width: 769px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 2rem;
  }

  .hero {
    align-items: center;
    min-height: 100svh;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(10, 10, 10, 0.85) 0%,
      rgba(10, 10, 10, 0.4) 60%,
      rgba(10, 10, 10, 0.1) 100%
    );
  }

  .hero-text {
    max-width: 560px;
    padding: 3rem 3rem 3rem 5%;
    align-items: flex-start;
    text-align: left;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .whatsapp-btn {
    width: auto;
  }

  .services-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ── PRICING ── */
.pricing {
  padding: 4.5rem 1.2rem;
  background-color: #111;
  color: #fff;
  text-align: center;
  border-top: 1px solid rgba(200, 169, 110, 0.15);
}

.pricing-header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.pricing-badge {
  display: inline-block;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.35);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}

.pricing h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
}

.pricing-minimum {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 8px;
  padding: 1rem 2rem;
  margin-top: 0.5rem;
}

.pricing-minimum span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.pricing-minimum strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1.1;
}

.pricing-minimum-note {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.65) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 1.8rem 1.4rem;
  text-align: left;
  transition: background 0.2s, transform 0.2s;
}

.pricing-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-3px);
}

.pricing-card--wide {
  grid-column: 1 / -1;
  border-top-color: var(--green);
}

.pricing-card-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.pricing-emoji {
  font-size: 1.4rem;
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--accent);
  margin: 0;
}

.pricing-card--wide h3 {
  color: var(--green);
}

.pricing-main-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}

.price-amount {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.price-unit {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.pricing-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.85);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list li strong {
  color: #fff;
  font-size: 0.95rem;
}

.pricing-footer-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.pricing-footer-note a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.pricing-footer-note a:hover {
  text-decoration: underline;
}

@media (min-width: 769px) {
  .pricing h2 {
    font-size: 2.2rem;
  }

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

  .pricing-card--wide {
    grid-column: auto;
  }
}
/* ── RESULTS / BEFORE & AFTER ── */
.results {
  background-color: var(--dark);
  padding: 4rem 1.2rem;
}

.results-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.results-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.results h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.results-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.result-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(200,169,110,0.15);
  aspect-ratio: 1/1;
  background: #2a2a2a;
}

.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.result-card:hover img {
  transform: scale(1.03);
}

.results-cta {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.results-cta:hover {
  background: var(--accent);
  color: var(--dark);
}

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

  .results h2 {
    font-size: 2.2rem;
  }
}
.floating-whatsapp {
  display: none; /* hidden by default */
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 0.7rem 0.9rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 999;
}

/* ── LOCATION PAGES ── */
.loc-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  background-image: url("hero-cleaning.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}

.loc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.97) 0%,
    rgba(10, 10, 10, 0.7) 45%,
    rgba(10, 10, 10, 0.2) 100%
  );
}

.loc-hero-text {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.5rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}

.loc-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  background: rgba(0,0,0,0.7);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(200,169,110,0.4);
  display: inline-block;
}

.loc-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,1);
  margin: 0;
}

.loc-sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 400px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
  margin: 0;
}

.loc-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green);
  color: #ffffff;
  padding: 0.9rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: background-color 0.25s ease, transform 0.2s ease;
  margin-top: 0.5rem;
}

.loc-wa-btn:hover {
  background-color: var(--green-dark);
  transform: translateY(-2px);
}

.loc-services {
  padding: 4rem 1.2rem;
  background-color: var(--light);
}

.loc-inner {
  max-width: 960px;
  margin: 0 auto;
}

.loc-services h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--dark);
  margin-bottom: 1rem;
  text-align: center;
}

.loc-intro {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.loc-card {
  background: #fff;
  padding: 1.5rem 1rem;
  border-radius: 6px;
  border-top: 3px solid var(--accent);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.loc-card span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.6rem;
}

.loc-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.loc-card p {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.loc-why {
  padding: 4rem 1.2rem;
  background-color: var(--dark);
  color: #fff;
  text-align: center;
}

.loc-why h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 2rem;
}

.loc-why ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.loc-why li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.6;
}

.loc-why li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.loc-why .loc-wa-btn {
  width: auto;
  max-width: 320px;
}

@media (min-width: 769px) {
  .loc-hero {
    align-items: center;
  }

  .loc-hero-overlay {
    background: linear-gradient(
      to right,
      rgba(10,10,10,0.92) 0%,
      rgba(10,10,10,0.5) 55%,
      rgba(10,10,10,0.1) 100%
    );
  }

  .loc-hero-text {
    max-width: 560px;
    padding: 3rem 3rem 3rem 5%;
    align-items: flex-start;
    text-align: left;
  }

  .loc-hero-text h1 {
    font-size: 2.5rem;
  }

  .loc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
