/* EMS Junk Removal & More — bold green/black lead-gen styling */
:root {
  --green: #4db848;
  --green-bright: #5ed553;
  --green-dark: #2e7d32;
  --green-deep: #1b5e20;
  --ink: #101410;
  --ink-2: #1a201a;
  --paper: #f4f6f3;
  --gray: #e3e7e1;
  --text: #22281f;
  --text-light: #cfd8cc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}
h1, h2, h3.pricing-group-title, .hero h1 {
  font-family: 'Anton', 'Arial Black', sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}
img { max-width: 100%; }
a { color: inherit; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid {
  background: var(--green);
  color: #0c130c;
  box-shadow: 0 4px 14px rgba(77, 184, 72, 0.45);
}
.btn-solid:hover { background: var(--green-bright); }
.btn-outline {
  border: 3px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn-outline:hover { background: rgba(77, 184, 72, 0.12); }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.center { text-align: center; margin-top: 2rem; }

/* Top bar */
.topbar {
  background: var(--green-deep);
  color: #eaf7e8;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.6rem 1.5rem;
  background: var(--ink);
  color: #fff;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.header-logo { height: 46px; width: 46px; object-fit: cover; border-radius: 8px; }
.header-name {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--green);
}
.header-name em { color: #e8ece7; font-style: normal; font-size: 0.85em; }
.header-nav { display: flex; gap: 1.2rem; margin-left: auto; }
.header-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: #d7ded5;
}
.header-nav a:hover { color: var(--green-bright); }
.header-call { white-space: nowrap; }

/* Hero */
.hero {
  background:
    radial-gradient(ellipse at 75% 40%, rgba(77, 184, 72, 0.28), transparent 55%),
    linear-gradient(160deg, #0d120d 0%, #16241480 60%, #0d120d 100%),
    var(--ink);
  color: #fff;
  padding: 4rem 1.5rem 4.5rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-kicker {
  color: var(--green-bright);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); color: #fff; }
.hero h1 span { color: var(--green); text-shadow: 0 0 30px rgba(77, 184, 72, 0.5); }
.hero-sub { margin: 1.2rem 0 1.8rem; font-size: 1.1rem; color: var(--text-light); max-width: 34rem; }
.hero-sub strong { color: #fff; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-top: 1.6rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: #bcd8b8;
}
.hero-logo img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 40px rgba(77, 184, 72, 0.35));
}

/* Sections */
.section { padding: 4.5rem 1.5rem; max-width: 1100px; margin: 0 auto; }
.section-dark {
  max-width: none;
  background: var(--ink);
  color: #fff;
}
.section-dark > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.section-gray { max-width: none; background: var(--gray); }
.section-gray > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 2.8rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.section-head p { margin-top: 0.6rem; font-size: 1.05rem; opacity: 0.85; }
.accent { color: var(--green); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.8rem;
  border-top: 5px solid var(--green);
  box-shadow: 0 3px 16px rgba(20, 40, 20, 0.08);
}
.service-card h3 { font-size: 1.15rem; margin: 0.6rem 0 0.5rem; }
.service-card p { font-size: 0.95rem; color: #4a544a; }
.service-icon { font-size: 2rem; }

/* Pricing */
.pricing-group-title {
  text-align: center;
  color: var(--green-bright);
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.price-card {
  background: var(--ink-2);
  border: 2px solid #2c352b;
  border-radius: 14px;
  padding: 1.6rem 1.2rem;
  text-align: center;
}
.price-card.featured { border-color: var(--green); box-shadow: 0 0 24px rgba(77, 184, 72, 0.25); }
.price-card h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1px; }
.price {
  font-family: 'Anton', sans-serif;
  font-size: 2.4rem;
  color: var(--green-bright);
  margin: 0.3rem 0;
}
.price .per { font-size: 1.2rem; color: var(--text-light); }
.price-note { font-size: 0.85rem; color: var(--text-light); }
.load-meter {
  width: 44px;
  height: 64px;
  margin: 0 auto 0.9rem;
  border: 3px solid #485446;
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #10150f;
}
.load-fill { width: 100%; background: linear-gradient(180deg, var(--green-bright), var(--green-dark)); }

.pricing-extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.extra-card {
  background: var(--ink-2);
  border: 2px solid #2c352b;
  border-radius: 14px;
  padding: 1.6rem;
}
.extra-card h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.extra-card .price { font-size: 1.9rem; }
.extra-card p { font-size: 0.92rem; color: var(--text-light); }
.extra-card p strong { color: #fff; }
.fine-print {
  text-align: center;
  font-size: 0.85rem;
  color: #97a394;
  margin-top: 2rem;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  text-align: center;
}
.why-item span { font-size: 2.2rem; display: block; margin-bottom: 0.6rem; }
.why-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.why-item p { font-size: 0.92rem; color: #4a544a; }

/* Gallery placeholders */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}
.photo-placeholder {
  aspect-ratio: 4 / 3;
  border: 3px dashed #a9b5a5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #6e7a6a;
  font-weight: 600;
  font-size: 0.95rem;
  background: #eef1ec;
}
.gallery-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  border-radius: 14px;
}

/* Service area */
.area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.area-list li {
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-weight: 700;
  font-size: 0.92rem;
}
.area-note { color: #5a6557; font-size: 0.9rem; }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 0.8rem; }
.contact-info > p { color: var(--text-light); margin-bottom: 1.6rem; }
.contact-line {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-bright);
  text-decoration: none;
  margin: 0.7rem 0;
}
.contact-line:hover { text-decoration: underline; }
.contact-ico {
  display: inline-block;
  width: 2.6rem;
  text-decoration: none;
}
.contact-hours { margin-top: 1.4rem; font-size: 0.9rem; color: #97a394; }
.contact-form {
  background: var(--ink-2);
  border: 2px solid #2c352b;
  border-radius: 16px;
  padding: 1.8rem;
}
.contact-form h3 { margin-bottom: 1.2rem; font-size: 1.15rem; }
.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  color: #d7ded5;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  border: 2px solid #3a453a;
  background: #10150f;
  color: #fff;
  font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--green); }
.contact-form button { width: 100%; border: none; cursor: pointer; font: inherit; font-weight: 800; }
.form-note { text-align: center; font-size: 0.8rem; color: #97a394; margin-top: 0.8rem; }

/* Footer */
.footer {
  background: #0a0e0a;
  color: #97a394;
  text-align: center;
  padding: 3rem 1.5rem 6rem;
  font-size: 0.9rem;
}
.footer-logo { width: 110px; border-radius: 12px; margin-bottom: 1rem; }
.footer a { color: var(--green); font-weight: 700; }
.footer-fine { margin-top: 1rem; font-size: 0.78rem; }

/* Mobile sticky call bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 200;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.35);
}
.sticky-bar a {
  flex: 1;
  text-align: center;
  padding: 1rem;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
}
.sticky-call { background: var(--green); color: #0c130c; }
.sticky-text { background: var(--ink); color: var(--green-bright); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-logo { order: -1; }
  .hero-logo img { max-width: 260px; }
  .contact-wrap { grid-template-columns: 1fr; }
}
/* Mobile hamburger menu */
.nav-toggle { display: none; }

@media (max-width: 760px) {
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    background: var(--ink);
    padding: 1.2rem 1.5rem 1.5rem;
    border-bottom: 3px solid var(--green);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  }
  .header-nav.open a { font-size: 1.05rem; }
  .nav-toggle {
    display: block;
    margin-left: auto;
    background: none;
    border: 2px solid var(--green);
    color: var(--green-bright);
    font-size: 1.25rem;
    line-height: 1;
    border-radius: 8px;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
  }
  .header-call { margin-left: 0; }
  /* Inside the mobile menu, show the services list inline instead of a hover dropdown.
     Extra selector weight needed: the base .nav-drop-menu { display:none } rule
     appears later in this file and would otherwise win. */
  .header-nav .nav-drop-menu {
    display: block;
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0.4rem 0 0 1rem;
    min-width: 0;
  }
  .header-nav .nav-drop-menu a { padding: 0.35rem 0; font-size: 0.95rem; color: #97a394; }
  .sticky-bar { display: flex; }
}

/* ===== Multi-page additions ===== */

/* Nav dropdown */
.nav-drop { position: relative; }
.nav-drop > a { display: inline-block; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink-2);
  border: 2px solid #2c352b;
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 260px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  font-size: 0.9rem;
}
.nav-drop-menu a:hover { background: rgba(77, 184, 72, 0.14); color: var(--green-bright); }

/* Page hero (interior pages) */
.page-hero {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(77, 184, 72, 0.25), transparent 55%),
    var(--ink);
  color: #fff;
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.page-hero h1 .accent { color: var(--green); }
.page-hero .page-sub {
  max-width: 44rem;
  margin: 1rem auto 1.6rem;
  color: var(--text-light);
  font-size: 1.08rem;
}
.breadcrumb {
  font-size: 0.85rem;
  font-weight: 700;
  color: #97a394;
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--green-bright); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Service page layout */
.service-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.service-main h2 { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: 1.6rem; margin: 2rem 0 0.8rem; }
.service-main h2:first-child { margin-top: 0; }
.service-main p { margin-bottom: 1rem; }
.checklist { list-style: none; margin: 0.5rem 0 1rem; }
.checklist li { padding: 0.35rem 0 0.35rem 1.8rem; position: relative; }
.checklist li::before { content: "✔"; position: absolute; left: 0; color: var(--green-dark); font-weight: 800; }
.side-price {
  position: sticky;
  top: 90px;
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 1.8rem;
  border: 2px solid var(--green);
  box-shadow: 0 10px 30px rgba(20, 40, 20, 0.25);
}
.side-price h3 { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: 1px; color: var(--green-bright); margin-bottom: 1rem; }
.side-price table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.side-price td { padding: 0.5rem 0; border-bottom: 1px solid #2c352b; font-size: 0.95rem; }
.side-price td:last-child { text-align: right; font-family: 'Anton', sans-serif; font-size: 1.15rem; color: var(--green-bright); }
.side-price .side-note { font-size: 0.82rem; color: #97a394; margin-bottom: 1.2rem; }
.side-price .btn { width: 100%; margin-bottom: 0.6rem; }
.side-price .big-price { font-family: 'Anton', sans-serif; font-size: 2.6rem; color: var(--green-bright); margin: 0.2rem 0 0.6rem; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin: 1rem 0 1.5rem;
}
.step {
  background: #fff;
  border-radius: 14px;
  padding: 1.4rem;
  border-top: 5px solid var(--green);
  box-shadow: 0 3px 16px rgba(20, 40, 20, 0.08);
}
.step .step-num {
  font-family: 'Anton', sans-serif;
  color: var(--green);
  font-size: 1.6rem;
}
.step h3 { font-size: 1.02rem; margin: 0.3rem 0 0.4rem; }
.step p { font-size: 0.92rem; color: #4a544a; }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.3rem;
  margin-bottom: 0.8rem;
  border: 1px solid #dde3da;
}
.faq summary { font-weight: 800; cursor: pointer; }
.faq details p { margin-top: 0.7rem; color: #4a544a; font-size: 0.96rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem;
}
.cta-band h2 { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 0.6rem; }
.cta-band p { margin-bottom: 1.5rem; font-weight: 600; }
.cta-band .btn-solid { background: var(--ink); color: var(--green-bright); box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
.cta-band .btn-outline { border-color: #fff; color: #fff; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}
.post-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.8rem;
  border-top: 5px solid var(--green);
  box-shadow: 0 3px 16px rgba(20, 40, 20, 0.08);
  display: flex;
  flex-direction: column;
}
.post-card .post-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-dark);
}
.post-card h3 { font-size: 1.2rem; margin: 0.5rem 0; }
.post-card h3 a { text-decoration: none; }
.post-card h3 a:hover { color: var(--green-dark); }
.post-card p { font-size: 0.95rem; color: #4a544a; flex: 1; }
.post-card .post-more { margin-top: 1rem; font-weight: 800; color: var(--green-dark); text-decoration: none; }
.post-card .post-more:hover { text-decoration: underline; }

/* Article (blog post) */
.article { max-width: 760px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.article h2 { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: 1.5rem; margin: 2.2rem 0 0.8rem; }
.article p { margin-bottom: 1.1rem; }
.article ul, .article ol { margin: 0 0 1.1rem 1.4rem; }
.article li { margin-bottom: 0.4rem; }
.article .article-meta { color: #6e7a6a; font-size: 0.88rem; margin-bottom: 2rem; font-weight: 600; }
.article table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; }
.article th, .article td { text-align: left; padding: 0.7rem 0.9rem; border: 1px solid #dde3da; }
.article th { background: var(--ink); color: var(--green-bright); font-family: 'Anton', sans-serif; letter-spacing: 1px; font-weight: 400; }
.article tr:nth-child(even) td { background: #eef1ec; }

/* Service card link + footer links */
.card-more {
  display: inline-block;
  margin-top: 0.8rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--green-dark);
  text-decoration: none;
}
.card-more:hover { text-decoration: underline; }
.footer-links { margin-top: 0.6rem; }
.footer-links a { font-weight: 600; font-size: 0.85rem; }

/* Owner spotlight */
.owner-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.owner-photo,
.owner-photo-placeholder {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: 16px;
}
.owner-photo { object-fit: cover; box-shadow: 0 10px 30px rgba(20, 40, 20, 0.25); }
.owner-photo-placeholder {
  border: 3px dashed #a9b5a5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #6e7a6a;
  font-weight: 600;
  background: #eef1ec;
}
.owner-kicker {
  color: var(--green-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}
.owner-bio h2 { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 1rem; }
.owner-bio p { margin-bottom: 1rem; }
.owner-sig { font-weight: 800; color: var(--green-dark); }
@media (max-width: 760px) {
  .owner-grid { grid-template-columns: 1fr; }
  .owner-photo, .owner-photo-placeholder { max-width: 320px; margin: 0 auto; }
}

/* About */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .service-layout { grid-template-columns: 1fr; }
  .side-price { position: static; }
}
