/* ===========================
   CODE 3 JUNK HAULING — STYLES
   =========================== */

:root {
  --navy: #0F2442;
  --navy-deep: #081730;
  --navy-mid: #1A3A6B;
  --pink: #E8457A;
  --pink-light: #FF7AA0;
  --teal: #2ABFBF;
  --teal-light: #6EE7E7;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --gray-100: #F4F4F0;
  --gray-200: #E8E8E2;
  --gray-400: #A0A098;
  --gray-600: #6B6B62;
  --gray-800: #2C2C28;

  --display: 'Bricolage Grotesque', sans-serif;
  --body: 'DM Sans', sans-serif;

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ===== TYPE ===== */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.1;
}

h1 { font-size: clamp(42px, 7vw, 76px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 20px; }

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--teal-light); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--pink); color: white; box-shadow: 0 8px 24px rgba(232,69,122,0.3); }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(232,69,122,0.4); }
.btn-ghost { background: transparent; border-color: rgba(15,36,66,0.15); color: var(--navy); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.15); }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,36,66,0.06);
}
.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-text em { color: var(--pink); font-style: normal; }

.main-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
}
.main-nav a { color: var(--gray-600); transition: color 0.15s; padding: 6px 0; position: relative; }
.main-nav a:hover, .main-nav a.active { color: var(--navy); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

.nav-cta {
  background: var(--navy);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--pink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 24px 80px;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 85% -10%, rgba(232,69,122,0.35), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 110%, rgba(42,191,191,0.25), transparent 60%);
}
.hero-content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo { width: 280px; height: 280px; object-fit: contain; display: block; }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal-light);
  margin-bottom: 20px;
}
.hero h1 { color: white; margin-bottom: 24px; }
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero .btn-ghost { color: white; border-color: rgba(255,255,255,0.25); }
.hero .btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.06); }
.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}

/* ===== SERVICES STRIP ===== */
.services-strip { padding: 90px 0; }
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,36,66,0.08); }
.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.service-card.featured h3, .service-card.featured p { color: white; }
.service-card.featured .card-link { color: var(--teal-light); }
.service-tag {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--pink);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
}
.service-icon { font-size: 34px; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--gray-600); margin-bottom: 18px; font-size: 15px; }
.card-link { font-weight: 700; color: var(--pink); font-size: 14px; }

/* ===== WHY SECTION ===== */
.why-section { padding: 90px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.why-text { color: var(--gray-600); font-size: 17px; margin: 20px 0 28px; max-width: 480px; }
.why-list { list-style: none; margin-bottom: 32px; }
.why-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 16px;
  color: var(--gray-600);
}
.why-list li:first-child { border-top: 1px solid var(--gray-200); }
.why-list strong { color: var(--navy); }

.why-visual { display: grid; gap: 16px; }
.visual-card {
  background: var(--gray-100);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
}
.visual-card.accent { background: var(--navy); }
.visual-card.accent .visual-stat { color: var(--teal-light); }
.visual-card.accent .visual-label { color: rgba(255,255,255,0.6); }
.visual-stat {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 8px;
}
.visual-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-600);
}

/* ===== HAUL SECTION ===== */
.haul-section { padding: 90px 0; }
.haul-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.haul-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.15s, transform 0.15s;
}
.haul-item:hover { border-color: var(--teal); transform: translateY(-2px); }

/* ===== PM SECTION ===== */
.pm-section { padding: 0 0 90px; }
.pm-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 28px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.pm-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,69,122,0.3), transparent 70%);
}
.pm-content { position: relative; max-width: 580px; }
.pm-content h2 { color: white; margin-bottom: 16px; }
.pm-content p { color: rgba(255,255,255,0.6); font-size: 17px; margin-bottom: 28px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-brand .logo { color: white; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 280px; margin-top: 14px; }
.footer-col h4 {
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer-col a { display: block; padding: 6px 0; font-size: 15px; transition: color 0.15s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
}

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: 70px 24px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,191,191,0.25), transparent 70%);
}
.page-hero-content { position: relative; max-width: var(--container); margin: 0 auto; }
.page-hero h1 { color: white; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 18px; max-width: 560px; margin-top: 16px; }

/* ===== GENERIC CONTENT BLOCKS ===== */
.content-section { padding: 80px 0; }
.content-section.alt { background: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-cards { grid-template-columns: 1fr; }
  .haul-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .pm-card { padding: 40px 28px; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(15,36,66,0.06);
    gap: 4px;
  }
  .main-nav.open a { padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
}

/* ===== HOW IT WORKS ===== */
.how-section { padding: 90px 0; background: var(--white); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 56px;
}
.how-step { text-align: center; padding: 0 16px; }
.how-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.how-step h3 { margin-bottom: 10px; font-size: 19px; }
.how-step p { color: var(--gray-600); font-size: 15px; line-height: 1.6; }
.how-connector {
  width: 60px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 28px;
  flex-shrink: 0;
}

/* ===== STICKY CALL BUTTON ===== */
.sticky-call { display: none; }
@media (max-width: 768px) {
  .sticky-call {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    padding: 0;
  }
  .sticky-call a {
    display: block;
    background: var(--pink);
    color: white;
    text-align: center;
    padding: 16px 24px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 -4px 20px rgba(232,69,122,0.3);
  }
}

@media (max-width: 600px) {
  .haul-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 70px 20px 60px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .pm-card { padding: 32px 22px; }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-connector { display: none; }
}

/* ===== REVIEWS SECTION ===== */
.reviews-section { padding: 90px 0; background: var(--white); }

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--gray-100);
  border-radius: 18px;
  padding: 20px 32px;
  margin: 0 auto 48px;
  max-width: 560px;
  flex-wrap: wrap;
  text-align: center;
}
.google-badge-stars { font-size: 22px; color: #FBBC04; letter-spacing: 3px; }
.google-badge-text { font-size: 15px; font-weight: 600; color: var(--navy); }
.google-badge-text span { color: var(--gray-600); font-weight: 400; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars { color: #FBBC04; font-size: 16px; letter-spacing: 3px; }
.review-text { color: var(--gray-600); font-size: 15px; line-height: 1.65; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 14px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--display);
}
.reviewer-name { font-weight: 700; color: var(--navy); font-size: 14px; }
.reviewer-meta { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.reviews-cta { text-align: center; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FILE INPUT ===== */
input[type="file"] {
  padding: 12px 16px;
  cursor: pointer;
  background: var(--gray-100);
  border: 1.5px dashed var(--gray-400);
  border-radius: 10px;
  font-size: 14px;
  color: var(--gray-600);
  transition: border-color 0.15s;
  font-family: var(--body);
}
input[type="file"]:hover, input[type="file"]:focus { border-color: var(--teal); outline: none; }
.field-optional { font-weight: 400; color: var(--gray-400); font-size: 12px; }
.field-hint { font-size: 12px; color: var(--gray-400); margin-top: 6px; }

/* ===== FOCUS / A11Y ===== */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
