:root {
  --bc-green: #DBA401;
  --bc-green-d: #B88600;
  --bc-green-pale: #FFF8E7;
  --bc-green-glow: rgba(219, 164, 1, .18);
  --bc-black: #070706;
  --bc-dark: #141414;
  --bc-mid: #444;
  --bc-muted: #666;
  --bc-border: #EBE5D8;
  --bc-bg: #FAF7F0;
  --bc-white: #fff;
  --bc-font-h: 'Poppins', sans-serif;
  --bc-font-b: 'Poppins', sans-serif;
  --bc-r: 12px;
  --bc-rl: 20px;
  --bc-sh: 0 8px 36px rgba(7, 7, 6, .09);
  --bc-shl: 0 20px 64px rgba(7, 7, 6, .13);
  --bc-t: .26s cubic-bezier(.4, 0, .2, 1);
  --bg-alt: #F5F0E6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--bc-font-b);
  color: var(--bc-dark);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--bc-t)
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  font-family: var(--bc-font-b);
  border: none;
  background: none
}

/* ── Layout ── */
.bost-cln-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px;
  width: 100%;
}

.bost-cln-section {
  padding: 88px 0
}

/* ── Chip / label ── */
.bost-cln-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bc-green-pale);
  border: 1.5px solid rgba(219, 164, 1, .45);
  color: var(--bc-green-d);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px
}

.bost-cln-chip::before {
  content: '✦';
  font-size: 9px
}

/* ── Heading ── */
.bost-cln-h {
  font-family: var(--bc-font-h);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 1px;
  color: var(--bc-black)
}

.bost-cln-h .bost-cln-ac {
  color: var(--bc-green)
}

.bost-cln-sub {
  font-size: 15.5px;
  color: var(--bc-muted);
  line-height: 1.76;
  margin-top: 13px
}

.bost-cln-center {
  text-align: center
}

.bost-cln-center .bost-cln-sub {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto
}

/* ── Buttons ── */
.bost-cln-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--bc-r);
  transition: var(--bc-t);
  white-space: nowrap
}

.bost-cln-btn-g {
  background: var(--bc-green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(219, 164, 1, .36)
}

.bost-cln-btn-g:hover {
  background: var(--bc-green-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(219, 164, 1, .46)
}

.bost-cln-btn-o {
  background: transparent;
  color: var(--bc-dark);
  border: 2px solid var(--bc-dark)
}

.bost-cln-btn-o:hover {
  border-color: var(--bc-green);
  color: var(--bc-green);
  transform: translateY(-2px)
}

.bost-cln-btn-w {
  background: #fff;
  color: var(--bc-dark);
  box-shadow: var(--bc-sh)
}

.bost-cln-btn-w:hover {
  background: var(--bc-green);
  color: #fff;
  transform: translateY(-2px)
}

/* ══════ NAV ══════ */
.bost-cln-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--bc-border), 0 2px 16px rgba(0, 0, 0, .05);
}

.bost-cln-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*! height: 68px; */
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px;
  width: 100%;
}

.bost-cln-logo img {
  height: 96px;
  width: auto
}

.bost-cln-links {
  display: flex;
  align-items: center;
  gap: 2px
}

.bost-cln-links>li>a {
  font-size: 15px;
  font-weight: 800;
  color: var(--bc-dark);
  padding: 8px 13px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--bc-t)
}

.bost-cln-links>li>a:hover,
.bost-cln-links>li>a.active {
  color: var(--bc-green);
  background: var(--bc-green-pale)
}

/* Dropdown */
.bost-cln-dd {
  position: relative
}

.bost-cln-dd-chev {
  font-size: 10px;
  transition: transform var(--bc-t)
}

.bost-cln-dd:hover .bost-cln-dd-chev {
  transform: rotate(180deg)
}

.bost-cln-dd-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border-radius: var(--bc-r);
  box-shadow: var(--bc-shl);
  min-width: 268px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--bc-t), transform var(--bc-t);
  border-top: 3px solid var(--bc-green);
  z-index: 200
}

.bost-cln-dd:hover .bost-cln-dd-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0)
}

.bost-cln-dd-menu li a {
  display: block;
  padding: 9.5px 20px;
  font-size: 13.5px;
  color: var(--bc-mid);
  border-left: 3px solid transparent;
  transition: var(--bc-t)
}

.bost-cln-dd-menu li a:hover {
  color: var(--bc-green);
  background: var(--bc-green-pale);
  border-left-color: var(--bc-green)
}

.bost-cln-nav-cta {
  background: var(--bc-green) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 8px !important
}

.bost-cln-nav-cta:hover {
  background: var(--bc-green-d) !important;
  color: #fff !important
}

/* Hamburger */
.bost-cln-hburg {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100
}

.bost-cln-hburg span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--bc-dark);
  border-radius: 2px;
  transition: var(--bc-t)
}

.bost-cln-hburg.on span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg)
}

.bost-cln-hburg.on span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.bost-cln-hburg.on span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg)
}

/* Mobile drawer */
.bost-cln-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 998;
  flex-direction: column;
  overflow-y: auto;
  padding: 80px 26px 40px;
  transform: translateX(110%);
  transition: transform .33s cubic-bezier(.4, 0, .2, 1)
}

.bost-cln-drawer.on {
  transform: translateX(0)
}

.bost-cln-mob-a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--bc-dark);
  padding: 13px 0;
  border-bottom: 1px solid var(--bc-border);
  transition: var(--bc-t)
}

.bost-cln-mob-a:hover {
  color: var(--bc-green)
}

.bost-cln-mob-acc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: var(--bc-dark);
  padding: 13px 0;
  border-bottom: 1px solid var(--bc-border);
  text-align: left;
  border-left: none;
  border-right: none;
  border-top: none
}

.bost-cln-mob-acc .bost-cln-mob-arr {
  transition: transform var(--bc-t);
  font-size: 13px
}

.bost-cln-mob-acc.on .bost-cln-mob-arr {
  transform: rotate(180deg)
}

.bost-cln-mob-sub {
  display: none;
  padding: 4px 0 4px 14px
}

.bost-cln-mob-sub.on {
  display: block
}

.bost-cln-mob-sub a {
  display: block;
  font-size: 13.5px;
  color: var(--bc-muted);
  padding: 8px 8px;
  border-radius: 6px;
  transition: var(--bc-t)
}

.bost-cln-mob-sub a:hover {
  color: var(--bc-green);
  background: var(--bc-green-pale)
}

.bost-cln-mob-cta {
  display: block;
  text-align: center;
  background: var(--bc-green);
  color: #fff !important;
  border-radius: var(--bc-r);
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 22px
}

.bost-cln-mob-cta:hover {
  background: var(--bc-green-d)
}

/* ══════ HERO ══════ */

.bost-cln-badges {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.bost-cln-badges div {
  background: #fff;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.bost-cln-hero {
  min-height: 100svh;
  padding-top: 68px;
  background: linear-gradient(128deg, #f7fbdf 0%, #fff 48%, #f2f9d6 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden
}

.bost-cln-hero::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(219, 164, 1, .17) 0%, transparent 65%);
  pointer-events: none
}

.bost-cln-hero::after {
  content: '';
  position: absolute;
  bottom: -90px;
  left: -90px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(219, 164, 1, .11) 0%, transparent 65%);
  pointer-events: none
}

.bost-cln-hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 52px;
  align-items: center;
  padding: 60px 0;
  position: relative;
  z-index: 1
}

.bost-cln-hero-title {
  font-family: var(--bc-font-h);
  font-size: clamp(24px, 6.5vw, 42px);
  line-height: .98;
  letter-spacing: 1.5px;
  color: var(--bc-black);
  margin-bottom: 20px;
  animation: bcUp .72s ease both
}

.bost-cln-hero-title .bost-cln-hl {
  color: var(--bc-green);
  position: relative;
  display: inline-block
}

.bost-cln-hero-title .bost-cln-hl::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 7px;
  background: rgba(219, 164, 1, .22);
  border-radius: 4px;
  z-index: -1
}

.bost-cln-hero-desc {
  font-size: 16.5px;
  color: var(--bc-muted);
  line-height: 1.76;
  margin-bottom: 32px;
  max-width: 480px;
  animation: bcUp .76s .08s ease both
}

.bost-cln-hero-btns {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  animation: bcUp .8s .16s ease both
}

.bost-cln-hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: bcUp .84s .24s ease both
}

.bost-cln-stat strong {
  font-family: var(--bc-font-h);
  font-size: 34px;
  color: var(--bc-green);
  display: block;
  letter-spacing: 1px
}

.bost-cln-stat span {
  font-size: 11.5px;
  color: var(--bc-muted);
  font-weight: 600;
  letter-spacing: .3px
}

/* Hero form */
.bost-cln-hero-form-col {
  animation: bcUp .88s .12s ease both
}

.bost-cln-form-card {
  background: #fff;
  border-radius: var(--bc-rl);
  padding: 34px 30px;
  box-shadow: var(--bc-shl);
  position: relative
}

.bost-cln-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bc-green), #F5C227);
  border-radius: var(--bc-rl) var(--bc-rl) 0 0
}

.bost-cln-form-title {
  font-family: var(--bc-font-h);
  font-size: 24px;
  letter-spacing: .5px;
  color: var(--bc-black);
  margin-bottom: 3px
}

.bost-cln-form-sub {
  font-size: 12.5px;
  color: var(--bc-muted);
  margin-bottom: 20px
}

.bost-cln-field {
  margin-bottom: 13px
}

.bost-cln-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--bc-dark);
  margin-bottom: 5px;
  text-align: left;
}

.bost-cln-field input,
.bost-cln-field select,
.bost-cln-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--bc-border);
  border-radius: 9px;
  font-family: var(--bc-font-b);
  font-size: 13.5px;
  color: var(--bc-dark);
  background: #fff;
  outline: none;
  transition: border-color var(--bc-t), box-shadow var(--bc-t);
  -webkit-appearance: none;
  appearance: none
}

.bost-cln-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px
}

.bost-cln-field input:focus,
.bost-cln-field select:focus,
.bost-cln-field textarea:focus {
  border-color: var(--bc-green);
  box-shadow: 0 0 0 3px rgba(219, 164, 1, .12)
}

.bost-cln-field textarea {
  resize: vertical;
  min-height: 72px
}

.bost-cln-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px
}

.bost-cln-form-btn {
  width: 100%;
  background: var(--bc-green);
  color: #fff;
  padding: 13px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 700;
  margin-top: 6px;
  box-shadow: 0 4px 18px rgba(219, 164, 1, .33);
  transition: var(--bc-t)
}

.bost-cln-form-btn:hover {
  background: var(--bc-green-d);
  transform: translateY(-1px)
}

.bost-cln-form-trust {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  margin-top: 11px;
  font-size: 11.5px;
  color: var(--bc-muted)
}

.bost-cln-trust-dot {
  color: var(--bc-green)
}

.bost-cln-hero {
  min-height: 100svh;
  padding-top: 68px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.50), rgba(255, 255, 255, 0.92)),
    url('../images/herobanner.png') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bost-cln-hero.inner_brn {
  min-height: 45vh;
}

.btngrp {
  margin-top: 40px;
}

.text-center {
  text-align: center;
}

/* ══════ TICKER ══════ */
.bost-cln-ticker {
  background: var(--bc-green);
  padding: 11px 0;
  overflow: hidden
}

.bost-cln-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: bcTick 28s linear infinite
}

.bost-cln-ticker-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 30px;
  font-size: 13px;
  font-weight: 600;
  color: #fff
}

.bost-cln-ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, .45);
  border-radius: 50%;
  flex-shrink: 0
}

@keyframes bcTick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.ndsp-pointsSec {
  padding: 60px 20px;
  background: #f8f9fb;
  font-family: Arial, sans-serif;
}

.ndsp-container {
  max-width: 1100px;
  margin: auto;
}

.ndsp-pointsGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Card */
.ndsp-pointCard {
  flex: 1 1 calc(50% - 20px);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 25px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee;
  transition: 0.3s;
}

.ndsp-pointCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Icon */
.ndsp-icon {
  width: 50px;
  height: 50px;
  background: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ndsp-icon svg {
  width: 26px;
  height: 26px;
}

/* Text */
.ndsp-pointCard h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.ndsp-pointCard p {
  margin: 5px 0 0;
  color: #666;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .ndsp-pointCard {
    flex: 1 1 100%;
  }
}

.bost-cln-section:has(.section-header) {
  padding-top: 0;
}

/* ──────────────── ABOUT STRIP ──────────────── */
.about-section {
  background: var(--cream-dark);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '🌿';
  position: absolute;
  font-size: 12rem;
  opacity: 0.04;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.about-section .bost-cln-wrap {
  display: flex;
  gap: 30px;
  padding: 0;
}

.about-text {
  width: 50%;
}

.about-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 50%;
}

.about-section .bost-cln-wrap {
  display: flex;
  gap: 30px;
  padding: 30px 0px;
}

.about-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-logo-display {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 24px 48px rgba(42, 107, 42, 0.18));
}

.about-gold-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  max-width: 400px;
  max-height: 400px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.about-text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-text h2 em {
  font-style: italic;
  color: var(--green);
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 18px;
  font-weight: 300;
}


/* Areas — with Brisbane image */
.areas {
  background: var(--bg-alt);
  position: relative;
}

.areas__grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 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);
  }

  .about-section .bost-cln-wrap {
    flex-direction: column;
    padding-inline: 20px
  }

  .about-img-wrap,
  .about-text {
    width: 100%;
  }
}

.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(--bc-green);
  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;
}

.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 #000;
  border-radius: 999px;
  background: var(--accent-light);
  margin-bottom: 18px;
}

.lede {
  font-size: 20px;
  line-height: 1.4;
  color: #000;
  max-width: 100%;
  margin: 10px 0 24px;
}

/* ══════ SERVICES ══════ */
.bost-cln-services {
  background: #f6f6f6
}

.bost-cln-services-hd {
  margin-bottom: 48px
}

.bost-cln-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.bost-cln-svc-card {
  background: #fff;
  border-radius: var(--bc-r);
  padding: 20px;
  border: 1.5px solid transparent;
  transition: var(--bc-t);
  position: relative;
  overflow: hidden
}

.bost-cln-svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(219, 164, 1, .055) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--bc-t);
  pointer-events: none;
}

.bost-cln-svc-card:hover {
  border-color: var(--bc-green);
  transform: translateY(-5px);
  box-shadow: var(--bc-sh)
}

.bost-cln-svc-card:hover::after {
  opacity: 1
}

.bost-cln-svc-ico {
  border-radius: 13px 13px 0 0;
  background: var(--bc-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: var(--bc-t);
  margin: -20px -20px 15px -20px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.bost-cln-svc-ico img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bost-cln-hero-grid.inside-wrap {
  grid-template-columns: 1fr;
  justify-content: center;
  text-align: center;
}

.bost-cln-svc-card:hover .bost-cln-svc-ico {
  background: var(--bc-green)
}

.bost-cln-svc-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--bc-black);
  margin-bottom: 7px;
  line-height: 1.3
}

.bost-cln-svc-desc {
  font-size: 13px;
  color: var(--bc-muted);
  line-height: 1.65
}

.bost-cln-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bc-green);
  margin-top: 14px;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--bc-t)
}

.bost-cln-svc-card:hover .bost-cln-svc-link {
  opacity: 1;
  transform: translateX(0)
}

/* ══════ WHY US / CHARACTER ══════ */
.bost-cln-why {
  background: #fff
}

.bost-cln-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center
}

.bost-cln-char-panel {
  border-radius: var(--bc-rl);
  background: linear-gradient(150deg, #e6f5a2 0%, #bcdf2e 55%, #96ba11 100%);
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: visible
}

.bost-cln-char-inner {
  width: 78%;
  position: relative;
  z-index: 1
}

.bost-cln-char-badge {
  position: absolute;
  right: -22px;
  top: 36px;
  z-index: 10;
  background: #fff;
  border-radius: var(--bc-r);
  padding: 16px 20px;
  box-shadow: var(--bc-shl)
}

.bost-cln-char-badge strong {
  font-family: var(--bc-font-h);
  font-size: 32px;
  color: var(--bc-green);
  display: block;
  letter-spacing: 1px
}

.bost-cln-char-badge span {
  font-size: 11px;
  color: var(--bc-muted);
  font-weight: 600
}

.bost-cln-char-badge2 {
  position: absolute;
  left: -22px;
  bottom: 44px;
  z-index: 10;
  background: var(--bc-green);
  border-radius: var(--bc-r);
  padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(219, 164, 1, .42)
}

.bost-cln-char-badge2 strong {
  font-family: var(--bc-font-h);
  font-size: 26px;
  color: #fff;
  display: block;
  letter-spacing: 1px
}

.bost-cln-char-badge2 span {
  font-size: 11px;
  color: rgba(255, 255, 255, .82);
  font-weight: 600
}

.bost-cln-feats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px
}

.bost-cln-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.bost-cln-feat-ico {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--bc-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  transition: var(--bc-t)
}

.bost-cln-feat:hover .bost-cln-feat-ico {
  background: var(--bc-green)
}

.bost-cln-feat-body h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--bc-black);
  margin-bottom: 3px
}

.bost-cln-feat-body p {
  font-size: 13px;
  color: var(--bc-muted);
  line-height: 1.64
}

/* ══════ TESTIMONIALS ══════ */
.bost-cln-testi {
  background: var(--bc-dark);
  overflow: hidden;
  position: relative
}

.bost-cln-testi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(219, 164, 1, .09) 0%, transparent 60%);
  pointer-events: none
}

.bost-cln-testi .bost-cln-h {
  color: #fff
}

.bost-cln-testi .bost-cln-sub {
  color: rgba(255, 255, 255, .48)
}

.bost-cln-testi-hd {
  margin-bottom: 42px
}

.bost-cln-tcard {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--bc-rl);
  padding: 30px 26px;
  transition: var(--bc-t)
}

.bost-cln-tcard:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(219, 164, 1, .3)
}

.bost-cln-tstars {
  color: var(--bc-green);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px
}

.bost-cln-tq {
  font-size: 34px;
  color: var(--bc-green);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 10px
}

.bost-cln-ttext {
  font-size: 14px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.78;
  margin-bottom: 24px
}

.bost-cln-tauthor {
  display: flex;
  align-items: center;
  gap: 12px
}

.bost-cln-tav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bc-green);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.bost-cln-tname {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff
}

.bost-cln-trole {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .38)
}

.bost-cln-swiper-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px
}

.bost-cln-sw-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
  color: #fff;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--bc-t);
  z-index: 99;
}

.bost-cln-sw-btn:hover {
  background: var(--bc-green);
  border-color: var(--bc-green)
}

.bost-cln-sw-btn.swiper-button-disabled {
  opacity: .3;
  cursor: default
}

.bost-cln-swp-pag .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .3);
  opacity: 1
}

.bost-cln-swp-pag .swiper-pagination-bullet-active {
  background: var(--bc-green);
  width: 20px;
  border-radius: 6px
}

/* ══════ FAQ ══════ */
.bost-cln-faq {
  background: #f6f6f6
}

.bost-cln-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 54px;
  align-items: start
}

.bost-cln-faq-visual {
  background: linear-gradient(148deg, #ecf7a8 0%, #c3df30 100%);
  border-radius: var(--bc-rl);
  padding: 46px 36px;
  text-align: center;
  position: sticky;
  top: 82px
}

.bost-cln-faq-em {
  font-size: 68px;
  margin-bottom: 16px
}

.bost-cln-faq-visual h3 {
  font-family: var(--bc-font-h);
  font-size: 28px;
  color: var(--bc-black);
  letter-spacing: .5px;
  margin-bottom: 10px
}

.bost-cln-faq-visual p {
  font-size: 13.5px;
  color: var(--bc-mid);
  margin-bottom: 20px;
  line-height: 1.64
}

.bost-cln-faq-tel {
  font-family: var(--bc-font-h);
  font-size: 26px;
  color: var(--bc-green-d);
  letter-spacing: 2px;
  margin-bottom: 16px
}

.bost-cln-acc {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.bost-cln-acc-item {
  background: #fff;
  border-radius: var(--bc-r);
  border: 1.5px solid var(--bc-border);
  overflow: hidden;
  transition: border-color var(--bc-t)
}

.bost-cln-acc-item.on {
  border-color: var(--bc-green)
}

.bost-cln-acc-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--bc-dark);
  cursor: pointer;
  gap: 10px;
  user-select: none
}

.bost-cln-acc-ico {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bc-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--bc-green);
  transition: var(--bc-t)
}

.bost-cln-acc-item.on .bost-cln-acc-ico {
  background: var(--bc-green);
  color: #fff;
  transform: rotate(45deg)
}

.bost-cln-acc-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: var(--bc-muted);
  line-height: 1.74
}

.bost-cln-acc-item.on .bost-cln-acc-a {
  display: block
}

/* ══════ CTA STRIP ══════ */
.bost-cln-cta {
  background: linear-gradient(90deg, var(--bc-black) 0%, #222 100%);
  padding: 78px 0;
  text-align: center;
  position: relative;
  overflow: hidden
}

.bost-cln-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(219, 164, 1, .13) 0%, transparent 60%);
  pointer-events: none
}

.bost-cln-cta h2 {
  font-family: var(--bc-font-h);
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 14px;
  position: relative
}

.bost-cln-cta h2 span {
  color: var(--bc-green)
}

.bost-cln-cta p {
  color: rgba(255, 255, 255, .52);
  font-size: 15.5px;
  margin-bottom: 34px;
  position: relative
}

.bost-cln-cta-btns {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative
}

/* ══════ FOOTER ══════ */

.bost-cln-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 48px
}

.bost-cln-footer-logo {
  height: 42px;
  filter: brightness(0) invert(1);
  opacity: .72
}

.bost-cln-footer-brand p {
  font-size: 13px;
  line-height: 1.74;
  color: rgba(255, 255, 255, .42);
  margin: 16px 0 20px
}

.bost-cln-footer-soc {
  display: flex;
  gap: 9px
}

.bost-cln-soc {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--bc-t);
  cursor: pointer
}

.bost-cln-soc:hover {
  background: var(--bc-green);
  border-color: var(--bc-green)
}

.inner_brn.bost-cln-testi::before {
display: none;
}
.inner_brn .bost-cln-btn-o{
  color:var(--bc-green);
  border-color:var(--bc-green)
}
.bost-cln-footer-col h4 {
  font-size: 12px;
  font-weight: 700;

  line-height: 1.4;
  color: #fff;
  margin-bottom: 16px
}

.bost-cln-footer-col ul li {
  margin-bottom: 9px
}

.bost-cln-footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, .42);
  transition: var(--bc-t)
}

.bost-cln-footer-col ul li a:hover {
  color: var(--bc-green);
  padding-left: 4px
}

.bost-cln-footer-contact li {
  display: flex;
  gap: 9px;
  margin-bottom: 11px;
  font-size: 13px;
  color: rgba(255, 255, 255, .42)
}

.bost-cln-footer-contact li span:first-child {
  color: var(--bc-green);
  margin-top: 2px;
  flex-shrink: 0
}

.bost-cln-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .26);
  flex-wrap: wrap;
  gap: 10px
}

.bost-cln-footer {
  background: #0b0b0b;
  color: rgba(255, 255, 255, .62);
  padding: 66px 0 26px
}

.ftrlinks ul {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.ftrlinks {
  background: #a0c715;
}

.ftrlinks ul li {
  margin: 0;
}

.ftrlinks ul li a {
  color: #000;
  padding: 10px;
  display: inline-block;
}

.ftrlinks ul li a:hover {
  color: #000;
}

/* ══════ SCROLL REVEAL ══════ */
.bost-cln-sr {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .58s ease, transform .58s ease
}

.bost-cln-sr.vis {
  opacity: 1;
  transform: translateY(0)
}

.bost-cln-sr-d1 {
  transition-delay: .1s
}

.bost-cln-sr-d2 {
  transition-delay: .2s
}

.bost-cln-sr-d3 {
  transition-delay: .3s
}

/* ══════ KEYFRAMES ══════ */
@keyframes bcUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ══════ RESPONSIVE ══════ */
@media(max-width:1040px) {
  .bost-cln-svc-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .bost-cln-footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .bost-cln-hero-grid {
    grid-template-columns: 1fr 400px
  }
}

@media(max-width:880px) {
  .bost-cln-hero-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
    text-align: center
  }

  .bost-cln-hero-btns,
  .bost-cln-hero-stats {
    justify-content: center
  }

  .bost-cln-hero-desc {
    margin-left: auto;
    margin-right: auto
  }

  .bost-cln-why-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto
  }

  .bost-cln-char-badge {
    right: 0
  }

  .bost-cln-char-badge2 {
    left: 0
  }

  .bost-cln-faq-grid {
    grid-template-columns: 1fr
  }

  .bost-cln-faq-visual {
    position: static;
    margin-bottom: 8px
  }
}

@media(max-width:768px) {
  .bost-cln-links {
    display: none
  }

  .bost-cln-hburg {
    display: flex
  }

  .bost-cln-drawer {
    display: flex
  }

  .bost-cln-section {
    padding: 60px 0
  }

  .bost-cln-svc-grid {
    grid-template-columns: 1fr
  }

  .bost-cln-footer-grid {
    grid-template-columns: 1fr
  }

  .bost-cln-footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .bost-cln-cta-btns {
    flex-direction: column;
    align-items: center
  }
}

@media(max-width:480px) {
  .bost-cln-hero-btns {
    flex-direction: column;
    width: 100%
  }

  .bost-cln-btn {
    justify-content: center;
    width: 100%
  }

  .bost-cln-form-card {
    padding: 22px 16px
  }

  .bost-cln-field-row {
    grid-template-columns: 1fr
  }
}

"width=device-width, initial-scale=1.0"><title>Cleaning Features</title><style>body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

.features-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.features-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex-direction: column;
}

.feature-card {
  background: #fff;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-img {
  flex-shrink: 0;
  max-width: 300px;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-content {
  padding: 20px;
}

.feature-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.feature-content p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

/* Tablet */
@media (max-width: 992px) {
  .feature-card {
    flex: 1 1 calc(50% - 30px);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .features-section {
    padding: 0;
  }

  .feature-card {
    flex: 1 1 100%;
    flex-direction: column;
  }

  .feature-img img {
    height: 200px;
  }
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.sub-heading {
  color: #7ac943;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
}

.main-heading {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.description {
  color: #666;
  max-width: 700px;
  margin-bottom: 40px;
}

/* GRID */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.card {
  background: #fff;
  border: 1px solid #dce5c3;
  border-radius: 18px;
  padding: 25px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

.card p {
  color: #555;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.card ul {
  list-style: none;
}

.card ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.card ul li::before {
  content: "✔";
  color: #7ac943;
  font-weight: bold;
  margin-right: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-heading {
    font-size: 30px;
  }

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

.process-section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.sub-title {
  color: #7ac943;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.main-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.desc {
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
}

.step {
  display: flex;
  gap: 25px;
  padding: 25px 0;
  border-top: 1px solid #eee;
}

.step:first-of-type {
  border-top: none;
}

.step-number {
  font-size: 42px;
  font-weight: 800;
  color: #7ac943;
  min-width: 70px;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.step-content p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

.note {
  margin-top: 8px;
  font-weight: 600;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-title {
    font-size: 30px;
  }

  .step {
    flex-direction: column;
  }

  .step-number {
    font-size: 32px;
  }
}

.pricing-section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* HEADER */
.pricing-sub {
  color: #7ac943;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.pricing-desc {
  color: #666;
  max-width: 700px;
  margin-bottom: 40px;
}

/* MAIN CARD */
.price-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* ROW */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:hover {
  background: #fafafa;
}

.price-title {
  font-size: 16px;
  font-weight: 600;
}

.price-value {
  font-weight: 700;
  color: #7ac943;
}

/* TAG STYLE */
.price-value.small {
  font-weight: 600;
  color: #999;
}

/* OTHER SERVICES CARD */
.other-card {
  margin-top: 30px;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.other-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* GRID FOR OTHER SERVICES */
.other-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.other-item {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: 0.3s;
}

.other-item:hover {
  border-color: #7ac943;
  background: #fafafa;
}

.innerWrap {
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.icon {
  background: linear-gradient(135deg, #a0c715, #cfe580);
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infIcn .icon {
  padding: 6px;
}

.icon svg {
  fill: #fff;
}

.text h4 {
  margin: 0;
  font-size: 16px;
  color: #000;
}

.text p {
  margin: 5px 0 0;
  font-size: 18px;
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .innerWrap {
    grid-template-columns: 1fr;
  }

  .pricing-title {
    font-size: 30px;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

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

.service_content h3,
.service_content h4 {
  margin: 20px 0;
}


/* --- STATIC SERVICE AREAS STYLE SYSTEM --- */
:root {
  --font-hero: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --bg-app: #f8fafc;
  --color-primary: #DBA401;
  --color-primary-dark: #B88600;
  --color-accent: #F5C227;
  --color-text-main: #070706;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --card-bg: #ffffff;
  --card-border: #e2e8f0;

  --radius-md: 12px;
  --shadow-sm: 0 4px 6px -1px rgba(7, 7, 6, 0.05), 0 2px 4px -2px rgba(7, 7, 6, 0.03);
  --shadow-hover: 0 16px 25px -5px rgba(219, 164, 1, 0.15), 0 8px 10px -6px rgba(219, 164, 1, 0.08);

  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Container */
.app-container {
  max-width: 100%;
  width: 100%;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px -12px rgba(7, 7, 6, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Reset double padding inside service_content */
.service_content .bost-cln-wrap,
.service_content .about-text {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* --- HEADER SECTION --- */
.section-header {
  text-align: left;
  margin-bottom: 28px;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(219, 164, 1, 0.12) 0%, rgba(245, 194, 39, 0.18) 100%);
  color: var(--color-primary-dark);
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
  border: 1px solid rgba(219, 164, 1, 0.25);
}

.badge-icon {
  width: 14px;
  height: 14px;
}

.section-header h1 {
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: 1.85rem;
  line-height: 1.25;
  color: #070706;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.section-header h1 span {
  background: linear-gradient(135deg, #DBA401 0%, #B88600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-header .subtitle {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  max-width: 100%;
  margin: 0;
  line-height: 1.6;
}

/* --- STATIC SUBURBS GRID --- */
.areas-section {
  width: 100%;
  margin-top: 20px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Suburb Item Card */
.area-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #FAF7F0;
  border: 1px solid #EBE5D8;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.area-item:hover {
  transform: translateY(-2px);
  background-color: #ffffff;
  border-color: rgba(219, 164, 1, 0.4);
  box-shadow: var(--shadow-hover);
}

/* Check Icon Circle */
.icon-indicator {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(219, 164, 1, 0.15) 0%, rgba(245, 194, 39, 0.25) 100%);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.area-item:hover .icon-indicator {
  background: linear-gradient(135deg, #DBA401 0%, #B88600 100%);
  color: #ffffff;
  transform: scale(1.08);
}

.check-icon {
  width: 13px;
  height: 13px;
}

.area-name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
  transition: var(--transition-smooth);
}

.area-item:hover .area-name {
  color: #070706;
}

/* ==========================================================================
   Base styles for preview page (Optional, feel free to discard when copying)
   ========================================================================== */
:root {
  --font-family: 'Outfit', sans-serif;
  --bg-page: #f8fafc;
  --text-dark: #0f172a;
  --text-muted: #64748b;

  /* Card Accent Colors */
  --accent-general: #0891b2;
  /* Cyan */
  --accent-kitchen: #d97706;
  /* Amber */
  --accent-bath: #db2777;
  /* Pink */
  --accent-laundry: #059669;
  /* Emerald */

  /* Shared tokens */
  --card-radius: 16px;
  --transition-speed: 0.25s;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-dark);
}

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   START OF EMBEDDABLE CHECKLIST GRID COMPONENT STYLES
   (Copy this section directly into your webpage stylesheet)
   ========================================================================== */

/* Grid container for the cards */
.areas-grid.full_widthgrid {
  grid-template-columns: repeat(4, 1fr);
}

.checklist-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

/* Single Checklist Card container */
.checklist-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow var(--transition-speed) ease,
    border-color var(--transition-speed) ease;
}

.checklist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.02);
}

/* Card Accent border bars */
.checklist-card.card-general {
  border-top: 4px solid var(--accent-general);
}

.checklist-card.card-kitchen {
  border-top: 4px solid var(--accent-kitchen);
}

.checklist-card.card-bath {
  border-top: 4px solid var(--accent-bath);
}

.checklist-card.card-laundry {
  border-top: 4px solid var(--accent-laundry);
}

/* Card Header styles */
.card-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

.header-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-general .header-icon {
  background: rgba(8, 145, 178, 0.1);
  color: var(--accent-general);
}

.card-kitchen .header-icon {
  background: rgba(217, 119, 6, 0.1);
  color: var(--accent-kitchen);
}

.card-bath .header-icon {
  background: rgba(219, 39, 119, 0.1);
  color: var(--accent-bath);
}

.card-laundry .header-icon {
  background: rgba(5, 150, 105, 0.1);
  color: var(--accent-laundry);
}

.header-icon svg {
  width: 20px;
  height: 20px;
}

.header-info h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.item-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: #f1f5f9;
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  display: inline-block;
  margin-top: 0.125rem;
}

/* Card Content scrollable container */
.card-content {
  padding: 1.25rem 1.5rem;

}

/* Customize scrollbars inside cards */
.card-content::-webkit-scrollbar {
  width: 4px;
}

.card-content::-webkit-scrollbar-thumb {
  background-color: rgba(226, 232, 240, 0.8);
  border-radius: 4px;
}

/* Task List */
.task-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.task-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

/* Task Icon Container */
.task-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.task-icon svg {
  width: 18px;
  height: 18px;
}

/* Category-specific icon colors */
.card-general .task-icon {
  color: var(--accent-general);
}

.card-kitchen .task-icon {
  color: var(--accent-kitchen);
}

.card-bath .task-icon {
  color: var(--accent-bath);
}

.card-laundry .task-icon {
  color: var(--accent-laundry);
}

/* Task details text styling */
.task-text {
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.45;
}

/* ==========================================================================
   END OF EMBEDDABLE CHECKLIST GRID COMPONENT STYLES
   ========================================================================== */

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 960px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-container {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .app-container {
    padding: 20px 14px;
    border-radius: 16px;
  }

  .section-header h1 {
    font-size: 1.5rem;
  }

  .section-header .subtitle {
    font-size: 0.9rem;
  }

  .area-item {
    padding: 12px 14px;
  }

  .areas-grid.full_widthgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════ GALLERY & LIGHTBOX ══════ */
.gallery-section {
  padding: 80px 0;
  background-color: var(--bc-bg);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.gallery-filter-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bc-dark);
  background-color: var(--bc-white);
  border: 1.5px solid var(--bc-border);
  border-radius: 100px;
  transition: all var(--bc-t);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.gallery-filter-btn:hover {
  border-color: var(--bc-green);
  color: var(--bc-green-d);
  transform: translateY(-1px);
}

.gallery-filter-btn.active {
  background-color: var(--bc-green);
  border-color: var(--bc-green);
  color: var(--bc-white);
  box-shadow: 0 4px 15px rgba(219, 164, 1, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  transition: opacity var(--bc-t);
}

.gallery-item {
  background-color: var(--bc-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 7, 6, 0.04);
  transition: all var(--bc-t);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(7, 7, 6, 0.08);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #eaeaea;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-img-wrapper img {
  transform: scale(1.08);
}

.gallery-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 6, 0.4) 0%, rgba(7, 7, 6, 0) 60%);
  opacity: 0;
  transition: opacity var(--bc-t);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-img-overlay {
  opacity: 1;
}

.gallery-view-icon {
  width: 44px;
  height: 44px;
  background-color: var(--bc-white);
  color: var(--bc-green-d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--bc-sh);
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: auto;
}

.gallery-item:hover .gallery-view-icon {
  opacity: 1;
  transform: translateY(0);
}

.gallery-info {
  padding: 22px;
  border-top: 1px solid var(--bc-bg);
}

.gallery-item-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bc-green-d);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.gallery-item-title {
  font-family: var(--bc-font-h);
  font-size: 18px;
  font-weight: 600;
  color: var(--bc-black);
  line-height: 1.3;
}

/* Lightbox Modal */
.bc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(7, 7, 6, 0.96);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.bc-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.bc-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--bc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--bc-t);
  z-index: 10010;
}

.bc-lightbox-close:hover {
  background-color: var(--bc-green);
  transform: rotate(90deg);
}

.bc-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--bc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--bc-t);
  z-index: 10010;
  user-select: none;
}

.bc-lightbox-arrow:hover {
  background-color: var(--bc-green);
  color: var(--bc-white);
}

.bc-lightbox-arrow.prev {
  left: 24px;
}

.bc-lightbox-arrow.next {
  right: 24px;
}

.bc-lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bc-lightbox.active .bc-lightbox-content {
  transform: scale(1);
}

.bc-lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bc-lightbox-img.loaded {
  opacity: 1;
}

.bc-lightbox-caption {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--bc-white);
  z-index: 10010;
}

.bc-lightbox-caption h4 {
  font-family: var(--bc-font-h);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.bc-lightbox-caption span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--bc-green);
  letter-spacing: 1px;
}

/* Spinner */
.bc-lightbox-spinner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--bc-green);
  animation: bcSpin 0.8s linear infinite;
  display: none;
}

@keyframes bcSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive fixes */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bc-lightbox-arrow {
    width: 44px;
    height: 44px;
  }

  .bc-lightbox-arrow.prev {
    left: 12px;
  }

  .bc-lightbox-arrow.next {
    right: 12px;
  }

  .bc-lightbox-close {
    top: 16px;
    right: 16px;
  }

  .bc-lightbox-content {
    max-width: 90%;
    max-height: 65vh;
  }

  .bc-lightbox-img {
    max-height: 65vh;
  }

  .gallery-section {
    padding: 60px 0;
  }

  .gallery-filters {
    margin-bottom: 32px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bc-lightbox-arrow {
    position: relative;
    top: auto;
    transform: none;
    margin: 0 10px;
  }

  .bc-lightbox-controls-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }

  .bc-lightbox-caption {
    bottom: -100px;
  }
}

/* ==========================================================================
   PREMIUM LIST STYLES (Ordered & Unordered)
   ========================================================================== */
.service_content ol:not([class]),
.page-content ol:not([class]),
.about-text ol:not([class]) {
  list-style-type: none;
  counter-reset: custom-counter;
  padding-left: 0;
  margin: 28px 0;
}

.service_content ol:not([class]) li,
.page-content ol:not([class]) li,
.about-text ol:not([class]) li {
  counter-increment: custom-counter;
  position: relative;
  padding-left: 44px;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #334155; /* slate-700 */
  font-weight: 400;
  transition: all 0.2s ease-in-out;
}

.service_content ol:not([class]) li::before,
.page-content ol:not([class]) li::before,
.about-text ol:not([class]) li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #DBA401 0%, #B88600 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(219, 164, 1, 0.25);
  transition: all 0.2s ease-in-out;
}

.service_content ol:not([class]) li:hover::before,
.page-content ol:not([class]) li:hover::before,
.about-text ol:not([class]) li:hover::before {
  transform: scale(1.1);
  background: linear-gradient(135deg, #B88600 0%, #8A6500 100%);
  box-shadow: 0 6px 10px -1px rgba(219, 164, 1, 0.4);
}

.service_content ol:not([class]) li:hover,
.page-content ol:not([class]) li:hover,
.about-text ol:not([class]) li:hover {
  color: #0f172a; /* slate-900 */
}

/* Unordered Lists */
.service_content ul:not([class]),
.page-content ul:not([class]),
.about-text ul:not([class]) {
  list-style-type: none;
  padding-left: 0;
  margin: 28px 0;
}

.service_content ul:not([class]) li,
.page-content ul:not([class]) li,
.about-text ul:not([class]) li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #334155;
  transition: all 0.2s ease-in-out;
}

.service_content ul:not([class]) li::before,
.page-content ul:not([class]) li::before,
.about-text ul:not([class]) li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  background-color: rgba(219, 164, 1, 0.12);
  color: #DBA401;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}

.service_content ul:not([class]) li:hover::before,
.page-content ul:not([class]) li:hover::before,
.about-text ul:not([class]) li:hover::before {
  transform: scale(1.1);
  background-color: #DBA401;
  color: #ffffff;
  box-shadow: 0 4px 8px -1px rgba(219, 164, 1, 0.3);
}

.service_content ul:not([class]) li:hover,
.page-content ul:not([class]) li:hover,
.about-text ul:not([class]) li:hover {
  color: #0f172a;
}