/* ============================================
   Regional Waste Recycling — rebuilt to match live site
   Colours confirmed from page source + template.css/preset1.css/custom.css:
     --orange    #fd6519    hero background, first collage block
     --navy      #0A2463    icon colour, headings, dropdown bg, CTA button bg
     --btn-blue  #147de7    default link colour, hero button text
     --magenta   rgb(255,4,252)     second collage block
     --green     rgba(155,254,3,1) third collage block
     --charcoal  #313741    footer background (preset1.css, confirmed)
     --nav-text  #605f5e    header nav link colour (custom.css, confirmed)
     --gradient  green→orange→magenta — used deliberately for the top
                 contact bar AND the CTA band (custom.css confirms this
                 is intentional, not a stray default)
   Fonts confirmed from source: Barlow (headings), Muli (body)
   ============================================ */

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

:root {
  --orange: #fd6519;
  --navy: #0A2463;
  --btn-blue: #147de7;
  --magenta: rgb(255,4,252);
  --green: rgba(155,254,3,1);
  --grey-text: #66799e;
  --paper: rgba(222,222,222,0.5);
  --charcoal: #313741;
  --nav-text: #605f5e;
  --gradient: linear-gradient(100deg, rgb(155,254,3) 0%, rgb(253,101,25) 50%, rgb(255,4,252) 100%);
  --wrap: 1200px;
}

body {
  margin: 0;
  font-family: 'Muli', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #595959;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Barlow', sans-serif; margin: 0 0 0.5em; font-weight: 500; }
p { margin: 0 0 1em; }
a { text-decoration: none; color: var(--btn-blue); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

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

.btn {
  display: inline-block;
  font-family: 'Muli', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 25px;
}
.btn-pill { border-radius: 30px; }

/* ---------- Top contact bar (sp-section-1) ---------- */
#sp-section-1 { background: var(--gradient); color: #fff; padding: 10px 0; font-size: 16px; }
#sp-section-1 a { color: #fff; font-weight: 700; }
.topbar-inner p { margin: 0; font-weight: 600; }
.topbar-inner .sep { margin-left: 28px; }
.topbar-inner .fa { margin-right: 6px; }

/* ---------- Header (sp-section-2) ---------- */
#sp-section-2 { background: #fff; padding: 14px 0; height: 80px; display: flex; align-items: center; }
.header-inner { display: flex; align-items: center; width: 100%; }
.logo { padding-top: 10px; }
.logo-image { height: 53px; }

/* ---------- Hero (section-id-1562654680657) ---------- */
.hero { background-color: var(--orange); padding: 60px 0; }
@media (max-width: 767px) { .hero { padding: 20px 0 40px; } }
.hero-inner { display: flex; align-items: center; gap: 40px; }
.hero-media { flex: 0 0 58.33%; max-width: 58.33%; }
.hero-media img { border-radius: 2px; }
.hero-copy { flex: 1; max-width: 445px; color: #f9f8f7; }
.hero-copy h1 { color: #fff; font-size: 54px; line-height: 54px; margin-bottom: 18px; font-weight: 500; }
.hero-copy p { font-size: 18px; font-weight: 400; }
.hero-copy .btn {
  background: #fff; color: var(--btn-blue); font-weight: 600;
}
.hero-copy .btn:hover { background: rgba(255,255,255,0.9); }

@media (max-width: 767px) {
  .hero-inner { flex-direction: column; }
  .hero-media, .hero-copy { flex: 1 1 100%; max-width: 100%; }
  .hero-copy h1 { font-size: 35px; line-height: 45px; margin-bottom: 10px; }
  .hero-copy p { font-size: 14px; }
}

/* ---------- Feature icon strip (section-id-1572442434995) ---------- */
.feature-strip { padding: 50px 0; }
.feature-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item { text-align: center; }
.feature-item i { font-size: 46px; width: 46px; height: 46px; line-height: 46px; color: var(--navy); }
.feature-item h3 {
  margin-top: 20px; color: var(--grey-text); font-size: 20px; line-height: 20px; font-weight: 500;
}
@media (max-width: 767px) { .feature-strip-inner { grid-template-columns: 1fr 1fr; row-gap: 32px; } }

/* ---------- Welcome / about (section-id-1572442435017) ---------- */
.about { padding: 0 0 50px; }
.about-inner { display: flex; align-items: center; gap: 40px; }
.about-media { flex: 0 0 33.33%; max-width: 33.33%; }
.about-copy { flex: 1; }
.about-copy h3 { color: var(--navy); font-size: 44px; font-weight: 500; }
.about-copy p { font-size: 18px; color: #555; }
@media (max-width: 767px) {
  .about-inner { flex-direction: column; }
  .about-media, .about-copy { flex: 1 1 100%; max-width: 100%; }
}

/* ---------- Accreditation logos (section-id-1572442435047) ---------- */
.accreditations { padding: 20px 0 50px; }
.accreditations-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.accreditations-inner img { max-height: 70px; width: auto; }
@media (max-width: 767px) { .accreditations { display: none; } }

/* ---------- Collage panels (section-id-1572442435245) ---------- */
.collage-strip { background: var(--paper); padding: 50px 0; }
.collage-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 780px; margin: 0 auto; }
.collage-card { display: flex; flex-direction: column; }
.collage-img { aspect-ratio: 16 / 9; overflow: hidden; }
.collage-img img { width: 100%; height: 100%; object-fit: cover; }
.collage-content {
  padding: 14px; display: flex; flex-direction: column; justify-content: center; flex: 1;
  text-align: left;
}
.collage-content h3 { font-size: 13px; line-height: 15px; margin: 0 0 10px; font-weight: 500; }
.collage-content a { text-decoration: underline; font-size: 12px; }

.collage-orange { background: var(--orange); color: #fff; }
.collage-orange h3, .collage-orange a { color: #fff; }
.collage-magenta { background: var(--magenta); color: #fff; }
.collage-magenta h3, .collage-magenta a { color: #fff; }
.collage-green { background: var(--green); color: var(--navy); }
.collage-green h3, .collage-green a { color: var(--navy); }

@media (max-width: 767px) {
  .collage-strip-inner { grid-template-columns: 1fr; gap: 20px; }
  .collage-card { flex-direction: row; }
  .collage-img { flex: 0 0 50%; aspect-ratio: auto; }
  .collage-content { flex: 0 0 50%; }
}

/* ---------- Testimonial (section-id-1556529777384) ---------- */
.testimonial {
  position: relative;
  background-image: url('images/testi-background.jpg');
  background-size: cover; background-position: 50% 50%; background-attachment: fixed;
  padding: 120px 0 70px;
}
.testimonial::before {
  content: ""; position: absolute; inset: 0; background: rgba(10,36,99,0.8); mix-blend-mode: color-burn;
}
@media (max-width: 767px) { .testimonial { padding: 40px 0; } }
.testimonial-inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.testimonial i.fa-quote-left { color: #EDEEF2; font-size: 48px; }
.testimonial-quote { color: #fff; font-size: 30px; line-height: 1.4; margin: 20px 0; }
.testimonial-client { color: #fff; font-weight: 700; }
.testimonial-client span { font-weight: 400; opacity: 0.85; }

/* ---------- CTA module (section-id-1563252306501) ---------- */
.cta { background: var(--gradient); padding: 35px 0; }
@media (max-width: 767px) { .cta { padding: 30px 0; } }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-text { display: flex; align-items: center; gap: 24px; }
.cta-label { color: rgba(243,248,254,0.6); font-size: 27px; font-weight: 400; }
.cta-divider { display: inline-block; width: 2px; height: 41px; background: rgba(243,248,254,0.2); }
.cta-phone { color: #f3f8fe; font-size: 30px; font-weight: 700; }
.cta-phone a { color: inherit; }
.btn-cta { background: var(--navy); color: #fff; }
.btn-cta:hover { background: #082050; }
@media (max-width: 767px) {
  .cta-label, .cta-phone { font-size: 20px; }
  .cta-divider { display: none; }
}

/* ---------- Footer columns (sp-bottom) ---------- */
.footer-columns { background: var(--charcoal); color: rgba(255,255,255,0.5); padding: 60px 0 20px; }
.footer-columns-inner { display: block; max-width: 420px; }
.footer-col h3, .footer-col h6 { color: #fff; font-size: 18px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-col ul li a:hover { color: #fff; }

.footer-brand-name {
  display: flex; align-items: center; gap: 14px; color: #dedede; font-size: 22px;
  font-family: 'Barlow', sans-serif; margin-bottom: 24px;
}
.footer-brand-name img { height: 32px; width: 32px; }

.hours { margin-bottom: 14px; }
.hours li { display: flex; justify-content: space-between; max-width: 260px; font-size: 14px; padding: 3px 0; }
.hours .closed { color: rgba(255,255,255,0.3); }

.footer-address { font-size: 14px; font-weight: 600; letter-spacing: 0.5px; line-height: 22px; }

/* ---------- Footer bottom bar (sp-footer) ---------- */
.footer-bottom { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.copyright { color: rgba(255,255,255,0.4); font-size: 13px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
