/* =========================================================
   Essential Pest Control - Commercial Section Stylesheet
   Extends style.css. Uses the same design tokens
   (--forest, --amber, --amber-deep, --cream, --ink, --muted,
   --border, --radius, --container, --font-display) - include
   this file AFTER style.css on every commercial-industry page
   (restaurants, warehousing, healthcare, schools, etc).
   Nav, header, footer, colors, logo come from style.css /
   the shared header+footer markup - this file only styles
   the body content sections between them.
========================================================= */

/* =============== BREADCRUMB (shared with pest pages) =============== */
.breadcrumb {
  font-size: .82rem;
  color: #fff;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--amber);
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Keep every commercial CTA pair consistent and prevent label clipping. */
.commercial-page .hero-actions > .btn {
  box-sizing: border-box;
  min-width: 190px;
  min-height: 48px;
  margin-top: 0;
  padding: 14px 24px;
}

/* =============== COMMERCIAL HERO =============== */
.comm-hero {
  background: var(--forest);
  padding: 56px 24px 0;
  overflow: hidden;
}

.comm-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 54%) minmax(0, 46%);
  align-items: center;
  gap: 40px;
}

.comm-hero-content {
  padding-bottom: 56px;
}

.comm-hero .eyebrow {
  color: var(--amber);
}

.comm-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.14;
  margin-bottom: 16px;
}

.comm-hero-sub {
  max-width: 540px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.03rem;
  margin-bottom: 28px;
}

.comm-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.comm-hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .92);
  font-size: .88rem;
}

.comm-hero-stat svg {
  flex: 0 0 auto;
  color: var(--amber);
}

.comm-hero-media {
  position: relative;
  align-self: stretch;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  min-height: 380px;
}

.comm-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============== STAT / COST BAND =============== */
.cost-band {
  padding: 76px 24px;
  background: var(--cream);
}

.cost-band-heading {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.cost-band-heading .eyebrow {
  color: var(--amber-deep);
}

.cost-band-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin-bottom: 12px;
}

.cost-band-heading p {
  font-size: 1.02rem;
}

.cost-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cost-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.cost-card h3 {
  color: var(--forest);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.cost-card p {
  font-size: .92rem;
  margin-bottom: 0;
}

/* =============== PEST GRID =============== */
.pest-risk-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pest-risk-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.pest-risk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(244, 164, 47, .14);
  color: var(--amber-deep);
  margin-bottom: 14px;
}

.pest-risk-card h3 {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.pest-risk-card p {
  font-size: .9rem;
  margin-bottom: 0;
}

/* =============== CHECKLIST (why choose us) =============== */
.checklist-band {
  background-color: var(--forest);
  background-image: url("images/16_9Shield.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 76px 24px;
}

.checklist-band .eyebrow {
  color: var(--amber);
}

.checklist-band h2 {
  color: #fff;
}

.checklist-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
}

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

.checklist-check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--forest);
  margin-top: 2px;
}

.checklist-item h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.checklist-item p {
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  margin-bottom: 0;
}

/* =============== PROCESS TIMELINE =============== */
.timeline-band {
  padding: 76px 24px;
  background: var(--cream);
}

.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.timeline-step {
  position: relative;
  padding-left: 60px;
  margin-bottom: 34px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-num {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  z-index: 1;
}

.timeline-step h3 {
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.timeline-step p {
  font-size: .93rem;
  margin-bottom: 0;
}

/* =============== COMPLIANCE / DOCUMENTATION BAND =============== */
.compliance-band {
  padding: 60px 24px;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.compliance-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  gap: 44px;
  align-items: center;
}

.compliance-inner .eyebrow {
  color: var(--amber-deep);
}

.compliance-inner h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--ink);
  margin-bottom: 14px;
}

.compliance-inner>div>p {
  font-size: 1rem;
}

.compliance-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compliance-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.compliance-list-item svg {
  flex: 0 0 auto;
  color: var(--amber-deep);
  margin-top: 2px;
}

.compliance-list-item p {
  margin-bottom: 0;
  font-size: .92rem;
  color: var(--ink);
}

/* =============== FAQ ACCORDION =============== */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 26px;
}

.faq-accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--forest);
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.3rem;
  color: var(--amber-deep);
  transition: transform .18s ease;
}

.faq-accordion details[open] summary::after {
  transform: rotate(45deg);
}

.faq-accordion p {
  font-size: .95rem;
  margin: 0 0 20px;
}

/* =============== RELATED INDUSTRIES =============== */
.related-industries {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.industry-link-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: #fff;
  border: 1.5px solid var(--forest);
  border-radius: 999px;
  color: var(--forest);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.industry-link-card:hover {
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px);
}

/* =============== FINAL CTA BAND =============== */
.cta-band {
  background-color: var(--forest);
  background-image: url("images/16_9Shield.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 8px;
  color: rgba(220, 239, 242, 0.9);
}

.cta-band-actions {
  justify-content: center;
  margin-top: 24px;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1000px) {

  .cost-grid,
  .pest-risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .compliance-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .comm-hero-inner {
    grid-template-columns: 1fr;
  }

  .comm-hero-content {
    padding-bottom: 40px;
    order: 2;
  }

  .comm-hero-media {
    order: 1;
    min-height: 300px;
    border-radius: 20px;
    margin-top: 32px;
  }

  .comm-hero {
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .commercial-page .hero-actions > .btn {
    min-width: 0;
    min-height: 44px;
    padding: 10px 12px;
  }

  .commercial-page .cta-band-actions {
    width: min(100%, 390px);
    margin-inline: auto;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
  }

  .commercial-page .cta-band-actions > .btn {
    flex: 1 1 0;
  }

  .commercial-page .hero > .hero-content .hero-actions {
    width: min(100%, 390px);
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
  }

  .commercial-page .hero > .hero-content .hero-actions > .btn {
    flex: 1 1 0;
    padding-inline: 8px;
    font-size: clamp(.72rem, 3.4vw, .9rem);
  }
}

@media (max-width: 700px) {

  .cost-grid,
  .pest-risk-grid {
    grid-template-columns: 1fr;
  }

  .cost-band,
  .checklist-band,
  .timeline-band,
  .compliance-band {
    padding: 48px 18px;
  }

  .timeline-step {
    padding-left: 52px;
  }

  .timeline-num {
    width: 34px;
    height: 34px;
    font-size: .92rem;
  }

  .timeline::before {
    left: 17px;
  }
}

@media (max-width: 480px) {
  .comm-hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .faq-accordion summary {
    font-size: .94rem;
  }
}
