/* ── Reset ── */
.bcs-header *,
.bcs-header *::before,
.bcs-header *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Variables ── */
.bcs-header {
  --dk-green:   #1a3a0e;
  --mid-green:  #2e6b17;
  --lime:       #7ab800;
  --lime-lt:    #a8cc00;
  --white:      #ffffff;
  --text:       #1a1a1a;
  --muted:      #555555;
  --border:     #e5e5e5;
  --font:       'Poppins', sans-serif;
  --shadow:     0 2px 20px rgba(0,0,0,0.08);
}

/* ── Container ── */
.bcs-header__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bcs-header__strip-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Top info strip ── */
.bcs-header__strip {
  background: var(--dk-green);
  padding: 7px 24px;
}

.bcs-header__strip-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bcs-header__strip-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

.bcs-header__strip-item strong {
  color: var(--lime-lt);
  font-weight: 600;
}

.bcs-header__strip-item .bcs-strip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  flex-shrink: 0;
}

.bcs-header__strip-item .bcs-strip-icon svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255,255,255,0.75);
}

.bcs-header__strip-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bcs-header__strip-rating {
  font-family: var(--font);
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 5px;
}

.bcs-header__strip-rating .bcs-stars {
  color: var(--lime-lt);
  font-size: 11px;
  letter-spacing: 1px;
}

/* ── Main nav bar ── */
.bcs-header__nav {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 999;
  height: 76px;
  border-bottom: 3px solid var(--lime);
}

.bcs-header__container {
  height: 100%;
}

/* Logo */
.bcs-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.bcs-header__logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* Nav links */
.bcs-header__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.bcs-header__menu > li {
  position: relative;
}

.bcs-header__menu > li > a {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.bcs-header__menu > li > a:hover,
.bcs-header__menu > li > a.active {
  color: var(--lime);
  background: rgba(122,184,0,0.06);
}

/* Active indicator */
.bcs-header__menu > li > a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

/* Dropdown arrow */
.bcs-header__menu .bcs-arrow {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.bcs-header__menu > li:hover .bcs-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown */
.bcs-header__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  border-top: 3px solid var(--lime);
  padding: 8px;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 100;
}

.bcs-header__menu > li:hover .bcs-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bcs-header__dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}

.bcs-header__dropdown li a:hover {
  background: rgba(122,184,0,0.08);
  color: var(--lime);
}

.bcs-header__dropdown li a .bcs-dd-icon {
  width: 28px;
  height: 28px;
  background: rgba(122,184,0,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bcs-header__dropdown li a .bcs-dd-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--lime);
}

/* ── CTA area ── */
.bcs-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.bcs-header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.bcs-header__phone:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.bcs-header__phone-icon {
  width: 28px;
  height: 28px;
  background: var(--lime);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bcs-header__phone-icon svg {
  width: 14px;
  height: 14px;
}

.bcs-header__quote {
  background: var(--lime) !important;
  color: var(--dk-green) !important;
  font-family: var(--font) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  transition: background 0.2s, transform 0.15s !important;
  white-space: nowrap !important;
  box-shadow: 0 3px 12px rgba(122,184,0,0.35) !important;
}

.bcs-header__quote svg {
  width: 14px !important;
  height: 14px !important;
  stroke: var(--dk-green) !important;
  flex-shrink: 0;
}

.bcs-header__quote:hover {
  background: var(--lime-lt) !important;
  transform: translateY(-1px) !important;
}

/* ── Mobile hamburger ── */
.bcs-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.bcs-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.bcs-header__mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
}

.bcs-header__mobile.is-open {
  display: block;
}

.bcs-header__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bcs-header__mobile ul a {
  display: block;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}

.bcs-header__mobile ul a:hover {
  background: rgba(122,184,0,0.08);
  color: var(--lime);
}

.bcs-header__mobile-cta {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.bcs-header__mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bcs-header__mobile-cta .m-call {
  background: rgba(122,184,0,0.1);
  color: var(--lime);
  border: 1.5px solid var(--lime);
}

.bcs-header__mobile-cta .m-call svg {
  width: 15px;
  height: 15px;
  stroke: var(--lime);
  flex-shrink: 0;
}

.bcs-header__mobile-cta .m-quote {
  background: var(--lime);
  color: var(--dk-green);
}

.bcs-header__mobile-cta .m-quote svg {
  width: 14px;
  height: 14px;
  stroke: var(--dk-green);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .bcs-header__menu { display: none; }
  .bcs-header__phone { display: none; }
  .bcs-header__quote { display: none !important; }
  .bcs-header__burger { display: flex; }
}

/* ── Mobile accordion: Services ── */
.bcs-mobile__has-children {
  display: flex;
  flex-direction: column;
}

.bcs-mobile__toggle-wrap {
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}

.bcs-mobile__toggle-link {
  flex: 1;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  transition: background 0.18s, color 0.18s;
}

.bcs-mobile__toggle-link:hover {
  background: rgba(122,184,0,0.08);
  color: var(--lime);
}

.bcs-mobile__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(122,184,0,0.08);
  border: none;
  border-left: 1px solid var(--border);
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s;
}

.bcs-mobile__toggle:hover,
.bcs-mobile__toggle[aria-expanded="true"] {
  background: rgba(122,184,0,0.18);
}

.bcs-mobile__arrow {
  width: 12px;
  height: 12px;
  stroke: var(--lime);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.bcs-mobile__toggle[aria-expanded="true"] .bcs-mobile__arrow {
  transform: rotate(180deg);
}

.bcs-mobile__sub {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 12px;
}

.bcs-mobile__sub.is-open {
  max-height: 400px;
}

.bcs-mobile__sub li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  border-left: 2px solid var(--border);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.bcs-mobile__sub li a:hover {
  background: rgba(122,184,0,0.08);
  color: var(--lime);
  border-left-color: var(--lime);
}

.bcs-mobile__sub li a .bcs-mob-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bcs-mobile__sub li a .bcs-mob-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--lime);
}

/* ── Tablet & Mobile: hide top strip entirely ── */
@media (max-width: 768px) {
  .bcs-header__strip { display: none; }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .bcs-header__nav {
    height: 64px;
    padding: 0 14px;
  }

  .bcs-header__logo img {
    height: 42px;
  }

  .bcs-header__cta {
    gap: 8px;
  }

  .bcs-header__mobile {
    padding: 12px 14px 18px;
  }

  .bcs-header__mobile ul a {
    padding: 13px 14px;
    font-size: 15px;
  }

  .bcs-header__mobile-cta {
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
  }

  .bcs-header__mobile-cta a {
    padding: 14px 16px;
    font-size: 15px;
    text-align: center;
  }
}

/* ── Extra small (≤ 360px) ── */
@media (max-width: 360px) {
  .bcs-header__nav {
    padding: 0 10px;
    height: 60px;
  }

  .bcs-header__logo img {
    height: 38px;
  }
}
