/* =========================================================
   EVIL BUFF REMOVALS — parody stylesheet
   Clean, friendly removals-company layout (à la the real site)
   but with RED where they use GREEN. Light theme.
   ========================================================= */

:root {
  /* red replaces the original green */
  --red:        #d81e2c;
  --red-dark:   #a8121f;
  --red-bright: #ff2436;
  --red-soft:   #fdecec;

  --ink:        #16181d;   /* primary text / headings */
  --ink-2:      #3a3d44;
  --muted:      #6b7280;

  --bg:         #ffffff;
  --bg-soft:    #f5f6f8;   /* light grey section */
  --line:       #e8e9ed;
  --black:      #111317;   /* black buttons, like the real site */
  --gold:       #f6b40a;

  --shadow:     0 12px 30px rgba(20, 22, 30, .08);
  --shadow-lg:  0 22px 55px rgba(20, 22, 30, .14);
  --radius:     14px;

  /* legacy aliases so older inline styles keep working */
  --bone:       var(--ink);
  --bone-dim:   var(--muted);
  --panel:      #ffffff;
  --ink-soft:   var(--bg-soft);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 .5em;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.section { padding: 70px 0; }
.section--tight { padding: 46px 0; }
.section--soft { background: var(--bg-soft); }

.lead { font-size: 1.12rem; color: var(--ink-2); max-width: 62ch; }
.muted { color: var(--muted); }
.red { color: var(--red); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 6px 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 12px 24px;
  border-radius: 9px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: transform .08s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); color: #fff; }
.btn--dark { background: var(--black); border-color: var(--black); color: #fff; }
.btn--dark:hover { background: #000; border-color: #000; }
.btn--light { background: #fff; border-color: #fff; color: var(--ink); }
.btn--light:hover { background: #f1f1f1; border-color: #f1f1f1; color: var(--ink); }
.btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: inherit; }
.btn--pill { border-radius: 999px; }
.btn--big { padding: 15px 32px; font-size: 1.05rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.nav { display: flex; align-items: center; gap: 18px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 40px; width: auto; display: block; }
.footer-logo { height: 42px; width: auto; display: block; background: #fff; padding: 9px 14px; border-radius: 10px; }
.brand .mark {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  background: var(--red); color: #fff;
  border-radius: 50%;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(216, 30, 44, .35);
}
.brand-text { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; line-height: 1; }
.brand-text small { display: block; font-weight: 600; font-size: .58rem; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; list-style: none; padding: 0; margin-top: 0; margin-bottom: 0; }
.nav-links > li > a {
  color: var(--ink); padding: 9px 13px; border-radius: 8px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .92rem;
}
.nav-links > li > a:hover { color: var(--red); text-decoration: none; }
.nav-links a.active { color: var(--red); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 8px; box-shadow: var(--shadow-lg); display: none;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--ink); font-size: .92rem; font-weight: 600; }
.dropdown a:hover { background: var(--red-soft); color: var(--red); text-decoration: none; }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 8px; }

.menu-toggle {
  display: none; margin-left: auto;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  font-size: 1.4rem; border-radius: 9px; padding: 4px 12px; cursor: pointer;
}

/* ---------- Hero (real photo + red overlay) ---------- */
.hero { position: relative; background: #14161b; color: #fff; border-bottom: 5px solid var(--red); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: url("assets/hero.jpg") center right / cover no-repeat; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(12,13,16,.96) 0%, rgba(150,16,26,.82) 28%, rgba(20,22,27,.45) 52%, rgba(20,22,27,0) 78%);
}
.hero .container { position: relative; z-index: 2; }
.hero-text { max-width: 640px; padding: 92px 0 104px; display: flex; flex-direction: column; }
.hero .eyebrow { color: var(--red-bright); }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.8rem); margin-bottom: 16px; text-shadow: 0 2px 18px rgba(0,0,0,.5); }
.hero h1 .red { color: var(--red-bright); }
.hero .lead { color: rgba(255,255,255,.92); font-size: 1.18rem; text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.hero-cta { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 26px; display: flex; gap: 20px; flex-wrap: wrap; color: rgba(255,255,255,.88); font-size: .9rem; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.hero-trust span::before { content: "✗ "; color: var(--red-bright); font-weight: 800; }
.hero-badge {
  position: absolute; right: 36px; bottom: 28px; z-index: 3;
  background: var(--red); color: #fff; font-family: "Poppins", sans-serif; font-weight: 800;
  padding: 13px 24px; border-radius: 999px; transform: rotate(-4deg);
  box-shadow: var(--shadow-lg); border: 3px solid #fff; font-size: .95rem;
}

/* ---------- Generic photo placeholder ---------- */
.ph {
  position: relative; overflow: hidden; border-radius: 12px;
  background: linear-gradient(135deg, #2a2d36, #3a1417);
  display: grid; place-items: center; color: rgba(255,255,255,.85);
}
.ph .ph-ico { font-size: 3rem; }
.ph .ph-cap {
  position: absolute; bottom: 8px; left: 0; right: 0; text-align: center;
  font-size: .7rem; color: rgba(255,255,255,.7); padding: 0 10px; letter-spacing: .2px;
}

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); transition: transform .12s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .ico { font-size: 2rem; margin-bottom: 10px; }
.card h3 { font-size: 1.3rem; }
.card p { color: var(--muted); margin: 0 0 14px; }
.card .more { font-family: "Poppins", sans-serif; font-weight: 700; font-size: .85rem; color: var(--red); }

/* "What We Remove!" service cards */
.removecard {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .12s ease, box-shadow .2s ease;
}
.removecard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.rc-photo { position: relative; height: 184px; overflow: hidden; }
.rc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.removecard:hover .rc-photo img { transform: scale(1.05); }
.rc-photo .ph-cap {
  position: absolute; left: 0; right: 0; bottom: 0; text-align: center;
  color: #fff; font-size: .74rem; letter-spacing: .2px; padding: 24px 12px 9px;
  background: linear-gradient(transparent, rgba(120,12,16,.88));
}
.removecard .rc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.removecard h3 { font-size: 1.45rem; text-align: center; margin-bottom: 14px; }
.removecard .ticks { margin-bottom: 20px; }
.removecard .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Tick / cross list ---------- */
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 30px; color: var(--ink-2); }
.ticks li::before {
  content: "✗"; position: absolute; left: 0; top: -1px;
  color: var(--red); font-weight: 900; font-size: 1.05rem;
}

/* ---------- Split panels ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; align-items: center; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }

/* ---------- Service area ---------- */
.area-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.area-list span { background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink-2); padding: 6px 13px; border-radius: 999px; font-size: .9rem; }
.map-real { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-real img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; display: block; filter: hue-rotate(238deg) saturate(1.25) contrast(1.02); }
.map-real::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(168,18,31,.22)); pointer-events: none; }
.map-real .map-cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 6px 12px; font-size: .8rem; color: var(--ink-2); box-shadow: var(--shadow); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 14px; box-shadow: var(--shadow); }
.stat .num { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--red); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: .85rem; margin-top: 8px; }

/* ---------- Reviews ---------- */
.greviews { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 8px; flex-wrap: wrap; }
.greviews .gw { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; }
.greviews .gw b:nth-child(1){color:#4285F4} .greviews .gw b:nth-child(2){color:#DB4437} .greviews .gw b:nth-child(3){color:#F4B400} .greviews .gw b:nth-child(4){color:#4285F4} .greviews .gw b:nth-child(5){color:#0F9D58} .greviews .gw b:nth-child(6){color:#DB4437}
.greviews .gscore { color: var(--ink-2); font-weight: 600; }
.stars { color: var(--red); letter-spacing: 2px; font-size: 1.05rem; }
.stars .dim { color: #d4d6db; }

.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); }
.review blockquote { margin: 12px 0 16px; color: var(--ink-2); }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: "Poppins",sans-serif; }
.review .who b { display: block; color: var(--ink); }
.review .who span { color: var(--muted); font-size: .82rem; }

/* ---------- Quote band (was green) ---------- */
.quote-section { background: var(--red); color: #fff; }
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.quote-section h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.quote-section .lead { color: rgba(255,255,255,.9); }
.photo-frame { width: 100%; display: block; border-radius: 16px; box-shadow: var(--shadow-lg); object-fit: cover; border: 3px solid rgba(255,255,255,.85); }
.quote-photo { height: 330px; margin-top: 6px; }
.quote-card { background: #fff; border-radius: 16px; padding: 26px; box-shadow: var(--shadow-lg); }
.quote-card h3 { color: var(--ink); }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--red-dark), var(--red)); border-radius: 18px; padding: 46px; text-align: center; color: #fff; box-shadow: var(--shadow-lg); }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.cta-banner .lead { color: rgba(255,255,255,.92); }
.cta-actions { margin-top: 22px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  border-radius: 10px; padding: 12px 14px; font: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft); }
.fineprint { font-size: .78rem; color: var(--muted); margin-top: 8px; }

/* ---------- Pricing table ---------- */
.pricing { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pricing th, .pricing td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.pricing th { background: var(--red); color: #fff; font-family: "Poppins", sans-serif; font-size: .85rem; }
.pricing tr:last-child td { border-bottom: none; }
.pricing td.price { color: var(--red); font-weight: 700; }

/* ---------- Press strip ---------- */
.press { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; align-items: center; }
.press span { font-family: "Georgia", serif; font-style: italic; color: var(--muted); }

/* ---------- Page head ---------- */
.page-head { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 54px 0 40px; }
.page-head h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.page-head .lead { margin-top: 10px; }
.breadcrumb { color: var(--muted); font-size: .85rem; margin-bottom: 12px; font-weight: 600; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--red); }

/* ---------- Misc ---------- */
.notice { background: var(--red-soft); border: 1px solid #f3c9cd; border-left: 4px solid var(--red); border-radius: 12px; padding: 16px 20px; color: var(--ink-2); font-size: .95rem; }
.notice strong { color: var(--red-dark); }

.faq { display: grid; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 22px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; padding: 16px 0; font-family: "Poppins", sans-serif; font-weight: 700; color: var(--ink); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "✗ "; color: var(--red); font-weight: 900; }
.faq p { color: var(--muted); margin: 0 0 16px; }

.more { font-family: "Poppins", sans-serif; font-weight: 700; }

/* ---------- Flagship (un-deletable) review ---------- */
.flagship {
  position: relative; overflow: hidden;
  background: #fff; border: 3px solid var(--red); border-radius: 18px;
  padding: 30px 32px 28px; margin-bottom: 38px;
  animation: flagPulse 1.8s ease-in-out infinite, flagWobble 3.6s ease-in-out infinite;
}
.flagship::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(216,30,44,.12), transparent);
  animation: flagSweep 3s linear infinite;
}
.flag-ribbon {
  display: inline-block; background: var(--red); color: #fff;
  font-family: "Poppins", sans-serif; font-weight: 800; font-size: .78rem; letter-spacing: 1px;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 14px; text-transform: uppercase;
  animation: flagFlash 1.1s steps(1) infinite;
}
.flag-arrow {
  font-family: "Poppins", sans-serif; font-weight: 800; color: var(--red); font-size: 1.05rem;
  margin-bottom: 12px; animation: flagBounce 1s ease-in-out infinite;
}
.flagship blockquote { font-size: 1.55rem; line-height: 1.4; color: var(--ink); font-weight: 600; margin: 6px 0 18px; }
.flagship .stars.big { font-size: 1.8rem; letter-spacing: 4px; }
.flagship .who { display: flex; align-items: center; gap: 12px; }
.flagship .who b { font-size: 1.05rem; }
.flag-actions { display: flex; align-items: center; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.del-count { color: var(--muted); font-size: .85rem; }
.runaway { will-change: left, top; z-index: 9999; }

@keyframes flagPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(216,30,44,.45); } 50% { box-shadow: 0 0 0 16px rgba(216,30,44,0); } }
@keyframes flagWobble { 0%,100% { transform: rotate(-.5deg); } 50% { transform: rotate(.5deg); } }
@keyframes flagSweep { 0% { left: -60%; } 100% { left: 130%; } }
@keyframes flagFlash { 0% { background: var(--red); color: #fff; } 50% { background: #111; color: #ffd400; } }
@keyframes flagBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (prefers-reduced-motion: reduce) {
  .flagship, .flag-ribbon, .flag-arrow { animation: none !important; }
  .flagship::before { display: none; }
}

/* ---------- Footer ---------- */
.site-footer { background: #14161b; color: #cfd2da; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 30px; }
.site-footer .brand { color: #fff; }
.site-footer .brand-text small { color: #8b8f99; }
.site-footer h4 { color: #fff; font-size: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer a { color: #aeb2bd; }
.site-footer a:hover { color: var(--red-bright); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid #262932; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #7f838d; font-size: .82rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .quote-grid { grid-template-columns: 1fr; }
  .hero-text { padding: 60px 0 84px; max-width: none; }
  .hero::after { background: linear-gradient(180deg, rgba(12,13,16,.66) 0%, rgba(150,16,26,.8) 100%); }
  .hero-badge { right: 16px; bottom: 16px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; background: #fff;
    border-bottom: 1px solid var(--line); padding: 12px; margin: 0; gap: 2px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-actions { margin: 8px 0 0; }
  .nav-actions .btn { flex: 1; text-align: center; }
  .dropdown { position: static; display: block; box-shadow: none; border: none; padding-left: 14px; }
}
@media (max-width: 560px) {
  .stats, .footer-grid, .form-grid { grid-template-columns: 1fr; }
}
