/* =========================================================
   Junk Removal Chicopee MA Design System
   ========================================================= */

:root {
  --c-dark: #111d19;
  --c-dark-2: #0d1613;
  --c-dark-3: #162520;
  --c-orange: #f29620;
  --c-orange-hover: #d97f0e;
  --c-green: #257830;
  --c-text: #333333;
  --c-text-muted: #62706b;
  --c-bg-light: #f0f0f0;
  --c-white: #ffffff;
  --c-border: rgba(255, 255, 255, 0.15);

  --font-heading: 'Montserrat', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;

  --container: 1140px;
  --gap: 30px;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 24px;
  color: var(--c-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(40px, 6vw, 80px); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(28px, 3.5vw, 38px); line-height: 1.2; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }

p { margin-bottom: 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 20px 40px;
  background: #fff;
  color: var(--c-orange);
  border: 2px solid var(--c-orange);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all .25s ease;
  text-align: center;
  line-height: 1;
}
.btn:hover { background: var(--c-orange); color: #fff; }

.btn-solid {
  background: var(--c-orange);
  color: #fff;
}
.btn-solid:hover { background: var(--c-orange-hover); border-color: var(--c-orange-hover); }

.btn-dark {
  background: var(--c-dark);
  color: #fff;
  border-color: var(--c-dark);
}
.btn-dark:hover { background: #000; border-color: #000; }

/* =====================
   Top bar
   ===================== */
.topbar {
  background: var(--c-dark);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-info {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  padding: 0 20px;
  position: relative;
}
.topbar-item + .topbar-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.25);
}
.topbar-item:first-child { padding-left: 0; }
.topbar-item .icon {
  color: var(--c-orange);
  width: 16px;
  height: 16px;
}
.topbar-social {
  display: flex;
  gap: 16px;
}
.topbar-social a {
  color: #fff;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}
.topbar-social a:hover { color: var(--c-orange); }

@media (max-width: 768px) {
  .topbar { display: none; }
}

/* =====================
   Header
   ===================== */
.site-header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--c-dark);
  line-height: 1.15;
}
.logo span {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--c-dark);
  letter-spacing: 0;
  text-transform: none;
}

.nav {
  display: flex;
  gap: 38px;
  align-items: center;
}
.nav > a,
.nav > .has-dropdown > a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.6px;
  color: var(--c-dark);
  text-transform: uppercase;
  position: relative;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
}
.nav > a:hover,
.nav > a.active,
.nav > .has-dropdown > a:hover,
.nav > .has-dropdown > a.active,
.nav > .has-dropdown.active > a { color: var(--c-orange); }
.nav > a.active::after,
.nav > .has-dropdown.active > a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--c-orange);
}

/* Service dropdown */
.nav .has-dropdown {
  position: relative;
}
.nav .has-dropdown > a::before {
  content: '\25BE';
  font-size: 10px;
  margin-left: 6px;
  line-height: 1;
  display: inline-block;
  transform: translateY(-1px);
  order: 2;
}
.nav .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  min-width: 220px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
  border-radius: 6px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index: 100;
  border-top: 3px solid var(--c-orange);
}
.nav .has-dropdown:hover .dropdown,
.nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
}
.nav .has-dropdown:hover > a::before,
.nav .has-dropdown:focus-within > a::before {
  transform: translateY(-1px) rotate(180deg);
}
.nav .dropdown a {
  display: block;
  padding: 11px 24px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--c-dark);
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav .dropdown a:hover,
.nav .dropdown a.active {
  color: var(--c-orange);
  background: rgba(242,150,32,0.07);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 28px;
  color: var(--c-dark);
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 78px;
    right: 24px;
    background: #fff;
    flex-direction: column;
    gap: 18px;
    padding: 22px 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-radius: 6px;
    display: none;
    z-index: 100;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .nav .has-dropdown { width: 100%; }
  .nav .has-dropdown > a::before { display: none; }
  .nav .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border-top: 0;
    padding: 6px 0 0 14px;
    min-width: 0;
    border-left: 2px solid rgba(242,150,32,0.4);
    margin-top: 8px;
  }
  .nav .dropdown a {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* =====================
   Hero
   ===================== */
.hero {
  position: relative;
  min-height: 738px;
  background: var(--c-dark) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 160px 0 180px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,29,25,0.55) 0%, rgba(17,29,25,0.35) 50%, rgba(17,29,25,0.65) 100%);
}
.hero .container { position: relative; z-index: 2; max-width: 1140px; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero p {
  font-size: 20px;
  line-height: 30px;
  max-width: 940px;
  margin: 0 auto 36px;
  color: #fff;
  font-weight: 400;
}

.hero-sm {
  min-height: 280px;
  padding: 80px 0 60px;
  background: var(--c-dark);
}
.hero-sm h1 { font-size: clamp(36px, 5vw, 64px); }

/* =====================
   Two-card overlap row
   ===================== */
.card-row {
  margin-top: -75px;
  position: relative;
  z-index: 4;
}
.card-row .container {
  display: grid;
  grid-template-columns: 62.5fr 37.5fr;
  gap: 24px;
}
.card {
  padding: 40px;
  border-radius: 10px;
  color: #fff;
}
.card-green { background: var(--c-green); }
.card-orange { background: var(--c-orange); }
.card h3 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 22px;
}
.card .stars {
  color: #fff;
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.card .author {
  font-weight: 700;
  margin-top: 14px;
  font-family: var(--font-heading);
}
.card .phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.card .phone .ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .card-row .container { grid-template-columns: 1fr; }
}

/* =====================
   Section
   ===================== */
section.section { padding: 60px 0; }
section.section-dark {
  background: linear-gradient(325deg, var(--c-dark) 0%, var(--c-dark-3) 100%);
  color: #fff;
  padding: 60px 0;
}
section.section-dark h2, section.section-dark h3 { color: #fff; }
section.section-dark .service-card h3,
section.section-dark .service-card h3 a { color: var(--c-dark); }
section.section-gray { background: var(--c-bg-light); padding: 60px 0; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.section-header p { color: var(--c-text-muted); font-size: 16px; margin-top: 14px; }
section.section-dark .section-header p { color: rgba(255,255,255,0.85); }

.section-header.left {
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 40px;
}
.section-header.left h2 { max-width: 880px; }
.section-header.left p { max-width: 880px; }

/* =====================
   Two-column
   ===================== */
.two-col {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 50px;
  align-items: center;
}
.two-col.reverse {
  grid-template-columns: 42fr 58fr;
}
.two-col img { border-radius: 10px; width: 100%; }
.two-col .stack > * + * { margin-top: 18px; }
.two-col h2 { margin-bottom: 18px; }
@media (max-width: 880px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 40px; }
}

/* =====================
   Service cards (3 col) with image-top + white body
   ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(0,0,0,0.35); }
.service-card .ico { display: none; }
.service-card .card-image {
  width: 100%;
  height: 220px;
  background: #ddd center/cover no-repeat;
  display: block;
}
.service-card .card-body {
  padding: 26px 28px 28px;
}
.service-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.service-card p {
  color: var(--c-text);
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 24px;
}
.service-card .more {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--c-orange);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .more::after { content: ''; }

/* Service cards on light backgrounds (service page benefits) */
.section-gray .service-card,
.bg-light-cards .service-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-top: 4px solid var(--c-orange);
}
.section-gray .service-card h3,
.bg-light-cards .service-card h3 { color: var(--c-dark); }
.section-gray .service-card p,
.bg-light-cards .service-card p { color: var(--c-text-muted); }
.section-gray .service-card .ico,
.bg-light-cards .service-card .ico {
  display: inline-flex;
  width: 56px;
  height: 56px;
  background: rgba(242,150,32,0.12);
  color: var(--c-orange);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =====================
   Steps / numbered
   ===================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step {
  background: rgba(255,255,255,0.04);
  padding: 32px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.step .num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,0.78); font-size: 15px; }

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
}

/* =====================
   Reasons / icon list
   ===================== */
.reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 40px;
}
.reason {
  display: flex;
  gap: 16px;
}
.reason .ico {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(242,150,32,0.12);
  color: var(--c-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.reason h3 { font-size: 18px; margin-bottom: 6px; }
.reason p { color: var(--c-text-muted); font-size: 14.5px; margin: 0; }

@media (max-width: 768px) {
  .reasons { grid-template-columns: 1fr; }
}

/* =====================
   Testimonials
   ===================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial {
  background: var(--c-dark);
  padding: 32px 30px 28px;
  border-radius: 10px;
  color: #fff;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}
.testimonial.accent { background: var(--c-orange); }
.testimonial::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 0.8;
  color: #fff;
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
}
.testimonial .stars { color: #fff; letter-spacing: 3px; margin: 18px 0 12px; font-size: 16px; }
.testimonial p { color: #fff; font-size: 15px; line-height: 24px; margin-bottom: 4px; }
.testimonial .author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

@media (max-width: 880px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* =====================
   FAQ
   ===================== */
.faq {
  max-width: 100%;
  margin: 0;
}
.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span:first-of-type { flex: 1; }
.faq-item summary .q-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--c-orange);
  font-family: var(--font-heading);
  flex: 0 0 auto;
  line-height: 1;
  margin-left: auto;
}
.faq-item summary .toggle {
  display: none;
}
.faq-item[open] summary .q-num { color: rgba(242,150,32,0.6); }
.faq-body {
  padding: 0 80px 28px 0;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 26px;
}

/* =====================
   Map / CTA banner
   ===================== */
.map-wrap {
  height: 300px;
  overflow: hidden;
  background: #eee;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* =====================
   Contact section
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info p { color: var(--c-text-muted); margin-bottom: 28px; }
.contact-info .info-list { list-style: none; }
.contact-info .info-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.contact-info .info-list .ico {
  color: var(--c-orange);
  font-size: 18px;
  width: 22px;
  display: inline-flex;
  justify-content: center;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px 18px;
  border: 0;
  background: #fce6c0;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  color: var(--c-text);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(51,51,51,0.55); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--c-orange);
  background: #fdeed3;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; }
}

/* =====================
   Legal page
   ===================== */
.legal-content {
  max-width: 880px;
  margin: 0 auto;
}
.legal-content h2 {
  margin: 30px 0 14px;
  font-size: 24px;
}
.legal-content p {
  color: var(--c-text);
  margin-bottom: 18px;
  line-height: 1.75;
}

/* =====================
   Footer
   ===================== */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.85);
  padding: 80px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.2;
  font-family: var(--font-heading);
}
.footer-grid ul { list-style: none; }
.footer-grid li { padding: 6px 0; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.9); word-break: break-word; }
.footer-grid a { transition: color .2s; color: rgba(255,255,255,0.9); }
.footer-grid a:hover { color: var(--c-orange); }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: auto;
  height: auto;
  border-radius: 0;
  border: 0;
  font-size: 18px;
  padding: 4px 0;
}
.footer-social a svg {
  width: 20px;
  height: 20px;
  color: var(--c-orange);
  flex-shrink: 0;
}
.footer-social a:hover { color: var(--c-orange); }

.subfooter {
  background: var(--c-dark-2);
  color: rgba(255,255,255,0.6);
  padding: 10px 0;
  font-size: 14px;
}
.subfooter .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.subfooter a { color: rgba(255,255,255,0.7); margin: 0 10px; }
.subfooter a:hover { color: var(--c-orange); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .subfooter .container { flex-direction: column; text-align: center; }
}

/* =====================
   Floating call button
   ===================== */
.floating-call {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--c-orange);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(242,150,32,0.45);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .2s;
}
.floating-call:hover { transform: translateY(-3px); color: #fff; }
@media (max-width: 540px) {
  .floating-call { padding: 12px 18px; font-size: 14px; }
}

/* =====================
   Utility
   ===================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-3 { margin-bottom: 30px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--c-orange);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* =====================
   One-page additions
   ===================== */

/* Topbar links inherit color and behave like inline text */
.topbar-item a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.topbar-item a:hover { color: var(--c-orange); }

/* Nav call-to-action button (phone in header) */
.nav .nav-cta {
  background: var(--c-orange);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background .2s;
}
.nav .nav-cta:hover { background: var(--c-orange-hover); color: #fff !important; }

/* Reasons used as a <ul> in the about section */
ul.reasons {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.reasons li.reason { margin: 0; }

/* Card phone link reset */
.card .phone a { color: inherit; }

/* Footer link basics for tel/mailto */
.footer-grid a[href^="tel:"],
.footer-grid a[href^="mailto:"] {
  color: rgba(255,255,255,0.9);
}
.footer-grid a[href^="tel:"]:hover,
.footer-grid a[href^="mailto:"]:hover { color: var(--c-orange); }

/* Tighten CTA strip on mobile */
@media (max-width: 640px) {
  .nav .nav-cta { width: 100%; text-align: center; }
}

