/* Junk Must Go Inc — Landing Site Styles
   Palette: dark slate #29333B · teal #50858D · tan #C5B6A3 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --slate: #29333B;
  --slate-dark: #1D252B;
  --slate-light: #35414B;
  --teal: #50858D;
  --teal-dark: #406B72;
  --teal-light: #7FB0B6;
  --tan: #C5B6A3;
  --cream: #F5F7F8;
  --border: #E1E6E9;
  --text: #2A333B;
  --text-muted: #5A6672;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(41, 51, 59, 0.10);
  --shadow-lg: 0 14px 40px rgba(41, 51, 59, 0.18);
  --radius: 10px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  font-size: 17px;
}

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

a {
  color: var(--teal-dark);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
a:hover {
  color: var(--slate);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 86px;
}
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 64px;
  width: auto;
}
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav ul a {
  display: block;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav ul a:hover,
.main-nav ul a.active {
  background: var(--cream);
  color: var(--slate);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 6px;
  background: var(--cream);
  font-weight: 600;
  font-size: 0.82rem;
}
.lang-toggle a {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--text-muted);
}
.lang-toggle a.active {
  background: var(--slate);
  color: var(--white);
}

.btn-ghost {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--slate);
  background: var(--white);
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--slate);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--slate-dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(29, 37, 43, 0.92) 0%, rgba(41, 51, 59, 0.72) 60%, rgba(64, 107, 114, 0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
}
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero-tagline {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--tan);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: all 0.25s;
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(80, 133, 141, 0.35);
}
.btn-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.75);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--slate);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--slate);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--slate-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Sections ---------- */
.section {
  padding: 84px 0;
}
.section.alt {
  background: var(--cream);
}
.section-head {
  margin-bottom: 40px;
  max-width: 800px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--slate);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-head p.lead {
  font-size: 1.08rem;
  color: var(--text-muted);
}

.section p {
  margin-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.85;
}
.section strong {
  color: var(--slate);
}

/* ---------- Split / content layout ---------- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.content-grid .media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.content-grid h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 14px;
}

/* Large centered content blocks (article style) */
.article-block {
  max-width: 820px;
  margin: 0 auto 24px;
}

/* ---------- Bullet list ---------- */
.check-list {
  list-style: none;
  margin: 20px 0;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.7;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.15;
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 11px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--teal-dark);
  border-bottom: 2px solid var(--teal-dark);
  transform: rotate(-45deg);
}

/* ---------- Feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feature-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(80, 133, 141, 0.12);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.35rem;
}
.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---------- Split image + text sections ---------- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 32px;
}
.split-grid.media-first .split-media {
  order: -1;
}
.split-text p {
  margin-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.85;
}
.split-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ---------- Region flag ---------- */
.region-flag {
  padding: 40px 24px 0;
}
.region-flag img {
  display: block;
  margin: 0 auto;
  max-width: 340px;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--slate-dark);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 15% 20%, rgba(80, 133, 141, 0.35), transparent 60%),
    radial-gradient(600px 300px at 85% 80%, rgba(197, 182, 163, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}

/* ---------- Form ---------- */
.form-section {
  background: var(--cream);
  padding: 84px 0;
}
.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: var(--shadow-lg);
}
.form-card h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--slate);
  text-align: center;
  margin-bottom: 6px;
}
.form-card > p {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--slate);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(80, 133, 141, 0.15);
}
.form-card .btn {
  width: 100%;
  padding: 15px;
  font-size: 1.05rem;
}
.form-success {
  background: #E7F1EA;
  border: 1px solid #9BC6A6;
  color: #2F6B3D;
  padding: 18px 22px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

/* ---------- Trademark ---------- */
.trademark-section {
  background: var(--white);
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.trademark-section h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.trademark-badges {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trademark-badges a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 26px;
  min-width: 240px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.trademark-badges a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.trademark-badges img {
  height: 92px;
  width: auto;
}
.trademark-badge-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate);
}
.trademark-badge-number {
  font-size: 0.78rem;
  color: var(--teal-dark);
}
/* The language classes set display:block/none on the badge anchors; keep the
   badges laid out as a column so the label and number stack on their own
   lines instead of stretching the badge wide. */
.trademark-badges a.lang-en,
.trademark-badges a.lang-fr {
  display: flex;
}
/* Only the badge for the active language should show. */
[data-lang="en"] .trademark-badges a.lang-fr,
body[data-lang="en"] .trademark-badges a.lang-fr {
  display: none;
}
[data-lang="fr"] .trademark-badges a.lang-en,
body[data-lang="fr"] .trademark-badges a.lang-en {
  display: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--slate-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 60px 24px 28px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-col h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}
.footer-logo {
  height: 110px;
  width: auto;
  margin-bottom: 16px;
}
.footer-col p,
.footer-col a {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 9px;
  display: block;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
  transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover {
  background: var(--teal);
  transform: scale(1.08);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}
.footer-regions {
  max-width: 1120px;
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.footer-regions h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  margin-top: 18px;
}
.footer-regions h3:first-child {
  margin-top: 0;
}
.footer-region-list {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  text-align: center;
}
.footer-region-list a {
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
.footer-region-list a:hover {
  color: var(--white);
}
.footer-region-list .current-region {
  color: var(--white);
  font-weight: 700;
}
.region-sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 4px;
}
.footer-bottom {
  max-width: 1120px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom p {
  margin-bottom: 6px;
}
.footer-bz-link {
  color: var(--tan);
  font-weight: 600;
  text-decoration: underline;
}
.footer-bz-link:hover {
  color: var(--white);
  text-decoration: none;
}

/* ---------- Location badge / link row ---------- */
.locations-note {
  text-align: center;
}

/* ---------- Location detection overlay ---------- */
.overlay-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(29, 37, 43, 0.6);
  backdrop-filter: blur(3px);
  padding: 24px;
}
.overlay-backdrop.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.overlay-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: popIn 0.35s ease;
}
.overlay-card .overlay-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(80, 133, 141, 0.14);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.overlay-card h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--slate);
  margin-bottom: 10px;
}
.overlay-card .detected-loc {
  color: var(--teal-dark);
}
.overlay-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
}
.overlay-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.overlay-stay {
  background: var(--white);
  color: var(--teal);
  border: 2px solid var(--teal);
}
.overlay-stay:hover {
  background: var(--teal);
  color: var(--white);
}
.overlay-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}
.overlay-close:hover {
  color: var(--slate);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

/* ---------- Language (EN/FR) ---------- */
.lang-fr,
html .lang-fr,
[data-lang="en"] .lang-fr {
  display: none;
}
[data-lang="en"] .lang-en,
body[data-lang="en"] .lang-en {
  display: block;
}
[data-lang="fr"] .lang-fr,
body[data-lang="fr"] .lang-fr {
  display: block;
}
[data-lang="fr"] .lang-en,
body[data-lang="fr"] .lang-en {
  display: none;
}
.hero-lang.lang-en {
  display: block;
}
.hero-lang.lang-fr {
  display: none;
}
[data-lang="fr"] .hero-lang.lang-en,
body[data-lang="fr"] .hero-lang.lang-en {
  display: none;
}
[data-lang="fr"] .hero-lang.lang-fr,
body[data-lang="fr"] .hero-lang.lang-fr {
  display: block;
}

/* Language names inside the footer region links must stay inline so the
   pipe-separated province/state lists keep their horizontal layout. */
.footer-region-list a .lang-en,
.footer-region-list a .lang-fr,
.footer-region-list .current-region .lang-en,
.footer-region-list .current-region .lang-fr {
  display: inline;
}
[data-lang="en"] .footer-region-list a .lang-fr,
body[data-lang="en"] .footer-region-list a .lang-fr,
[data-lang="en"] .footer-region-list .current-region .lang-fr,
body[data-lang="en"] .footer-region-list .current-region .lang-fr {
  display: none;
}
[data-lang="fr"] .footer-region-list a .lang-en,
body[data-lang="fr"] .footer-region-list a .lang-en,
[data-lang="fr"] .footer-region-list .current-region .lang-en,
body[data-lang="fr"] .footer-region-list .current-region .lang-en {
  display: none;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 820px) {
  body {
    font-size: 16px;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .hero-tagline {
    font-size: 1.15rem;
  }
  .section-head h2 {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .main-nav {
    order: 3;
    width: 100%;
  }
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .main-nav ul {
    display: none;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    padding: 10px;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
  .main-nav ul.open {
    display: flex;
  }
  .main-nav ul a {
    padding: 12px 16px;
    border-radius: 8px;
  }
  .split-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 24px;
  }
  .split-grid.media-first .split-media {
    order: 0;
  }
  .split-media img {
    height: 260px;
  }
  .section {
    padding: 60px 0;
  }
  .hero {
    min-height: 440px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero-content {
    padding: 60px 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-regions {
    margin-top: 32px;
  }
  .footer-region-list a {
    white-space: normal;
  }
  .form-card {
    padding: 28px 22px;
  }
}