/* Quick Clear Waste Removal – Brand Styles */

:root {
  --green-primary: #47ad26;
  --green-light: #4aa72b;
  --green-dark: #026f35;
  --navy: #1a2e37;
  --navy-alt: #1b2e36;
  --white: #ffffff;
  --gray-50: #f6f8f7;
  --gray-100: #e8edea;
  --gray-200: #d1d9d4;
  --gray-500: #6b7c82;
  --gray-700: #3d4f56;
  --shadow-sm: 0 1px 3px rgba(26, 46, 55, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 46, 55, 0.1);
  --shadow-lg: 0 12px 40px rgba(26, 46, 55, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --header-height: 72px;
  --transition: 0.25s ease;
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green-primary);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography */
h1, h2, h3 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
  text-align: center;
}

.btn--primary {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.btn--primary:hover::after {
  left: 140%;
}

.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn--block {
  width: 100%;
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn--whatsapp:hover {
  background: #128c7e;
  border-color: #128c7e;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition-slow);
}

.header--menu-open {
  z-index: 10001;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.header--menu-open .logo img {
  filter: brightness(0) invert(1);
}

.header--scrolled {
  border-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

.header--menu-open.header--scrolled {
  border-color: transparent;
  box-shadow: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10002;
  position: relative;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.header--menu-open .nav-toggle span {
  background: var(--white);
}

.nav-toggle[aria-expanded="true"] {
  transform: rotate(0deg);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
  margin: 0 auto;
}

.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);
}

/* Mobile full-screen nav */
.nav-backdrop {
  display: none;
}

@media (max-width: 899px) {
  .nav-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 9998;
    background: var(--navy);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .nav-backdrop--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    min-width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 9999;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: calc(var(--header-height) + 1.5rem) 1.5rem 2rem;
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-alt) 42%, var(--green-dark) 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    box-sizing: border-box;
  }

  .nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 70% 15%, rgba(71, 173, 38, 0.22) 0%, transparent 55%),
      radial-gradient(ellipse at 15% 85%, rgba(74, 167, 43, 0.14) 0%, transparent 45%);
    pointer-events: none;
  }

  .nav--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: none;
    flex: 1;
    margin: 0;
    padding: 0;
  }

  .nav__list li {
    width: 100%;
  }

  .nav__link {
    display: block;
    width: 100%;
    padding: 1rem 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    font-size: 1.25rem;
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      background var(--transition),
      color var(--transition);
  }

  .nav--open .nav__link {
    opacity: 1;
    transform: translateY(0);
  }

  .nav--open .nav__list li:nth-child(1) .nav__link { transition-delay: 0.06s; }
  .nav--open .nav__list li:nth-child(2) .nav__link { transition-delay: 0.11s; }
  .nav--open .nav__list li:nth-child(3) .nav__link { transition-delay: 0.16s; }
  .nav--open .nav__list li:nth-child(4) .nav__link { transition-delay: 0.21s; }
  .nav--open .nav__list li:nth-child(5) .nav__link { transition-delay: 0.26s; }
  .nav--open .nav__list li:nth-child(6) .nav__link { transition-delay: 0.31s; }

  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  .nav__link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .nav__link--cta {
    background: var(--green-primary) !important;
    color: var(--white) !important;
    border: 2px solid var(--green-primary);
    border-radius: 50px;
    text-align: center;
    margin-top: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(71, 173, 38, 0.35);
  }

  .nav__link--cta:hover {
    background: var(--green-light) !important;
    border-color: var(--green-light);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(71, 173, 38, 0.45);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background: url('../assets/hero-bg.jpg') no-repeat center right / cover;
  z-index: 0;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      102deg,
      rgba(26, 46, 55, 0.96) 0%,
      rgba(26, 46, 55, 0.92) 28%,
      rgba(26, 46, 55, 0.72) 44%,
      rgba(26, 46, 55, 0.38) 58%,
      rgba(26, 46, 55, 0.1) 74%,
      transparent 88%
    ),
    linear-gradient(
      180deg,
      rgba(2, 111, 53, 0.38) 0%,
      transparent 42%
    ),
    linear-gradient(
      135deg,
      rgba(26, 46, 55, 0.5) 0%,
      rgba(27, 46, 54, 0.22) 45%,
      rgba(2, 111, 53, 0.18) 100%
    );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-animate {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@media (max-width: 899px) {
  .hero {
    padding: calc(var(--header-height) + 2rem) 0 3rem;
    min-height: auto;
  }

  .hero__text {
    text-align: center;
    max-width: none;
  }

  .hero__text h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .hero__lead {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__bg-image {
    background-position: center center;
    background-size: cover;
  }

  .hero__bg-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(26, 46, 55, 0.95) 0%,
        rgba(26, 46, 55, 0.9) 40%,
        rgba(26, 46, 55, 0.78) 65%,
        rgba(2, 111, 53, 0.55) 100%
      ),
      linear-gradient(
        180deg,
        rgba(2, 111, 53, 0.32) 0%,
        transparent 38%
      );
  }
}

.hero__badge {
  display: inline-block;
  background: rgba(71, 173, 38, 0.2);
  color: var(--green-light);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  border: 1px solid rgba(74, 167, 43, 0.3);
  margin-bottom: 1rem;
}

.hero__text h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  max-width: 540px;
  margin-bottom: 1.75rem;
}

.hero__lead strong {
  color: var(--white);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero__trust svg {
  color: var(--green-light);
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

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

.section--contact {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section__label {
  display: inline-block;
  color: var(--green-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.section__header p {
  color: var(--gray-500);
  margin-top: 0.75rem;
  font-size: 1.0625rem;
}

/* Services */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section--alt .service-card {
  background: var(--white);
}

.service-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(71, 173, 38, 0.12), rgba(2, 111, 53, 0.08));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--green-dark);
  transition: transform var(--transition-slow), background var(--transition);
}

.service-card:hover .service-card__icon {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, rgba(71, 173, 38, 0.2), rgba(2, 111, 53, 0.12));
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.9375rem;
}

/* Service Areas */
.areas-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.areas-group {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform var(--transition-slow), border-color var(--transition), box-shadow var(--transition-slow);
}

.areas-group:hover {
  transform: translateY(-3px);
  border-color: rgba(71, 173, 38, 0.25);
  box-shadow: var(--shadow-md);
}

.areas-group h3 {
  color: var(--green-dark);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--green-primary);
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem 1rem;
}

.areas-list li {
  font-size: 0.875rem;
  color: var(--gray-700);
  padding-left: 1rem;
  position: relative;
}

.areas-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--green-primary);
  border-radius: 50%;
}

.areas-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--gray-500);
}

/* Local area service blurbs */
.local-services {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
}

.local-service {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 3px solid var(--green-primary);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.local-service:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.local-service h3 {
  font-size: 1.0625rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.local-service p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.local-service strong {
  color: var(--navy);
  font-weight: 600;
}

/* Area tag cloud */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.area-tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--green-dark);
  background: rgba(71, 173, 38, 0.1);
  border: 1px solid rgba(71, 173, 38, 0.2);
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}

.area-tag:hover {
  background: rgba(71, 173, 38, 0.18);
  transform: translateY(-1px);
}

.section__header a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
  border-color: rgba(71, 173, 38, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
  transition: color var(--transition);
}

.faq-item[open] summary {
  color: var(--green-dark);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--green-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.25rem 1.25rem;
  color: var(--gray-500);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.faq-item a {
  font-weight: 600;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

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

.step__number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-slow), box-shadow var(--transition);
}

.step:hover .step__number {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(71, 173, 38, 0.4);
}

.step h3 {
  margin-bottom: 0.25rem;
}

.step p {
  color: var(--gray-500);
  font-size: 0.9375rem;
}

.step a {
  font-weight: 600;
}

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

.guarantee__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.guarantee__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.guarantee__list svg {
  flex-shrink: 0;
  color: var(--green-primary);
  margin-top: 2px;
}

.guarantee__list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.125rem;
}

.guarantee__list span {
  color: var(--gray-500);
  font-size: 0.9375rem;
}

.guarantee__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 260px;
  padding: 1rem 0 0;
}

.guarantee__visual img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  object-fit: contain;
  -webkit-mask-image:
    linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image:
    linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.guarantee__visual::after {
  content: '';
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 0;
  height: 42%;
  background: linear-gradient(to bottom, transparent, var(--white) 88%);
  pointer-events: none;
}

.guarantee__visual-badge {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(2, 111, 53, 0.28);
  white-space: nowrap;
  z-index: 2;
}

.guarantee__visual-badge svg {
  flex-shrink: 0;
  color: var(--white);
}

@media (max-width: 639px) {
  .guarantee__visual-badge {
    font-size: 0.8125rem;
    padding: 0.625rem 1rem;
    white-space: normal;
    text-align: center;
    max-width: calc(100% - 2rem);
  }
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(71, 173, 38, 0.25);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  color: #f5a623;
  margin-bottom: 0.875rem;
}

.review-card p {
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.review-card cite {
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.reviews-summary {
  margin-top: 2.5rem;
  text-align: center;
}

.reviews-summary__rating {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.reviews-summary__score {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.reviews-summary__rating span:last-child {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-info h2 {
  margin-bottom: 0.75rem;
}

.contact-info > p {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-details li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-details svg {
  flex-shrink: 0;
  color: var(--green-primary);
  margin-top: 2px;
}

.contact-details strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  margin-bottom: 0.125rem;
}

.contact-details a {
  font-weight: 600;
  color: var(--navy);
}

.contact-details a:hover {
  color: var(--green-dark);
}

.contact-details span {
  color: var(--navy);
  font-size: 0.9375rem;
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.contact-form:focus-within {
  box-shadow: 0 8px 32px rgba(71, 173, 38, 0.12);
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.form-group label span {
  color: var(--green-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(71, 173, 38, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
  opacity: 0.7;
}

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 1rem;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.recaptcha-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}

/* Form success / error modal */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-alt) 42%, var(--green-dark) 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  box-sizing: border-box;
}

.form-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 15%, rgba(71, 173, 38, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(74, 167, 43, 0.14) 0%, transparent 45%);
  pointer-events: none;
}

.form-modal--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.form-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  text-align: center;
  color: var(--white);
  padding: 2.5rem 1.5rem 2rem;
}

.form-modal__close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.form-modal__close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.form-modal__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(71, 173, 38, 0.22);
  border: 2px solid rgba(74, 167, 43, 0.45);
  color: var(--green-light);
}

.form-modal--error .form-modal__icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffb4ab;
}

.form-modal__title {
  color: var(--white);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  margin-bottom: 1rem;
}

.form-modal__message {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto;
}

.contact-form .btn {
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 3rem;
}

.footer__inner {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer__brand img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.footer__brand p {
  font-size: 0.875rem;
  max-width: 280px;
}

.footer h3 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a,
.footer__contact a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--green-light);
}

.footer__contact p {
  margin-bottom: 0.375rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.footer__bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  font-size: 0.8125rem;
}

/* Floating WhatsApp button */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: all var(--transition);
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: whatsappPulse 2.5s ease-out infinite;
}

.floating-whatsapp:hover {
  background: #128c7e;
  color: var(--white);
  transform: scale(1.08);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.07s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.42s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.49s; }
.reveal-stagger.is-visible > *:nth-child(9) { transition-delay: 0.56s; }

/* Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.05); }
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70%, 100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Tablet */
@media (min-width: 640px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .local-services {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .reviews-grid .review-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer__bottom .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Desktop */
@media (min-width: 900px) {
  .nav-backdrop {
    display: none;
  }

  .header--menu-open {
    background: rgba(255, 255, 255, 0.95);
  }

  .header--menu-open .logo img {
    filter: none;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    position: static !important;
    inset: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 0;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    display: block;
    padding: 0;
    margin-left: auto;
    background: none !important;
    overflow: visible;
    box-shadow: none;
    z-index: auto;
  }

  .nav::before {
    display: none;
  }

  .nav__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    max-width: none;
    width: auto;
    flex: none;
    position: static;
    margin: 0;
    padding: 0;
  }

  .nav__list li {
    width: auto;
  }

  .nav__link {
    display: block;
    width: auto;
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 0.5rem 0.875rem;
    color: var(--navy);
    opacity: 1 !important;
    transform: none !important;
    text-align: left;
    transition: background var(--transition), color var(--transition);
  }

  .nav--open .nav__list li:nth-child(n) .nav__link {
    transition-delay: 0s;
  }

  .nav__link:hover {
    background: var(--gray-50);
    color: var(--green-dark);
    transform: none;
  }

  .nav__link--cta,
  .nav__link--cta.btn--primary {
    margin-top: 0;
    margin-left: 0.5rem;
    padding: 0.625rem 1.25rem;
    min-height: auto;
    background: var(--green-primary) !important;
    border: 2px solid var(--green-primary) !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--white) !important;
    box-shadow: var(--shadow-sm);
  }

  .nav__link--cta:hover,
  .nav__link--cta.btn--primary:hover {
    background: var(--green-dark) !important;
    border-color: var(--green-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  .hero__content {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 3rem;
    align-items: center;
  }

  .hero__text {
    max-width: 580px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .local-services {
    grid-template-columns: repeat(3, 1fr);
  }

  .guarantee {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid .review-card:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: start;
  }

  .logo img {
    height: 48px;
  }
}

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

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

  .reveal,
  .reveal-stagger > *,
  .hero-animate {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
