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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #f7f9fc;
  color: #0f172a;
}

.container {
  width: 92%;
  max-width: 1300px;
  margin: auto;
}

section { padding: 64px 0; }

h1 { font-size: 3rem; line-height: 1.1; }
h2 { font-size: 2.4rem; margin-bottom: 24px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
p  { color: #475569; line-height: 1.7; }

/* ─────────────────────────────────────────
   BUTTONS  (single unified definition)
───────────────────────────────────────── */
.btn {
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  transition: all .25s ease;
  cursor: pointer;
  border: none;
}

/* Primary — green brand colour everywhere */
.btn-primary {
  background: #22c55e;
  color: #fff;
}
.btn-primary:hover {
  background: #16a34a;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(34,197,94,.3);
}

/* Secondary — outlined white (hero) */
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-secondary:hover {
  background: #22c55e;
  border-color: #22c55e;
  transform: translateY(-3px);
}

/* Outline blue (used in some cards) */
.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
}
.btn-outline:hover {
  background: #2563eb;
  color: #fff;
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999;
  box-shadow: 0 6px 30px rgba(0,0,0,.06);
  padding: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

.logo {
  height: 68px;
  width: auto;
  display: block;
}

.nav-links { display: flex; align-items: center; }

.nav-links a {
  margin: 0 14px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  padding-bottom: 4px;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #22c55e;
  transition: width .2s;
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: #16a34a; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger toggle (mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   HERO  (single, merged definition)
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: #0f172a;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: .05;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 60px 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
  color: #fff;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─────────────────────────────────────────
   SERVICES GRID
───────────────────────────────────────── */
.services { background: #f8fafc; padding: 64px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all .3s ease;
  text-decoration: none;
  color: #1e293b;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.1);
}
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; font-weight: 600; }
.service-card p  { font-size: .93rem; color: #475569; line-height: 1.6; }

.icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #f0fdf4;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: all .3s ease;
}
.service-card:hover .icon-wrapper { background: #22c55e; }

.icon-wrapper i {
  width: 32px;
  height: 32px;
  color: #22c55e;
  transition: all .3s ease;
}
.service-card:hover .icon-wrapper i { color: #fff; }

/* ─────────────────────────────────────────
   GENERIC CARD GRID
───────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
  transition: .3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.1);
}
.card a { text-decoration: none; font-weight: 600; color: #22c55e; }

/* ─────────────────────────────────────────
   WHY US
───────────────────────────────────────── */
.why-us { background: #f8fafc; padding: 64px 0; }

.why-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.why-card {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  border-left: 3px solid #22c55e;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
  transition: all .25s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
}
.why-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.why-card p  { color: #64748b; line-height: 1.6; font-size: .93rem; }

/* ─────────────────────────────────────────
   SECTION TITLE
───────────────────────────────────────── */
.sectionTitle { text-align: center; margin-bottom: 50px; }
.sectionTitle p { max-width: 640px; margin: 12px auto 0; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonial {
  background: #f0fdf4;
  border-left: 3px solid #22c55e;
  padding: 28px;
  border-radius: 16px;
  font-style: italic;
  color: #334155;
  line-height: 1.7;
}
.testimonial strong {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 600;
  color: #0f172a;
}

/* ─────────────────────────────────────────
   CTA  — FIX: explicit white text on all children
───────────────────────────────────────── */
.cta {
  background: #0f172a;
  text-align: center;
  padding: 64px 0;
}
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta p  { color: #94a3b8; margin-bottom: 0; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: #020617;
  color: #cbd5e1;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 { color: #f1f5f9; margin-bottom: 14px; font-size: 1rem; }
.footer p  { color: #94a3b8; font-size: .9rem; line-height: 1.6; }

.footer a {
  color: #94a3b8;
  text-decoration: none;
  display: block;
  margin: 6px 0;
  font-size: .9rem;
  transition: color .2s;
}
.footer a:hover { color: #22c55e; }

.copyright {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  text-align: center;
  font-size: .85rem;
  color: #64748b;
}

/* ─────────────────────────────────────────
   FLOATING CTA BUTTON
───────────────────────────────────────── */
.floating-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #22c55e;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 8px 24px rgba(34,197,94,.4);
  z-index: 998;
  transition: all .25s;
}
.floating-btn:hover {
  background: #16a34a;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(34,197,94,.5);
}

/* ─────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────── */
.contact input,
.contact textarea,
.contact select {
  width: 100%;
  padding: 14px 18px;
  margin-top: 6px;
  margin-bottom: 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: .97rem;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: #f8fafc;
  transition: all .25s ease;
  height: 52px;
  outline: none;
}
.contact textarea { resize: vertical; min-height: 120px; height: auto; }

.contact input:focus,
.contact textarea:focus,
.contact select:focus {
  border-color: #22c55e;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(34,197,94,.12);
}

.contact label {
  font-weight: 600;
  font-size: .85rem;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.contact .card { box-shadow: none; }

.contact button.btn {
  width: 100%;
  font-size: 1rem;
  padding: 16px 0;
  border-radius: 12px;
  border: none;
}

/* Business card */
.business-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}
.business-card h3 { font-weight: 700; }
.business-card p  { font-size: .97rem; color: #334155; }
.business-card a  { color: #22c55e; text-decoration: none; }
.business-card a:hover { text-decoration: underline; }

.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  background: #25D366 !important;
  color: #fff !important;
  font-size: .97rem;
}
.whatsapp-btn:hover {
  background: #1aab52 !important;
  color: #fff !important;
}

/* ─────────────────────────────────────────
   PRICING & POLICY — shared across pages
   (moved out of inline <style> blocks)
───────────────────────────────────────── */

/* --- Shared pricing banner --- */
.pricing-banner {
  border-radius: 16px;
  padding: 44px 40px;
  color: #fff;
  margin-bottom: 40px;
}
.pricing-banner h2 { color: #fff; margin-bottom: 8px; }
.pricing-banner > p { opacity: .85; margin-bottom: 30px; color: #e2e8f0; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.price-card {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.price-card .price-label {
  font-size: .78rem;
  opacity: .78;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.price-card .price-value { font-size: 1.8rem; font-weight: 700; line-height: 1; margin-bottom: 5px; }
.price-card .price-note  { font-size: .78rem; opacity: .72; }

/* --- Shared policy grid --- */
.policy-section { background: #f8fafc; padding: 64px 0; }

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.policy-card {
  background: #fff;
  border-radius: 12px;
  padding: 26px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.policy-card h3 { font-size: 1rem; font-weight: 700; color: #1e293b; margin: 0 0 12px; }
.policy-card p,
.policy-card ul { color: #475569; font-size: .9rem; line-height: 1.75; margin: 0; }
.policy-card ul { padding-left: 16px; }
.policy-card ul li { margin-bottom: 4px; }

/* Policy card accent colours per page */
.policy-card-green  { border-top: 3px solid #22c55e; }
.policy-card-blue   { border-top: 3px solid #3b82f6; }
.policy-card-sky    { border-top: 3px solid #0ea5e9; }
.policy-card-amber  { border-top: 3px solid #f59e0b; }

/* Shared notice / info boxes */
.notice-box {
  background: #fefce8;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 14px 16px;
  color: #92400e;
  font-size: .87rem;
  line-height: 1.6;
  margin-top: 12px;
}
.included-note {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 14px 18px;
  color: #166534;
  font-size: .87rem;
  margin-top: 20px;
}

/* Payment badges */
.payment-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.badge {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  padding: 5px 13px;
  font-size: .82rem;
  color: #334155;
  font-weight: 500;
}

/* Spec cards (cleaning page) */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.spec-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #3b82f6;
  border-radius: 12px;
  padding: 22px 20px;
}
.spec-card h4 { margin: 0 0 8px; font-size: 1rem; color: #1e293b; }
.spec-card p,
.spec-card ul { color: #475569; font-size: .9rem; line-height: 1.7; margin: 0; }
.spec-card ul { padding-left: 16px; }
.spec-card ul li { margin-bottom: 3px; }
.price-tag {
  display: inline-block;
  background: #eff6ff;
  color: #1d4ed8;
  border-radius: 6px;
  padding: 3px 10px;
  font-weight: 600;
  font-size: .83rem;
  margin-bottom: 10px;
}

/* Waste removal items */
.wr-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.wr-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wr-item .ic  { font-size: 1.6rem; flex-shrink: 0; }
.wr-item b    { display: block; font-size: .95rem; color: #1e293b; }
.wr-item small{ color: #64748b; font-size: .82rem; }

/* Gardening service items */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.service-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow .2s, transform .2s;
}
.service-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.service-item .svc-icon { font-size: 1.7rem; line-height: 1; flex-shrink: 0; }
.service-item h4 { margin: 0 0 4px; font-size: .97rem; font-weight: 600; color: #1e293b; }
.service-item p  { margin: 0; font-size: .87rem; color: #64748b; line-height: 1.5; }

/* Gardening intro banner */
.gardening-intro {
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin-bottom: 36px;
  color: #166534;
  font-size: 1rem;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────── */
.trust { background: #22c55e; color: #fff; text-align: center; }
.trust h2, .trust p { color: #fff; }

/* ─────────────────────────────────────────
   RESPONSIVE — tablet 768px
───────────────────────────────────────── */
@media (max-width: 900px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.9rem; }
  section { padding: 70px 0; }

  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.1);
    padding: 16px 0 24px;
    z-index: 998;
  }
  .nav-links.open a {
    margin: 0;
    padding: 12px 24px;
    font-size: 1rem;
    border-bottom: 1px solid #f1f5f9;
  }
  .nav-links.open a::after { display: none; }

  .menu-toggle { display: flex; }

  /* Hide desktop Get Quote button in header on mobile */
  .header .btn-primary { display: none; }

  .hero-content { padding: 50px 16px; }
  .pricing-banner { padding: 32px 24px; }
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  section { padding: 56px 0; }

  .pricing-cards { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .policy-grid,
  .spec-grid,
  .services-list,
  .wr-items { grid-template-columns: 1fr; }
  .floating-btn { right: 16px; bottom: 16px; padding: 12px 18px; font-size: .88rem; }
}

/* Visually hidden but readable by screen readers and search engines */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─────────────────────────────────────────
   MOBILE REFINEMENTS
───────────────────────────────────────── */
@media (max-width: 900px) {
  .card { padding: 24px 20px; }
  .service-card { padding: 24px 20px; }
  .pricing-banner { padding: 28px 20px; }
  .policy-card { padding: 20px 16px; }
  .spec-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .wr-items { grid-template-columns: 1fr; }
  .policy-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .sectionTitle { margin-bottom: 28px; }
  .floating-btn { font-size: .85rem; padding: 12px 18px; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr 1fr; }
  .contact .card { padding: 20px 16px; }
  .hero-content { padding: 40px 12px; }
  .logo { height: 52px; }
  .nav { height: 64px; }
}
