:root {
  font-family: "Arimo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-size: 16px;
  --primary: #030213;
  --primary-foreground: oklch(1 0 0);
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --radius: 0.625rem;
  --hero-green: #66b933;
  --hero-dark-green: #2d5016;
  --background: #ffffff;
  --foreground: oklch(0.145 0 0);
  --card: #ffffff;
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);
  --secondary: oklch(0.95 0.0058 264.53);
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --input: transparent;
  --input-background: #f3f3f5;
  --switch-background: #cbced4;
  --ring: oklch(0.708 0 0);
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --hero-overlay: rgba(0, 0, 0, 0.43);
  --club-green-top: #6b9a2c;
  --club-green-bottom: #8cc63f;
  --tracking-tight: -0.025em;
  --tracking-wider: 0.05em;
}

html {
  font-size: var(--font-size);
}

body {
  font-size: 1rem;
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

a.nav-link.bm-nav-link.dropdown-toggle::after {
  display: none;
}

.text-light-green {
  color: #66b933;
}

.top-banner {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.main-header {
  background-color: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.hero-section {
  background-image: linear-gradient(var(--hero-overlay), var(--hero-overlay)),
    url("../img/bull-hero-img.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 65vh;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  line-height: 1.1;
  font-weight: var(--font-weight-medium);
  background: linear-gradient(90deg,
      var(--hero-green),
      var(--primary-foreground),
      var(--hero-green));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient 9s ease infinite;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-call {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: var(--font-weight-medium);
}

.hero-phone {
  font-size: 1.5em;
  font-weight: var(--font-weight-medium);
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.sidebar-gradient {
  background: linear-gradient(90deg,
      var(--hero-dark-green),
      var(--hero-green),
      var(--hero-dark-green));
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.sidebar-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.sidebar-city {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 1rem;
}

.sidebar-phone {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-medium);
}

.cta-gradient {
  background: linear-gradient(to right, var(--hero-dark-green), var(--hero-green));
  font-weight: var(--font-weight-medium);
  box-shadow: 0 0.75rem 2rem rgba(102, 185, 51, 0.3);
  border: none;
}

.hvac-footer {
  background-color: #0f172a;
  color: #ffffff;
  padding: 3rem 0 2rem;
}

.footer-container {
  margin: 0 auto;
  padding: 0 1rem;
}

.hvac-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .hvac-footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 2rem;
  }

  .bm-mission-copy {
    font-size: 12px;
    font-weight: 600;
  }
}

@media (min-width: 992px) {
  .hvac-footer-grid {
    gap: 5rem;
  }
}

.footer-brand h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--hero-green);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1rem;
}

.brand-description {
  color: #94a3b8;
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--hero-green);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(140, 198, 63, 0.4);
}

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-column h4 {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: var(--font-weight-medium);
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: clamp(0.875rem, 2vw, 0.95rem);
  font-weight: var(--font-weight-normal);
  transition: all 0.3s ease;
  display: block;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #334155;
}

.bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.bottom-text {
  color: #94a3b8;
  font-size: clamp(0.8rem, 2vw, 0.875rem);
  margin: 0;
}

.bottom-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bottom-link:hover {
  color: #ffffff;
}

.navbar-brand {
  width: 250px;
}

@media (max-width: 767.98px) {
  a.navbar-brand {
    width: 75%;
  }

  .bm-mission-copy {
    font-size: 12px !important;
    font-weight: 600;
  }

  .bm-service-title {
    font-size: 24px !important;
  }

  .hvac-footer {
    padding: 2rem 0 1.5rem;
  }

  .hvac-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .social-links {
    justify-content: center;
  }
}

.footer-title {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1.5rem;
}

.brand-name {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-medium);
}

.custom-divider {
  border-top: 4px solid var(--hero-green);
  width: 50%;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .sidebar-gradient {
    margin-top: 2rem;
  }
}

.bm-topbar {
  background: #ffffff;
  border-bottom: 1px solid #e3e3e3;
}

.bm-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}

.bm-top-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.bm-top-call-text {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #777;
}

.bm-top-phone {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.bm-top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bm-btn {
  display: inline-block;
  border: none;
  outline: none;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 8px;
  text-transform: capitalize;
  letter-spacing: 0.06em;
}

.bm-btn-book {
    margin-top: 0px;
    border: none;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    background: linear-gradient(to right, var(--hero-dark-green), var(--hero-green));
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.bm-btn-filters {
  background: #000 !important;
  color: #fff !important;
}

.bm-btn-filters:hover {
  background: #111 !important;
}

.bm-nav {
  background: #ffffff;
  border-bottom: 1px solid #dedede;
  padding-top: 4px;
  padding-bottom: 4px;
}

.bm-nav-link {
  color: #1e2939 !important;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.bm-nav-link:hover {
  color: #1e2939 !important;
}

.bm-dropdown-menu {
  border-radius: 0;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  padding: 6px 0;
  margin-top: 0;
}

.bm-dropdown-menu .dropdown-item {
  padding: 4px 18px;
}

.bm-dropdown-menu .dropdown-item:hover {
  background: #f5f5f5;
  color: #000;
}

@media (min-width: 992px) {
  .bm-dropdown-hover:hover>.dropdown-menu {
    display: block;
  }
}

.bm-service-hero {
  color: #ffffff;
  background: url("../img/ServiceClubHero.png") center/cover no-repeat;
}

.services-intro {
  background-color: #ffffff;
  padding: 5rem 0;
}

.services-container {
  margin: 0 auto;
  padding: 0 1rem;
}

.services-title {
  font-size: 64px;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(to bottom,
      var(--hero-dark-green),
      var(--hero-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .services-title {
    font-size: 34px;
  }
}

@media (min-width: 1200px) {
  .services-title {
    font-size: 60px;
  }
}

.services-subtitle {
  font-size: clamp(1rem, 3vw, 1.75rem);
  text-align: center;
  color: #6b7280;
  margin-bottom: 3rem;
  font-weight: var(--font-weight-normal);
}

.services-content {
  width: 80%;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.7;
  color: #374151;
}

.services-content p {
  margin-bottom: 1.5rem;
}

.services-content p:last-child {
  margin-bottom: 0;
}

.services-cta {
  background: linear-gradient(to right,
      var(--hero-dark-green),
      var(--hero-green),
      var(--hero-dark-green));
  border: none;
  border-radius: var(--radius);
  color: #ffffff;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: var(--font-weight-medium);
  padding: 1.2rem 3rem;
  text-decoration: none;
  display: inline-block;
  background-size: 200%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 185, 51, 0.3);
  text-transform: capitalize;
  letter-spacing: 0.05em;
}

.services-cta:hover {
  opacity: 0.9;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 185, 51, 0.4);
  text-decoration: none;
}

.mission-section {
  margin-top: 4rem;
}

.mission-image {
  width: 100%;
  max-width: 50rem;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767.98px) {
  .services-intro {
    padding: 3rem 0 0rem;
}

  .services-title {
    margin-bottom: 1rem;
    font-size: 36px;
  }

  .services-subtitle {
    margin-bottom: 2rem;
  }

  .services-cta {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
  }
	.services-content {
		margin: 0 auto 0rem;
	}
}

@media (max-width: 575.98px) {
  .services-container {
    padding: 0 0.75rem;
  }

  .services-content {
    font-size: 1rem;
  }
}

.bm-mission {
  padding: 40px 0 50px;
  background: #ffffff;
}

.bm-mission-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.bm-mission-text {
  flex: 0 0 auto;
}

.bm-mission-box {
  text-align: center;
  color: #1cbf5d;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  padding: 18px 20px;
  position: relative;
}

.bm-mission-box::before,
.bm-mission-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #34a751;
}

.bm-mission-box::before {
  top: 0;
}

.bm-mission-box::after {
  bottom: 0;
}

.bm-mission-title {
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #64cd76;
}

.bm-mission-copy {
  font-size: 20px;
  font-weight: 700;
}

.bm-mission-image img {
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .bm-mission-inner {
    flex-direction: column;
    gap: 24px;
  }
}

.bm-service-grid-section {
  padding: 40px 0 60px;
  background: #f5f5f5;
}

.bm-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 80px;
}

.bm-service-item {
  font-size: 13px;
  color: #444;
  position: relative;
min-height: 250px;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: space-between;
}

.bm-service-title {
  font-size: 32px;
  color: var(--hero-dark-green);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.bm-service-text {
  color: #374151;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.bm-service-btn {
  background: linear-gradient(180deg, #44a02f 0%, #287621 100%);
  border: none;
  border-radius: 3px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

@media (max-width: 767.98px) {
  .bm-service-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.bm-hero-main-btn {
  background: linear-gradient(to right,
      var(--hero-dark-green),
      var(--hero-green),
      var(--hero-dark-green));
  border: none;
  border-radius: var(--radius);
  color: #ffffff;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: var(--font-weight-medium);
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  background-size: 200%;
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(102, 185, 51, 0.3);
}

input.bm-hero-main-btn {
    background: #66b933;
    padding: 2px 0px;
    margin-top: 2%;
    background: linear-gradient(to right, var(--hero-dark-green), var(--hero-green));
    font-weight: 700;
    box-shadow: 0 0.75rem 2rem rgba(102, 185, 51, 0.3);
    border: none;
    padding: 2px 1.5rem;
    font-size: 1.25rem;
	border-radius: var(--radius);
	color: #ffffff;
}

.bm-hero-main-btn:hover {
  opacity: 0.9;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 185, 51, 0.4);
  text-decoration: none;
}

.certifications-section {
  background-color: #ffffff;
  padding: 5rem 0;
}

.certifications-container {
  margin: 0 auto;
  padding: 0 1rem;
}

.cert-title {
  font-size: clamp(3rem, 8vw, 4.5rem);
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(to bottom,
      var(--hero-dark-green),
      var(--hero-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .cert-title {
    font-size: clamp(4rem, 10vw, 5.5rem);
  }
}

@media (min-width: 1200px) {
  .cert-title {
    font-size: clamp(3.5rem, 8vw, 60px);
  }
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .cert-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
  }
}

.cert-feature {
  margin-bottom: 3rem;
}

.cert-feature:last-child {
  margin-bottom: 0;
}

.cert-feature-title {
  font-size: 34px;
  color: var(--hero-dark-green);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cert-feature-title {
    font-size: 24px;
  }
}

.cert-feature-text {
  color: #374151;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.7;
}

.left-column .cert-feature {
  margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
  .certifications-section {
    padding: 3rem 0 0;
  }

  .cert-title {
    margin-bottom: 2rem;
  }

  .cert-grid {
    gap: 2.5rem;
  }

  .cert-feature {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .certifications-container {
    padding: 0 0.75rem;
  }

  .cert-feature-title {
    font-size: 20px;
  }
}

.bm-appointment {
  padding: 60px 0 80px;
  background: #F9FAFB;
}

.bm-apt-title {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #3f8c2b;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bm-apt-sub {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #0a0a0a;
}

.bm-apt-desc {
  font-size: 14px;
  color: #364153;
  margin: 0 auto 30px;
}

.bm-apt-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 22px 26px 24px;
  text-align: left;
}

.bm-apt-input {
  font-size: 13px;
  border-radius: 8px;
  background: #f3f3f5;
}

.bm-apt-input:focus {
  box-shadow: none;
  border-color: #8cc152;
}

.form-check-input:checked {
  background-color: #030213;
  border-color: #030213;
}

.form-select {
  appearance: auto;
}

span.wpcf7-list-item.first.last {
  display: block;
  margin: -6px 0 0 0em;
}

.bm-apt-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-top: 10px;
}

.bm-apt-footer-left {
  flex: 1 1 auto;
}

.bm-apt-legal {
  color: #4a5565;
  line-height: 1.4;
  font-size: 14px;
  padding: 14px 0px;
}

.bm-apt-legal a {
  color: #3366bb;
  text-decoration: underline;
}

.bm-apt-legal span {
  color: #2d5016;
}

.bm-apt-footer-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.bm-apt-send-btn-lg {
  min-width: 150px;
  padding: 10px 34px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(180deg, #44a02f 0%, #287621 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.bm-apt-send-btn {
  background: linear-gradient(180deg, #44a02f 0%, #287621 100%);
  color: #ffffff;
  border: none;
  border-radius: 3px;
  padding: 8px 34px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

@media (max-width: 767.98px) {
  .bm-apt-footer {
    flex-direction: column;
    gap: 16px;
  }

  .bm-apt-footer-right {
    justify-content: flex-start;
  }

  .bm-apt-send-btn-lg {
    width: 100%;
    text-align: center;
  }

  .bm-apt-title {
    font-size: 26px;
    letter-spacing: 0.12em;
  }

  .bm-apt-card {
    padding: 18px 16px 20px;
  }

  .bm-apt-send-btn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  .bm-apt-card .d-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .bm-hero-kicker {
    font-size: 18px;
  }

  .bm-hero-title {
    font-size: 40px;
  }

  .bm-hero-box {
    width: 100%;
    padding: 20px 15px 20px;
  }

  .bm-services-title {
    font-size: 40px;
  }

  .bm-mission-box {
    padding: 6px 2px;
  }

  .bm-mission-image {
    padding: 0;
  }

  .bm-mission-title {
    font-size: 20px;
  }

  .bm-mission-image img {
    max-width: 100%;
    height: auto;
  }

  .bm-mission,
  .bm-why,
  .bm-service-grid-section,
  .bm-appointment {
    padding: 20px 0 20px;
  }
}

.bm-news-section {
  padding: 50px 0 60px;
  background: #f5f5f5;
}

.bm-news-card {
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  font-size: 13px;
}

.bm-news-card img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  border-radius: 10px;
}

.bm-news-body {
  padding: 12px 14px 14px;
}

.bm-news-title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 4px;
  color: #0a0a0a;
}

.bm-news-meta {
  font-size: 11px;
  color: #777777;
  margin-bottom: 6px;
}

.bm-news-text {
  font-size: 16px;
  color: #364153;
}

.bm-news-more-link {
  display: inline-block;
  font-size: 16px;
  color: #2d5016;
  text-decoration: none;
  padding: 8px 0;
}

.bm-news-more-link:hover {
  text-decoration: underline;
}

.bm-footer-bar {
  height: 15px;
  background: linear-gradient(90deg, #2d5016 0%, #66b933 50%, #2d5016 100%);
}

.bm-footer {
  background: #111;
  color: #ddd;
  font-size: 12px;
  padding-top: 30px;
}

.bm-footer-top {
  padding-bottom: 30px;
}

.bm-footer-brand {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}

.bm-footer-map iframe {
  border-radius: 2px;
  width: 100%;
  height: 220px;
}

.bm-footer-logos {
  display: flex;
  gap: 30px;
  margin-top: 16px;
  font-size: 12px;
  color: #f5f5f5;
}

.bm-footer-heading {
  font-size: 16px;
  text-transform: uppercase;
  color: #66b933;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.bm-footer-text {
  color: #cccccc;
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 14px;
}

.bm-footer-middle {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 18px 0;
  margin-top: 20px;
}

.bm-footer-middle-text {
  margin: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 1.5;
}

.bm-footer-bottom {
  padding: 10px 0 14px;
  font-size: 11px;
}

.bm-footer-link {
  color: #cccccc;
  text-decoration: none;
}

.bm-footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .bm-footer-brand {
    text-align: center;
  }

  .bm-footer-logos {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .bm-footer-top {
    text-align: center;
  }

  .bm-footer-middle-text {
    padding: 0 10px;
  }
}

.bm-club-benefits {
  padding: 60px 0 70px;
  background: #ffffff;
}

.bm-club-benefits-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.5;
  margin: 0;
}

.bm-club-benefits-title span {
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    letter-spacing: -0.02em;
	font-size: 2.25rem;
}

.bm-club-benefits img {
  margin: 0 auto;
  height: 437px;
  width: 437px;
}

.bm-club-benefit-item {
  margin-bottom: 18px;
}

.bm-club-benefit-item h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #111827;
}

.bm-club-benefit-item p {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 0;
}

.bm-club-program-card {
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  padding: 22px 26px 20px;
  font-size: 13px;
}

.bm-club-program-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.bm-club-program-text {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 16px;
}

.bm-club-plan-block {
  border-left: 3px solid #e5e7eb;
  padding: 12px 14px;
  margin-bottom: 12px;
}

.bm-club-plan-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.bm-club-plan-price {
  font-size: 18px;
    margin-bottom: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bm-club-plan-price span {
  font-size: 18px;
  font-weight: 700;
  color: #3f8c2b;
}

.bm-club-plan-note {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 6px;
}

.bm-club-plan-list {
  padding-left: 16px;
  margin: 0;
  list-style: none;
}

.bm-club-plan-list li {
  color: #4b5563;
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  margin-bottom: 6px;
}

/* green tick before li */
.bm-club-plan-list li::before {
  content: "\2713";
  /* ✓ */
  position: absolute;
  left: 0;
  top: 0;
  color: #8cc152;
  font-size: 13px;
}

.bm-club-price-card.js-club-card.is-selected {
  background: #3f8c2b;
  color: #ffffff;
}

.bm-club-plan-block.is-selected {
  border-left-color: #66b933;
  background: #f7fbf4;
}

.bm-club-price-card.js-club-card.is-selected .bm-club-plan-name--vip {
  color: #3f8c2b;
}

.bm-club-price-card.js-club-card.is-selected .bm-club-plan-price--vip span {
  color: #3f8c2b;
}

.bm-club-price-card.js-club-card.is-selected .bm-club-price-main span,
.bm-club-price-card.js-club-card.is-selected .bm-club-price-label,
.bm-club-price-card.js-club-card.is-selected .bm-club-price-foot,
.bm-club-price-card.js-club-card.is-selected .bm-club-price-note,
.bm-club-price-card.js-club-card.is-selected .bm-club-price-main {
  color: #ffffff;
}

.bm-club-price-card.js-club-card.is-selected .bm-club-program-footnote {
  font-size: 10px;
  color: #9ca3af;
  margin-top: 8px;
}

.bm-club-choose {
  margin-top: 40px;
}

.bm-club-choose-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 18px;
}

.bm-club-price-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 18px 10px 16px;
  outline: 2px solid #66b933;
  box-shadow: 0 0 0 3px rgba(102, 185, 51, 0.2);
}

/* .bm-club-plan-block--vip {
      background: #f7fbf4;
      border-left-color: #66b933
    } */

.bm-club-plan-name--vip {
  color: #3f8c2b;
}

.bm-club-plan-price--vip span {
  color: #3f8c2b;
}

.bm-club-program-footnote {
  font-size: 10px;
  color: #9ca3af;
  margin-top: 8px;
}

.bm-club-price-label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.bm-club-price-main {
    font-size: 20px;
    margin-bottom: 4px;
    font-weight: 600;
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bm-club-price-main span {
      font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    font-weight: 600;
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bm-club-price-note {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

.bm-club-price-foot {
  font-size: 11px;
  color: #4b5563;
  margin-bottom: 0;
}

.bm-club-price-card--vip {
  background: #3f8c2b;
  color: #ffffff;
}

.bm-club-price-label--vip {
  color: #e5f7da;
}

.bm-club-price-main--vip span {
  color: #ffffff;
}

.bm-club-price-card--vip .bm-club-price-note,
.bm-club-price-card--vip .bm-club-price-foot {
  color: #e5f7da;
}

.bm-club-cta-btn {
  margin-top: 18px;
  border: none;
  border-radius: 999px;
  padding: 10px 32px;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  /* background: linear-gradient(180deg, #44a02f 0%, #287621 100%); */
  background: linear-gradient(to right, var(--hero-dark-green), var(--hero-green));
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

a.bm-club-phone {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.bm-service-hero {
  background: url("../img/ServiceClubHero.png") center/cover no-repeat;
  color: #ffffff;
}

.service-hero {
  position: relative;
  overflow: hidden;
  background-color: #000;
  color: #fff;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/ServiceClubHero.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.service-hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 4.5rem;
}

@media (min-width: 768px) {
  .service-hero__content {
    padding: 4.5rem 8px 4.5rem;
  }
}

.service-hero__kicker {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.service-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
}

.service-hero__title-highlight {
  color: #8cc63f;
}

.service-hero__subtitle {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 500;
}

.service-hero__text {
  font-size: 1rem;
  line-height: 1.7;
}

.service-hero__card {
  width: 100%;
  border-radius: 0.85rem;
  padding: 1.75rem 2.2rem 1.9rem;
  background: linear-gradient(180deg,
      var(--club-green-top),
      var(--club-green-bottom));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.service-hero__card-title {
  color: #ffffff;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.service-hero__card-call {
  color: #ffffff;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.service-hero__card-divider {
  width: 70px;
  height: 2px;
  margin-inline: auto;
  background-color: #ffffff;
}

.service-hero__card-city {
  color: #ffffff;
  font-size: 1.1rem;
}

.service-hero__card-phone {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
}

.service-hero__card-btn {
  width: 100%;
  display: block;
  border: none;
  border-radius: 0.6rem;
  padding: 0.8rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  background-color: #ffffff;
  color: #8cc63f;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.1s ease;
}

.service-hero__card-btn:hover {
  background-color: #f5f5f5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

@media (max-width: 767.98px) {
  .service-hero__content {
    padding: 3.5rem 8px 3.5rem;
  }

  .bm-club-benefits img {
    margin: 0 auto;
    height: 350px !important;
  }

  .service-hero__card {
    margin-top: 1.5rem;
  }

  .bm-club-benefits {
    padding: 30px 0px 20px;
    background: #ffffff;
  }
	bm-club-benefits{
		padding: 10px 0px 40px !important;
	}
	.bm-faq-section {
		padding: 20px 0 70px;
	}
}

.bm-club-price-card.is-selected {
  outline: 2px solid #66b933;
  box-shadow: 0 0 0 3px rgba(102, 185, 51, 0.2);
}

.bm-club-program-sticky {
  position: sticky;
  top: 140px;
}

@media (max-width: 767.98px) {
  .bm-club-program-sticky {
    position: static;
  }
}

.bm-faq-section {
  background: #f9fafb;
  padding: 60px 0 70px;
}

.bm-faq-title {
  font-size: clamp(1.8rem, 3vw, 2.1rem);
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.bm-faq-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #6b7280;
}

.bm-faq-accordion .accordion-item {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  margin-bottom: 1rem;
}

.bm-faq-accordion .accordion-button {
  font-size: 0.98rem !important;
  padding: 0.9rem 1.4rem !important;
  background-color: #ffffff;
  border: 0;
  box-shadow: none;
}

.bm-faq-accordion .accordion-button:not(.collapsed) {
  background-color: #f9fafb;
  color: #111827;
}

/* .bm-faq-accordion .accordion-button::after {
      background-image: url("../img/Installations-img-hand.jpg");
      transform-origin: center
    } */

.bm-faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.bm-faq-accordion .accordion-body {
  padding: 0 1rem 0.9rem;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
}

@media (min-width: 576px) {
  .bm-faq-accordion .accordion-button {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }

  .bm-faq-accordion .accordion-body {
    padding: 0 1.25rem 1.1rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 992px) {
  .bm-faq-section {
    padding: 70px 0 80px;
  }
}

.hvac-features-section {
  background: #f9fafb;
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .hvac-features-section {
    padding: 4.5rem 0;
  }
}

.hvac-features-title {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.hvac-features-lead {
  font-size: 0.98rem;
  color: #4b5563;
}

.hvac-feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: #8cc63f;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  font-size: 34px;
}

.hvac-feature-title {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: #0f172a;
  font-weight: 600;
}

.hvac-feature-text {
  font-size: 0.95rem;
  color: #4b5563;
}

.hvac-timeline-section {
  background: #ffffff;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hvac-timeline-section {
    padding: 2.5rem 0;
  }
}

.hvac-timeline-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
}

.hvac-timeline-card:hover {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.hvac-timeline-icon {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  background: #8cc63f;
  color: #ffffff;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.hvac-timeline-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hvac-timeline-text {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.7;
}

.hvac-timeline-note {
  font-size: 0.8rem;
  color: #4b5563;
}

.hvac-steps-section {
  background: #ffffff;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hvac-steps-section {
    padding: 4.5rem 0;
  }
}

.hvac-steps-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #0f172a;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.hvac-steps-divider {
  height: 4px;
  width: 100%;
  max-width: 1120px;
  margin: 0.75rem auto 0;
  background: #8cc63f;
}

.hvac-step-circle {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 2px solid #000;
  font-size: 30px;
}

.hvac-step-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.hvac-step-text {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
}

.hvac-maint-section {
  background: #ffffff;
  padding: 5rem 0;
}

@media (max-width: 767.98px) {
  .hvac-maint-section {
    padding: 3.5rem 0;
  }
}

.hvac-maint-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: #0f172a;
  font-weight: 600;
}

.hvac-maint-title span {
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hvac-maint-text {
  font-size: 0.98rem;
  color: #4b5563;
}

.hvac-maint-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hvac-maint-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #111827;
}

.hvac-maint-check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #8cc63f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  flex-shrink: 0;
}

.hvac-maint-btn {
  margin-top: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: capitalize;
  /* background: #8cc63f; */
  background: linear-gradient(to right, var(--hero-dark-green), var(--hero-green));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.hvac-maint-btn:hover {
  background: #7ab52f;
  color: #ffffff;
}

.hvac-maint-image {
  border-radius: 1.25rem;
  box-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a), 0 8px 10px -6px var(--tw-shadow-color, #0000001a);
  overflow: hidden;
}

.hvac-faqs-section {
  background: #0f172a;
  padding: 5rem 0;
}

.hvac-faqs-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: #ffffff;
  font-weight: 600;
}

.hvac-faqs-accordion .accordion-item {
  border-radius: 0.9rem;
  overflow: hidden;
  border: 0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.4);
  background: #ffffff;
  margin-bottom: 1rem;
}

.hvac-faqs-accordion .accordion-button {
  padding: 0.9rem 1.4rem;
  font-size: 0.98rem;
  color: #0f172a;
  background: #ffffff;
  box-shadow: none;
}

.hvac-faqs-accordion .accordion-button:not(.collapsed) {
  background: #f8fafc;
}

.hvac-faqs-accordion .accordion-body {
  padding: 0 1.4rem 1.1rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

.hvac-cta-section {
  background: radial-gradient(circle at top left, #e5ecff, #f9fafb);
  padding: 5rem 0;
}

.hvac-cta-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-align: center;
  height: 100%;
}

.hvac-cta-card:hover {
  box-shadow: 0 24px 60px rgba(79, 70, 229, 0.22);
  border-color: #c7d2fe;
  transform: translateY(-2px);
}

.hvac-cta-title {
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: 1.4rem;
  font-weight: 600;
}

.hvac-cta-btn {
  border: none;
  border-radius:10px;
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  /* background: #8cc63f; */
  background: linear-gradient(to right, var(--hero-dark-green), var(--hero-green));
  color: #ffffff;
  text-transform: capitalize;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
}

.hvac-cta-btn:hover {
  background: #7ab52f;
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .hvac-cta-section {
    padding: 3.5rem 0;
  }
	.ac-hero {
	height: unset !important;
}
}

.ac-hero {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.ac-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--hero-overlay), var(--hero-overlay)),
    url("../img/Service-repair-hero.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.ac-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.ac-hero__content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .ac-hero__content {
    padding: 1.5rem 0;
  }
}

.ac-hero__kicker {
  font-size: 1.05rem;
  color: #e5e7eb;
}

.ac-hero__title-line {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.25rem;
}

.ac-hero__title-line span {
  color: #8cc63f;
}

.ac-hero__subtitle {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.3rem;
}

.ac-hero__subtitle span {
  color: #8cc63f;
}

.ac-hero__text {
  font-size: 1rem;
  color: #e5e7eb;
}

.ac-hero__card {
  /* background: #8cc63f; */
  border-radius: 1rem;
  padding: 2rem 2.25rem;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.ac-hero__card-title {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffffff;
}

.ac-hero__card-bar {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  padding: 0.75rem 0;
  margin: 0 0 1rem;
}

.ac-hero__card-bar p {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffffff;
}

.ac-hero__city {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.ac-hero__phone {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 1.4rem;
}

.ac-hero__phone:hover {
  opacity: 0.9;
}

.ac-hero__btn {
  width: 100%;
  border: none;
  border-radius: 0.75rem;
  padding: 0.9rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #ffffff;
  color: #8cc63f;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.ac-hero__btn:hover {
  background: #f3f3f3;
  color: #8cc63f;
}

.ac-services-section {
  background: #ffffff;
  padding: 4rem 0 4.5rem;
}

.ac-services-title-main {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
}

.ac-services-title-main span {
    /* color: #8cc63f; */
    /* font-size: 64px; */
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: var(--font-weight-medium);
    /* text-transform: uppercase; */
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ac-services-title-sub {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  text-transform: uppercase;
  color: #111827;
}

.ac-services-underline {
  width: 130px;
  height: 4px;
  background: #8cc63f;
  margin-top: 1rem;
}

.ac-service-card {
  position: relative;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 0.9rem;
  padding: 2rem 1.75rem 2.1rem;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.2s ease;
  height: 100%;
}

.ac-service-card:hover {
  border-color: #8cc63f;
  /* box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  transform: translateY(-2px); */
}

.ac-service-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: #8cc63f;
  opacity: 0.08;
  transform: translate(40px, -40px) rotate(45deg);
  transition: opacity 0.25s ease;
}

.ac-service-card:hover .ac-service-corner {
  opacity: 0.16;
}

.ac-service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  transition: background 0.25s ease, color 0.25s ease;
  z-index: 1;
}

.ac-service-card:hover .ac-service-badge {
  background: #8cc63f;
  color: #ffffff;
}

.ac-service-title {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  color: #101828;
  transition: color 0.25s ease;
}

.ac-service-card:hover .ac-service-title {
  	margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ac-service-bar {
  width: 48px;
  height: 4px;
/*   background: #8cc63f; */
  margin-bottom: 1rem;
  transition: width 0.25s ease;
  background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
}

.ac-service-card:hover .ac-service-bar {
  width: 80px;
}

.ac-service-text {
  font-size: 1rem;
  color: #4a5565;
  margin: 0;
}

.ac-intro-wrap {
  background: #f9fafb;
  padding: 4.5rem 0;
}

.ac-intro-cta {
      background: linear-gradient(90deg, var(--hero-dark-green), var(--hero-green), var(--hero-dark-green));
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  color: #ffffff;
}

.ac-intro-cta-title {
  font-size: clamp(2rem, 3rem, 2.8rem);
  font-weight: 600;
}

.ac-intro-cta-sub {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

.ac-intro-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: 0.9rem;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.ac-intro-cta-phone:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45);
}

.ac-intro-cta-phone-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #8cc63f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.ac-intro-cta-phone:hover .ac-intro-cta-phone-icon {
  transform: rotate(12deg);
}

.ac-intro-cta-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.ac-intro-main {
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.ac-intro-main-left {
  padding: 2.5rem 2.25rem;
  background-image: linear-gradient(var(--hero-overlay), var(--hero-overlay)),
    url("../img/Service_club_img-2.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
}

.ac-intro-main-inner {
  position: relative;
  z-index: 2;
}

.ac-intro-main-line {
  width: 64px;
  height: 4px;
  background: #ffffff;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.ac-intro-main-title {
  font-size: clamp(2.1rem, 3.4vw, 2.7rem);
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.ac-intro-main-sub {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.75);
}

.page-id-112688 .ac-intro-main-sub {
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}

.ac-intro-main-right {
  padding: 2.5rem 2.25rem;
}

.ac-intro-main-text {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.ac-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.9rem;
  background: rgba(140, 198, 63, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8cc63f;
  font-size: 22px;
}

.ac-feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: #111827;
}

.ac-feature-text {
  font-size: 0.9rem;
  color: #4b5563;
}

@media (max-width: 767.98px) {
  .ac-intro-wrap {
    padding: 3.5rem 0;
  }

  .ac-intro-cta {
    padding: 2rem 1.6rem;
  }

  .ac-intro-main-left,
  .ac-intro-main-right {
    padding: 2rem 1.6rem;
  }
	.ac-services-section {
  padding: 4rem 0 0rem;
}
	form.wpcf7-form.init.row.g-3 .col-12.d-flex.flex-column.align-items-center p {
    display: flex;
    flex-direction: column;
}
}

.ac-why-hero {
  position: relative;
  background: linear-gradient(90deg, var(--hero-dark-green), var(--hero-green), var(--hero-dark-green));
  color: #ffffff;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.ac-why-hero-circle-1,
.ac-why-hero-circle-2 {
  position: absolute;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0.12;
  pointer-events: none;
}

.ac-why-hero-circle-1 {
  width: 260px;
  height: 260px;
  top: -130px;
  left: -130px;
}

.ac-why-hero-circle-2 {
  width: 360px;
  height: 360px;
  right: -180px;
  bottom: -180px;
}

.ac-why-hero-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}

.ac-why-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.page-id-112688 .ac-why-hero-title , .page-id-112688  .ac-why-hero-sub {
    text-shadow: none;
}

.ac-why-hero-bar {
  height: 4px;
  width: 64px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.ac-why-hero-sub {
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
}

.ac-why-reasons {
  background: #ffffff;
  padding: 4rem 0 1.5rem;
}

.ac-why-card {
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  padding: 2rem 1.8rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  height: 100%;
}

.ac-why-card:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  transform: translateY(-2px);
  border-color: #8cc63f;
}

.ac-why-card-number {
  font-size: 3rem;
  font-weight: 700;
  color: #8cc63f;
  margin-bottom: 1rem;
  line-height: 1;
}

.ac-why-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111827;
}

.ac-why-card-text {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0;
}

.ac-why-bottom {
  padding: 2.5rem 0 0;
  text-align: center;
}

.ac-why-bottom-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #111827;
}

.ac-why-bottom-title span {
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ac-why-bottom-bar {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 96px;
  height: 4px;
  background: #8cc63f;
  transform: translateX(-50%);
}

@media (max-width: 767.98px) {
  .ac-why-hero {
    padding: 3.5rem 0 3.75rem;
  }

  .ac-why-reasons {
    padding: 3.25rem 0 1.5rem;
  }
}

.ac-pricing-section {
  background: #ffffff;
  padding: 4.5rem 0;
}

.ac-pricing-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 0.9rem;
  padding: 2.5rem 2rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ac-pricing-card:hover {
  border-color: #8cc63f;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  transform: translateY(-3px);
}

.ac-pricing-icon {
  width: 80px;
  height: 80px;
  border: 2px solid #8cc63f;
  border-radius: 999px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #8cc63f;
}

.ac-pricing-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  color: #111827;
}

.ac-pricing-desc {
  font-size: 0.95rem;
  color: #4b5563;
  text-align: start;
  margin-bottom: 1.75rem;
}

.ac-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex-grow: 1;
}

.ac-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #374151;
}

.ac-pricing-check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #8cc63f;
  color: #ffffff;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ac-pricing-price {
  text-align: center;
  margin-bottom: 1.25rem;
}

.ac-pricing-price-main {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.4rem;
}

.ac-pricing-price-note {
  font-size: 0.85rem;
  color: #6b7280;
}

.ac-pricing-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: capitalize;
  /* background: #8cc63f; */
  /* color: #111827; */
  color: #fff;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.ac-pricing-btn:hover {
    background: #7ab52f;
    color: #fff;
    transform: translateY(-1px);
    opacity: 0.9;
}

@media (max-width: 767.98px) {
  .ac-pricing-section {
    padding: 3.5rem 0;
  }
}

.ac-contact-section {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 4rem 0;
}

.ac-contact-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1621905251918-48416bd8575a?q=80&w=2069");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.ac-contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.ac-contact-content {
  position: relative;
  z-index: 2;
}

.ac-contact-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.ac-contact-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8cc63f;
  margin-bottom: 1.5rem;
}

.ac-contact-phone-label {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.ac-contact-phone {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #8cc63f;
  font-weight: 700;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}

.ac-contact-phone:hover {
  color: #7ab62f;
}

.ac-contact-divider {
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 3.5rem 0;
}

.ac-contact-form-title {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
}

.ac-contact-input,
.ac-contact-textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  color: #fff;
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ac-contact-input::placeholder,
.ac-contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.ac-contact-input:focus,
.ac-contact-textarea:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 0.2rem rgba(140, 198, 63, 0.2);
  color: #fff;
  outline: none;
}

.ac-contact-submit {
    margin-top: 2%;
    background: linear-gradient(to right, var(--hero-dark-green), var(--hero-green));
    font-weight: 700;
    box-shadow: 0 0.75rem 2rem rgba(102, 185, 51, 0.3);
    border: none;
    padding: 2px 1.5rem;
    font-size: 1.25rem;
    border-radius: var(--radius);
    color: #ffffff;
}

.ac-contact-submit:disabled {
    opacity: 0.65;
    cursor: auto !important;
}

@media (max-width: 767.98px) {
  .ac-contact-section {
    padding: 3rem 0;
  }
}

.bm-story-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 !important;
  /* py-24 equivalent */
  color: #ffffff;
}

/* MAIN GRADIENT (45deg = to-br direction) */
/* SECTION BACKGROUND (same as hero) */
.bm-story-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  color: #ffffff;
  background: linear-gradient(45deg, #2d5016 0%, #3a6b1e 50%, #66b933 100%);
}

/* IMAGE OVERLAY */
.bm-story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/about-us-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
}

/* CONTENT ABOVE */
.bm-story-section>.container>* {
  position: relative;
  z-index: 1;
}

/* HERO TITLE - gradient text */
.bm-story-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 0%, #e8f5e9 50%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* LEFT KICKER */
.bm-story-kicker {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.bm-story-highlight {
  color: #a8d96e;
}

/* DIVIDER */
.bm-story-divider {
  width: 96px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

/* COPY */
.bm-story-copy p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.bm-story-quote {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  padding-top: 1.5rem;
}

/* RIGHT PHOTOS - positioned exactly */
.bm-story-photos {
  position: relative;
  height: 900px;
}

.bm-story-photo {
  position: absolute;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.bm-photo-1 {
  top: 0;
  left: 0;
  width: 45%;
/*   height: 48%; */
}

.bm-photo-2 {
  top: 0;
  right: 0;
  width: 48%;
  height: 48%;
}

.bm-photo-3 {
  bottom: 0;
  left: 0;
  width: 45%;
  height: 50%;
}

.bm-photo-4 {
  bottom: 0;
  right: 0;
  width: 48%;
  height: 48%;
}

.bm-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE - stack images */
@media (max-width: 991.98px) {
  .bm-story-photos {
    height: auto;
    margin-top: 3rem;
  }

  .bm-story-photo {
    position: static !important;
    width: 50%;
    height: auto !important;
    margin-bottom: 1rem;
  }
}

.bm-training-kicker {
    font-size: 1.95rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.bm-training-main-title {
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  font-weight: 600;
  color: #111827;
}

.bm-training-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.bm-training-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.bm-training-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #66b933;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(102, 185, 51, 0.3);
}

.bm-training-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.bm-training-card-text {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

.bm-dedicated-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  /* py-32 */
  color: #ffffff;

  /* MAIN GRADIENT */
  background: linear-gradient(45deg, #2d5016 0%, #66b933 100%);
}

/* IMAGE OVERLAY */
.bm-dedicated-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/about-us-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  /* opacity-10 */
}

/* CONTENT */
.bm-dedicated-section>.container {
  position: relative;
  z-index: 1;
}

.bm-dedicated-main {
  font-size: 35px;
  font-weight: 600;
  color: #ffffff;
}

.bm-dedicated-subtitle {
  font-size: 35px;
  color: #e8f5e9;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.08em;
}

/* MOBILE */
@media (max-width: 767.98px) {
  .bm-dedicated-section {
    padding: 4rem 0;
  }

  .bm-story-section {
    padding: 3rem 0 !important;
  }
}

.bm-contact-cta {
  background: linear-gradient(90deg, #2d5016 0%, #66b933 50%, #2d5016 100%);
  padding: 4rem 1rem;
  color: #ffffff;
}

.bm-contact-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.bm-contact-text {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 767.98px) {
  .bm-contact-cta {
    padding: 3rem 1rem;
  }
}

/* Custom Radio Buttons - Aapki Style */
.form-check-custom .form-check-input-custom {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  border: 2px solid #adb5bd !important;
  background: transparent;
  transition: all 0.2s ease;
}

.form-check-custom .form-check-input-custom:checked {
  background: var(--hero-dark-green) !important;
  border-color: var(--hero-dark-green) !important;
}

.form-check-custom .form-check-input-custom:checked::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

/* Form Focus States - Aapki CSS */
.bm-apt-input:focus {
  border-color: var(--hero-green) !important;
  box-shadow: 0 0 0 0.2rem rgba(102, 185, 51, 0.25) !important;
  background: #fff !important;
}

/* Responsive Perfect */
@media (max-width: 768px) {
  .bm-apt-card {
    padding: 1.5rem !important;
  }

  .bm-apt-send-btn-lg {
    min-width: 100% !important;
  }
}

.text-dark-green {
  color: var(--hero-dark-green) !important;
}

.fw-14 {
  font-size: 14px !important;
}

/* Contact Info Section Styles - Aapki Theme */
.bm-contact-info p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
}

.bm-contact-info strong {
  color: var(--foreground);
}

.bm-map-card {
  position: relative;
  background: #f8f9fa;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bm-map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Social Button Hover - Aapki Style */
.bm-contact-info .btn:hover {
  background: var(--hero-dark-green) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .bm-map-card {
    height: 300px !important;
  }

  .bm-contact-info h3 {
    font-size: 1.75rem !important;
  }

  .bm-club-program-title {
    font-size: 20px;
    letter-spacing: normal;
  }

  .bm-club-benefit-item p {
    font-size: 16px;
  }

  .bm-club-benefits-title {
    font-size: 1.875rem;
    color: #111827;
    line-height: 1;
    margin: 0;
    letter-spacing: 3px;
  }
}

/* Map Responsive */
iframe {
  aspect-ratio: 16/9;
}

@media (max-width: 768px) {
  iframe {
    aspect-ratio: 4/3;
  }
}

/* Ensure CF7 radio/checkbox lists match your flex layout */
.wpcf7-form-control-wrap[data-name="our-department"] .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;

}

span#department {
  border: 0px !important;
}

.wpcf7-list-item input {
  margin-right: 10px;
}

.card-img,
.card-img-top {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 250px;
  object-fit: cover;
}

span.wpcf7-list-item>label:first-child,
span.wpcf7-list-item-label {
  display: flex;
}

.calander-img img {
  width: 18px;
  height: 18px;
}

.bm-news-link {
  color: oklch(.21 .034 264.665);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
}

.read-more-link:hover,
.bm-news-link:hover {
  color: var(--hero-dark-green) !important;
}

.text-gray-600 {
  color: oklch(.446 .03 256.802);
}

.read-more-link {
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.read-more-link svg {
    background: unset;
    color: #3f8c2b;
}

/* BLOG PAGINATION - Bootstrap 5 + Aapki Theme */
.bm-pagination {
  margin: 4rem 0;
}

.bm-pagination ul {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bm-pagination li {
  margin: 0 !important;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--foreground);
}

/* Page Numbers */
.bm-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.75rem;
  font-weight: var(--font-weight-medium);
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
  color: var(--foreground);
}

.bm-pagination li:hover:not(.current) {
  border-color: var(--hero-green);
  background: linear-gradient(to right, var(--hero-dark-green), var(--hero-green)) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(102, 185, 51, 0.3);
}

.bm-pagination li:hover:not(.current) a.page-numbers {
    color: #fff;
}

/* Active Page */
.bm-pagination .page-numbers.current {
  background: linear-gradient(to right, var(--hero-dark-green), var(--hero-green)) !important;
  border-color: var(--hero-green) !important;
  color: var(--primary-foreground) !important;
  font-weight: var(--font-weight-medium);
  box-shadow: 0 4px 12px rgba(102, 185, 51, 0.4);
  border-radius: var(--radius);
}

/* Disabled */
.bm-pagination .page-numbers.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: var(--muted-foreground) !important;
  border-color: var(--muted);
  background: transparent;
}

/* Prev/Next Arrows */
.bm-pagination .prev.page-numbers,
.bm-pagination .next.page-numbers {
  min-width: auto;
  padding: 0 1.25rem;
  font-weight: var(--font-weight-medium);
	background: linear-gradient(to right, var(--hero-dark-green), var(--hero-green)) !important;
    border-color: var(--hero-green) !important;
    color: var(--primary-foreground) !important;
    font-weight: var(--font-weight-medium);
    box-shadow: 0 4px 12px rgba(102, 185, 51, 0.4);
    border-radius: var(--radius);
}

.bm-pagination .prev.page-numbers i,
.bm-pagination .next.page-numbers i {
  font-size: 0.875rem;
}

/* Mobile */
@media (max-width: 768px) {
  .bm-pagination ul {
    gap: 0.25rem;
  }

  .bm-pagination .page-numbers {
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.5rem;
    font-size: 0.8rem;
  }
}

.post-sidebar,
.bm-sidebar {
  /* Sticky Sidebar */
  position: sticky;
  top: 9rem;
  height: fit-content;
}

.bm-sidebar-widget {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 0.9rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.75rem;
  transition: all 0.2s ease;
}

.bm-sidebar-widget:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--hero-green);
}

.bm-sidebar-title {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: var(--font-weight-medium);
  color: var(--hero-dark-green);
  margin-bottom: 0.25rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.bm-sidebar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--hero-green);
}

.bm-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bm-sidebar-link {
  display: block;
  color: var(--foreground);
  text-decoration: none;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--muted);
  transition: all 0.2s ease;
}

.bm-sidebar-link:hover {
  color: var(--hero-dark-green);
  padding-left: 0.5rem;
  border-bottom-color: var(--hero-green);
  background: rgba(102, 185, 51, 0.05);
}

/* Mobile - Sidebar bottom pe jaye */
@media (max-width: 991.98px) {
  .bm-sidebar {
    order: 3 !important;
    margin-top: 3rem;
  }

  .bm-sidebar-widget {
    padding: 1.25rem;
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .bm-sidebar {
    margin-top: 2rem;
  }
}
/* MAIN CONTENT - Blog Single Post */
.custom-post-detail,
.bm-main-content {
  /* Max content width */
  max-width: 48rem;
}

/* Post Title */
.bm-main-content .entry-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-weight-medium);
  color: var(--hero-dark-green);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

/* Post Meta */
.bm-main-content .entry-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  opacity: 0.8;
}

.bm-main-content .entry-meta a {
  color: var(--hero-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bm-main-content .entry-meta a:hover {
  color: var(--hero-dark-green);
}

/* Featured Image */
.bm-main-content .wp-post-image,
.bm-main-content .entry-featured-image {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  margin-bottom: 2.5rem;
}

/* Post Content */
.bm-main-content .entry-content {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--foreground);
}

.bm-main-content .entry-content h2,
.bm-main-content .entry-content h3 {
  color: var(--hero-dark-green);
  font-weight: var(--font-weight-medium);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.bm-main-content .entry-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.bm-main-content .entry-content p {
  margin-bottom: 1.5rem;
}

/* Post Navigation */
.bm-post-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  gap: 2rem;
}

.bm-post-nav .nav-previous a,
.bm-post-nav .nav-next a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--hero-green);
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.bm-post-nav .nav-previous a:hover,
.bm-post-nav .nav-next a:hover {
  background: var(--hero-green);
  color: var(--primary-foreground);
  border-color: var(--hero-green);
  box-shadow: 0 8px 25px rgba(102,185,51,0.3);
}

.bm-post-nav .nav-previous i {
  margin-right: 0.25rem;
}

.bm-post-nav .nav-next i {
  margin-left: 0.25rem;
}

/* Mobile */
@media (max-width: 991.98px) {
  .bm-post-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .custom-post-detail {
    padding-right: 1rem;
  }
}

/* Storefront Compatibility */
.storefront_single_post_before .bm-main-content,
.storefront_single_post_after .bm-main-content {
  margin-bottom: 3rem;
}

/* this is search button css  */
form.search-form input.search-submit {
  display: inline-block;
  border: none;
  outline: none;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  text-transform: capitalize;
  letter-spacing: 0.06em;
 color: #fff !important;
   background: linear-gradient(to right, var(--hero-dark-green), var(--hero-green));
}
form.search-form input.search-field {
  border-radius: 12px;
  border: 1px solid gray;
  outline: none;
  padding: 5px 15px;
}

.bm-sidebar-widget form.search-form {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.bm-sidebar-widget form.search-form input.search-field {
  width: 95%;
}

p.card-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  width: 100%;
}

/*s 8-1-26  */
.ac-services-section .ac-services-title-main , .ac-services-section .ac-services-title-sub{
      text-transform: capitalize
}

.page-id-112688 .ac-pricing-icon{
      font-size: 24px;
}

.page-id-112688 .ac-pricing-icon span img{
      width: 40px;
      height: 40px;
}

.page-id-112688 span.wpcf7-form-control-wrap textarea {
    height: 70px;
}

.page-id-112688 input.wpcf7-form-control.wpcf7-submit.has-spinner.ac-contact-submit {
    width: max-content;
    border-radius: 10px;
}
/* media q */
 /*s 8-1-26 */
@media screen and (max-width:1367px){
  .page-id-112688 .ac-intro-cta-title{
      font-size: clamp(2rem, 2.5rem, 2.8rem);
  }

 .page-id-112688 .ac-why-bottom-title{
      font-size: clamp(2rem, 3.5vw, 2.5rem)
  }

  .page-id-112688 .ac-pricing-card .ac-pricing-price-main{
    font-size: 2rem;
  }
}

@media screen and (max-width:576px) {  
 
  .hvac-maint-title{
    font-size: clamp(1.4rem, 3vw, 2.2rem);
  }

  .hvac-faqs-title{
     font-size: clamp(1.4rem, 3vw, 2.2rem);
  }

  .page-id-112688  .hvac-faqs-section{
    padding-bottom: 20px;
  }
  .bm-hero-main-btn {
    margin-top: 15px;
  }
  .bm-club-benefits img {
    height: 340px;
  }
	
.rheem-banner-sec {
		height: 60vh !important;
	}
	.rheem-items-sec {
		width: 100% !important;
	}
	.page-id-184 a.bm-club-new-url{
		font-size: 2rem !important;
	}
}

/* aman sir 8-1-25 */
/* this is about us page style  */
.page-id-112939 .bm-story-kicker {
  font-weight: 400;
}
.page-id-112939 .bm-story-kicker span.bm-story-highlight{
  font-size: 4rem;
}
 
.page-id-112939 .bm-training-main-title {
    font-size: 20px;
    font-weight: 500;
}
 
.page-id-112939 textarea {
    height: 60px;
}

.page-id-112939 .newsletter-sec span.wpcf7-form-control.wpcf7-checkbox.form-check-input {
    border: none;
}

.page-id-112939 .newsletter-sec span.wpcf7-form-control.wpcf7-checkbox.form-check-input span.wpcf7-list-item.first.last {
    margin-top: 20%;
}

@media only screen and (max-width: 1400px){
  .page-id-112939 .bm-story-quote {
    font-size: 18px;
  }
}
 
@media only screen and (max-width:1024px){
  .page-id-112964 p.bm-contact-text {
    font-size: 1.1rem !important;
  }
}
 
@media only screen and (max-width:576px){
  .page-id-112939 .bm-story-section {
    background: linear-gradient(101deg, #2d5016 0%, #3a6b1e 50%, #66b933 100%);
  }
  .page-id-112939 .bm-dedicated-section {
    padding: 10rem 0;
  }
  /* this is contact page css  */
  .contact-num-sec {
    display: flex;
    flex-direction: row;
    align-items: flex-start !important;
  }
  .page-id-112964 .bm-contact-info h3 {
    font-size: 1rem !important;
  }
  .page-id-112964 section#brdr .border-new {
    border: 1px solid #e7e7e7;
    margin: 10% 0px 0px;
  }
  .page-id-112964  section.mob-section {
    padding: 0px !important;  
  }
  .page-id-2 section.bm-appointment p.bm-apt-sub {
    line-height: normal;
  }
  header.main-header .bm-top-right a {
    font-size: 12px;
  }
  header.main-header nav.navbar .mob-section {
    display: flex;
    align-items: center;
  }
  .page-id-2 .bm-apt-footer-left p.bm-apt-legal {
    padding-bottom: 0px;
  }
  .bm-story-photos {
    margin-top: -2rem;
  }
	.hvac-timeline-section {
  padding: 0rem 0;
}
	.hvac-steps-section {
    padding: 0rem 0;
  }
	.hvac-maint-section {
    padding: 2rem 0 2rem 0;
  }
	.contact-num-sec strong {
    width: 16%;
}
	.mission-section {
  margin-top: 2rem;
}
	.bm-apt-footer-right p {
    display: flex;
    flex-direction: column;
}
	.bm-news-section {
  padding: 50px 0 2px;
}
	.hero-section{
		    background-attachment: unset;
	}
	.page-id-112939 .bm-story-photo.bm-photo-2 {
    transform: unset !important;
    top: 15% !important;
}
}
 
/* this is the contact page ui fixes css  */
header.main-header .bm-top-right a {
    text-transform: uppercase;
}
.page-id-112964 p.bm-contact-text {
    max-width: unset;
    font-size: 1.5rem;
}
.has-spinner.btn.cta-gradient {
    background: #66b933;
    padding: 2px 0px;
    margin-top: 2%;
    background: linear-gradient(to right, var(--hero-dark-green), var(--hero-green));
    font-weight: var(--font-weight-medium);
    box-shadow: 0 0.75rem 2rem rgba(102, 185, 51, 0.3);
    border: none;
}
section#brdr .border-new {
    border: 1px solid #e7e7e7;
    margin: 2.6% 0px 0px;
}
 
.contact-num-sec strong {
    font-size: 15px !important;
    font-weight: 500 !important;
}
.contact-num-sec a, .contact-num-sec span {
    color: #2d5016 !important;
    font-weight: 400 !important;
    font-size: 15px !important;
}
ul.bm-sidebar-list li a.bm-sidebar-link {
    padding: 5px 0px 5px;
}
table.has-fixed-layout strong, th {
    font-weight: 400;
}
.page-id-112964 .form-check-custom .cursor-pointer a {
    text-transform: lowercase;
}

/* this is home page review fixes  */
.page-id-2 .bm-apt-footer-left .form-check-input {
    border: none;
}
.page-id-2 .bm-apt-footer-left .form-check-input input[type="checkbox"] {
    margin-top: 8px;
}

/* this is servce club page css  */
.page-id-184 .bm-club-program-title {
    font-weight: 500 !important;
}
.page-id-184 .bm-club-benefits-title span {
    font-weight: 600;
}
.page-id-184 .bm-club-benefit-item p {
    margin-bottom: 10px;
}
.postid-112621 table.has-fixed-layout th {
    padding: 10px 40px 10px 20px !important;
}


/* ============================================
   ACTIVE MENU ITEM STYLING
   ============================================ */

/* Main active menu item */
.bm-nav-list .nav-item.current-menu-item > .nav-link,
.bm-nav-list .nav-item.current-page-ancestor > .nav-link,
.bm-nav-list .nav-item.current-page-parent > .nav-link {
    color: #28a745 !important;
    font-weight: 600;
    position: relative;
}

/* Mobile view adjustments */
@media (max-width: 991.98px) {
    .bm-nav-list .nav-item.current-menu-item > .nav-link::after,
    .bm-nav-list .nav-item.current-page-ancestor > .nav-link::after,
    .bm-nav-list .nav-item.current-page-parent > .nav-link::after {
        left: 0;
        right: 0;
        bottom: 0;
    }
}

.page-id-184 h2.bm-club-benefits-title {
    line-height: normal;
}

.wp-block-table .has-fixed-layout thead tr:nth-child(even) {
    background-color: #fdfdfd;
}

.wp-block-table table.has-fixed-layout thead tr:nth-child(2n) {
    background-color: #fdfdfd;
}

.postid-112310 table tbody tr:nth-child(even) {
   background-color: #fdfdfd;
}


/* this is the Thankyou page css  */

.thank-content-mess p {
  font-size: 25px;
}

.copyrte-sec p {
  background: #222222;
  text-align: center;
  color: #fff;
  margin: 0px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyrte-sec p a:hover {
  color: #c8c8c8 !important;
}
.thank-img-sec img {
  width: 280px;
  margin-bottom: 1.5rem;
}

@media only screen and (max-width:576px){
   .copyrte-sec p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 60px 0px;
  }
  .thank-img-sec img {
    width: 65%;
  }
  .thank-content-mess p{
    font-size: 16px;
  }
}

@media only screen and (max-width:767px){
  .thank-content-mess p {
    font-size: 20px;
  }
}

/* this is the rheem page css section  */

.rheem-banner-sec {
  width: 100%;
  height: 80vh;
  background-image: url("https://devbullmoundev.wpenginepowered.com/wp-content/uploads/2026/01/family-in-living-room-1024x561-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 10px #e7e7e7;
  border-radius: 12px;
  background-position: center;
}
.sub-head-sec h4 {
    color: #8cc63f;
}
.rheem-card-img img {
    border-radius: 12px;
    box-shadow: 0px 0px 10px #808080;
}
#rheem-banner-bottom{
  width: 100%;
  height: 65vh;
  background-image: url("https://devbullmoundev.wpenginepowered.com/wp-content/uploads/2026/01/hvac-repair-service-1024x413-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 10px #e7e7e7;
  border-radius: 12px;
  background-position: center;
}
section#process-card-sec ul.ac-pricing-features li {
    justify-content: flex-start;
}
.contact-rheem-sec {
    display: flex;
    flex-direction: column;
}
.contact-rheem-sec a {
    margin: 8px 0px;
    font-size: 15px;
}
.contact-rheem-sec a img {
    width: 25px;
}

/* this is lake oswego section  */
.lake-oswego-sec{
  width: 100%;
  height: 60vh;
  background-image: url("https://devbullmoundev.wpenginepowered.com/wp-content/uploads/2026/01/beachgoers-at-lake-oswego-oregon-location-1024x683-1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 10px #e7e7e7;
  border-radius: 12px;
  background-position: center;
}

.lake-list-items ul.ac-pricing-features li {
  display: block;
}

/* this is tigard page css  */
.tigard-banner-sec{
  width: 100%;
  height: 60vh;
  background-image: url("https://devbullmoundev.wpenginepowered.com/wp-content/uploads/2026/01/bull-mointain-trucks.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 10px #e7e7e7;
  border-radius: 12px;
  background-position: center;
}

/* this is linn page css  */
.linn-banner-sec{
  width: 100%;
  height: 60vh;
  background-image: url("https://devbullmoundev.wpenginepowered.com/wp-content/uploads/2026/01/West-Linn-Oregon-HVAC-1024x683-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 10px #e7e7e7;
  border-radius: 12px;
  background-position: center;
}

/* this is the new pages css section 20-01-2026 */

section#rheem-temp-sec h4 {
    text-align: start;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-size: 30px;
}
section#rheem-temp-sec p.ac-why-card-text {
    text-align: start;
}
section#rheem-temp-sec ul.ac-pricing-features {
    text-align: start;
    padding-left: 5px;
}
section#rheem-temp-sec ul.ac-pricing-features li span a, section#rheem-temp-sec p.ac-why-card-text a, .process-1sec .contact-rheem-sec a {
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.new-brdr {
    border: 1px solid #8CC63E;
    margin-top: 2%;
}
.rheem-card-btn a {
    font-size: 16px;
}

.rheem-items-sec{
    display: flex;
    width: 65%;
    align-items: flex-start;
    justify-content: flex-start;
}
ul.linn-item-sec li {
    display: block;
}

/* this is the new css added 21-01-2026 */
a.bm-club-new-url {
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-size: 3rem;
}
form.wpcf7-form.init label br {
    display: none;
}
.page-id-112964 .bm-contact-info h3 {
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media only screen and (max-width:1200px){
	.bm-club-benefits img {
		margin: 0 auto;
		height: 357px;
		width: 357px;
	}
}
.page-id-184 .bm-club-benefit-item p a {
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--hero-dark-green), var(--hero-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
section#rheem-temp-sec .home-owner-sec .new-brdr:last-child {
    display: none;
}
section#rheem-temp-sec .home-owner-sec .ac-content-faq-sec {
    display: flex;
}
section#rheem-temp-sec .home-owner-sec .list-content-sec strong {
    color: #000;
}
section#rheem-temp-sec .home-owner-sec .list-icon-sec {
    margin-right: 10px;
}
section#rheem-temp-sec .home-owner-sec .list-icon-sec img {
    max-width: 25px;
}
@supports (-webkit-overflow-scrolling: touch) {
	@media screen and (max-width:576px) {
		.bm-club-benefits img {
			height: 400px;
		  }
	}
	.hero-section{
		background-position: initial;
	}
}

/* style.css 27-jan-2026*/

.page-id-112939 .bm-story-photos.parallax-wrap {
    position: relative;
    height: 500px;
    overflow: visible;
}

.page-id-112939 .bm-story-photo.bm-photo-2 {
    position: absolute;
    transition: transform .1s linear;
    will-change: transform;
    top: 0px;
    left: 50%;
    width: 55%;
    z-index: 1;
    border-radius: 4px;
}

.page-id-112939 .bm-story-photo.bm-photo-1 {
    position: absolute;
    transition: transform 0.1s linear;
    will-change: transform;
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: 4px;
}

.page-id-112939 .bm-story-photo.bm-photo-3 {
    position: absolute;
    transition: transform 0.1s linear;
    will-change: transform;
    top: 340px;
    left: 0px;
    z-index: 3;
    border-radius: 4px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .page-id-112939 .bm-story-photos.parallax-wrap {
        height: 400px;
        margin-top: 50px;
    }
    .page-id-112939 .bm-story-photo.bm-photo-2 { width: 50%; left: 51% !important; }
    .page-id-112939 .bm-story-photo.bm-photo-1 { width: 50%; }
    .page-id-112939 .bm-story-photo.bm-photo-3 { 
        width: 50%; 
    }
}
@media only screen and (max-width: 992px){
	.page-id-112939 .bm-story-photo.bm-photo-2 {
    position: absolute !important;
    transition: transform .1s linear;
    will-change: transform;
    top: 0px;
    left: 55%;
    width: 50%;
    height: 70%;
    z-index: 1;
    border-radius: 4px;
}
}
/* this is new css 29-jan-2026 */
.home-heading {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    line-height: 1.1;
    font-weight: 500;
}
form.wpcf7-form.init input.bm-hero-main-btn:disabled {
    cursor: auto !important;
    opacity: 0.65;
}