/* ============================================
   Compare Waste Nottingham — Shared Stylesheet
   ============================================ */
:root {
  --green: #2d8f3f;
  --green-dark: #1f6b2c;
  --green-light: #e8f5ea;
  --yellow: #ffc629;
  --ink: #1a1f1c;
  --ink-dim: #4a554c;
  --grey: #f5f6f4;
  --line: #e2e6e0;
  --white: #ffffff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
}
img { max-width: 100%; height: auto; }
a { color: var(--green-dark); }

/* TOP BAR */
.top-bar {
  background: var(--green-dark);
  color: white;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}
.top-bar strong { color: var(--yellow); }

/* HEADER */
header {
  background: white;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}
.logo-icon {
  background: var(--green);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}
.logo span { color: var(--ink); }
.header-phone { text-align: right; }
.header-phone .label {
  font-size: 0.75rem;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.header-phone a {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}
.header-phone a:hover { color: var(--green-dark); }
@media (max-width: 600px) {
  .header-phone .label { display: none; }
  .header-phone a { font-size: 1.1rem; }
  .logo { font-size: 1rem; }
}

/* BREADCRUMBS */
.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-dim);
}
.breadcrumbs a { color: var(--green-dark); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { margin: 0 0.5rem; color: var(--line); }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: white;
  padding: 4rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255, 198, 41, 0.15), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.08), transparent 50%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.hero h1 .highlight {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}
.hero-sub {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--yellow);
  color: var(--ink);
  padding: 1rem 1.75rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--green-dark);
  padding: 1rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s;
}
.btn-quote:hover { transform: translateY(-2px); }
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-item::before {
  content: '✓';
  background: var(--yellow);
  color: var(--ink);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}

/* QUOTE FORM */
.quote-card {
  background: white;
  color: var(--ink);
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.quote-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: var(--green-dark);
}
.quote-card .sub {
  font-size: 0.9rem;
  color: var(--ink-dim);
  margin-bottom: 1.25rem;
}
.quote-card label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--ink-dim);
}
.quote-card input,
.quote-card select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 0.9rem;
  font-family: inherit;
}
.quote-card input:focus,
.quote-card select:focus {
  outline: 2px solid var(--green);
  border-color: var(--green);
}
.quote-card button {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.quote-card button:hover { background: var(--green-dark); }
.quote-card button:disabled { opacity: 0.6; cursor: not-allowed; }
.quote-card .micro {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-dim);
  margin-top: 0.75rem;
}
.social-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--green-light);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--ink-dim);
  flex-wrap: wrap;
}
.social-trust a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 600;
}
.social-trust a:hover { text-decoration: underline; }
.social-trust svg { width: 16px; height: 16px; }
.social-trust .divider { color: var(--line); }

/* SECTIONS */
section { padding: 4rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-head .eyebrow {
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-head p { color: var(--ink-dim); font-size: 1.05rem; }

/* PROSE (for content pages like privacy, terms, blog) */
.prose {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.prose h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.prose h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
}
.prose h3 { font-size: 1.25rem; margin: 1.5rem 0 0.5rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1rem; }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose li { margin-bottom: 0.4rem; }
.prose .updated { color: var(--ink-dim); font-style: italic; margin-bottom: 2rem; }

/* STEPS / HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.step { text-align: center; }
.step-num {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 20px rgba(45, 143, 63, 0.25);
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { color: var(--ink-dim); font-size: 0.95rem; }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service {
  background: white;
  padding: 2rem 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: var(--green);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.service h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.service p { color: var(--ink-dim); font-size: 0.95rem; margin-bottom: 1rem; }
.service ul { list-style: none; font-size: 0.9rem; color: var(--ink-dim); }
.service ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.service ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}
.service-price {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-size: 0.9rem;
  color: var(--ink-dim);
}
.service-price strong { color: var(--green-dark); font-size: 1.05rem; }
.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.price-card {
  background: white;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.price-card.popular { border-color: var(--green); position: relative; }
.price-card.popular::before {
  content: 'Most requested';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}
.price-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.price-card .vol { color: var(--ink-dim); font-size: 0.85rem; margin-bottom: 1rem; }
.price-card .price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.price-card .price-label { font-size: 0.8rem; color: var(--ink-dim); margin-bottom: 1rem; }
.price-card .equiv {
  font-size: 0.85rem;
  color: var(--ink-dim);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* WHY US */
.why { background: var(--green-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.why-card {
  background: white;
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.why-card .icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.why-card p { color: var(--ink-dim); font-size: 0.95rem; }

/* AREAS */
.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.area-tag {
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  border: 1px solid var(--line);
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.2s;
}
.area-tag:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  color: var(--green-dark);
}
.area-tag .pc {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-dim);
  font-weight: 400;
}

/* REVIEWS */
.reviews { background: var(--grey); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review {
  background: white;
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.stars {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.review blockquote {
  font-size: 0.98rem;
  margin-bottom: 1rem;
  color: var(--ink);
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.review-name { font-weight: 700; }
.review-loc { color: var(--ink-dim); font-size: 0.82rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: 1.02rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--green-dark);
  font-weight: 300;
  transition: transform 0.2s;
}
details[open] summary::after { transform: rotate(45deg); }
details > p { padding: 0 1.5rem 1.5rem; color: var(--ink-dim); }

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-strip h2 { margin-bottom: 1rem; }
.cta-strip p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.95; }

/* FOOTER */
footer {
  background: var(--ink);
  color: white;
  padding: 3rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-grid h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--yellow);
}
.footer-grid a, .footer-grid p {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}
.footer-grid a:hover { color: white; }
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}
.legal-disclaimer {
  max-width: 1200px;
  margin: 1rem auto 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.5;
}

/* SOCIAL ICONS */
.socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.social-icon:hover { background: var(--green); transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* MOBILE STICKY CALL */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--yellow);
  color: var(--ink);
  padding: 1rem;
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
@media (max-width: 700px) {
  .mobile-call { display: block; }
  body { padding-bottom: 60px; }
}

/* COOKIE BANNER */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 3px solid var(--green);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
  padding: 1.25rem 1.5rem;
  z-index: 200;
  display: none;
  animation: slideUpBanner 0.4s ease-out;
}
#cookieBanner.show { display: block; }
@keyframes slideUpBanner {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.cookie-text { font-size: 0.92rem; color: var(--ink); line-height: 1.5; }
.cookie-text strong { display: block; margin-bottom: 0.25rem; font-size: 1rem; }
.cookie-text a { color: var(--green-dark); }
.cookie-buttons { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.7rem 1.25rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}
.cookie-btn.accept { background: var(--green); color: white; }
.cookie-btn.accept:hover { background: var(--green-dark); }
.cookie-btn.reject { background: white; color: var(--ink); border: 1px solid var(--line); }
.cookie-btn.reject:hover { background: var(--grey); }
@media (max-width: 700px) {
  .cookie-inner { grid-template-columns: 1fr; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; }
  #cookieBanner { padding: 1rem; bottom: 60px; }
}

/* FOR WASTE COMPANIES */
.for-companies { background: var(--ink); color: white; }
.for-companies h2, .for-companies .eyebrow { color: white; }
.for-companies .eyebrow { color: var(--yellow); }
.for-companies p { color: rgba(255,255,255,0.85); }
.for-companies .partner-cta {
  background: var(--yellow);
  color: var(--ink);
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
}
.for-companies .partner-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.for-companies .partner-cta p {
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.for-companies .partner-cta a {
  display: inline-block;
  background: var(--ink);
  color: white;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.price-disclaimer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-dim);
  font-style: italic;
}
