/* Junk Removal Billings — Main Stylesheet */
:root {
  --green: #2D6A2F;
  --green-dark: #1e4d20;
  --green-light: #e8f5e9;
  --gray: #F5F5F5;
  --text: #222;
  --text-muted: #555;
  --white: #fff;
  --border: #ddd;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ===== HEADER ===== */
header {
  background: var(--green);
  color: var(--white);
  padding: 0 20px;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.logo span { display: block; font-size: 0.75rem; font-weight: 400; opacity: 0.85; }

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.header-phone a {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.header-phone small {
  font-size: 0.75rem;
  opacity: 0.85;
}

nav {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.15);
}

nav ul {
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 20px;
}

nav ul li a {
  display: block;
  color: rgba(255,255,255,0.9);
  padding: 11px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.15s;
}

nav ul li a:hover {
  background: rgba(255,255,255,0.12);
  text-decoration: none;
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-phone {
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.btn {
  display: inline-block;
  background: #fff;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  text-decoration: none;
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover { background: var(--green-dark); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--green-light);
  border-bottom: 1px solid #c8e6c9;
  padding: 12px 20px;
  text-align: center;
}

.trust-bar ul {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 28px;
}

.trust-bar li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
}

.trust-bar li::before { content: "✓ "; }

/* ===== SECTIONS ===== */
.section { padding: 60px 20px; }
.section-gray { background: var(--gray); }

.container { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  text-decoration: none;
  color: var(--text);
  display: block;
}

.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  text-decoration: none;
}

.service-card .icon { font-size: 2.2rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.service-card p { font-size: 0.87rem; color: var(--text-muted); }

/* ===== WHY CHOOSE US ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature .icon { font-size: 1.8rem; flex-shrink: 0; }
.feature h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.feature p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.cta-band h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 10px; }
.cta-band p { opacity: 0.9; margin-bottom: 24px; font-size: 1rem; }
.cta-phone { font-size: clamp(2rem, 6vw, 2.8rem); font-weight: 900; display: block; color: #fff; margin-bottom: 20px; letter-spacing: -0.5px; }

/* ===== FAQ ===== */
.faq-list { margin-top: 24px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.faq-item p { font-size: 0.95rem; color: var(--text-muted); }

/* ===== SERVICE AREA ===== */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.area-tag {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid #c8e6c9;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--gray);
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.breadcrumb a { color: var(--green); }
.breadcrumb span { margin: 0 6px; }

/* ===== PAGE CONTENT ===== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  padding: 44px 20px;
  text-align: center;
}

.page-hero h1 { font-size: clamp(1.5rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 10px; }
.page-hero p { opacity: 0.9; font-size: 1rem; max-width: 550px; margin: 0 auto 22px; }

.content-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 50px 20px;
}

.content-body h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-dark);
  margin: 32px 0 12px;
}

.content-body p { margin-bottom: 16px; color: var(--text); }

.content-body ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.content-body li { margin-bottom: 6px; }

/* ===== INLINE CTA ===== */
.inline-cta {
  background: var(--green-light);
  border: 2px solid #c8e6c9;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin: 36px 0;
}

.inline-cta p { font-weight: 700; font-size: 1.1rem; color: var(--green-dark); margin-bottom: 16px; }

/* ===== FOOTER ===== */
footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.8);
  padding: 44px 20px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  margin-bottom: 32px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }

.footer-phone {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .header-inner { justify-content: center; text-align: center; }
  .header-phone { align-items: center; }
  nav ul { justify-content: center; }
  .hero { padding: 44px 16px; }
  .section { padding: 44px 16px; }
}
