/* =========================================================
   Environment Incubator — design tokens
   ========================================================= */
:root {
  /* Colors (names kept from the original green/mint palette; values are now the
     site's purple/gold/navy brand palette shared with defense-zone.css) */
  --color-navy: #0A1120;
  --color-navy-dark: #060E1C;
  --color-green: #8B5CF6;
  --color-green-dark: #6D3FD1;
  --color-mint-bg: #F3F4F6;
  --color-text-dark: #0F1222;
  --color-text-muted: #6B7280;
  --color-white: #ffffff;
  --color-border-light: #E5E7EB;

  /* New tokens added in the multi-page pass (see Phase 1 audit, section 4) */
  --color-orange: #C9A84C;
  --color-icon-blue: #2f6fa8;
  --color-icon-blue-dark: #1c4f78;
  --color-banner-overlay: rgba(139, 92, 246, 0.55);
  --color-placeholder-bg: #eef1f2;
  --color-placeholder-border: #c9d2d6;

  /* Typography */
  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;

  /* Spacing */
  --section-padding-y: 4.5rem;
  --section-padding-y-sm: 2.75rem;
  --card-radius: 10px;
  --tile-radius: 6px;

  /* Shadows */
  --shadow-soft: 0 6px 24px rgba(28, 49, 69, 0.08);
  --shadow-card: 0 10px 30px rgba(28, 49, 69, 0.1);

  /* Container widths (Bootstrap defaults are used as-is; documented here per the
     brief's request for shared tokens — override only if a design value differs) */
  --container-xl: 1200px;
}
/* =========================================================
   Environment Incubator — component styles
   Design tokens live in variables.css; breakpoint overrides
   live in responsive.css. This file is breakpoint-agnostic.
   ========================================================= */

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  overflow-x: hidden;
  width: 100%;
  background: var(--color-white);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin: 0;
}

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

.section-py { padding-top: var(--section-padding-y); padding-bottom: var(--section-padding-y); }

/* ---------- Buttons ---------- */
.btn-navy {
  background-color: #46004C;
  color: var(--color-white);
  border: none;
  border-radius: var(--tile-radius);
  padding: .65rem 1.5rem;
  font-weight: 600;
  font-size: .9rem;
  transition: background-color .2s ease, transform .15s ease;
}
.btn-navy:hover, .btn-navy:focus {
  background-color: #38003D;
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-green {
  background-color: var(--color-green);
  color: var(--color-white);
  border: none;
  border-radius: var(--tile-radius);
  padding: .65rem 1.5rem;
  font-weight: 600;
  font-size: .9rem;
  transition: background-color .2s ease, transform .15s ease;
}
.btn-green:hover, .btn-green:focus {
  background-color: var(--color-green-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-outline-navy {
  background: transparent;
  color: #46004C;
  border: 1.5px solid #46004C;
  border-radius: var(--tile-radius);
  padding: .6rem 1.6rem;
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s ease;
}
.btn-outline-navy:hover, .btn-outline-navy:focus {
  background: #46004C;
  color: var(--color-white);
}

.btn-navy-sm {
  background-color: #46004C;
  color: var(--color-white);
  border: none;
  border-radius: var(--tile-radius);
  padding: .5rem 1.2rem;
  font-weight: 600;
  font-size: .82rem;
  transition: background-color .2s ease, transform .15s ease;
  display: inline-block;
}
.btn-navy-sm:hover, .btn-navy-sm:focus {
  background-color: #38003D;
  color: var(--color-white);
  transform: translateY(-1px);
}

/* ---------- Top utility bar ---------- */
.topbar {
  background-color: var(--color-navy-dark);
  font-size: .78rem;
}
.topbar a {
  color: rgba(255,255,255,.75);
  padding: .4rem .25rem;
  display: inline-block;
}
.topbar a:hover, .topbar a:focus { color: var(--color-white); }
.topbar .dropdown-toggle::after { vertical-align: middle; }

/* ---------- Main navbar ---------- */
.main-navbar {
  background-color: #46004C;
  padding: .85rem 0;
}
.brand-logo {
  font-family: var(--font-heading);
  line-height: 1.05;
}
.brand-logo .brand-top {
  color: var(--color-green);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .12em;
  display: block;
}
.brand-logo .brand-bottom {
  color: rgba(255,255,255,.7);
  font-size: .6rem;
  letter-spacing: .3em;
  display: block;
}
.main-navbar .nav-link {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .92rem;
  padding: .5rem .9rem;
  border-radius: 4px;
  transition: color .15s ease, background-color .15s ease;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus,
.main-navbar .nav-link.active {
  color: var(--color-white);
  background-color: rgba(255,255,255,.06);
}
.main-navbar .navbar-toggler {
  border-color: rgba(255,255,255,.4);
}
.main-navbar .navbar-toggler-icon {
  filter: invert(1) grayscale(1) brightness(2);
}
.nav-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  position: relative;
}
.nav-icon-btn .badge-dot {
  position: absolute;
  top: -2px; right: -2px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--color-green);
  border: 2px solid var(--color-navy);
}

/* ---------- Category bar ---------- */
.category-bar {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  font-size: .75rem;
}
.category-bar .nav-link {
  color: var(--color-text-muted);
  font-weight: 500;
  padding: .6rem .65rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.category-bar .nav-link.active {
  color: var(--color-navy);
  border-bottom-color: var(--color-green);
  font-weight: 600;
}
.category-bar .nav-link:hover { color: var(--color-navy); }
.category-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-scroll::-webkit-scrollbar { display: none; }

/* Category flyout (Organic Waste sub-menu on the marketplace page) */
.category-flyout-wrap { position: relative; }
.category-flyout {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  background: var(--color-white);
  border-radius: var(--tile-radius);
  box-shadow: var(--shadow-card);
  padding: .5rem 0;
  min-width: 190px;
}
.category-flyout.show { display: block; }
.category-flyout a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 1rem;
  font-size: .85rem;
  color: var(--color-text-dark);
}
.category-flyout a:hover { background: var(--color-mint-bg); color: var(--color-green-dark); }

/* ---------- Hero (home) ---------- */
.eco-hero {
  background-color: var(--color-mint-bg);
}
.eco-hero h1 {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.25;
}
.eco-hero h1 .hero-brand {
  font-weight: 700;
  font-size: 1.15em;
  display: block;
}
.eco-hero h1 .hero-sub {
  font-weight: 500;
  font-size: .62em;
  display: block;
  margin-top: .2rem;
}
.hero-toggle .form-check-input:checked {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
}
.hero-toggle label {
  font-size: .9rem;
  color: var(--color-text-dark);
}
.hero-search {
  background: var(--color-white);
  border-radius: var(--tile-radius);
  box-shadow: var(--shadow-soft);
  padding: .5rem;
}
.hero-search select {
  border: none;
  border-right: 1px solid var(--color-border-light);
  font-size: .88rem;
  color: var(--color-text-muted);
  padding: .6rem .75rem;
}
.hero-search select:focus { box-shadow: none; }
.hero-search .btn-navy { border-radius: 4px; white-space: nowrap; }

/* ---------- Section heading ---------- */
.section-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.section-heading h2 {
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}
.section-heading .heading-line {
  flex: 1;
  height: 1px;
  background: var(--color-border-light);
}
.section-heading.center {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: .25rem;
}
.section-heading.center .heading-line { display: none; }
.section-heading.center .eyebrow {
  color: var(--color-green);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: .85rem;
}
.section-heading.center h3 {
  color: var(--color-text-muted);
  font-weight: 400;
}

/* ---------- Waste category tiles ---------- */
.waste-tile {
  position: relative;
  border-radius: var(--tile-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
  display: block;
}
.waste-tile-link {
  display: block;
  width: 100%;
  height: 100%;
}
.waste-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.waste-tile:hover img { transform: scale(1.06); }
.waste-tile-request {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-orange);
  color: var(--color-navy);
  font-size: .72rem;
  font-weight: 700;
  padding: .35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease;
  z-index: 2;
}
.waste-tile:hover .waste-tile-request {
  opacity: 1;
  visibility: visible;
}
.waste-tile-request:hover {
  background: var(--color-navy);
  color: var(--color-white);
}
.waste-tile .tile-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .5rem;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-navy);
  background: var(--color-white);
}
.waste-tile.tile-dark .tile-label {
  background: var(--color-navy);
  color: var(--color-white);
}
.waste-grid { row-gap: 1.25rem; }

/* ---------- Services (plain card — home page variant) ---------- */
.services-section { background-color: var(--color-mint-bg); }
.service-card {
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.service-card h3 {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: .75rem;
}
.service-card p {
  font-size: .87rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}
.service-card.active {
  background: var(--color-navy);
}
.service-card.active h3,
.service-card.active p {
  color: var(--color-white);
}
.service-card.active p { color: rgba(255,255,255,.7); }

/* ---------- Home page "Our Services" preview (scoped — does not affect
   the Our Service page or About Us Goals, which also use .services-section/.service-card) ---------- */
.home-services-preview { background-color: #e7f1f0; padding: 60px 0; }
.home-services-preview .services-title { text-align: center; font-weight: 700; font-size: 1.8rem; color: #1b2a4a; margin-bottom: 40px; }
.home-services-preview .service-card { background-color: #ffffff; border: none; border-radius: 6px; padding: 28px 24px; height: 100%; box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: transform 0.2s ease; display: flex; flex-direction: column; }
.home-services-preview .service-card:hover { transform: translateY(-4px); }
.home-services-preview .service-card h5 { font-weight: 700; font-size: 1rem; color: #1b2a4a; margin-bottom: 16px; }
.home-services-preview .service-card p { color: #5a6b7b; font-size: 0.9rem; line-height: 1.6; margin-bottom: 0; }
.home-services-preview .view-all-btn { border: 1px solid #1b2a4a; color: #1b2a4a; background-color: transparent; padding: 10px 28px; border-radius: 4px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s ease; }
.home-services-preview .view-all-btn:hover { background-color: #1b2a4a; color: #fff; }

/* ---------- Service card — photo + Read More (Our Specialization) ---------- */
.spec-card {
  background: var(--color-white);
  border-radius: var(--card-radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.spec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.spec-card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.spec-card-media img { width: 100%; height: 100%; object-fit: cover; }
.spec-card-body { padding: 1.5rem; }
.spec-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.spec-card-body p { font-size: .87rem; color: var(--color-text-muted); margin-bottom: 1rem; }

/* ---------- Service card — photo + longer copy + Request to Service (Our Service) ---------- */
.detail-card {
  background: var(--color-white);
  border-radius: var(--card-radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.detail-card-media { aspect-ratio: 16 / 10; overflow: hidden; flex-shrink: 0; }
.detail-card-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-card-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.detail-card-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .85rem; }
.detail-card-body p { font-size: .9rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 1rem; }
.detail-card-body .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Sterilization / Rehabilitation media block ---------- */
.sterilization-media {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 600 / 420;
}
.sterilization-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sterilization-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.sterilization-text p {
  color: var(--color-text-muted);
  font-size: .93rem;
  line-height: 1.7;
}

/* ---------- Key Feature icon list (Rehabilitation page) ---------- */
.key-feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.key-feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--color-icon-blue);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.key-feature-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.key-feature-text p { font-size: .87rem; color: var(--color-text-muted); margin-bottom: 0; }

/* ---------- Icon-feature triplet (About Us / Community) ---------- */
.icon-feature {
  text-align: center;
}
.icon-feature-circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #46004C;
  color: var(--color-green);
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.icon-feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.icon-feature p {
  font-size: .87rem;
  color: var(--color-text-muted);
  max-width: 20rem;
  margin: 0 auto;
}

/* ---------- Interior page-title banner ---------- */
.eco-page-banner {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.eco-page-banner img.eco-page-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.eco-page-banner-overlay-box {
  position: relative;
  z-index: 1;
  background: var(--color-banner-overlay);
  padding: 1.5rem 3rem;
  display: inline-block;
}
.eco-page-banner-overlay-box h1 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
}
.eco-page-banner nav[aria-label="breadcrumb"] {
  font-size: .8rem;
}

/* ---------- Our Goals numbered card (About Us) ---------- */
.goal-card {
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.goal-card .goal-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: .75rem;
  display: block;
}
.goal-card p { font-size: .87rem; color: var(--color-text-muted); margin-bottom: 0; }
.goal-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34px;
  height: 34px;
  background: var(--color-green);
  border-radius: 34px 0 0 0;
  opacity: .5;
}

/* ---------- Community full-bleed overlay section ---------- */
.community-feature {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.community-feature img.community-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.community-feature-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.88);
  border-radius: var(--card-radius);
  padding: 2rem;
  max-width: 640px;
}
.community-feature-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.community-feature-card p { font-size: .9rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 1.25rem; }

/* ---------- Contact-style form panel (shared by Contact Us + marketplace "Are you looking Around?") ---------- */
.form-panel {
  background: var(--color-mint-bg);
  border-radius: var(--card-radius);
  padding: 2.5rem;
}
.form-panel .form-control,
.form-panel .form-select {
  border: none;
  border-radius: var(--tile-radius);
  padding: .75rem 1rem;
  font-size: .88rem;
  margin-bottom: 1.25rem;
}
.form-panel .form-control:focus,
.form-panel .form-select:focus {
  box-shadow: 0 0 0 .15rem rgba(123, 193, 66, .35);
}
.form-panel textarea.form-control { min-height: 140px; resize: vertical; }
.form-panel .form-check-label { font-size: .9rem; }

/* Contact page address/social columns */
.contact-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 1.25rem;
}
.contact-info p { font-size: .9rem; color: var(--color-text-muted); }
.contact-info .contact-line { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: 1rem; }
.contact-info .contact-line i { color: var(--color-navy); font-size: 1.1rem; margin-top: .15rem; }

/* ---------- Marketplace: hero ---------- */
.market-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.market-hero img.market-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.market-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,28,41,.75) 0%, rgba(16,28,41,.35) 70%);
  z-index: 0;
}
.market-hero-content { position: relative; z-index: 1; color: var(--color-white); max-width: 640px; }
.market-hero-content .eyebrow { color: var(--color-green); font-weight: 700; font-size: .9rem; }
.market-hero-content h1 { color: var(--color-white); font-size: 2rem; font-weight: 700; margin-bottom: 1.25rem; }
.market-search {
  background: var(--color-white);
  border-radius: var(--tile-radius);
  box-shadow: var(--shadow-card);
  padding: .4rem;
  display: flex;
}
.market-search input {
  border: none;
  flex: 1;
  padding: .7rem 1rem;
  font-size: .9rem;
}
.market-search input:focus { outline: none; box-shadow: none; }
.market-search button {
  border-radius: 4px;
  white-space: nowrap;
}
.market-hero-radios { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1rem; font-size: .85rem; }
.market-hero-radios .form-check-input:checked { background-color: var(--color-green); border-color: var(--color-green); }

/* ---------- Marketplace: results header ---------- */
.market-results-count { font-size: .88rem; color: var(--color-text-muted); }
.market-tabs { display: flex; flex-wrap: wrap; gap: .6rem; }
.market-tab {
  border: none;
  background: var(--color-mint-bg);
  color: var(--color-text-dark);
  border-radius: 999px;
  padding: .5rem 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  transition: background-color .2s ease, color .2s ease;
}
.market-tab.active, .market-tab:hover { background: var(--color-navy); color: var(--color-white); }
.market-sort { font-size: .85rem; border-radius: var(--tile-radius); padding: .5rem .9rem; }

/* Company banner strip */
.company-strip {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--card-radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.company-strip img { width: 60px; height: 60px; border-radius: 50%; background: var(--color-white); }
.company-strip h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.company-strip p { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 0; }
.company-strip .btn-outline-light { font-size: .8rem; padding: .4rem 1rem; }

/* Sidebar filter panel */
.filter-panel {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--card-radius);
  padding: 1.5rem;
}
.filter-panel label { font-size: .82rem; font-weight: 600; margin-bottom: .3rem; display: block; }
.filter-panel .form-control,
.filter-panel .form-select { font-size: .85rem; margin-bottom: 1.1rem; }
.filter-banner-placeholder {
  border: 1.5px dashed var(--color-placeholder-border);
  background: var(--color-placeholder-bg);
  color: var(--color-text-muted);
  border-radius: var(--tile-radius);
  aspect-ratio: 366 / 432;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .8rem;
  margin-bottom: 1.25rem;
}

/* Product card */
.product-card {
  background: var(--color-white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card-media { aspect-ratio: 4 / 3; padding: 1rem; display: flex; align-items: center; justify-content: center; }
.product-card-media img { max-height: 100%; }
.product-card-body { padding: 0 1.1rem 1.1rem; display: flex; flex-direction: column; flex: 1; }
.product-card-body h4 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.product-card-body .meta-line { font-size: .8rem; color: var(--color-text-muted); margin-bottom: .3rem; }
.product-card-body .meta-line strong { color: var(--color-text-dark); }

/* Company directory card */
.company-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}
.company-card img { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1rem; }
.company-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.company-card .location { font-size: .78rem; color: var(--color-text-muted); margin-bottom: .5rem; }
.company-card .product-count { font-size: .85rem; font-weight: 700; color: var(--color-orange); margin-bottom: .85rem; }

/* ---------- Download app ---------- */
.download-section h2 {
  color: var(--color-green);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: .04em;
}
.download-section p {
  color: var(--color-text-muted);
  font-size: .93rem;
  max-width: 32rem;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 8px;
  padding: .55rem 1.1rem;
  font-size: .8rem;
  transition: background-color .2s ease, transform .15s ease;
}
.store-badge:hover { background: var(--color-navy-dark); color: var(--color-white); transform: translateY(-2px); }
.store-badge small { display: block; font-size: .62rem; opacity: .75; line-height: 1; }
.store-badge strong { display: block; font-size: .92rem; line-height: 1.1; }

/* ---------- Waste collection banner (home) ---------- */
.collection-banner {
  background-color: var(--color-navy);
  color: var(--color-white);
}
.collection-banner h2 {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.collection-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.collection-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .9rem;
  font-size: .92rem;
}
.collection-list i {
  color: var(--color-green);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.collection-collage {
  position: relative;
  min-height: 260px;
}
.collection-collage img:first-child {
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  width: 100%;
  aspect-ratio: 320 / 220;
  object-fit: cover;
}
.collection-collage img:last-child {
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 55%;
  aspect-ratio: 320 / 220;
  object-fit: cover;
  border: 4px solid var(--color-navy);
}

/* ---------- Blog ---------- */
.blog-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.blog-media {
  position: relative;
  aspect-ratio: 400 / 260;
  overflow: hidden;
}
.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-date-badge {
  position: absolute;
  top: .8rem;
  left: .8rem;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: 4px;
  padding: .3rem .6rem;
  font-size: .7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}
.blog-new-badge {
  position: absolute;
  top: .8rem;
  right: .8rem;
  background: var(--color-green);
  color: var(--color-white);
  border-radius: 4px;
  padding: .25rem .6rem;
  font-size: .68rem;
  font-weight: 700;
}
.blog-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-body .blog-meta {
  font-size: .75rem;
  color: var(--color-text-muted);
  margin-bottom: .4rem;
}
.blog-body h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.blog-body p {
  font-size: .85rem;
  color: var(--color-text-muted);
  flex: 1;
}

/* ---------- Footer ---------- */
.eco-footer {
  background-color: var(--color-navy-dark);
  color: rgba(255,255,255,.75);
}
.eco-footer .brand-logo .brand-top { color: var(--color-green); }
.eco-footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.eco-footer ul { list-style: none; padding: 0; margin: 0; }
.eco-footer ul li { margin-bottom: .7rem; }
.eco-footer ul li a { color: rgba(255,255,255,.7); font-size: .88rem; }
.eco-footer ul li a:hover { color: var(--color-green); }
.social-icons { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social-icons a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  transition: background-color .2s ease, color .2s ease;
}
.social-icons a:hover { background: var(--color-green); color: var(--color-white); border-color: var(--color-green); }
.news-item {
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
}
.news-item img {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.news-item p { font-size: .82rem; margin-bottom: .25rem; color: rgba(255,255,255,.85); }
.news-item span { font-size: .72rem; color: rgba(255,255,255,.5); }
.newsletter-form { display: flex; margin-top: 1rem; }
.newsletter-form input {
  border-radius: 4px 0 0 4px;
  border: none;
  padding: .6rem .8rem;
  font-size: .85rem;
  flex: 1;
  min-width: 0;
}
.newsletter-form button {
  border-radius: 0 4px 4px 0;
  border: none;
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 600;
  padding: .6rem 1.1rem;
  font-size: .85rem;
}
.newsletter-form button:hover { background: var(--color-green-dark); }
.eco-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
  font-size: .8rem;
  text-align: center;
  color: rgba(255,255,255,.55);
}

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 2px;
}
/* =========================================================
   Environment Incubator — breakpoint overrides
   Bootstrap breakpoints: sm 576 / md 768 / lg 992 / xl 1200
   ========================================================= */

@media (max-width: 767.98px) {
  .section-py { padding-top: var(--section-padding-y-sm); padding-bottom: var(--section-padding-y-sm); }

  .eco-hero h1 { font-size: 2rem; }
  .hero-search select { border-right: none; border-bottom: 1px solid var(--color-border-light); }

  .collection-collage { margin-bottom: 2.5rem; }

  .eco-page-banner { min-height: 180px; }
  .eco-page-banner-overlay-box { padding: 1rem 1.5rem; }
  .eco-page-banner-overlay-box h1 { font-size: 1.4rem; }

  .community-feature { min-height: 280px; }
  .community-feature-card { padding: 1.25rem; }

  .market-hero { min-height: 260px; }
  .market-hero-content h1 { font-size: 1.5rem; }

  .form-panel { padding: 1.5rem; }

  .company-strip { text-align: center; justify-content: center; }
}

@media (max-width: 575.98px) {
  .market-hero-radios { flex-direction: column; gap: .6rem; }
}
