:root {
  --dark: #0f3d2e;
  --deep: #08291f;
  --green: #238b45;
  --light: #e8f6df;
  --soft: #f6fbf2;
  --accent: #9bd84a;
  --text: #1f2f29;
  --muted: #63736b;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 41, 31, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: var(--deep);
  color: var(--white);
  font-size: 14px;
}
.topbar .container, .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar .container { padding: 10px 0; flex-wrap: wrap; }
.topbar-list { display: flex; gap: 18px; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 25px rgba(8, 41, 31, .08);
}
.nav-row { padding: 14px 0; }
.logo img { height: 58px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; font-weight: 700; color: var(--dark); }
.main-nav a:hover, .main-nav a.active { color: var(--green); }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 235px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 10px;
  display: none;
}
.dropdown:hover .dropdown-menu { display: grid; gap: 2px; }
.dropdown-menu a { padding: 9px 12px; border-radius: 6px; }
.dropdown-menu a:hover { background: var(--light); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 13px 22px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(35, 139, 69, .22);
}
.btn:hover { background: var(--dark); }
.btn.light { background: var(--accent); color: var(--deep); }
.menu-toggle { display: none; background: var(--dark); color: var(--white); border: 0; border-radius: 6px; padding: 10px 12px; font-size: 22px; }

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  transition: opacity .8s ease;
  background-size: cover;
  background-position: center;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,41,31,.82), rgba(8,41,31,.42), rgba(8,41,31,.18));
}
.slide.active { opacity: 1; }
.hero-content { position: relative; z-index: 2; max-width: 690px; padding: 90px 0; }
.eyebrow { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 14px; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 16px; color: var(--dark); }
.hero h1 { color: var(--white); font-size: clamp(42px, 6vw, 76px); }
.hero p { font-size: 20px; max-width: 610px; }
.slider-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.slider-dot { width: 13px; height: 13px; border-radius: 50%; border: 2px solid var(--white); background: transparent; cursor: pointer; }
.slider-dot.active { background: var(--accent); border-color: var(--accent); }

.section { padding: 82px 0; }
.section.light { background: var(--soft); }
.section.dark { background: var(--dark); color: var(--white); }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(30px, 4vw, 48px); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-body { padding: 24px; }
.service-card img { height: 230px; width: 100%; object-fit: cover; }
.service-card h3 { font-size: 23px; }
.mini-service-card {
  position: relative;
  min-height: 178px;
  isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mini-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(8, 41, 31, .16);
}
.mini-service-card img {
  height: 118px;
  width: 100%;
  object-fit: cover;
}
.mini-service-card .card-body {
  padding: 20px 22px;
}
.mini-service-card h3 {
  margin: 0;
  font-size: 19px;
}
.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(35, 139, 69, .18);
}
.read-more:hover { background: var(--dark); }
.feature-list, .check-list { padding: 0; margin: 20px 0 0; list-style: none; display: grid; gap: 12px; }
.feature-list li, .check-list li { padding-left: 30px; position: relative; }
.feature-list li::before, .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 4px var(--green);
}
.home-about {
  background: var(--white);
  overflow: hidden;
}
.home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  gap: 74px;
  align-items: center;
}
.about-visual {
  position: relative;
  min-height: 560px;
}
.about-main-img {
  position: absolute;
  left: 48px;
  top: 28px;
  width: min(520px, calc(100% - 70px));
  height: 500px;
  object-fit: cover;
  border-radius: 8px 24px 8px 24px;
  box-shadow: 0 26px 55px rgba(8, 41, 31, .16);
}
.about-badge {
  position: absolute;
  z-index: 2;
  left: 0;
  top: -18px;
  width: 182px;
  height: 176px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), #32a320);
}
.about-badge::after {
  content: "";
  position: absolute;
  inset: 44px;
  border: 4px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
}
.about-circle-img {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  width: 182px;
  height: 182px;
  padding: 18px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 24px 50px rgba(8, 41, 31, .16);
}
.about-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.dot-pattern {
  position: absolute;
  right: 80px;
  bottom: -12px;
  width: 150px;
  height: 120px;
  background-image: radial-gradient(var(--deep) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: .7;
}
.about-content h2 {
  color: #142033;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 62px);
  letter-spacing: 0;
}
.about-content p {
  color: #777f7b;
  font-size: 18px;
  max-width: 650px;
}
.about-info-row {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 38px;
  align-items: center;
  margin-top: 28px;
}
.about-info-row .feature-list li {
  font-size: 17px;
  font-weight: 700;
  color: #243044;
}
.about-info-row .feature-list li::before {
  background: var(--green);
  box-shadow: none;
}
.experience-box {
  min-height: 200px;
  border: 3px dashed var(--green);
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #142033;
  padding: 22px;
}
.experience-box strong {
  color: #36a321;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 66px;
  line-height: .9;
}
.experience-box span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}
.about-image, .page-image { border-radius: 8px; box-shadow: var(--shadow); width: 100%; height: 430px; object-fit: cover; }
.materials { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; }
.cta-band {
  background: linear-gradient(135deg, var(--green), var(--deep));
  color: var(--white);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; }

.pickup-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(155, 216, 74, .26), transparent 32%),
    linear-gradient(135deg, var(--soft), #ffffff 48%, var(--light));
}
.pickup-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  gap: 54px;
}
.pickup-copy {
  position: relative;
  min-height: 420px;
  padding: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--dark), var(--deep));
  color: var(--white);
  overflow: hidden;
}
.pickup-copy h2 {
  color: var(--white);
  font-size: clamp(34px, 4vw, 54px);
  max-width: 560px;
}
.pickup-copy p {
  max-width: 520px;
  color: rgba(255,255,255,.88);
}
.pickup-copy::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(155, 216, 74, .16);
}
.pickup-chips {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.pickup-chips span {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 800;
  font-size: 13px;
}
.pickup-truck {
  position: absolute;
  right: -4px;
  bottom: -8px;
  width: min(390px, 58%);
  filter: drop-shadow(0 20px 24px rgba(0,0,0,.22));
}
.pickup-form-card {
  padding: 32px;
  border: 1px solid rgba(35, 139, 69, .12);
}
.pickup-form-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(8,41,31,.9), rgba(8,41,31,.66)), url("../../images/Waste-Recycling-.jpg") center/cover;
  color: var(--white);
  padding: 118px 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(155, 216, 74, .18);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 { color: var(--white); font-size: clamp(38px, 5vw, 64px); }
.breadcrumbs { color: var(--accent); font-weight: 800; }
.side-box {
  position: relative;
  background:
    radial-gradient(circle at 85% 10%, rgba(155, 216, 74, .22), transparent 35%),
    linear-gradient(135deg, var(--dark), var(--deep));
  color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 22px 48px rgba(8, 41, 31, .18);
  overflow: hidden;
}
.side-box h3 { color: var(--white); }

main.section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}
main.section > .container.grid-2 {
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
}
main.section .side-box {
  position: sticky;
  top: 104px;
}
main.section .side-box::before {
  content: "Need Help?";
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
main.section .side-box h3 {
  margin-bottom: 14px;
  font-size: 22px;
}
main.section .side-box h3:first-child {
  font-size: 36px;
}
main.section .side-box h3:not(:first-child) {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
main.section .page-image {
  height: 455px;
  border-radius: 8px;
  border: 10px solid var(--white);
}
main.section .page-image + h2 {
  margin-top: 32px;
  font-size: clamp(34px, 4vw, 52px);
}
main.section .page-image + h2 + p {
  font-size: 18px;
  color: var(--muted);
  max-width: 840px;
}
main.section .check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
main.section .check-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px 16px 50px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 41, 31, .08);
  font-weight: 800;
}
main.section .check-list li::before {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green);
  box-shadow: inset 0 0 0 4px var(--accent);
}

main.section + .section.light {
  background: var(--white);
}
main.section + .section.light .container.grid-2 {
  align-items: stretch;
}
main.section + .section.light .container.grid-2 > div {
  padding: 34px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid rgba(35, 139, 69, .1);
  box-shadow: 0 16px 38px rgba(8, 41, 31, .08);
}
main.section + .section.light h2 {
  font-size: clamp(28px, 3vw, 40px);
}
main.section + .section.light .check-list {
  gap: 10px;
}

#service-form {
  background:
    radial-gradient(circle at 82% 15%, rgba(155, 216, 74, .22), transparent 28%),
    linear-gradient(135deg, var(--deep), var(--dark));
  color: var(--white);
}
#service-form h2,
#service-form h3 {
  color: var(--white);
}
#service-form p {
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
}
#service-form .card {
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .18);
}

.contact-form {
  display: grid;
  gap: 14px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
input, textarea, select {
  width: 100%;
  border: 1px solid #d9e8d2;
  border-radius: 6px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}
textarea { min-height: 135px; resize: vertical; }
.form-note { display: none; padding: 12px 14px; border-radius: 6px; margin-bottom: 14px; font-weight: 700; }
.form-note.success { display: block; background: #e5f8df; color: #17612c; }
.form-note.error { display: block; background: #ffe8e8; color: #8a1f1f; }

.footer {
  background: var(--deep);
  color: rgba(255,255,255,.86);
  padding: 60px 0 24px;
}
.footer h3 { color: var(--white); }
.footer-logo { height: 70px; width: auto; margin-bottom: 14px; }
.footer ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 18px; text-align: center; font-size: 14px; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    display: none;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; display: grid; padding: 4px 0 0 14px; }
  .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  main.section > .container.grid-2 { grid-template-columns: 1fr; }
  main.section .side-box {
    position: relative;
    top: auto;
    order: 2;
  }
  main.section .check-list { grid-template-columns: 1fr; }
  .home-about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-visual { min-height: 500px; }
  .about-main-img { left: 34px; width: calc(100% - 48px); height: 430px; }
  .about-info-row { grid-template-columns: 1fr; }
  .experience-box { max-width: 240px; min-height: 170px; }
  .pickup-wrap { grid-template-columns: 1fr; gap: 28px; }
  .pickup-copy { min-height: 390px; }
  .pickup-truck { width: min(360px, 65%); }
  .hero { min-height: 560px; }
  .cta-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .topbar .container { display: none; }
  .logo img { height: 48px; }
  .section { padding: 58px 0; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 17px; }
  .page-hero { padding: 82px 0; }
  main.section .page-image {
    height: 300px;
    border-width: 6px;
  }
  main.section .page-image + h2 { margin-top: 22px; }
  main.section .check-list li { padding-right: 14px; }
  main.section + .section.light .container.grid-2 > div { padding: 24px; }
  .about-image, .page-image { height: 280px; }
  .about-visual { min-height: 410px; }
  .about-main-img { left: 18px; top: 44px; width: calc(100% - 18px); height: 320px; }
  .about-badge { width: 118px; height: 118px; border-radius: 14px; }
  .about-badge::after { inset: 30px; border-width: 3px; }
  .about-circle-img { width: 130px; height: 130px; padding: 12px; right: 0; bottom: 10px; }
  .dot-pattern { right: 44px; width: 112px; height: 90px; }
  .about-content h2 { font-size: 40px; }
  .about-content p { font-size: 16px; }
  .materials { grid-template-columns: 1fr; }
  .pickup-copy, .pickup-form-card { padding: 24px; }
  .pickup-copy { min-height: 430px; }
  .pickup-truck { width: 92%; right: -28px; }
}
