/* ============================================================
   Portland Junk Removals — style.css
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --green:       #1a3c2e;
  --green-lt:    #2d6648;
  --green-dk:    #0f2419;
  --bg:          #f5f0e8;
  --orange:      #e8630a;
  --orange-dk:   #c95308;
  --text:        #1a1a1a;
  --text-muted:  #5a5a5a;
  --white:       #ffffff;
  --border:      #ddd9d0;
  --radius:      8px;
  --shadow:      0 2px 16px rgba(0,0,0,.09);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --container:   1160px;
  --font-head:   'Syne', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.2; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.top-bar a {
  color: #ffd166;
  font-weight: 700;
  text-decoration: none;
}
.top-bar a:hover { text-decoration: underline; }

/* ============================================================
   STICKY HEADER + NAV
   ============================================================ */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--green);
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--orange); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .15rem;
  list-style: none;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a,
.nav-menu > li > button {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem .7rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background .15s, color .15s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.nav-menu > li > a:hover,
.nav-menu > li > button:hover {
  background: var(--bg);
  color: var(--green);
}
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 5px !important;
  padding: .5rem 1rem !important;
}
.nav-cta:hover {
  background: var(--orange-dk) !important;
  color: var(--white) !important;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  z-index: 200;
  padding: .375rem 0;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: .55rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  transition: background .1s, color .1s;
}
.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--green);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 5px;
  padding: .35rem .65rem;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1.5rem;
  border-radius: 5px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.75);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
}

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  background: var(--green);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero .subheadline {
  font-size: 1.05rem;
  opacity: .9;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
  align-items: center;
}
.hero-rating {
  font-size: .875rem;
  opacity: .82;
  letter-spacing: .01em;
}
.hero-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.hero-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  background: var(--green-lt);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
}
.stat-item span {
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   SECTION DEFAULTS
   ============================================================ */
.section { padding: 4.5rem 0; }
.section-white { background: var(--white); }
.section-bg { background: var(--bg); }
.section-green { background: var(--green); color: var(--white); }

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--green);
  margin-bottom: .75rem;
}
.section-green .section-title { color: var(--white); }
.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================================
   AREA PILLS
   ============================================================ */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}
.pill {
  background: var(--white);
  border: 1.5px solid var(--green);
  color: var(--green);
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
}

/* ============================================================
   SERVICE CARDS GRID
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.card-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.card h3 {
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: .5rem;
}
.card p {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.card-link {
  font-weight: 700;
  color: var(--orange);
  font-size: .875rem;
  transition: color .15s;
}
.card-link:hover { color: var(--orange-dk); text-decoration: underline; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
}
.why-item h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: .25rem;
}
.why-item p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial blockquote {
  font-size: .95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
}
.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: .875rem;
  color: var(--green);
}
.stars { color: #f59e0b; font-size: 1rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .15s;
}
.faq-q:hover { background: var(--bg); }
.faq-q.active { background: var(--green); color: var(--white); }
.faq-icon {
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-q.active .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  background: #faf8f4;
  border-top: 1px solid var(--border);
}
.faq-a.open { display: block; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--green);
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  margin-bottom: .75rem;
}
.cta-band p {
  font-size: 1.05rem;
  opacity: .88;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-wrap {
  background: var(--green-dk);
  padding: .75rem 0;
}
.breadcrumb {
  font-size: .8rem;
  color: #9fbfb0;
  display: flex;
  gap: .35rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: #c8ddd6; font-weight: 500; }
.breadcrumb a:hover { color: var(--white); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--green);
  color: var(--white);
  padding: 3.5rem 0 3rem;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  margin-bottom: .75rem;
}
.page-hero p {
  font-size: 1.05rem;
  opacity: .88;
  max-width: 580px;
  line-height: 1.7;
}

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.content-body { max-width: 820px; }
.content-body p { margin-bottom: 1.1rem; line-height: 1.8; color: var(--text); }
.content-body h2 {
  font-size: 1.5rem;
  color: var(--green);
  margin: 2.25rem 0 .75rem;
}
.content-body ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.content-body ul li { font-size: .95rem; line-height: 1.7; }

.page-img {
  width: 100%;
  border-radius: 10px;
  margin: 2rem 0;
  height: 280px;
  object-fit: cover;
  background: #c8d8c8;
}

/* CTA box on inner pages */
.cta-box {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin: 2.5rem 0;
}
.cta-box h3 {
  font-size: 1.3rem;
  margin-bottom: .5rem;
}
.cta-box p {
  opacity: .88;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}
.cta-box .cta-buttons { justify-content: flex-start; }

/* Related / Also Serve links */
.link-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}
.link-chip {
  background: var(--white);
  border: 1.5px solid var(--green);
  color: var(--green);
  padding: .5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: .875rem;
  transition: background .15s, color .15s;
}
.link-chip:hover {
  background: var(--green);
  color: var(--white);
}

/* Services index grid */
.services-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-index-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
}
.service-index-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-index-card .icon { font-size: 2rem; flex-shrink: 0; }
.service-index-card h3 { font-size: 1rem; color: var(--green); margin-bottom: .25rem; }
.service-index-card p { font-size: .875rem; color: var(--text-muted); }

/* Locations index grid */
.locations-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.location-index-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.location-index-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.location-index-card h3 { font-size: 1rem; color: var(--green); margin-bottom: .4rem; }
.location-index-card p { font-size: .875rem; color: var(--text-muted); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form-group label { font-weight: 600; font-size: .875rem; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color .15s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.contact-aside { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-box {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-info-box h3 { font-size: 1.1rem; margin-bottom: 1.25rem; }
.contact-info-box .phone-link {
  display: block;
  font-size: 1.75rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: #ffd166;
  margin-bottom: .5rem;
}
.contact-info-box p { font-size: .875rem; opacity: .88; line-height: 1.7; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.value-card {
  background: var(--bg);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem;
}
.value-card h4 { font-size: 1rem; color: var(--green); margin-bottom: .35rem; }
.value-card p { font-size: .875rem; color: var(--text-muted); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #c8d8c8;
}
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: .8rem; color: var(--text-muted); margin-bottom: .5rem; }
.blog-card h3 { font-size: 1rem; color: var(--green); margin-bottom: .5rem; line-height: 1.4; }
.blog-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.blog-read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  font-size: .875rem;
  color: var(--orange);
}
.blog-read-more:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-dk);
  color: #bcccc4;
}
.footer-main { padding: 3.5rem 0 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}
.footer-brand strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .875rem; line-height: 2; }
.footer-brand a { color: #ffd166; transition: opacity .15s; }
.footer-brand a:hover { opacity: .8; }
.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.footer-col strong {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .9rem;
}
.footer-col a {
  display: block;
  font-size: .875rem;
  color: #9dbfb2;
  margin-bottom: .4rem;
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bar {
  background: rgba(0,0,0,.22);
  padding: 1rem 0;
  text-align: center;
  font-size: .8rem;
  color: #7a9f93;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .services-index-grid { grid-template-columns: 1fr; }
  .locations-index-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: .5rem 0;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a,
  .nav-menu > li > button {
    width: 100%;
    padding: .8rem 1.25rem;
    border-radius: 0;
    font-size: .9rem;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    padding: .25rem 0 .25rem 1.5rem;
    background: #faf8f4;
  }
  .dropdown:not(.open) .dropdown-menu { display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .section { padding: 3rem 0; }
  .cta-band { padding: 3rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .locations-index-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; max-width: 300px; }
}
