/* ===========================================================
   Junk-fil-A — styles.css
   Hot-pink / black / white — layout guided by a hauling-site template
   Brand: "Less Mess. Less Stress."
   =========================================================== */

:root {
  --ink: #121016;
  --ink-2: #1b1822;
  --ink-soft: #3d3947;
  --muted: #6f6a78;
  --pink: #ec1e96;
  --pink-dark: #c4137a;
  --pink-tint: #fdeaf5;
  --pink-soft: #fbd6ec;
  --cream: #ffffff;
  --surface: #f6f2f7;
  --white: #ffffff;
  --line: #ece7ef;
  --star: #ffb400;
  --shadow-sm: 0 2px 8px rgba(18, 16, 22, 0.06);
  --shadow-md: 0 14px 40px rgba(18, 16, 22, 0.12);
  --shadow-lg: 0 30px 70px rgba(18, 16, 22, 0.22);
  --shadow-pink: 0 10px 26px rgba(236, 30, 150, 0.35);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink); background: var(--cream); line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip; /* contain hero glow without breaking the sticky header */
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: "Archivo", sans-serif; line-height: 1.06; letter-spacing: -0.02em; text-wrap: balance; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s;
  white-space: nowrap; line-height: 1; text-transform: uppercase; letter-spacing: 0.02em;
}
.btn-primary { background: var(--pink); color: #fff; box-shadow: var(--shadow-pink); }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(236, 30, 150, 0.45); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-xs { padding: 9px 16px; font-size: 0.8rem; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-lg { padding: 17px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: #0d0b11; color: rgba(255, 255, 255, 0.8); font-size: 0.85rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 44px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-loc { color: rgba(255, 255, 255, 0.7); }
.topbar-mail { color: rgba(255, 255, 255, 0.8); }
.topbar-mail:hover { color: #fff; }
.soc {
  display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%;
  background: var(--pink); color: #fff; font-family: "Archivo", sans-serif; font-weight: 900; font-size: 0.95rem;
}
.soc:hover { background: var(--pink-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: #fff; box-shadow: var(--shadow-pink); }
.footer-logo { width: 72px; height: 72px; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: "Archivo", sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: -0.03em; }
.brand-tag { font-size: 0.75rem; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: 0.04em; }
.main-nav { display: flex; gap: 26px; }
.main-nav a { font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); transition: color 0.2s; }
.main-nav a:hover { color: var(--pink); }
.phone-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; }
.phone-link.big { font-family: "Archivo", sans-serif; font-size: 1.4rem; color: #fff; }

/* ---------- Media placeholder system ---------- */
.media {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #241f2c, #14121a);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.media::before { content: ""; display: none; }
.media--empty::before {
  content: "\1F4F7"; display: block; font-size: clamp(1.8rem, 4vw, 2.6rem);
  opacity: 0.6; position: relative; z-index: 0;
}
.media--empty[data-icon]::before { content: attr(data-icon); opacity: 0.85; }
.media-label {
  position: relative; z-index: 0; display: none; color: rgba(255, 255, 255, 0.62);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.02em; text-align: center; padding: 0 14px;
}
.media--empty .media-label { display: block; }

/* ---------- Hero ---------- */
.hero { background: var(--ink); color: #fff; padding: 54px 0 0; position: relative; }
.hero::before {
  content: ""; position: absolute; top: -120px; right: -120px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(236, 30, 150, 0.35), transparent 70%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; position: relative; }
.eyebrow {
  display: inline-block; font-family: "Archivo", sans-serif; font-weight: 800; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--pink);
  background: var(--pink-tint); padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero .eyebrow { color: #fff; background: rgba(236, 30, 150, 0.9); }
.eyebrow.light { color: #fff; background: rgba(255, 255, 255, 0.16); }
.hero-copy h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; margin-bottom: 18px; }
.hero-copy h1 .accent { color: var(--pink); }
.hero-copy .lead { font-size: 1.15rem; color: rgba(255, 255, 255, 0.78); max-width: 46ch; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; padding-bottom: 20px; }
.media--hero { aspect-ratio: 4 / 4.6; box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, 0.08); }
.seal {
  position: absolute; left: -16px; bottom: -16px; width: 120px; height: 120px; border-radius: 50%;
  background: var(--pink); color: #fff; display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow-pink); border: 4px solid var(--ink); z-index: 3;
}
.seal strong { font-family: "Archivo", sans-serif; font-weight: 900; font-size: 1rem; line-height: 1.08; text-transform: uppercase; letter-spacing: 0.02em; }

/* ---------- Quick request bar ---------- */
.quickbar {
  position: relative; z-index: 2; background: var(--pink); border-radius: var(--radius-lg);
  padding: 22px 26px; margin: 40px 0 -44px; box-shadow: var(--shadow-lg); color: #fff;
}
.quickbar-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.quickbar-title { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.15rem; }
.quickbar-badges { display: flex; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; font-weight: 600; color: rgba(255, 255, 255, 0.92); }
.quickbar-fields { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; }
.quickbar-fields input {
  font-family: "Inter", sans-serif; font-size: 0.98rem; padding: 13px 16px; border: none;
  border-radius: 10px; background: #fff; color: var(--ink); width: 100%;
}
.quickbar-fields input:focus { outline: 3px solid rgba(255, 255, 255, 0.6); outline-offset: 1px; }
.quickbar-fields .btn { background: var(--ink); box-shadow: none; }
.quickbar-fields .btn:hover { background: #000; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section:first-of-type { padding-top: 96px; }
.section-alt { background: var(--surface); }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.sample-note { color: var(--pink-dark); font-size: 0.92rem; font-style: italic; margin-top: 6px; }
.anchor-offset { display: block; position: relative; top: -80px; visibility: hidden; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 52px; align-items: center; }
.media--about { aspect-ratio: 4 / 4.2; box-shadow: var(--shadow-md); }
.about-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; margin: 6px 0 16px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 14px; }
.about-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0 26px; }
.about-bullets span { font-weight: 600; color: var(--ink); font-size: 0.98rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--pink-soft); }
.card-media { aspect-ratio: 16 / 10; border-radius: 0; }
.card-body { padding: 22px 24px 26px; }
.card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.card-body p { color: var(--ink-soft); font-size: 0.97rem; }
.services-cta { text-align: center; margin-top: 40px; }

/* ---------- Dumpster ---------- */
.section-dumpster { background: var(--ink); color: #fff; }
.dumpster-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: center; }
.dumpster-copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.dumpster-copy > p { color: rgba(255, 255, 255, 0.75); font-size: 1.08rem; margin-bottom: 24px; max-width: 46ch; }
.dumpster-list { list-style: none; display: grid; gap: 13px; margin-bottom: 30px; }
.dumpster-list li { position: relative; padding-left: 32px; font-size: 1.02rem; color: rgba(255, 255, 255, 0.92); }
.dumpster-list li::before {
  content: "\2713"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; display: grid; place-items: center;
  background: var(--pink); color: #fff; border-radius: 50%; font-size: 0.75rem; font-weight: 800;
}
.dumpster-list strong { color: #fff; }
.dumpster-cta-card { background: linear-gradient(150deg, var(--pink), var(--pink-dark)); border-radius: var(--radius-lg); padding: 40px 34px; text-align: center; box-shadow: var(--shadow-lg); }
.dcc-kicker { font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.88rem; color: rgba(255, 255, 255, 0.85); }
.dcc-big { font-family: "Archivo", sans-serif; font-weight: 900; font-size: 2.8rem; letter-spacing: -0.02em; margin: 4px 0 14px; }
.dcc-points { font-size: 0.88rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 22px; font-weight: 600; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.steps::before { content: ""; position: absolute; top: 31px; left: 16%; right: 16%; height: 2px; background: repeating-linear-gradient(90deg, var(--pink-soft) 0 10px, transparent 10px 20px); z-index: 0; }
.step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-num {
  display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 18px;
  background: #fff; color: var(--pink); border: 2px solid var(--pink); border-radius: 50%;
  font-family: "Archivo", sans-serif; font-weight: 900; font-size: 1.35rem; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--ink-soft); }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.why-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; margin: 6px 0 16px; }
.why-copy > p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 24px; }
.checklist { list-style: none; margin-bottom: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; }
.checklist li { position: relative; padding-left: 32px; font-size: 1.02rem; color: var(--ink); }
.checklist li::before {
  content: "\2713"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; display: grid; place-items: center;
  background: var(--pink-tint); color: var(--pink); border-radius: 50%; font-size: 0.75rem; font-weight: 800;
}
.media--why { aspect-ratio: 4 / 3.4; box-shadow: var(--shadow-md); }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); }
.stars { color: var(--star); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.review p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 20px; }
.review-by { display: flex; align-items: center; gap: 12px; }
.rev-ava { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: #fff; font-family: "Archivo", sans-serif; font-weight: 800; }
.review-by strong { display: block; font-size: 0.98rem; }
.review-by em { color: var(--muted); font-size: 0.82rem; font-style: normal; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; font-family: "Archivo", sans-serif; font-weight: 700; font-size: 1.08rem; padding: 16px 30px 16px 0; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 12px; font-size: 1.5rem; color: var(--pink); font-weight: 700; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); padding: 0 0 18px; }

/* ---------- Booking / Contact ---------- */
.section-book { background: var(--ink); color: #fff; position: relative; }
.book-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.book-intro h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; margin: 6px 0 16px; }
.book-intro > p { color: rgba(255, 255, 255, 0.75); font-size: 1.08rem; margin-bottom: 22px; }
.book-points { list-style: none; display: grid; gap: 11px; margin-bottom: 28px; }
.book-points li { color: rgba(255, 255, 255, 0.92); font-size: 1.02rem; }
.contact-cards { display: grid; gap: 12px; }
.contact-card { display: flex; align-items: center; gap: 14px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 14px 16px; }
.contact-card:hover { background: rgba(255, 255, 255, 0.1); }
.cc-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--pink); color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.contact-card em { display: block; font-style: normal; color: rgba(255, 255, 255, 0.6); font-size: 0.8rem; }
.contact-card strong { font-size: 1rem; }

.book-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); color: var(--ink); }
.field-row { margin-bottom: 18px; }
.field-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; }
.field label { font-weight: 600; font-size: 0.92rem; margin-bottom: 7px; color: var(--ink-soft); }
.field .req { color: var(--pink); }
.field input, .field select, .field textarea {
  font-family: "Inter", sans-serif; font-size: 1rem; color: var(--ink); padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--pink); background: #fff; box-shadow: 0 0 0 3px rgba(236, 30, 150, 0.15); }
.field textarea { resize: vertical; min-height: 96px; }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(236, 30, 150, 0.12); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-fineprint { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 12px; }
.form-status { margin-top: 16px; padding: 0; font-size: 0.98rem; border-radius: 10px; }
.form-status.show { padding: 14px 16px; }
.form-status.success { background: #eaf7ee; color: #1c6b34; border: 1px solid #b7e3c4; }
.form-status.error { background: var(--pink-tint); color: var(--pink-dark); border: 1px solid #f4b6d9; }
#submit-btn[disabled] { opacity: 0.65; cursor: progress; }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--pink), var(--pink-dark)); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 46px 24px; flex-wrap: wrap; }
.cta-copy h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 6px; }
.cta-copy p { color: rgba(255, 255, 255, 0.9); max-width: 52ch; }

/* ---------- Footer ---------- */
.site-footer { background: #0b0a0e; color: rgba(255, 255, 255, 0.75); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1.1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-brand .brand-name { display: block; font-family: "Archivo", sans-serif; font-weight: 900; font-size: 1.3rem; color: #fff; margin: 12px 0 10px; }
.footer-brand p { font-size: 0.95rem; max-width: 32ch; margin-bottom: 14px; }
.footer-col h4 { font-family: "Archivo", sans-serif; color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.94rem; margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink); }
.footer-hours { font-size: 0.9rem; margin-top: 8px; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .why-grid, .dumpster-grid, .book-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; }
  .cards, .reviews, .gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav, .header-book { display: none; }
  .quickbar-fields { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
}
@media (max-width: 620px) {
  .section { padding: 58px 0; }
  .cards, .reviews, .gallery, .steps, .field-row.two, .about-bullets, .checklist, .footer-grid { grid-template-columns: 1fr; }
  .quickbar-fields { grid-template-columns: 1fr; }
  .quickbar { margin-bottom: -30px; }
  .topbar-loc { display: none; }
  .book-form-wrap { padding: 24px 20px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
