/* :root {
  --aw-bg-soft: #f5f7f4;
  --aw-green: #00a651;
  --aw-green-mid: #03a05c;
  --aw-green-dark: #009047;
  --aw-text-main: #143b2a;
  --aw-text-muted: #445248;
  --aw-border-soft: #dde6dd;
  --aw-nav-bg: #ffffff;
} */
:root {
  --aw-bg-soft: #f5f7f4;
  --aw-green: #00a651;
  --aw-green-mid: #03a05c;
  --aw-green-dark: #009047;
  --aw-text-main: #143b2a;
  --aw-text-muted: #445248;
  --aw-border-soft: #dde6dd;
  --aw-nav-bg: #ffffff;

  /* brand link colours */
  --aw-link: #006c3f;
  --aw-link-hover: #004d2d;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--aw-text-main);
}

/* Global links */
/* Global link theme */

.aw-main a,
.aw-sidebar a,
.aw-footer a,
.aw-card a,
.aw-link-list a {
  color: var(--aw-link) !important;
  text-decoration: none;
}

.aw-main a:hover,
.aw-main a:focus,
.aw-sidebar a:hover,
.aw-sidebar a:focus,
.aw-footer a:hover,
.aw-footer a:focus,
.aw-card a:hover,
.aw-card a:focus,
.aw-link-list a:hover,
.aw-link-list a:focus {
  color: var(--aw-link-hover) !important;
  text-decoration: underline;
}

/* Do not affect nav items */

.aw-nav__link,
.aw-nav__link:hover,
.aw-nav__link:focus {
  text-decoration: none;
  color: inherit;
}

/* Header / nav */

.aw-header {
  background: var(--aw-nav-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1050;
  /* raised so search bar + backdrop sit correctly */
}

.aw-navbar .navbar-brand {
  margin-right: auto;
}

.aw-logo {
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--aw-text-main);
  display: flex;
  align-items: center;
}

.aw-logo span {
  font-weight: 400;
  color: var(--aw-text-muted);
  font-size: 1.9rem;
}

.aw-logo-mark {
  height: 80px;
  width: auto;
  margin-right: 0.6rem;
}

.aw-nav__link {
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 0.25rem;
  margin: 0 0.2rem;
  color: var(--aw-text-muted) !important;
}

/* Animated underline on desktop */

@media (min-width: 768px) {
  .aw-nav__link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.3rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--aw-green-mid), var(--aw-green-dark));
    transform: translateX(-50%);
    transition: width 0.22s ease;
  }

  .aw-nav__link:hover::after {
    width: 100%;
  }

  .aw-nav__link--active::after {
    width: 100%;
  }
}

.aw-nav__link:hover {
  color: var(--aw-text-main) !important;
}

.aw-nav__link--active {
  color: var(--aw-text-main) !important;
  font-weight: 600;
}

/* Search trigger in nav */

.aw-nav__search-trigger {
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* use same font style as other nav items via aw-nav__link class */

.aw-nav__search-icon {
  font-size: 0.95rem;
  margin-right: 0.25rem;
  position: relative;
  top: 1px;
  /* tiny optical tweak */
}

.aw-nav__search-label {
  /* text is already uppercase from aw-nav__link; nothing extra needed */
}

.aw-nav__search-trigger:hover,
.aw-nav__search-trigger:focus {
  text-decoration: none;
  color: var(--aw-green-dark);
}

/* Slide down search bar */

.aw-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #ffffff;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--aw-border-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1040;
}

.aw-search--open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.aw-search__form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.aw-search__input {
  flex: 1 1 auto;
}

.aw-search__submit {
  white-space: nowrap;
}

.aw-search__close {
  white-space: nowrap;
  font-size: 0.8rem;
}

/* Overlay backdrop */

.aw-search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1030;
}

.aw-search-backdrop--visible {
  opacity: 1;
  visibility: visible;
}

/* Optional body lock when search is open */

body.aw-search-open {
  overflow: hidden;
}

/* Custom burger icon */

.aw-burger {
  border: 0;
  padding: 0.25rem 0.5rem;
  position: relative;
  z-index: 1000;
}

.aw-burger:focus {
  outline: none;
  box-shadow: none;
}

.aw-burger-icon,
.aw-burger-icon::before,
.aw-burger-icon::after {
  display: block;
  position: relative;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--aw-text-main);
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.aw-burger-icon::before,
.aw-burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.aw-burger-icon::before {
  top: -6px;
}

.aw-burger-icon::after {
  top: 6px;
}

.aw-burger:not(.collapsed) .aw-burger-icon {
  background-color: transparent;
}

.aw-burger:not(.collapsed) .aw-burger-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.aw-burger:not(.collapsed) .aw-burger-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */

.aw-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 4.5rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 166, 81, 0.05), transparent 55%),
    var(--aw-bg-soft);
}

.aw-hero img {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  overflow: hidden;
}

.aw-hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: #5d7465;
  margin-bottom: 0.35rem;
}

.aw-hero__title {
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--aw-text-main);
  margin-bottom: 0.6rem;
}

.aw-hero__highlight {
  background: rgba(0, 166, 81, 0.14);
  padding: 0.15em 0.35em;
  border-radius: 999px;
}

.aw-hero__subtitle {
  font-size: 0.96rem;
  color: var(--aw-text-muted);
  max-width: 36rem;
  margin-bottom: 1.6rem;
}

/* Search card */

.aw-hero-search {
  background: #c9cec9;
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  padding: 0.9rem 1rem;
  max-width: 44rem;
  margin-bottom: 1.2rem;
}

.aw-hero-search__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7b8b80;
  margin-bottom: 0.15rem;
}

.aw-hero-search .input-group {
  border-radius: 5px;
  overflow: hidden;
  background: #f7faf7;
  border: 1px solid var(--aw-border-soft);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.aw-hero-search .input-group:focus-within {
  border-color: var(--aw-green);
  box-shadow: 0 0 0 2px rgba(0, 166, 81, 0.16);
  background: #ffffff;
}

.aw-hero-search .form-control {
  border: 0;
  background: transparent;
  font-size: 0.9rem;
  height: calc(2.4em + 1rem + 2px) !important;
}

.aw-hero-search .form-control::placeholder {
  color: #9aa89e;
}

.aw-hero-search .form-control:focus {
  box-shadow: none;
}

.aw-hero-search__btn {
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  box-shadow: 0 8px 20px rgba(0, 166, 81, 0.35);
  border: none;
}

.btn-aw-green {
  background-color: var(--aw-green);
  color: #fff;
}

.btn-aw-green:hover {
  background-color: var(--aw-green-dark);
  color: #fff;
}

/* Popular chips */

/* Popular areas line */

/* Popular areas */

.aw-hero-popular {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #5d7465;
}

.aw-hero-popular__label {
  display: block;
  margin-bottom: 0.35rem;
}

/* One-line chip row */
.aw-hero-popular__chips {
  display: flex;
  flex-wrap: nowrap;
  /* never wrap to second line */
  gap: 0.4rem;
  overflow: hidden;
  /* hide anything that would spill onto line two */
}

/* Chip tweaks (you can keep your existing .aw-chip rules if you like) */
.aw-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.9rem;
  border-radius: 999px;
  background: #d4ddd6;
  font-size: 0.8rem;
  color: #285239;
  text-decoration: none;
  white-space: nowrap;
}

.aw-chip:hover {
  text-decoration: none;
  background: #c3d7c8;
}

/* Jumbotron background */

.jumbotron {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  border-radius: 0;
  background-color: #ffffff;
}

.jumbotron-background {
  position: absolute;
  right: 50%;
  bottom: 0;
  margin: auto;
  z-index: 1;
  overflow: hidden;
  height: 3000px;
  width: 3000px;
  background-image: radial-gradient(#b7d1c4, #7ea392);
  transform: translateX(85%) rotate(15deg);
  border-radius: 5000px;
}

.jumbotron .container-fluid {
  position: relative;
  z-index: 2;
  color: #212121;
}

/* Main content below hero */

.aw-main {
  padding: 2.5rem 0 4rem;
  background: #ffffff;
}

.aw-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  padding: 1.8rem 1.6rem;
}

.aw-card__title {
  font-weight: 600;
}

/* Intro */

.aw-card--intro p {
  font-size: 0.95rem;
  color: var(--aw-text-muted);
}

/* Side cards */

.aw-card--side {
  font-size: 0.9rem;
}

.aw-link-list {
  list-style: none;
  padding-left: 0;
}

.aw-link-list li+li {
  margin-top: 0.25rem;
}

/* Articles card */

.aw-card--articles {
  padding-top: 1.4rem;
}

.aw-articles__view-all {
  font-weight: 500;
}

.aw-article-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.aw-article-list__item+.aw-article-list__item {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--aw-border-soft);
}

.aw-article-list__title {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--aw-text-main);
}

.aw-article-list__title:hover {
  text-decoration: underline;
}

.aw-article-list__meta {
  margin-bottom: 0;
  color: var(--aw-text-muted);
}

/* Amazon / product picks */

.aw-card--amazon {
  font-size: 0.9rem;
}

.aw-amazon-item {
  padding: 0.6rem 0;
  border-top: 1px solid var(--aw-border-soft);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.aw-amazon-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.aw-amazon-item__title {
  font-weight: 600;
}

.aw-amazon-item__meta {
  font-size: 0.85rem;
  color: var(--aw-text-muted);
}

.aw-amazon-more {
  display: inline-block;
  margin-top: 0.7rem;
}

/* Little coloured tags */

.aw-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 0.1rem;
}

.aw-tag--blue {
  background: #e3ebff;
  color: #24438f;
}

.aw-tag--teal {
  background: #d5f4f0;
  color: #116861;
}

.aw-tag--purple {
  background: #ece3ff;
  color: #49327a;
}

/* Area highlight */

.aw-card--area {
  margin-top: 1rem;
  background: #f0f3f0;
}

.aw-area-label {
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #6f8273;
}

.aw-area-link {
  font-weight: 500;
}

/* Sponsors */

.aw-card--sponsors {
  font-size: 0.9rem;
}

/* Steps */

.aw-steps {
  border-top: 1px solid var(--aw-border-soft);
  padding-top: 1.1rem;
}

.aw-step {
  align-items: center;
  text-align: center;
}

.aw-step__badge {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  background: rgba(0, 166, 81, 0.12);
  color: var(--aw-green-dark);
}

.aw-step__label {
  margin: 0;
  font-size: 0.86rem;
  color: var(--aw-text-muted);
}

/* County list */

.aw-county-list__col p {
  margin-bottom: 0.35rem;
}

.aw-county-list .uk {
  font-size: 0.9rem;
  color: #333333;
}

.aw-county-list .uk:hover {
  text-decoration: underline;
}

/* Accordion FAQ */

.aw-card--faq {
  padding-top: 1.6rem;
}

/* fixed selector here */
.aw-accordion__item+.aw-accordion__item {
  border-top: 1px solid var(--aw-border-soft);
}

.aw-accordion__toggle {
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.aw-accordion__question {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--aw-text-main);
}

.aw-accordion__icon {
  flex: 0 0 auto;
  font-size: 1.1rem;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 0.2s ease, color 0.2s ease;
  color: var(--aw-text-muted);
}

.aw-accordion__toggle[aria-expanded="true"] .aw-accordion__icon {
  transform: rotate(90deg);
  color: var(--aw-green-dark);
}

.aw-accordion__toggle:focus {
  outline: none;
}

.aw-accordion__toggle:focus-visible {
  outline: 2px solid rgba(0, 166, 81, 0.6);
  outline-offset: 2px;
}

.aw-accordion__collapse {
  padding-bottom: 0.5rem;
}

.aw-accordion__body {
  font-size: 0.92rem;
  color: var(--aw-text-muted);
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Add your business banner */

.aw-card--addbiz {
  background: linear-gradient(135deg, var(--aw-green), var(--aw-green-dark));
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.aw-card--addbiz h2 {
  color: #ffffff;
}

.aw-addbiz__kicker {
  letter-spacing: 0.11em;
  opacity: 0.9;
}

.aw-btn-light {
  background: #ffffff;
  color: var(--aw-green-dark);
  font-weight: 600;
  border-radius: 999px;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  border: none;
}

.aw-btn-light:hover {
  background: #f5f7f4;
  color: var(--aw-green-dark);
}

/* Footer */

.aw-footer {
  position: relative;
  margin-top: 3rem;
  background: #f8faf8;
  font-size: 0.9rem;
  color: var(--aw-text-muted);
  overflow: hidden;
}

.aw-footer__top {
  position: relative;
  z-index: 2;
  padding: 3rem 0 2.5rem;
}

.aw-footer__heading {
  font-weight: 600;
  color: var(--aw-text-main);
  margin-bottom: 0.75rem;
}

.aw-footer__form .form-control {
  font-size: 0.85rem;
  border-radius: 999px 0 0 999px;
}

.aw-footer__form .btn {
  border-radius: 0 999px 999px 0;
}

.aw-footer__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.aw-footer__list li+li {
  margin-top: 0.25rem;
}

.aw-footer__list a {
  color: var(--aw-text-muted);
  text-decoration: none;
}

.aw-footer__list a:hover {
  color: var(--aw-text-main);
  text-decoration: underline;
}

/* Social buttons */

.aw-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.aw-footer__social-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--aw-border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--aw-text-muted);
  text-decoration: none;
  background: #ffffff;
}

.aw-footer__social-btn:hover {
  color: var(--aw-green-dark);
  border-color: rgba(0, 166, 81, 0.35);
}

/* Skyline strip and meta */

.aw-footer__bottom {
  position: relative;
  z-index: 1;
}

.aw-footer__skyline {
  position: relative;
  height: 180px;
}

.aw-footer__skyline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  height: 220px;
  background: url("../images/footer-landscape.svg") center bottom no-repeat;
  background-size: cover;
  pointer-events: none;
}

.aw-footer__meta {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding: 0.8rem 0;
  background: #ffffff;
}

/* Responsive tweaks */

@media (max-width: 991.98px) {
  .aw-hero {
    padding-top: 3.5rem;
  }
}

@media (max-width: 767.98px) {
  .aw-navbar .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 5rem 2rem 2rem;
    z-index: 900;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .aw-navbar .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .aw-navbar .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .aw-navbar .nav-link {
    font-size: 1.2rem;
    margin: 0.4rem 0;
  }

  .aw-footer__top {
    padding-top: 2.25rem;
    padding-bottom: 2rem;
  }

  .aw-footer__skyline {
    height: 140px;
  }
}

@media (max-width: 575.98px) {
  .aw-navbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .aw-navbar .navbar-brand {
    font-size: 1.4rem;
  }

  .aw-navbar .navbar-brand span {
    display: none;
  }

  .aw-logo-mark {
    height: 40px;
  }

  .aw-hero {
    padding-top: 2.5rem;
  }

  .aw-main {
    padding-top: 1.5rem;
  }
}

/* Generic ad placeholders - swap inner box with AdSense later */

.aw-ad {
  background: #ffffff;
  border-radius: 12px;
  border: 1px dashed rgba(0, 0, 0, 0.08);
  padding: 0.5rem;
  font-size: 0.8rem;
  color: var(--aw-text-muted);
}

.aw-ad__label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  margin-bottom: 0.25rem;
  color: #9aa89e;
}

.aw-ad__box {
  background: #f5f7f4;
  border-radius: 8px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #74857a;
}

/* Variants for future AdSense sizes */

.aw-ad--sidebar .aw-ad__box {
  height: 250px;
  /* approximate 300x250 */
}

.aw-ad--content .aw-ad__box {
  height: 120px;
  /* wide responsive */
}

.aw-ad--footer {
  margin-top: 1.5rem;
}

.aw-ad--footer .aw-ad__box {
  height: 90px;
}

/* Search nav item */

.aw-nav__search-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.aw-nav__search-toggle:focus {
  outline: none;
}

.aw-nav__search-icon {
  font-size: 0.95rem;
  margin-right: 0.25rem;
}

/* Overlay search */

.aw-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 1rem 1.5rem;
}

.aw-search-overlay--open {
  display: flex;
}

.aw-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
}

.aw-search-overlay__panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  padding: 1.5rem 1.5rem 1.25rem;
}

.aw-search-overlay__close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.aw-search-overlay__form .input-group {
  border-radius: 8px;
  overflow: hidden;
  background: #f7faf7;
  border: 1px solid var(--aw-border-soft);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.aw-search-overlay__form .input-group:focus-within {
  border-color: var(--aw-green);
  box-shadow: 0 0 0 2px rgba(0, 166, 81, 0.16);
  background: #ffffff;
}

.aw-search-overlay__form .form-control {
  border: 0;
  background: transparent;
  font-size: 0.95rem;
  height: 2.9rem;
}

.aw-search-overlay__form .form-control:focus {
  box-shadow: none;
}

/* When overlay is open lock body scroll */

.aw-search-open {
  overflow: hidden;
}

/* Mobile tweaks */

@media (max-width: 767.98px) {
  .aw-search-overlay {
    padding-top: 80px;
  }

  .aw-search-overlay__panel {
    border-radius: 0;
    max-width: none;
  }
}

/* Generic link lists in side cards etc */
.aw-link-list a {
  color: var(--aw-link);
  text-decoration: none;
  font-weight: 500;
}

.aw-link-list a:hover {
  color: var(--aw-link-hover);
  text-decoration: underline;
}

/* Amazon card "View more" link */
.aw-amazon-more {
  color: var(--aw-link);
  text-decoration: none;
}

.aw-amazon-more:hover {
  color: var(--aw-link-hover);
  text-decoration: underline;
}

.aw-tag--blue {
  background: var(--aw-link-soft-bg);
  color: var(--aw-link-hover);
}

.aw-tag--teal {
  background: #d5f4f0;
  color: #116861;
}

.aw-tag--purple {
  background: #ece3ff;
  color: #49327a;
}

/* Outline sponsor button */

.aw-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid var(--aw-green-dark);
  background: #ffffff;
  color: var(--aw-green-dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(0, 144, 71, 0);
  /* no shadow by default */
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.aw-btn-outline--full {
  width: 100%;
}

/* Hover and focus states */

.aw-btn-outline:hover,
.aw-btn-outline:focus {
  background: var(--aw-green);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 144, 71, 0.25);
}

.aw-btn-outline:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.4);
}

/* NEW OVERRIDING DESIGN */


.navbar-brand {
  white-space: normal;
}

.side {
  background-color: #ccd3cc !important;
}

/* to change in styles */

.directory-primary {
  background-color: #256F73 !important;
}

.bg-secondary {
  background-color: #256F73 !important;
}

/* Scope everything to aw- classes to avoid Bootstrap collisions */
.aw-cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  max-width: 420px;
  z-index: 9999;
  background: #0f172a;
  color: #fff;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  display: flex;
  gap: 12px;
  align-items: center;
}

.aw-cookie-banner[hidden] {
  display: none !important;
}

.aw-cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.35;
}

.aw-cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end
}

.aw-btn {
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid transparent;
  line-height: 1
}

.aw-btn-primary {
  background: #16a34a;
  color: #fff
}

.aw-btn-outline {
  background: transparent;
  color: #fff;
  border-color: #475569
}

.aw-btn-ghost {
  background: transparent;
  color: #0f172a;
  border: 1px solid #e5e7eb
}

.aw-link {
  background: transparent;
  border: 0;
  color: #93c5fd;
  text-decoration: underline;
  padding: 0;
  cursor: pointer
}

@media (max-width:480px) {
  .aw-cookie-banner {
    left: 16px;
    right: 16px
  }
}

/* Modal */
.aw-cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .6);
  display: none;
  z-index: 10000
}

.aw-cookie-modal[aria-hidden="false"] {
  display: grid;
  place-items: center
}

.aw-cookie-card {
  width: min(520px, 94vw);
  background: #fff;
  color: #0f172a;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25)
}

.aw-title {
  margin: 0 0 8px 0;
  font-size: 20px
}

.aw-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0
}

.aw-label {
  font-weight: 600
}

.aw-sub {
  font-size: 12px;
  color: #64748b
}

.aw-note {
  font-size: 12px;
  color: #64748b
}

/* Toggle switch */
.aw-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px
}

.aw-switch input {
  opacity: 0;
  width: 0;
  height: 0
}

.aw-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #cbd5e1;
  border-radius: 999px;
  transition: .2s
}

.aw-slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .2)
}

.aw-switch input:checked+.aw-slider {
  background: #16a34a
}

.aw-switch input:checked+.aw-slider:before {
  transform: translateX(20px)
}

input#aw-personalised {
  position: relative;
  opacity: 1;
}

.aw-listing-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #97999b;
  padding: 16px 18px 14px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.aw-listing-card:hover {
  border-color: #cbd5f5;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.aw-listing-card__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aw-listing-card__name {
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0;
  color: #0f172a;
}

.aw-listing-card__name a {
  color: inherit;
  text-decoration: none;
}

.aw-listing-card__name a:hover {
  text-decoration: underline;
}

.aw-listing-card__badge {
  margin-top: 6px;
}

.aw-listing-card__category {
  font-size: 0.9rem;
  color: #64748b;
}

.aw-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #0f766e;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
}


.aw-pill--muted {
  background-color: #e5e7eb;
  color: #374151;
}

.aw-pill__icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ecfdf5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #0f766e;
}

.aw-listing-card__description {
  margin: 8px 0 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #334155;
}

.aw-listing-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.86rem;
  color: #475569;
}

.aw-listing-card__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.aw-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.aw-icon--pin::before {
  content: "📍";
  position: absolute;
  inset: -1px 0 0;
  font-size: 16px;
}

.aw-icon--phone::before {
  content: "☎";
  position: absolute;
  inset: -1px 0 0;
  font-size: 15px;
}

.aw-listing-card__footer {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.aw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.aw-btn--primary, a.aw-btn--primary  {
  background: #0f766e;
  border-color: #0f766e;
  color: #ffffff !important;
}

.aw-btn--primary:hover {
  background: #115e57;
  border-color: #115e57;
}

.aw-btn--ghost {
  background: #ffffff;
  border-color: #97999b;
  color: #0f172a;
}

.aw-btn--ghost:hover {
  background: #f8fafc;
}

.btn-remove-service {
  font-size: 30px;
  padding: 0 20px;
  margin: 0 20px;
  line-height: 0;
  border: none;
  box-shadow: none;
}

.add-my-site-form label {
  font-weight: 700;
}

.add-my-site-form .form-control {
  border: 1px solid #9ea2a6;
}

#services-wrapper .service-row:first-child .btn-remove-service {
  display: none;
}

/* Base article container */

.aw-dir-article {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #111827;
}

/* Hero: “Need help finding…” */

.aw-dir-hero {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.5rem 1.25rem;
  margin-bottom: 1.75rem;
}

.aw-dir-hero__heading {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.aw-dir-hero__intro {
  margin: 0 0 0.75rem;
  color: #4b5563;
}

.aw-dir-hero__steps-intro {
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.aw-dir-hero__steps {
  margin: 0;
  padding-left: 1.25rem;
}

.aw-dir-hero__step {
  margin: 0 0 0.25rem;
}

/* Shared section heading */

.aw-dir-section {
  margin-bottom: 2rem;
}

.aw-dir-section__heading {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.aw-dir-section__intro {
  margin: 0 0 1rem;
  color: #4b5563;
}

/* Types of services grid */

.aw-dir-types {
  display: grid;
  gap: 1rem;
}

.aw-dir-type {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid #aeafb2;
}

.aw-dir-type__name {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.aw-dir-type__body {
  margin: 0;
  color: #4b5563;
}

/* Common services numbered grid */

.aw-dir-common-services {
  display: grid;
  gap: 1rem;
}

.aw-dir-service {
  display: grid;
  column-gap: 0.75rem;
  row-gap: 0.25rem;
  align-items: flex-start;
  background: #fefcf7;
  border-radius: 0.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid #aeafb2;
}

.aw-dir-service__label {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid #aeafb2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  background: #ffffff;
  display: none;
}

.aw-dir-service__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.aw-dir-service__body {
  grid-column: 2 / -1;
  margin: 0;
  color: #4b5563;
}

/* Key points (“How to find the best local…”) */

.aw-dir-key-points {
  display: grid;
  gap: 1rem;
}

.aw-dir-key-point {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid #aeafb2;
}

.aw-dir-key-point__heading {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.aw-dir-key-point__body {
  margin: 0;
  color: #4b5563;
}

/* Questions block (non accordion) */

.aw-dir-questions__q {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.aw-dir-questions__a {
  margin: 0 0 1rem;
  color: #4b5563;
}

/* FAQ accordion */

.aw-faqs {
  border-top: 1px solid #aeafb2;
}

.aw-faq {
  border-bottom: 1px solid #aeafb2;
}

/* Tiny WP autop tidy: kill stray p after the button */
.aw-faq>p {
  margin: 0;
  padding: 0;
  height: 0;
  overflow: hidden;
}

/* The clickable question */
.aw-faq__question {
  width: 100%;
  padding: 0.9rem 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 500;
  color: #256F73;
  /* tweak to match your palette */
  cursor: pointer;
}

/* Chevron indicator using ::after */
.aw-faq__question::after {
  content: "▾";
  font-size: 0.9rem;
  transition: transform 0.15s ease;
}

.aw-faq__question[aria-expanded="true"]::after {
  transform: rotate(-180deg);
}

/* Answer panel */
.aw-faq__answer {
  padding: 0 0 0.9rem;
  font-size: 0.95rem;
  color: #4b5563;
}

.aw-faq__answer p {
  margin: 0 0 0.5rem;
}

.aw-faq__answer p:last-child {
  margin-bottom: 0;
}

/* Responsive tweaks */

@media (min-width: 768px) {
  .aw-dir-types {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aw-dir-common-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aw-dir-key-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.navbar .nav-item .nav-link {
  overflow: visible !important;
}

/* Make aw-page-accent pages use the same big circle accent */

body.aw-page-accent {
  position: relative;
  overflow-x: clip;
}

body.aw-page-accent::before {
  content: "";
  position: absolute;
  right: 50%;
  top: -2300px;
  margin: auto;
  overflow: hidden;
  height: 3000px;
  width: 3000px;
  background-image: radial-gradient(#b7d1c4, #7ea392);
  transform: translateX(85%) rotate(15deg);
  border-radius: 5000px;
  pointer-events: none;
}
#awSearchBackdrop {
  pointer-events: none;
}

body.aw-search-open #awSearchBackdrop {
  pointer-events: auto;
}
.aw-search-overlay {
  pointer-events: none;
}

.aw-search-overlay.aw-search-overlay--open {
  pointer-events: auto;
}
.aw-ad {
  margin: 20px 0;
  clear: both;
}

.aw-ad--content {
  display: flex;
  justify-content: center;
}

/* Mobile: stack rows */
@media (max-width: 767.98px) {
  .aw-aff-table thead {
    display: none; /* hide header row on mobile */
  }

  .aw-aff-table tbody,
  .aw-aff-table tr,
  .aw-aff-table td {
    display: block;
    width: 100%;
  }

  .aw-aff-table tr {
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 12px;
    padding: 12px;
    margin: 0 0 12px 0;
    background: #fff;
  }

  .aw-aff-table td {
    border: 0 !important; /* remove table cell borders */
    padding: 0 !important;
    margin: 0;
  }

  /* Order + spacing */
  .aw-aff-table td.aw-aff-img-wrap {
    margin-bottom: 10px;
  }

  .aw-aff-table td:nth-child(2) {
    margin-bottom: 12px;
  }

  .aw-aff-table td:nth-child(3) a.aw-aff-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  /* Make image behave nicely in stacked layout */
  .aw-aff-img {
    max-width: 140px;
    height: auto;
    display: block;
  }
}

/* Desktop: ensure normal table behaviour */
@media (min-width: 768px) {
  .aw-aff-table {
    width: 100%;
  }
}

.aw-debt-tool { max-width: 980px; margin: 0 auto; }
.aw-ds-howto { border-radius: 12px; }

.aw-ds-controls{
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 768px){
  .aw-ds-controls{
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
  }
}
.aw-ds-actions{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-start; }
.aw-ds-utilities{ display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.aw-ds-mode{ display:flex; gap:8px; flex-wrap:wrap; }

.aw-debt-tool .table td input{
  min-width: 120px;
}
.aw-debt-tool [data-error]{
  font-weight: 600;
}
.aw-debt-tool [data-results] .border{
  border-radius: 12px;
}

:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --border:#e5e7eb;
  --soft:#f8fafc;
  --primary:#2563eb;
  --danger:#ef4444;
  --shadow: 0 10px 24px rgba(15,23,42,.08);
  --radius:16px;
  --radius2:12px;
  --gap:14px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
body{ background: #f3f4f6; margin:0; padding:24px 12px; color:var(--text); }
.wrap{ max-width: 1040px; margin: 0 auto; }

.hero{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
}
.hero h1{ margin:0 0 6px; font-size: 28px; }
.sub{ margin:0; color:var(--muted); line-height:1.5; }

.controls{
  margin-top: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.field label{ display:block; font-weight:700; margin-bottom:6px; }
.field input{
  width: 220px;
  max-width: 100%;
  padding: 10px 12px;
  border:1px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
}
.hint{ color:var(--muted); margin-top:6px; font-size: 13px; }

.btnrow{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }

.seg{
  border:2px solid #cbd5e1;
  background:#fff;
  color:#1f2937;
  padding:10px 14px;
  border-radius: 14px;
  cursor:pointer;
  min-width: 140px;
  font-weight:700;
}
.seg.active{
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.btn{
  border:1px solid #cbd5e1;
  background:#fff;
  color:#111827;
  padding:10px 14px;
  border-radius: 14px;
  cursor:pointer;
  font-weight:700;
}
.btn.primary{
  background: var(--primary);
  border-color: var(--primary);
  color:#fff;
}
.btn.ghost{ background:#fff; }
.btn.danger{ border-color: var(--danger); color: var(--danger); }
.btn:disabled{ opacity:.55; cursor:not-allowed; }

.error{
  margin-top: 10px;
  color: var(--danger);
  font-weight: 700;
  min-height: 20px;
}

.tablebox{
  margin-top: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 10px 14px;
  box-shadow: var(--shadow);
}
.table{
  width: 100%;
  border-collapse: collapse;
  overflow:hidden;
}
.table th, .table td{
  padding: 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.table th{ text-align:left; color:#111827; font-size: 14px; }
.table td input{
  width: 100%;
  padding: 9px 10px;
  border:1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
}
.table td .tiny{
  font-size: 12px; color: var(--muted);
}
.row-actions{ width: 56px; text-align:right; }
.iconbtn{
  border: 0;
  background: #fee2e2;
  color:#991b1b;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  cursor:pointer;
  font-weight: 900;
}
.smallnote{ margin-top:10px; color:var(--muted); font-size: 13px; }

.results{
  margin-top: 14px;
}
.panel{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  margin-bottom: 14px;
}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.kpi{
  grid-column: span 4;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  background: var(--soft);
}
.kpi .label{ color: var(--muted); font-weight:700; font-size: 13px; }
.kpi .value{ font-size: 22px; font-weight: 900; margin-top: 4px; }

@media (max-width: 860px){
  .kpi{ grid-column: span 6; }
}
@media (max-width: 540px){
  .kpi{ grid-column: span 12; }
}

.list{
  margin: 10px 0 0;
  padding-left: 18px;
}
.list li{ margin: 6px 0; }

.tablewrap{
  overflow:auto;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.table.small th, .table.small td{ font-size: 13px; padding: 9px; }
.badge{
  display:inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  background: #e0e7ff;
  color: #1e40af;
}

.charts{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.card{
  background: var(--bg);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 0;
}
.card h3{ margin:0 0 10px; }

@media (max-width: 900px){
  .charts{ grid-template-columns: 1fr; }
}

.tools-card .card,
.tools-card .card-body{
   padding: 16px 0;
}

.seo{
  margin-top: 14px;
  background: var(--bg);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.seo h2{ margin: 0 0 10px; }
.seo ul{ margin: 10px 0; }
.disclaimer{ color:var(--muted); font-size: 13px; margin-top: 14px; }


