/* ==========================================================
   Brissy Bins — Redesign
   Brand: dark forest green (#184d18) + white
   ========================================================== */

:root {
  /* Core palette — white + dark green theme */
  --bg: #FFFFFF;
  --bg-alt: #F5F8F3;         /* subtle green-tinted off-white */
  --surface: #FFFFFF;
  --ink: #0C1F0C;            /* near-black with green hint */
  --ink-2: #2F4332;
  --muted: #6C7A6E;
  --line: #E3E8E0;

  /* Brand green from logo */
  --accent: #184D18;         /* logo dark forest green */
  --accent-600: #0F3A0F;
  --accent-400: #2A6A2A;
  --accent-50: #E8F1E5;
  --accent-100: #D0E3CB;

  /* Supporting */
  --cream: #F7F3E9;
  --green-50: #EEF5EA;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(12,31,12,.06), 0 1px 3px rgba(12,31,12,.05);
  --shadow: 0 10px 30px -12px rgba(12,31,12,.22);
  --shadow-lg: 0 30px 60px -20px rgba(12,31,12,.30);

  --container: 1200px;

  --font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Fraunces', 'Times New Roman', serif;

  --ease: cubic-bezier(.2,.7,.2,1);
   --forest: ;
    --moss: #2d5a3d;
    --sage: #4a7c5f;
    --lime: #6db370;
    --cream: #f5f0e8;
    --warm-white: #fdfbf7;
    --charcoal: #1e2420;
    --muted: #7a8c82;
	
	--primary-green: #8DB600;
	--primary-green-hover: #7aa000;
	--navy-blue: #2A3B4C;
	--bg-light: #f9fafb;
	--text-main: #1f2937;
	--text-muted: #4b5563;
	--border-color: #e5e7eb; 
	--white: #ffffff;

}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection { background: var(--accent); color: #fff; }

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

/* Typography */
.h1 {
  font-size: clamp(2.3rem, 5.2vw, 4.6rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.022em;
  margin: 0 0 24px;
}
.h1 .accent { color: var(--accent); }
.h1 .serif { display: block; font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--ink-2); margin-top: 6px; }

.h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 20px;
}
.h2 .serif { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--ink-2); }

.lede {
  font-size: 1.07rem;
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0 0 24px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  padding: 8px 14px;
  border: 1px solid var(--accent-100);
  border-radius: 999px;
  background: var(--accent-50);
  margin-bottom: 18px;
}

.serif { font-family: var(--font-serif); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn i { font-size: 0.85em; }
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-600); border-color: var(--accent-600); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--outline:hover { background: var(--accent); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); padding: 10px 16px; }
.btn--ghost:hover { background: var(--accent-50); color: var(--accent); }
.btn--white { background: #fff; color: var(--accent); border-color: #fff; }
.btn--white:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--block { width: 100%; }

/* Header wrapper */
.site-top { position: sticky; top: 0; z-index: 60; }

/* Topbar */
.topbar {
  background: var(--accent);
  color: #DCEAD7;
  font-size: 0.83rem;
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 24px;
  gap: 24px;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--cream); }
.topbar__right { display: flex; gap: 14px; align-items: center; }
.topbar .sep { opacity: .4; }
@media (max-width: 720px) {
  .topbar__left { display: none; }
  .topbar__inner { justify-content: center; }
}

/* Header */
.header {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner.container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700;
}
.brand__logo {
  height: 54px; width: auto;
  display: block;
  transition: transform .25s var(--ease);
}
.brand:hover .brand__logo { transform: scale(1.03); }
.brand__text {
  display: none;
  flex-direction: column; line-height: 1;
  font-size: 0.72rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--muted);
}

.nav { display: flex; gap: 6px; }
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-2);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav a:hover { background: var(--accent-50); color: var(--accent); }

.header__cta { display: flex; gap: 10px; align-items: center; }

.hamburger { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; transition: transform .2s, opacity .2s; }
.header.open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.open .hamburger span:nth-child(2) { opacity: 0; }
.header.open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav { display: none; }
  .header__cta .btn--ghost { display: none; }
  .hamburger { display: block; }
  .header.open .nav {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 16px; gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .header.open .nav a { padding: 14px 16px; border-radius: 12px; }
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  padding: 100px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    url('img/herobg.png');
  background-size: cover;
  background-position: center;
}
.section-hero .h2 {
	color: #fff;
}
.section-hero .h2 .serif {
	color: #fff;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(12,31,12,.92) 0%, rgba(24,77,24,.85) 45%, rgba(24,77,24,.55) 100%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
.mrst-container {
	max-width: 1280px;
	margin: 0 auto;
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 64px 0; }
}
.hero__copy .h1 { color: #fff; }
.hero__copy .h1 .accent { color: #A8D69F; }
.hero__copy .h1 .serif { color: rgba(255,255,255,.85); }
.hero__copy .lede { color: rgba(255,255,255,.85); max-width: 55ch; }
.hero .eyebrow {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
  color: #fff;
  backdrop-filter: blur(6px);
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero .btn--primary { background: #fff; color: var(--accent); border-color: #fff; }
.hero .btn--primary:hover { background: var(--accent-600); color: #fff; border-color: var(--accent-600); }
.hero .btn--outline { color: #fff; border-color: rgba(255,255,255,.6); }
.hero .btn--outline:hover { background: #fff; color: var(--accent); border-color: #fff; }

.hero__trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 0.92rem;
  color: rgba(255,255,255,.9);
}
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust i { color: #A8D69F; }

.hero__logos {
  margin-top: 72px;
  padding: 28px 24px 0;
  display: flex; align-items: center; justify-content: center; gap: 40px;
  color: rgba(255,255,255,.7);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.hero__logos i { font-size: 1.4rem; opacity: .65; color: #fff; }
.hero__logos span { letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: #fff; }

/* Quote card */
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  color: var(--ink);
}
.quote-card__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.quote-card h3 { margin: 0; font-size: 1.35rem; font-weight: 700; color: var(--ink); }
.badge {
  font-size: 0.75rem; font-weight: 600;
  background: var(--accent-50);
  color: var(--accent);
  padding: 6px 12px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}

/* Forms */
.quote-form label,
.quote__form-card label {
  display: flex; flex-direction: column;
  font-size: 0.82rem; font-weight: 600; color: var(--ink-2);
  gap: 6px; margin-bottom: 14px;
}
.quote-form input,
.quote-form select,
.quote__form-card input,
.quote__form-card select,
.quote__form-card textarea {
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
  font-weight: 500;
}
.quote-form input:focus,
.quote-form select:focus,
.quote__form-card input:focus,
.quote__form-card select:focus,
.quote__form-card textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-50);
}
.micro { font-size: 0.78rem; color: var(--muted); margin: 10px 0 0; text-align: center; }

/* Sections */
.section { padding: 96px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

.section__head { max-width: 760px; margin-bottom: 48px; }
.section__head--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  max-width: none;
}
.section__head--split .lede { margin-bottom: 0; }
@media (max-width: 860px) { .section__head--split { grid-template-columns: 1fr; gap: 16px; } }

/* Services */
.services { background: #fff; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services__grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: #fff;
  box-shadow: var(--shadow);
}
.service-card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--accent-50);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--accent); color: #fff;
}
.service-card h3 { margin: 0 0 10px; font-size: 1.2rem; font-weight: 700; }
.service-card p { margin: 0; color: var(--ink-2); font-size: 0.95rem; }
.chip {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-50);
  padding: 5px 10px;
  border-radius: 999px;
}

/* Sizes */
.sizes { background: var(--bg-alt); }
.sizes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .sizes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .sizes__grid { grid-template-columns: 1fr; } }

.size-card {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.size-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.size-card--featured {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.size-card--featured h4,
.size-card--featured .size-card__num { color: #fff; }
.size-card--featured p { color: rgba(255,255,255,.8); }
.size-card--featured ul { color: rgba(255,255,255,.88); }
.size-card--featured .size-card__tag { background: #fff; color: var(--accent); }
.size-card--featured ul i { color: #A8D69F; }

.size-card__top {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 18px;
}
.size-card__num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.size-card__tag {
  background: var(--accent-50);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.size-card__ribbon {
  position: absolute; top: -12px; right: 20px;
  background: var(--cream);
  color: var(--accent);
  font-size: 0.72rem; font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.size-card h4 { margin: 0 0 8px; font-size: 1.2rem; font-weight: 700; }
.size-card p { margin: 0 0 16px; color: var(--ink-2); font-size: 0.95rem; }
.size-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 0.88rem; color: var(--ink-2); }
.size-card ul i { color: var(--accent); margin-right: 8px; }

/* How it works */
.how { background: #fff; position: relative; }
.how__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
@media (max-width: 860px) { .how__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .how__steps { grid-template-columns: 1fr; } }

.how__steps li {
  background: var(--bg-alt);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.how__steps li:hover {
  transform: translateY(-4px);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.how__steps li:hover h3, .how__steps li:hover p { color: #fff; }
.how__steps li:hover .step-num { color: #A8D69F; }

.step-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.how__steps h3 { margin: 0 0 8px; font-size: 1.15rem; font-weight: 700; }
.how__steps p { margin: 0; color: var(--ink-2); font-size: 0.92rem; }

/* Why — with image */
.why { background: var(--bg-alt); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) { .why__grid { grid-template-columns: 1fr; gap: 40px; } }

.why__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--accent);
}
.why__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.why__media:hover img { transform: scale(1.04); }
.why__media__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
}
.why__media__badge strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--accent); font-family: var(--font-serif); line-height: 1; }
.why__media__badge span { font-size: 0.82rem; color: var(--ink-2); display: block; margin-top: 4px; }
.why__media__badge i { font-size: 1.4rem; color: var(--accent); }

.why__list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.why__list li {
  display: flex; gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.why__list li:hover { border-color: var(--accent); transform: translateX(4px); }
.why__icon {
  width: 46px; height: 46px;
  background: var(--accent-50);
  color: var(--accent);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.why__list h4 { margin: 0 0 4px; font-size: 1.02rem; font-weight: 700; }
.why__list p { margin: 0; color: var(--ink-2); font-size: 0.9rem; }

/* Testimonials */
.testimonials { background: #fff; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) { .testimonials__grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 6px; left: 18px;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .3;
}
.testimonial blockquote {
  margin: 0 0 18px;
  padding-top: 28px;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
}
.testimonial figcaption { font-size: 0.88rem; }
.testimonial figcaption strong { display: block; color: var(--ink); font-weight: 700; }
.testimonial figcaption span { color: var(--muted); }

/* Areas — with Brisbane image */
.areas {
  background: var(--bg-alt);
  position: relative;
}
.areas__grid {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0 0 32px;
}
@media (max-width: 860px) { .areas__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .areas__grid { grid-template-columns: repeat(2, 1fr); } }

.areas__grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: all .2s var(--ease);
  cursor: default;
}
.areas__grid li:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--accent);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s, gap .2s;
}
.link-arrow:hover { gap: 14px; }

/* FAQ */
.faq { background: #fff; }
.faq__wrap { max-width: 860px; }
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq details {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  transition: border-color .2s, background .2s;
}
.faq details:hover { border-color: var(--accent-100); }
.faq details[open] { background: #fff; border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq summary {
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "＋";
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform .2s;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 14px 0 0;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Quote section */
.quote { background: var(--bg-alt); }
.quote__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 960px) { .quote__grid { grid-template-columns: 1fr; gap: 32px; } }

.quote__contact { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; font-size: 1rem; }
.quote__contact li { display: flex; align-items: center; gap: 14px; color: var(--ink-2); }
.quote__contact i { width: 40px; height: 40px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent); }
.quote__contact a { color: var(--ink); font-weight: 600; }
.quote__contact a:hover { color: var(--accent); }

.quote__form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .row-2 { grid-template-columns: 1fr; } }

/* CTA strip with image */
.cta-strip {
  position: relative;
  color: #fff;
  padding: 64px 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1590856029826-c7a73142bbf1?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.cta-strip::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,31,12,.92) 0%, rgba(24,77,24,.82) 100%);
  z-index: -1;
}
.cta-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.cta-strip em { font-family: var(--font-serif); font-style: italic; color: #A8D69F; }

/* Footer */
.footer {
  background: var(--accent-600);
  color: #C5D9C0;
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

.footer .brand__logo {
  height: 64px;
  filter: brightness(0) invert(1);
}
.footer__brand p { margin: 18px 0 20px; font-size: 0.92rem; line-height: 1.6; max-width: 36ch; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center;
  color: #fff;
  transition: all .2s;
}
.socials a:hover { background: #fff; color: var(--accent); border-color: #fff; transform: translateY(-2px); }

.footer__col h5 {
  color: #fff; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin: 0 0 16px;
}
.footer__col a, .footer__col span {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  font-size: 0.92rem;
  color: #C5D9C0;
  transition: color .15s;
}
.footer__col a:hover { color: #fff; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer__bottom-inner {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: rgba(255,255,255,.55);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

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

/* ── HERO HEADER ── */
  .section-hero {
    position: relative;
    padding: 80px 60px 64px;
    text-align: center;
    background: var(--accent-600);
    overflow: hidden;
  }
  

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 24px;
    position: relative;
  }
  
  .section-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 7vw, 76px);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.06;
    letter-spacing: -1.5px;
    position: relative;
    margin-bottom: 22px;
  }
  .section-hero h1 em {
    font-style: italic;
    color: var(--lime);
  }

  .section-hero p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(245,240,232,0.6);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.75;
    position: relative;
  }

  .hero-badge {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%) rotate(10deg);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: var(--forest);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    animation: spin-slow 12s linear infinite;
  }
  @keyframes spin-slow {
    to { transform: translateY(-50%) rotate(370deg); }
  }

  /* ── GRID ── */
  .waste-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--charcoal);
  }

  /* ── CARD ── */
  .waste-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
    background: var(--forest);
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.6s ease forwards;
  }
  .waste-card:nth-child(1) { animation-delay: 0.05s; }
  .waste-card:nth-child(2) { animation-delay: 0.15s; }
  .waste-card:nth-child(3) { animation-delay: 0.25s; }
  .waste-card:nth-child(4) { animation-delay: 0.35s; }
  .waste-card:nth-child(5) { animation-delay: 0.45s; }
  .waste-card:nth-child(6) { animation-delay: 0.55s; }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.7s ease;
    /*! filter: saturate(0.65) brightness(0.5); */
  }
  .waste-card:hover .card-img {
    transform: scale(1.08);
    /*! filter: saturate(0.9) brightness(0.38); */
  }

  .card-overlay {
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;

    background: linear-gradient(
      to top,
      rgba(8,24,14,0.98) 0%,
      rgba(8,24,14,0.62) 42%,
      rgba(8,24,14,0.08) 100%
    );
    transition: background 0.4s;
  }

  .card-num {
    position: absolute;
    top: 20px;
    left: 22px;
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    color: rgba(200,230,192,0.45);
    letter-spacing: 2px;
    transition: color 0.3s;
  }
  .waste-card:hover .card-num { color: var(--lime); }

  .card-icon {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(109,179,112,0.12);
    border: 1px solid rgba(109,179,112,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s, transform 0.4s, border-color 0.3s;
    backdrop-filter: blur(6px);
  }
  .waste-card:hover .card-icon {
    background: var(--lime);
    border-color: var(--lime);
    transform: scale(1.12) rotate(-6deg);
  }

  .card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 26px 28px;
  }

  .card-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 10px;
    background: rgba(109,179,112,0.3);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(109,179,112,0.28);
  }

  .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 12px;
    transition: color 0.3s;
  }
  .waste-card:hover .card-title { color: #fff; }

  .card-desc {
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    line-height: 1.72;
    margin-bottom: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.4s ease;
  }
  .waste-card:hover .card-desc {
    max-height: 130px;
    opacity: 1;
  }

  .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lime);
    text-decoration: none;
    transition: gap 0.3s;
  }
  .card-cta svg { transition: transform 0.3s; }
  .waste-card:hover .card-cta { gap: 13px; }
  .waste-card:hover .card-cta svg { transform: translateX(4px); }

  .card-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), var(--sage));
    transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .waste-card:hover .card-line { width: 100%; }

  /* ── STATS STRIP ── */
  .stats-strip {
    background: var(--charcoal);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(109,179,112,0.15);
  }
  .stat-item {
    text-align: center;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--lime);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.45);
  }
  .stat-divider {
    width: 1px;
    height: 52px;
    background: rgba(109,179,112,0.2);
  }

  /* ── BOTTOM BANNER ── */
  .bottom-banner {
    background: var(--moss);
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .banner-left {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .banner-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.15);
  }
  .banner-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
    margin-bottom: 5px;
  }
  .banner-headline {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cream);
  }
  .banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 4px;
    background: var(--lime);
    color: var(--forest);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(109,179,112,0.35);
  }
  .banner-cta:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(109,179,112,0.4);
  }

  /* Responsive */
  @media (max-width: 820px) {
    .waste-grid { grid-template-columns: 1fr 1fr; }
    .hero-badge { display: none; }
    .stat-divider { display: none; }
    .stats-strip { justify-content: space-evenly; }
  }
  @media (max-width: 520px) {
    .waste-grid { grid-template-columns: 1fr; }
    .section-hero { padding: 60px 24px 52px; }
    .bottom-banner { flex-direction: column; align-items: flex-start; }
  }
  
  
  /* new css */
  
 
    /* Hero Section */
    .hero {
      background-color: var(--navy-blue);
      color: var(--white);
      padding: 4rem 1rem;
      text-align: center;
      margin-bottom: 3rem;
    }

    .hero-content {
      max-width: 56rem;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: 2.25rem;
      font-weight: 800;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .hero p {
      font-size: 1.125rem;
      color: #d1d5db;
    }

    /* Skip Bin Cards Grid */
    .skip-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    /* Card Design */
    .skip-card {
      background-color: var(--white);
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .skip-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      border-color: var(--primary-green);
    }

    .skip-image-container {
      background-color: #f3f4f6;
      padding: 2rem;
      text-align: center;
      border-bottom: 1px solid var(--border-color);
    }

    .skip-image-container img {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      max-height: 200px;
    }

    .skip-content {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .skip-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .skip-title {
      font-size: 1.75rem;
      font-weight: 800;
      color: var(--navy-blue);
    }

    .skip-badge {
      background-color: #eef2e6;
      color: var(--primary-green-hover);
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 700;
    }

    .skip-description {
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }

    /* Dimensions Table */
    .dimensions-box {
      background-color: var(--bg-light);
      border-radius: 0.5rem;
      padding: 1rem;
      margin-bottom: 1.5rem;
      border: 1px dashed #cbd5e1;
    }

    .dimensions-row {
      display: flex;
      justify-content: space-between;
      padding: 0.25rem 0;
      font-size: 0.95rem;
    }

    .dimensions-row strong {
      color: var(--navy-blue);
    }

    .dimensions-row span {
      color: var(--text-muted);
    }

    /* Best For List */
    .best-for-title {
      font-weight: 700;
      color: var(--navy-blue);
      margin-bottom: 0.75rem;
      font-size: 1.05rem;
    }

    .best-for-list {
      margin-bottom: 2rem;
      flex-grow: 1;
    }

    .best-for-list li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .best-for-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--primary-green);
      font-weight: bold;
    }

    /* Buttons */
    .btn-book {
      display: block;
      width: 100%;
      text-align: center;
      background-color: var(--primary-green);
      color: var(--white);
      font-weight: 700;
      padding: 1rem;
      border-radius: 0.5rem;
      transition: background-color 0.2s;
      font-size: 1.1rem;
    }

    .btn-book:hover {
      background-color: var(--primary-green-hover);
    }

    /* Bottom CTA Section */
    .cta-section {
      margin-top: 4rem;
      background-color: #eef2e6;
      border-radius: 1rem;
      padding: 3rem 2rem;
      text-align: center;
      border: 1px solid #d4e0b3;
    }

    .cta-section h2 {
      font-size: 1.875rem;
      font-weight: 800;
      color: var(--navy-blue);
      margin-bottom: 1rem;
    }

    .cta-section p {
      color: var(--text-muted);
      max-width: 48rem;
      margin: 0 auto 2rem auto;
      font-size: 1.05rem;
    }
.page-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px 70px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 30px;
    }

    .section-title h1 {
      font-size: clamp(28px, 4vw, 44px);
      color: #111827;
      margin-bottom: 10px;
    }

    .section-title p {
      max-width: 820px;
      margin: 0 auto;
      font-size: 16px;
      color: #4b5563;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      margin-top: 34px;
      margin-bottom: 50px;
    }

    .card {
      background: #fff;
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
      border: 1px solid #e5e7eb;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
    }

    .card .icon {
      width: 58px;
      height: 58px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      background: #e8f6ec;
      color: #2f9e44;
      font-size: 28px;
      margin-bottom: 16px;
    }

    .card h3 {
      font-size: 22px;
      margin-bottom: 10px;
      color: #111827;
    }

    .card p {
      color: #4b5563;
      font-size: 15px;
    }

    .table-section {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      border: 1px solid #e5e7eb;
    }

    .table-responsive {
      width: 100%;
      overflow-x: auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 900px;
    }

    thead th {
      padding: 22px 18px;
      text-align: left;
      font-size: 18px;
      font-weight: 700;
      color: #111827;
      border-right: 1px solid rgba(255, 255, 255, 0.25);
    }

    thead th:first-child {
      background: #e5e7eb;
      color: #111827;
      width: 18%;
    }

    thead th:nth-child(2) {
      background: #63b32e;
      color: #fff;
      width: 42%;
    }

    thead th:nth-child(3) {
      background: #f9b500;
      color: #111827;
      width: 40%;
    }

    tbody td {
      padding: 22px 18px;
      vertical-align: top;
      font-size: 15px;
      color: #374151;
      border-top: 1px solid #e5e7eb;
      border-right: 1px solid #e5e7eb;
      background: #fff;
    }

    tbody td:first-child {
      font-weight: 700;
      color: #111827;
      background: #fafafa;
    }

    tbody tr:hover td {
      background: #fcfcfc;
    }

    .col-head {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .tick {
      font-size: 24px;
      line-height: 1;
      color: #fff;
    }

    .cross {
      font-size: 24px;
      line-height: 1;
      color: #111827;
    }

    .cta {
      margin-top: 40px;
      background: linear-gradient(135deg, #63b32e, #4c9f22);
      color: #fff;
      padding: 30px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cta h2 {
      font-size: 26px;
      margin-bottom: 6px;
    }

    .cta p {
      color: rgba(255, 255, 255, 0.92);
    }

    .cta a {
      display: inline-block;
      background: #fff;
      color: #2f9e44;
      text-decoration: none;
      font-weight: 700;
      padding: 14px 22px;
      border-radius: 12px;
      white-space: nowrap;
    }

    @media (max-width: 992px) {
      .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-wrap {
        padding: 28px 16px 50px;
      }

      .cards-grid {
        grid-template-columns: 1fr;
      }

      .card {
        padding: 22px;
      }

      .cta {
        padding: 22px;
      }

      .cta h2 {
        font-size: 22px;
      }
    }
    /* Responsive adjustments */
    @media (min-width: 768px) {
      .skip-grid { grid-template-columns: repeat(2, 1fr); }
      .hero h1 { font-size: 3rem; }
    }

    @media (min-width: 1024px) {
      .skip-grid { grid-template-columns: repeat(3, 1fr); }
    }

     /* Layout Containers */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .main-wrapper {
      min-height: 100vh;
      padding-bottom: 5rem;
    }

    /* Hero Section */
    .hero {
      background-color: var(--navy-blue);
      color: var(--white);
      padding: 4rem 1rem;
      text-align: center;
      margin-bottom: 2rem;
    }

    .hero-content {
      max-width: 56rem;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: 2.25rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.125rem;
      color: #d1d5db;
    }

    /* Search & Filter Container */
    .filter-container {
      background-color: var(--white);
      padding: 1rem;
      border-radius: 0.75rem;
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      border: 1px solid var(--border-color);
      margin-bottom: 2rem;
      position: sticky;
      top: 0;
      z-index: 10;
    }

    /* Search Input */
    .search-wrapper {
      max-width: 42rem;
      margin: 0 auto;
      position: relative;
    }

    .search-icon {
      position: absolute;
      top: 50%;
      left: 0.75rem;
      transform: translateY(-50%);
      width: 1.25rem;
      height: 1.25rem;
      fill: none;
      stroke: #9ca3af;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .search-input {
      display: block;
      width: 100%;
      padding: 0.75rem 0.75rem 0.75rem 2.5rem;
      border: 1px solid #d1d5db;
      border-radius: 0.5rem;
      font-size: 1rem;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .search-input:focus {
      outline: none;
      border-color: var(--primary-green);
      box-shadow: 0 0 0 2px rgba(141, 182, 0, 0.2);
    }

    /* Alphabet Navigation */
    .alphabet-nav {
      display: flex;
      overflow-x: auto;
      gap: 0.5rem;
      margin-top: 1.5rem;
      padding-bottom: 0.5rem;
      justify-content: flex-start;
      /* Hide scrollbar */
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .alphabet-nav::-webkit-scrollbar {
      display: none;
    }

    .alphabet-link {
      flex-shrink: 0;
      width: 2.5rem;
      height: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background-color: #f3f4f6;
      color: #374151;
      font-weight: 500;
      transition: all 0.2s ease;
    }

    .alphabet-link:hover {
      background-color: var(--primary-green);
      color: var(--white);
    }

    /* Suburb List Sections */
    .suburb-container {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .letter-section {
      scroll-margin-top: 140px; /* Offset for sticky header */
    }

    .letter-header {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 0.5rem;
    }

    .letter-header h2 {
      font-size: 1.875rem;
      font-weight: 700;
      color: var(--navy-blue);
    }

    /* Grid Layout for Suburbs */
    .suburb-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      list-style: none;
    }

    .suburb-item-inner {
      display: flex;
      align-items: center;
      padding: 0.75rem;
      border-radius: 0.5rem;
      color: var(--text-muted);
    }

    /* Clickable Suburb Card */
    .suburb-card {
      background-color: var(--white);
      border: 1px solid var(--border-color);
      color: var(--navy-blue);
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .suburb-card:hover {
      border-color: var(--primary-green);
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    /* Bullets */
    .bullet {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: #d1d5db;
      margin-right: 0.75rem;
      flex-shrink: 0;
    }

    .bullet-active {
      width: 8px;
      height: 8px;
      background-color: var(--primary-green);
    }

    /* Call to Action */
    .cta-box {
      margin-top: 4rem;
      background-color: #F4F7F6;
      border-radius: 1rem;
      padding: 2rem;
      text-align: center;
      border: 1px solid var(--border-color);
    }

    .cta-box h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--navy-blue);
      margin-bottom: 0.75rem;
    }

    .cta-box p {
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .cta-btn {
      display: inline-block;
      background-color: var(--primary-green);
      color: var(--white);
      font-weight: 700;
      padding: 0.75rem 2rem;
      border-radius: 0.5rem;
      transition: background-color 0.2s;
    }

    .cta-btn:hover {
      background-color: var(--primary-green-hover);
    }

    /* Media Queries for Responsiveness */
    @media (min-width: 640px) {
      .suburb-grid { grid-template-columns: repeat(2, 1fr); }
      .hero h1 { font-size: 3rem; }
    }
    
    @media (min-width: 768px) {
      .suburb-grid { grid-template-columns: repeat(3, 1fr); }
      .alphabet-nav { justify-content: center; }
    }

    @media (min-width: 1024px) {
      .suburb-grid { grid-template-columns: repeat(4, 1fr); }
    } 