@charset "UTF-8";
/* Alignment Helpers */
.align-center {
  text-align: center;
}

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

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

.align-stretch {
  align-items: stretch;
}

/* Flex Helpers */
.flex {
  display: flex;
}

.flex--row {
  flex-direction: row;
}
.flex--row.v--center {
  align-items: center;
}
.flex--row.h--center {
  justify-content: center;
}

.flex--column {
  flex-direction: column;
}
.flex--column.v--center {
  align-items: center;
}
.flex--column.h--center {
  justify-content: center;
}

.flex--row-reverse {
  flex-direction: row-reverse;
}

/* Spacing Helpers */
.space-evenly {
  justify-content: space-evenly;
}

.space-around {
  justify-content: space-around;
}

.space-between {
  justify-content: space-between;
}

/* Height Helpers */
.full-height {
  height: 100dvh;
}

/* Background Color Helpers */
.background--blue {
  background-color: var(--color-accent-blue);
}

.background--green {
  background-color: var(--color-accent-green);
}

.background--white {
  background-color: #ffffff;
}

.background--paper {
  background-color: #F5F7FC;
}

/* Section Helpers */
section.blue {
  background-color: var(--color-accent-blue);
}
section.green {
  background-color: var(--color-accent-green);
}
section.mint {
  background-color: var(--color-accent-mint);
}
section.white {
  background-color: #ffffff;
}
section.off-white {
  background-color: #F5F7FC;
}
@media screen and (max-width: 768px) {
  section {
    width: 100vw;
    overflow: hidden;
  }
}
section > .container.constrained {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1rem;
}
section > .container.full-width {
  width: 100vw;
  overflow: hidden;
  padding-inline: 1rem;
}
section .content.constrained {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Accessibility Helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Image Helpers */
.circle-image {
  --__circle-image-outline-color: var(--circle-image-outline-color, var(--color-accent-green));
  --__circle-image-outline-width: var(--circle-image-outline-width, 1.5rem);
  --__circle-image-outline-offset: var(--circle-image-outline-offset, 1rem);
  border-radius: 100vw;
  aspect-ratio: 1/1;
  height: auto !important;
  max-width: unset;
  outline: var(--__circle-image-outline-width) solid var(--__circle-image-outline-color);
  outline-offset: var(--__circle-image-outline-offset);
  object-fit: cover;
}

/* Responsive Helpers */
@media screen and (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .tablet-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .tablet-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .tablet-up-only {
    display: none !important;
  }
}

.gap--xs {
  gap: 0.5rem;
}

.gap--sm {
  gap: 1rem;
}

.gap--md {
  gap: 2rem;
}

.gap--lg {
  gap: 3rem;
}

.gap--xl {
  gap: 4rem;
}

.gap--xxl {
  gap: 5rem;
}

.rounded--xs {
  border-radius: 0.25rem;
}

.rounded--sm {
  border-radius: 0.5rem;
}

.rounded--md {
  border-radius: 1rem;
}

.rounded--lg {
  border-radius: 1.5rem;
}

.rounded--xl {
  border-radius: 2rem;
}

.rounded--xxl {
  border-radius: 2.5rem;
}

.p--xs {
  padding: 0.5rem;
}

.p--sm {
  padding: 1rem;
}

.p--md {
  padding: 2rem;
}

.p--lg {
  padding: 3rem;
}

.p--xl {
  padding: 4rem;
}

.p--xxl {
  padding: 5rem;
}

.px--xs {
  padding-inline: 0.5rem;
}

.px--sm {
  padding-inline: 1rem;
}

.px--md {
  padding-inline: 2rem;
}

.px--lg {
  padding-inline: 3rem;
}

.px--xl {
  padding-inline: 4rem;
}

.px--xxl {
  padding-inline: 5rem;
}

.py--xs {
  padding-block: 0.5rem;
}

.py--sm {
  padding-block: 1rem;
}

.py--md {
  padding-block: 2rem;
}

.py--lg {
  padding-block: 3rem;
}

.py--xl {
  padding-block: 4rem;
}

.py--xxl {
  padding-block: 5rem;
}

.m--xs {
  margin: 0.5rem;
}

.m--sm {
  margin: 1rem;
}

.m--md {
  margin: 2rem;
}

.m--lg {
  margin: 3rem;
}

.m--xl {
  margin: 4rem;
}

.m--xxl {
  margin: 5rem;
}

.mx--xs {
  margin-inline: 0.5rem;
}

.mx--sm {
  margin-inline: 1rem;
}

.mx--md {
  margin-inline: 2rem;
}

.mx--lg {
  margin-inline: 3rem;
}

.mx--xl {
  margin-inline: 4rem;
}

.mx--xxl {
  margin-inline: 5rem;
}

.my--xs {
  margin-block: 0.5rem;
}

.my--sm {
  margin-block: 1rem;
}

.my--md {
  margin-block: 2rem;
}

.my--lg {
  margin-block: 3rem;
}

.my--xl {
  margin-block: 4rem;
}

.my--xxl {
  margin-block: 5rem;
}

.pt--xs {
  padding-top: 0.5rem;
}

.pt--sm {
  padding-top: 1rem;
}

.pt--md {
  padding-top: 2rem;
}

.pt--lg {
  padding-top: 3rem;
}

.pt--xl {
  padding-top: 4rem;
}

.pt--xxl {
  padding-top: 5rem;
}

.pr--xs {
  padding-right: 0.5rem;
}

.pr--sm {
  padding-right: 1rem;
}

.pr--md {
  padding-right: 2rem;
}

.pr--lg {
  padding-right: 3rem;
}

.pr--xl {
  padding-right: 4rem;
}

.pr--xxl {
  padding-right: 5rem;
}

.pb--xs {
  padding-bottom: 0.5rem;
}

.pb--sm {
  padding-bottom: 1rem;
}

.pb--md {
  padding-bottom: 2rem;
}

.pb--lg {
  padding-bottom: 3rem;
}

.pb--xl {
  padding-bottom: 4rem;
}

.pb--xxl {
  padding-bottom: 5rem;
}

.pl--xs {
  padding-left: 0.5rem;
}

.pl--sm {
  padding-left: 1rem;
}

.pl--md {
  padding-left: 2rem;
}

.pl--lg {
  padding-left: 3rem;
}

.pl--xl {
  padding-left: 4rem;
}

.pl--xxl {
  padding-left: 5rem;
}

.mt--xs {
  margin-top: 0.5rem;
}

.mt--sm {
  margin-top: 1rem;
}

.mt--md {
  margin-top: 2rem;
}

.mt--lg {
  margin-top: 3rem;
}

.mt--xl {
  margin-top: 4rem;
}

.mt--xxl {
  margin-top: 5rem;
}

.mr--xs {
  margin-right: 0.5rem;
}

.mr--sm {
  margin-right: 1rem;
}

.mr--md {
  margin-right: 2rem;
}

.mr--lg {
  margin-right: 3rem;
}

.mr--xl {
  margin-right: 4rem;
}

.mr--xxl {
  margin-right: 5rem;
}

.mb--xs {
  margin-bottom: 0.5rem;
}

.mb--sm {
  margin-bottom: 1rem;
}

.mb--md {
  margin-bottom: 2rem;
}

.mb--lg {
  margin-bottom: 3rem;
}

.mb--xl {
  margin-bottom: 4rem;
}

.mb--xxl {
  margin-bottom: 5rem;
}

.ml--xs {
  margin-left: 0.5rem;
}

.ml--sm {
  margin-left: 1rem;
}

.ml--md {
  margin-left: 2rem;
}

.ml--lg {
  margin-left: 3rem;
}

.ml--xl {
  margin-left: 4rem;
}

.ml--xxl {
  margin-left: 5rem;
}

body {
  font-family: var(--font-family-body) !important;
}

h1, h2, h3, h4, h5, h6, .elementor-headline, .elementor-headline-dynamic-text {
  font-family: var(--font-family-heading) !important;
  letter-spacing: -1.28px;
  margin: 0;
  font-style: normal;
  font-weight: 700;
  line-height: 90%;
}

h1.blue, h2.blue, h3.blue, h4.blue, h5.blue, h6.blue, p.blue {
  color: var(--color-accent-blue) !important;
}
h1.green, h2.green, h3.green, h4.green, h5.green, h6.green, p.green {
  color: var(--color-accent-green) !important;
}
h1.mint, h2.mint, h3.mint, h4.mint, h5.mint, h6.mint, p.mint {
  color: var(--color-accent-mint) !important;
}
h1.white, h2.white, h3.white, h4.white, h5.white, h6.white, p.white {
  color: #ffffff !important;
}

p,
.elementor-icon-list-items li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: -0.32px;
  font-family: var(--font-family-body) !important;
}

.overline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1ch;
  text-transform: uppercase;
  font-family: var(--font-family-heading) !important;
}

:root {
  --color-accent-blue: #044DD8;
  --color-accent-green: #69BF4A;
  --color-accent-mint: #C5FFFD;
  --color-accent-orange: #FF9000;
  --color-accent-purple: #9F2B90;
  --font-family-body: "co-text", sans-serif;
  --font-family-heading: "co-headline", sans-serif;
  --font-family-handwritten: "Delicious Handrawn", cursive;
  /* Header height variables (override Elementor defaults) */
  --header-height: 66px;
  --header-height-sans-promo: 66px;
}

.global-btn,
.elementor-button {
  --bg: var(--color-accent-green);
  --border: transparent;
  --text: #fff;
  align-items: center;
  background-color: var(--bg) !important;
  border-radius: 50px;
  border: 2px solid var(--border) !important;
  color: var(--text) !important;
  display: inline-flex;
  font-family: var(--font-family-heading) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  justify-content: center;
  line-height: 1;
  overflow: hidden;
  padding: 0.75rem 2rem 0.85rem;
  position: relative;
  text-decoration: none;
  transition: 250ms ease all;
  width: fit-content;
  z-index: 1;
}
.global-btn::before:not(.no-bg),
.elementor-button::before:not(.no-bg) {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/07/green-btn-pseudo.svg);
  background-size: cover;
  width: 63px;
  height: 50px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.global-btn.full-width,
.elementor-button.full-width {
  width: 100%;
}
.global-btn.large,
.elementor-button.large {
  padding: 1rem 3rem 1.1rem;
  font-size: 1.25rem !important;
}
.global-btn.small,
.elementor-button.small {
  padding: 0.5rem 1.5rem 0.5rem;
  font-size: 0.85rem !important;
}
.global-btn.green:hover,
.elementor-button.green:hover {
  --bg: #4eb22a;
}
.global-btn.green:hover::before,
.elementor-button.green:hover::before {
  filter: brightness(0.9);
}
.global-btn.blue,
.elementor-button.blue {
  --bg: var(--color-accent-blue);
}
.global-btn.blue:hover,
.elementor-button.blue:hover {
  --bg: #003cb0;
}
.global-btn.blue::before,
.elementor-button.blue::before {
  background-image: url(/wp-content/uploads/2025/07/blue-btn-pseudo.svg) !important;
}
.global-btn.mint,
.elementor-button.mint {
  --bg: var(--color-accent-mint);
  --text: #00215f;
}
.global-btn.mint:hover,
.elementor-button.mint:hover {
  --bg: #a8f0ee;
}
.global-btn.mint::before,
.elementor-button.mint::before {
  background-image: none !important;
}
.global-btn.orange,
.elementor-button.orange {
  --bg: var(--color-accent-orange);
}
.global-btn.orange:hover,
.elementor-button.orange:hover {
  --bg: #e68200;
}
.global-btn.orange::before,
.elementor-button.orange::before {
  background-image: none !important;
}
.global-btn.outline, .global-btn.transparent,
.elementor-button.outline,
.elementor-button.transparent {
  --bg: transparent;
  --border: #fff;
  --text: #fff;
}
.global-btn.outline::before, .global-btn.transparent::before,
.elementor-button.outline::before,
.elementor-button.transparent::before {
  background-image: none !important;
}
.global-btn.outline:hover, .global-btn.transparent:hover,
.elementor-button.outline:hover,
.elementor-button.transparent:hover {
  --bg: #fff;
  --text: #00215f;
}
.global-btn.outline.mint,
.elementor-button.outline.mint {
  --text: var(--color-accent-mint);
  --border: var(--color-accent-mint);
}
.global-btn.outline.mint:hover,
.elementor-button.outline.mint:hover {
  --text: #fff;
  --bg: transparent;
}
.global-btn.outline.blue,
.elementor-button.outline.blue {
  --text: var(--color-accent-blue);
  --border: var(--color-accent-blue);
}
.global-btn.outline.blue:hover,
.elementor-button.outline.blue:hover {
  --text: #fff;
  --bg: var(--color-accent-blue);
}
.global-btn.white,
.elementor-button.white {
  --bg: #fff;
  --text: #00215f;
  --border: transparent;
}
.global-btn.white::before,
.elementor-button.white::before {
  background-image: none !important;
}
.global-btn.location,
.elementor-button.location {
  padding-left: 3rem !important;
  padding-right: 1.25rem;
}
.global-btn.location::before,
.elementor-button.location::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translate(50%, -50%);
  transition: 250ms ease all;
}
.global-btn.location:hover:not(.coming-soon)::before,
.elementor-button.location:hover:not(.coming-soon)::before {
  transform: translate(50%, -50%) scale(1.15);
}
.global-btn.location span.menu-item-title,
.elementor-button.location span.menu-item-title {
  font-weight: 700;
}
.global-btn.location.coming-soon,
.elementor-button.location.coming-soon {
  cursor: not-allowed;
}
.global-btn.location.coming-soon a,
.elementor-button.location.coming-soon a {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  cursor: not-allowed;
}
.global-btn.location.coming-soon a .menu-item-title,
.global-btn.location.coming-soon a .menu-item-title:hover,
.elementor-button.location.coming-soon a .menu-item-title,
.elementor-button.location.coming-soon a .menu-item-title:hover {
  color: #00215F !important;
}
.global-btn.location.coming-soon a::before,
.elementor-button.location.coming-soon a::before {
  content: "Coming Soon";
  font-size: 10px;
  font-weight: 500;
  background-color: rgba(105, 192, 74, 0.2);
  padding: 3px 6px 4px;
  border-radius: 6px;
  transform: translateX(-3px);
  line-height: 1;
  color: #00215F !important;
}
.global-btn.usa::before,
.elementor-button.usa::before {
  background-image: url(/wp-content/uploads/2025/07/us.svg) !important;
}
.global-btn.canada::before,
.elementor-button.canada::before {
  background-image: url(/wp-content/uploads/2025/07/canada.svg) !important;
}

/* Elementor Button Overrides */
.elementor-button-container {
  display: flex;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .elementor-button-container {
    flex-direction: column;
  }
}

.elementor-widget-button {
  margin: 0 !important;
  max-width: 100% !important;
  width: fit-content !important;
}

.elementor-button {
  border-radius: 50px !important;
  padding: 0.75rem 2rem 0.85rem !important;
}
.elementor-button .elementor-button-text {
  margin: 0 !important;
}
.elementor-button .elementor-button-icon {
  transform: translateY(1px);
}

.elementor-button-content-wrapper {
  display: flex;
  gap: 0.5rem !important;
  align-items: center;
}

main > .page-content > .elementor > .elementor-element:first-of-type .elementor-button-container .elementor-widget-button:nth-of-type(2) .elementor-button {
  --bg: transparent !important;
  --border: #fff !important;
  --text: #fff !important;
}
main > .page-content > .elementor > .elementor-element:first-of-type .elementor-button-container .elementor-widget-button:nth-of-type(2) .elementor-button::before {
  background-image: none !important;
}
main > .page-content > .elementor > .elementor-element:first-of-type .elementor-button-container .elementor-widget-button:nth-of-type(2) .elementor-button:hover {
  --bg: #fff !important;
  --text: var(--color-accent-blue) !important;
}
main > .page-content > .elementor > .elementor-element:first-of-type .elementor-button-container .elementor-widget-button:nth-of-type(2) .elementor-button:hover .elementor-button-icon svg {
  fill: var(--color-accent-green) !important;
}
main > .page-content > .elementor > .elementor-element:first-of-type .elementor-button-container .elementor-widget-button:nth-of-type(2) .elementor-button .elementor-button-icon svg {
  fill: #fff !important;
}

main > .page-content > .elementor > .elementor-element:not(:first-of-type) .elementor-button-container .elementor-widget-button:nth-of-type(2) .elementor-button {
  --bg: var(--color-accent-blue);
}
main > .page-content > .elementor > .elementor-element:not(:first-of-type) .elementor-button-container .elementor-widget-button:nth-of-type(2) .elementor-button:hover {
  --bg: #003cb0;
}
main > .page-content > .elementor > .elementor-element:not(:first-of-type) .elementor-button-container .elementor-widget-button:nth-of-type(2) .elementor-button:hover .elementor-button-icon svg {
  fill: var(--color-accent-green) !important;
}
main > .page-content > .elementor > .elementor-element:not(:first-of-type) .elementor-button-container .elementor-widget-button:nth-of-type(2) .elementor-button::before {
  background-image: url(/wp-content/uploads/2025/07/blue-btn-pseudo.svg) !important;
}
main > .page-content > .elementor > .elementor-element:not(:first-of-type) .elementor-button-container .elementor-widget-button:nth-of-type(2) .elementor-button .elementor-button-icon svg {
  fill: var(--color-accent-green) !important;
}

/**
 * Nearest Location Component Styles
 */
/* Nearest */
.nearest {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  background-color: var(--color-accent-green);
  border-radius: 50px;
  padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  max-width: calc(100% - 12rem);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .nearest {
    position: relative;
    left: unset;
    transform: unset;
    bottom: unset;
    border-radius: 0;
    max-width: unset;
    margin: 4rem 0 0;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }
}
.nearest.empty .nearest-left {
  opacity: 0.6;
}
.nearest.geolocation-error .nearest-left .highlight {
  color: var(--color-accent-orange);
}
.nearest.geolocation-unsupported .nearest-left .highlight {
  color: var(--color-accent-blue);
}
.nearest .nearest-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
  font-family: var(--font-family-body);
  font-weight: 600;
  letter-spacing: -0.04ch;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .nearest .nearest-left {
    display: flex;
    flex-direction: column;
    font-size: 1.25rem;
    line-height: 1;
    gap: 0.75rem;
    text-align: center;
  }
}
.nearest .nearest-left .highlight {
  color: var(--color-accent-green);
  font-weight: 600;
}
.nearest .location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-left: 2.5rem !important;
}
.nearest .location::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(50%, -50%) scale(1.15);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.nearest-right {
  display: flex;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .nearest-right {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr;
    white-space: nowrap;
  }
  .nearest-right a {
    font-size: 0.85rem;
  }
}

header#site-header {
  padding: 0.75rem 2rem;
  position: sticky !important;
  border-bottom: 1px solid rgba(0, 33, 95, 0.15);
  top: var(--m3promobar-top-desktop-height, 0);
  z-index: 100;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  header#site-header {
    padding: 0.75rem 1rem;
    top: var(--m3promobar-top-mobile-height, 0);
  }
}
header#site-header .header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1900px !important;
}
@media screen and (max-width: 768px) {
  header#site-header .header-inner {
    padding: 0;
  }
}
header#site-header .site-branding {
  position: absolute;
}
header#site-header .site-branding img {
  width: 75px;
  transition: width 0.3s;
}
header#site-header:not(:has(nav[inert])) .site-branding img {
  width: 50px;
}
header#site-header nav.site-navigation {
  margin: 0 0 0 auto;
  z-index: 1;
}
header#site-header ul.menu,
header#site-header ul#menu-main-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  header#site-header ul.menu,
  header#site-header ul#menu-main-menu {
    flex-direction: column;
    gap: 0;
  }
}
header#site-header {
  /* Menu Items Base Styles */
}
header#site-header li.menu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  header#site-header li.menu-item {
    display: block;
  }
}
header#site-header li.menu-item a {
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 0;
  margin: 0;
  z-index: 1;
  font-size: 14px;
  line-height: 1;
  color: #00215F;
  font-family: var(--font-family-body);
  font-weight: 400;
  text-decoration: none !important;
  cursor: pointer !important;
}
@media screen and (max-width: 768px) {
  header#site-header li.menu-item a {
    flex: 0;
    white-space: nowrap;
    font-size: 1rem;
    padding: 1rem;
  }
}
header#site-header li.menu-item:hover > a > .menu-item-title {
  color: var(--color-accent-blue);
}
header#site-header li.menu-item.menu-item-has-children {
  padding: 0;
}
header#site-header li.menu-item.menu-item-has-children::after {
  display: flex;
  content: "▾";
  font-size: 14px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  background-color: var(--color-accent-green);
  height: 15px;
  width: 15px;
  border-radius: 100vw;
}
@media screen and (max-width: 768px) {
  header#site-header li.menu-item.menu-item-has-children::after {
    position: absolute;
    right: 1rem;
    top: 1rem;
  }
}
header#site-header {
  /* Menu Buttons */
}
header#site-header li.menu-btn {
  transition: 250ms ease all;
}
header#site-header li.menu-btn a {
  font-family: var(--font-family-heading) !important;
  font-weight: 600;
  z-index: 1;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  header#site-header li.menu-btn a {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
}
header#site-header {
  /* Menu Button: Buy Wash */
}
header#site-header li.menu-btn.buy-wash {
  border: 2px solid #00215F;
  border-right: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  margin-left: 10px;
  padding: 10px 18px 12px 18px !important;
}
@media screen and (max-width: 768px) {
  header#site-header li.menu-btn.buy-wash {
    margin: 0;
    border-radius: unset;
    border: none;
    padding: 1rem !important;
  }
  header#site-header li.menu-btn.buy-wash .menu-item-title {
    font-size: 1.15rem !important;
  }
}
header#site-header {
  /* Menu Button: Become Member */
}
header#site-header li.menu-btn.become-member {
  background-color: var(--color-accent-green);
  border-radius: 30px;
  position: relative !important;
  overflow: hidden;
  padding: 10px 18px 12px 18px !important;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  header#site-header li.menu-btn.become-member {
    border-radius: 0;
    padding: 1rem !important;
  }
  header#site-header li.menu-btn.become-member .menu-item-title {
    font-size: 1.15rem !important;
  }
  header#site-header li.menu-btn.become-member a {
    padding: 0 !important;
  }
}
header#site-header li.menu-btn.become-member:hover {
  background-color: #4eb22a;
}
header#site-header li.menu-btn.become-member::before {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/07/green-btn-pseudo.svg);
  background-size: contain;
  width: 60px;
  height: 60px;
  right: 10px;
  top: 0;
  z-index: 0;
  filter: brightness(0.9);
}
header#site-header li.menu-btn.become-member .menu-item-title {
  color: #ffffff !important;
}
header#site-header {
  /* Submenu Styles */
}
header#site-header .sub-menu {
  padding: 0;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-top: 1.25rem solid #ffffff;
}
header#site-header .sub-menu li {
  padding: 1rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  header#site-header .sub-menu li {
    padding: 0;
  }
}
header#site-header .sub-menu a {
  font-size: 85% !important;
}
@media screen and (max-width: 768px) {
  header#site-header .sub-menu a {
    padding-left: 2rem !important;
  }
}
@media screen and (max-width: 768px) {
  header#site-header .sub-menu {
    display: none;
    border: none !important;
  }
}
header#site-header li.menu-item-has-children.elementor-active .sub-menu {
  display: block;
}
header#site-header {
  /* Country Flag Icons */
}
header#site-header .buy-wash .sub-menu .other a,
header#site-header .buy-wash .sub-menu .billings a {
  position: relative;
}
@media screen and (max-width: 768px) {
  header#site-header .buy-wash .sub-menu .other a .menu-item-title,
  header#site-header .buy-wash .sub-menu .billings a .menu-item-title {
    font-weight: 400;
    font-size: 0.9rem;
  }
}
header#site-header .buy-wash .sub-menu .other a::before,
header#site-header .buy-wash .sub-menu .billings a::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url(/wp-content/uploads/2025/07/canada.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  header#site-header .buy-wash .sub-menu .other a::before,
  header#site-header .buy-wash .sub-menu .billings a::before {
    right: unset;
    left: 0;
    top: 50%;
    transform: translate(calc(-100% - 0.5rem), -50%);
  }
}
header#site-header .buy-wash .sub-menu .billings a::before {
  background-image: url(/wp-content/uploads/2025/07/us.svg);
}
header#site-header .site-navigation-toggle-holder {
  margin: 0 0 0 auto;
  padding: 0;
}
header#site-header .site-navigation-toggle-holder .site-navigation-toggle {
  background-color: var(--color-accent-green);
  border-radius: 100vw;
  height: 50px;
  width: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  cursor: pointer;
}

/* Mobile Menu */
body:has(nav.site-navigation-dropdown[aria-hidden=false]) {
  overflow: hidden !important;
}
body:has(nav.site-navigation-dropdown[aria-hidden=false]) #menu-main-menu {
  height: calc(100dvh - var(--header-height-sans-promo));
  z-index: 2147483647;
  position: fixed;
  top: var(--header-height-sans-promo);
}
body:has(nav.site-navigation-dropdown[aria-hidden=false]) .injected-header-link {
  display: none !important;
}
body:has(nav.site-navigation-dropdown[aria-hidden=false]) #logo-container img {
  height: 50px;
  width: auto;
  aspect-ratio: 1/1;
  position: relative;
}
body:has(nav.site-navigation-dropdown[aria-hidden=false]) li.menu-btn.buy-wash {
  border-bottom: 0 !important;
}

footer#site-footer {
  background: linear-gradient(90deg, rgba(4, 77, 216, 0.79) 0%, #044DD8 70%), url(/wp-content/uploads/2025/09/footer-v2-bg-min.jpg);
  background-size: cover;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  max-width: 100%;
  padding: 0;
}
@media screen and (max-width: 768px) {
  footer#site-footer {
    background: linear-gradient(180deg, rgba(4, 77, 216, 0.79) 0%, #044DD8 20%), url(/wp-content/uploads/2025/09/footer-v2-bg-min.jpg);
    background-size: 100%;
    width: 100vw;
    overflow: hidden;
  }
}
footer#site-footer .site-footer--container {
  max-width: 1140px;
  margin: 0 auto;
}
footer#site-footer .site-footer--top {
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  footer#site-footer .site-footer--top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
footer#site-footer .site-footer--top--content {
  flex: 1;
}
@media screen and (max-width: 768px) {
  footer#site-footer .site-footer--top--content {
    padding: 0 1rem;
    text-align: center;
    width: 100%;
  }
}
footer#site-footer .site-footer--top--content--buttons {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  footer#site-footer .site-footer--top--content--buttons {
    grid-template-columns: 1fr;
  }
}
footer#site-footer .site-footer--top--content--buttons a {
  width: 100%;
}
footer#site-footer .site-footer--top h3 {
  font-size: 1.25rem !important;
  color: var(--color-accent-green) !important;
  font-family: var(--font-family-body) !important;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.8px;
}
footer#site-footer .site-footer--bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  footer#site-footer .site-footer--bottom {
    margin: 2rem 1rem;
  }
}
footer#site-footer .site-footer--bottom--content {
  display: grid;
  grid-template-columns: 2fr auto 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  footer#site-footer .site-footer--bottom--content {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  footer#site-footer .site-footer--bottom--content > div {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 768px) {
  footer#site-footer .site-footer--bottom--content > div:last-child {
    margin-bottom: 0;
  }
}
footer#site-footer .site-footer--bottom--content h5 {
  color: #FFF;
  font-family: var(--font-family-heading) !important;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: -0.48px;
}
footer#site-footer .site-footer--bottom--content h5 span {
  color: var(--color-accent-green);
}
footer#site-footer .site-footer--bottom--content h6 {
  font-family: var(--font-family-body) !important;
  color: var(--color-accent-green);
  font-size: 16px;
  line-height: 125%;
  margin-bottom: 1rem;
  letter-spacing: -0.32px;
}
footer#site-footer .site-footer--bottom--content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer#site-footer .site-footer--bottom--content ul li {
  line-height: 1;
}
footer#site-footer .site-footer--bottom--content ul li:has(.flag) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
footer#site-footer .site-footer--bottom--content ul li a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
  color: #ffffff;
  font-family: var(--font-family-body) !important;
  transition: opacity 0.3s ease;
  text-decoration: none;
}
footer#site-footer .site-footer--bottom--content ul li a:hover {
  opacity: 0.8;
}
footer#site-footer .site-footer--bottom--content ul li .flag {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  border: 2px solid #ffffff;
  border-radius: 50%;
}
footer#site-footer .site-footer--bottom--content ul li .flag.canada {
  background-image: url(/wp-content/uploads/2025/07/canada.svg) !important;
}
footer#site-footer .site-footer--bottom--content ul li .flag.usa {
  background-image: url(/wp-content/uploads/2025/07/us.svg) !important;
}
@media screen and (max-width: 768px) {
  footer#site-footer .site-footer--bottom--content--branding {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 2rem;
  }
}
footer#site-footer .site-footer--copyright {
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: -0.48px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  footer#site-footer .site-footer--copyright {
    padding: 0 0 5rem !important;
  }
}
footer#site-footer .site-footer--copyright a {
  font-family: var(--font-family-body) !important;
  font-size: 12px !important;
  color: #ffffff !important;
  transition: color 0.3s ease;
}
footer#site-footer .site-footer--copyright a:hover {
  color: var(--color-accent-green) !important;
}
footer#site-footer .social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  footer#site-footer .social-icons {
    justify-content: center;
  }
}
footer#site-footer .social-icons a {
  width: 30px;
  height: 30px;
  background-color: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 250ms ease all;
}
footer#site-footer .social-icons a:hover {
  transform: scale(1.1);
}
footer#site-footer .social-icons svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

#page-header,
section[id$=-page-header] {
  overflow: hidden;
  padding: 0 !important;
}
#page-header .page-header-container,
section[id$=-page-header] .page-header-container {
  position: relative;
  background-size: contain;
  background-position: right;
  display: flex;
  align-items: center;
  width: 100vw;
  background-color: var(--color-accent-blue, #012FF3);
  padding-block: 7.5rem;
}
@media screen and (max-width: 768px) {
  #page-header .page-header-container,
  section[id$=-page-header] .page-header-container {
    padding: 150px 2rem 3rem;
    height: auto !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
  }
}
#page-header .page-header-container.has-bg-image::before,
section[id$=-page-header] .page-header-container.has-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  left: auto;
  right: 0;
  background-image: url(/wp-content/uploads/2025/09/footer-v2-bg-min.jpg);
  background-size: cover;
  background-position: center center;
  width: 65%;
  background-repeat: no-repeat;
  mix-blend-mode: luminosity;
  z-index: 0;
  mask-image: linear-gradient(to right, transparent, black 65%);
}
@media screen and (max-width: 768px) {
  #page-header .page-header-container.has-bg-image::before,
  section[id$=-page-header] .page-header-container.has-bg-image::before {
    background-size: cover;
    background-position: 20% 0%;
    width: 100%;
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
    z-index: 0;
    mask-image: linear-gradient(to top, transparent, black 145%);
  }
}
#page-header .page-header-content,
section[id$=-page-header] .page-header-content {
  position: relative;
  z-index: 1;
}
#page-header h1,
section[id$=-page-header] h1 {
  font-size: 4.25rem;
  margin: 0;
  font-weight: 400;
  position: relative;
  line-height: 125%;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  #page-header h1,
  section[id$=-page-header] h1 {
    font-size: 2rem;
    text-align: center;
    letter-spacing: -2px;
    margin-bottom: 0rem;
    line-height: 185%;
  }
}
#page-header h1 strong,
section[id$=-page-header] h1 strong {
  display: block;
  font-size: 4rem;
  font-weight: 600;
  background: linear-gradient(90deg, #FFF 0%, #C5FFFD 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  #page-header h1 strong,
  section[id$=-page-header] h1 strong {
    font-size: 2.75rem;
  }
}
#page-header h1 strong:nth-child(2),
section[id$=-page-header] h1 strong:nth-child(2) {
  padding-left: 90px;
  transform: translateY(-20px);
}
#page-header h1 .svg-wrapper,
section[id$=-page-header] h1 .svg-wrapper {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 80px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #page-header h1 .svg-wrapper,
  section[id$=-page-header] h1 .svg-wrapper {
    bottom: 20px;
  }
}
#page-header p,
section[id$=-page-header] p {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.32px;
  margin: 0;
  max-width: 50ch;
}

#testimonials,
section[id$=-testimonials] {
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #testimonials,
  section[id$=-testimonials] {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: unset;
  }
}
#testimonials .content--right,
section[id$=-testimonials] .content--right {
  width: fit-content;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  #testimonials .content--right,
  section[id$=-testimonials] .content--right {
    width: 100vw;
  }
}
#testimonials .content--left,
section[id$=-testimonials] .content--left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #testimonials .content--left,
  section[id$=-testimonials] .content--left {
    width: 100%;
    padding: 4rem 1rem;
    text-align: center;
  }
}
#testimonials .content--left h4,
section[id$=-testimonials] .content--left h4 {
  color: #FFF;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.8px;
}
@media screen and (max-width: 768px) {
  #testimonials .content--left h4,
  section[id$=-testimonials] .content--left h4 {
    font-size: 1.5rem;
    order: 1;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #testimonials .content--left .gradient-container,
  section[id$=-testimonials] .content--left .gradient-container {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#testimonials .content--left h5,
section[id$=-testimonials] .content--left h5 {
  font-family: var(--font-family-heading);
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -1.92px;
  background: linear-gradient(90deg, #FFF 0%, #C7DBFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  width: fit-content;
  line-height: 1.15;
}
@media screen and (max-width: 768px) {
  #testimonials .content--left h5,
  section[id$=-testimonials] .content--left h5 {
    text-align: center;
    font-size: 2rem;
    line-height: 1.45;
    margin-bottom: 0;
  }
}
#testimonials .content--left h5:last-of-type,
section[id$=-testimonials] .content--left h5:last-of-type {
  margin-top: -1rem;
}
#testimonials .content--left h5 svg,
section[id$=-testimonials] .content--left h5 svg {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(100%, -0.5rem);
}
@media screen and (max-width: 768px) {
  #testimonials .content--left h5 svg,
  section[id$=-testimonials] .content--left h5 svg {
    display: none;
  }
}
#testimonials .content--left p,
section[id$=-testimonials] .content--left p {
  color: #FFF;
  font-family: var(--font-family-body);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: -0.4px;
}
@media screen and (max-width: 768px) {
  #testimonials .content--left a.global-btn,
  section[id$=-testimonials] .content--left a.global-btn {
    order: 6;
    margin: 2rem 0 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #testimonials .content--left .countup-container,
  section[id$=-testimonials] .content--left .countup-container {
    order: 5;
  }
}
@media screen and (max-width: 768px) {
  #testimonials .content--left .countup-container p,
  section[id$=-testimonials] .content--left .countup-container p {
    margin: 0;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  #testimonials .content--left .countup-container p:first-of-type,
  section[id$=-testimonials] .content--left .countup-container p:first-of-type {
    font-size: 1.25rem;
    text-align: center;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  #testimonials .content--left .countup-container p:last-of-type,
  section[id$=-testimonials] .content--left .countup-container p:last-of-type {
    transform: translateY(-20px);
  }
}
@media screen and (max-width: 768px) {
  #testimonials .rating-badge,
  section[id$=-testimonials] .rating-badge {
    order: 4;
    transform: translateX(7.5px);
    margin: 2rem 0;
  }
}
@media screen and (max-width: 768px) {
  #testimonials .tick,
  section[id$=-testimonials] .tick {
    transform: translateY(-20px);
  }
}

section#purchase-header,
.purchase-header-section {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  section#purchase-header,
  .purchase-header-section {
    padding: 1.75rem;
  }
}
section#purchase-header h2,
.purchase-header-section h2 {
  font-size: 2.75rem;
}
@media screen and (max-width: 768px) {
  section#purchase-header h2,
  .purchase-header-section h2 {
    display: none;
  }
}
section#purchase-header h4,
.purchase-header-section h4 {
  letter-spacing: -0.05ch;
}
section#purchase-header .purchase-header-container,
.purchase-header-section .purchase-header-container {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  section#purchase-header .purchase-header-container,
  .purchase-header-section .purchase-header-container {
    padding: 1rem 0 0;
  }
}
section#purchase-header .purchase-header-items,
.purchase-header-section .purchase-header-items {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  section#purchase-header .purchase-header-items,
  .purchase-header-section .purchase-header-items {
    flex-direction: column;
  }
}
section#purchase-header .purchase-header-item,
.purchase-header-section .purchase-header-item {
  color: var(--color-accent-blue);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
section#purchase-header .purchase-header-item h3,
.purchase-header-section .purchase-header-item h3 {
  font-size: 1.5rem;
  line-height: 1;
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 768px) {
  section#purchase-header .purchase-header-item h3,
  .purchase-header-section .purchase-header-item h3 {
    font-size: 1.25rem;
  }
}
section#purchase-header .purchase-header-item p,
.purchase-header-section .purchase-header-item p {
  font-size: 1rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  section#purchase-header .purchase-header-item p,
  .purchase-header-section .purchase-header-item p {
    font-size: 0.85rem;
  }
}
section#purchase-header span.purchase-header-item--icon,
.purchase-header-section span.purchase-header-item--icon {
  height: 85px;
  width: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-accent-green);
  border: 3px solid var(--color-accent-green);
  flex: 0 0 auto;
  border-radius: 50%;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  section#purchase-header span.purchase-header-item--icon,
  .purchase-header-section span.purchase-header-item--icon {
    height: 60px;
    width: 60px;
    font-size: 2.5rem;
    padding-bottom: 5px;
  }
}
section#purchase-header .country-toggle,
.purchase-header-section .country-toggle {
  transform: scale(1.25);
}
section#purchase-header button.country-btn,
.purchase-header-section button.country-btn {
  --flag-gap: 4px;
  color: var(--color-accent-blue) !important;
  border: 2px solid var(--color-accent-blue);
}
section#purchase-header button.country-btn.active,
section#purchase-header button.country-btn:hover,
.purchase-header-section button.country-btn.active,
.purchase-header-section button.country-btn:hover {
  background-color: var(--color-accent-blue) !important;
  color: #fff !important;
}
section#purchase-header label.switch > div.switch-btn,
.purchase-header-section label.switch > div.switch-btn {
  border: 1px solid rgba(0, 0, 0, 0.15);
}
section#purchase-header label.switch > div.switch-btn:before,
.purchase-header-section label.switch > div.switch-btn:before {
  background: var(--color-accent-green);
}

#purchase-content,
section[id$=-purchase-content] {
  padding: 0 2rem 4rem;
  background: transparent;
}
@media screen and (max-width: 768px) {
  #purchase-content,
  section[id$=-purchase-content] {
    padding: 0 1rem 4rem;
  }
}
#purchase-content .wash-packages-container,
section[id$=-purchase-content] .wash-packages-container {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  flex-direction: unset !important;
  align-items: unset !important;
}
#purchase-content .wash-packages-container .wash-package-card:nth-child(1),
section[id$=-purchase-content] .wash-packages-container .wash-package-card:nth-child(1) {
  grid-column: 1/4 !important;
}
#purchase-content .wash-packages-container .wash-package-card:nth-child(2),
section[id$=-purchase-content] .wash-packages-container .wash-package-card:nth-child(2) {
  grid-column: 1/2 !important;
}
#purchase-content .wash-packages-container .wash-package-card:nth-child(3),
section[id$=-purchase-content] .wash-packages-container .wash-package-card:nth-child(3) {
  grid-column: 2/3 !important;
}
#purchase-content .wash-packages-container .wash-package-card:nth-child(4),
section[id$=-purchase-content] .wash-packages-container .wash-package-card:nth-child(4) {
  grid-column: 3/4 !important;
}
#purchase-content .wash-packages-container .wash-package-card,
section[id$=-purchase-content] .wash-packages-container .wash-package-card {
  width: auto !important;
  min-width: 0 !important;
}
@media screen and (max-width: 768px) {
  #purchase-content .wash-packages-container,
  section[id$=-purchase-content] .wash-packages-container {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 2rem 1rem 0;
  }
  #purchase-content .wash-packages-container .wash-package-card:nth-child(1),
  #purchase-content .wash-packages-container .wash-package-card:nth-child(2),
  #purchase-content .wash-packages-container .wash-package-card:nth-child(3),
  #purchase-content .wash-packages-container .wash-package-card:nth-child(4),
  section[id$=-purchase-content] .wash-packages-container .wash-package-card:nth-child(1),
  section[id$=-purchase-content] .wash-packages-container .wash-package-card:nth-child(2),
  section[id$=-purchase-content] .wash-packages-container .wash-package-card:nth-child(3),
  section[id$=-purchase-content] .wash-packages-container .wash-package-card:nth-child(4) {
    grid-column: 1/2 !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #purchase-content .wash-packages-container,
  section[id$=-purchase-content] .wash-packages-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #purchase-content .wash-packages-container .wash-package-card:nth-child(1),
  section[id$=-purchase-content] .wash-packages-container .wash-package-card:nth-child(1) {
    grid-column: 1/3 !important;
  }
  #purchase-content .wash-packages-container .wash-package-card:nth-child(2),
  section[id$=-purchase-content] .wash-packages-container .wash-package-card:nth-child(2) {
    grid-column: 1/2 !important;
  }
  #purchase-content .wash-packages-container .wash-package-card:nth-child(3),
  section[id$=-purchase-content] .wash-packages-container .wash-package-card:nth-child(3) {
    grid-column: 2/3 !important;
  }
  #purchase-content .wash-packages-container .wash-package-card:nth-child(4),
  section[id$=-purchase-content] .wash-packages-container .wash-package-card:nth-child(4) {
    grid-column: 1/3 !important;
  }
}
#purchase-content .wash-packages-content,
section[id$=-purchase-content] .wash-packages-content {
  display: unset !important;
  flex-direction: unset !important;
  align-items: unset !important;
  margin-top: 0 !important;
  padding: 0 !important;
}
#purchase-content .wash-packages-content--left,
section[id$=-purchase-content] .wash-packages-content--left {
  width: unset !important;
  padding: 0 !important;
}

.purchase-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 2147483647;
  display: none;
}
.purchase-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.purchase-modal .purchase-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.purchase-modal .purchase-modal-content {
  position: relative;
  background: white;
  border-radius: 24px;
  max-width: 100vw;
  min-width: 60vw;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .purchase-modal .purchase-modal-content {
    max-height: unset;
    width: 100vw;
    height: 100%;
    border-radius: 0;
  }
}
.purchase-modal .purchase-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 40px;
  width: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 200ms ease;
}
.purchase-modal .purchase-modal-close:hover {
  background: white;
  transform: scale(1.1);
}
.purchase-modal .purchase-modal-close svg {
  width: 30px;
  height: 30px;
  display: block;
  flex: 0 0 auto;
}
.purchase-modal .purchase-screen {
  flex: 1;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .purchase-modal .purchase-screen {
    padding: 1.5rem;
  }
}
.purchase-modal .purchase-screen-header {
  text-align: center;
  margin-bottom: 2rem;
}
.purchase-modal .purchase-screen-header h2 {
  color: var(--color-accent-blue);
  margin: 0 0 1rem;
  font-size: 48px;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.96px;
}
@media (max-width: 768px) {
  .purchase-modal .purchase-screen-header h2 {
    font-size: 1.5rem;
  }
}
.purchase-modal .purchase-screen-header p {
  color: #666;
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.28px;
}
.purchase-modal .purchase-screen-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.purchase-modal .location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .purchase-modal .location-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.purchase-modal .location-card {
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  background-color: var(--color-accent-green);
  transition: all 200ms ease;
  position: relative;
}
.purchase-modal .location-card:hover {
  background-color: var(--color-accent-blue);
}
.purchase-modal .location-card::before {
  content: "";
  position: absolute;
  background-size: 72%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/wp-content/uploads/2025/07/us.svg);
  width: 50px;
  height: 50px;
  background-color: var(--color-accent-green);
  padding: 10px;
  z-index: 9;
  right: -15px;
  top: -15px;
  border-radius: 50%;
}
.purchase-modal .location-card[data-country=ca]::before {
  background-image: url(/wp-content/uploads/2025/07/canada.svg);
}
.purchase-modal .location-card:hover::before, .purchase-modal .location-card.selected::before {
  background-color: var(--color-accent-blue);
}
.purchase-modal .location-card.selected {
  background-color: var(--color-accent-blue);
}
.purchase-modal .location-card .location-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
  font-family: var(--font-family-heading);
}
.purchase-modal .location-card .location-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  margin: 0 0 1rem;
  font-family: var(--font-family-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: -0.28px;
}
.purchase-modal .location-card button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  border: none;
  font-size: 1rem;
  font-family: var(--font-family-body);
  --text: var(--color-accent-green);
  width: 100% !important;
}
.purchase-modal .location-card button:hover {
  color: var(--color-accent-blue);
}
.purchase-modal .location-card button.outline, .purchase-modal .location-card button.transparent {
  --bg: transparent;
  --border: var(--color-accent-blue);
  --text: var(--color-accent-blue);
}
.purchase-modal .location-card.selected button {
  --text: var(--color-accent-blue);
}
.purchase-modal .payment-iframe-container {
  width: 100%;
  height: 600px;
  min-height: 400px;
  border-radius: 12px;
  overflow: scroll;
  border: 1px solid #e5e5e5;
  padding: 2rem;
}
.purchase-modal .payment-iframe-container iframe {
  width: 100%;
  height: 100%;
}
.purchase-modal .purchase-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid #e5e5e5;
  background: #f9f9f9;
}
@media (max-width: 768px) {
  .purchase-modal .purchase-modal-footer {
    padding: 1rem 1.5rem;
  }
}
.purchase-modal .purchase-modal-footer-left, .purchase-modal .purchase-modal-footer-right {
  display: flex;
  align-items: center;
}
.purchase-modal .purchase-modal-footer button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  border: none;
  font-size: 1rem;
  font-family: var(--font-family-body);
  --text: #ffffff;
}
@media screen and (max-width: 768px) {
  .purchase-modal .purchase-modal-footer button {
    font-size: 0.85rem !important;
  }
}
.purchase-modal .purchase-modal-footer button.outline, .purchase-modal .purchase-modal-footer button.transparent {
  --bg: transparent;
  --border: var(--color-accent-blue);
  --text: var(--color-accent-blue);
}
@media screen and (max-width: 768px) {
  .purchase-modal .purchase-modal-footer button svg {
    display: none !important;
  }
}

body.modal-open {
  overflow: hidden;
}

section:has(.circle-image) {
  overflow: hidden;
}

.two-column-section--reversed .content--left .circle-image, .two-column-section .content--right .circle-image {
  width: 100%;
  border-radius: 100vw;
  aspect-ratio: 1/1;
  transform: scale(1.75);
  outline: 1.5rem solid var(--color-accent-blue);
  outline-offset: 1rem;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .content--left .circle-image, .two-column-section .content--right .circle-image {
    transform: scale(1);
    outline-width: 1rem;
    outline-offset: 0.5rem;
  }
}

.circle-image--blue {
  outline-color: var(--color-accent-blue) !important;
}

.circle-image--green {
  outline-color: var(--color-accent-green) !important;
}

.circle-image--white {
  outline-color: #ffffff !important;
}

@media screen and (max-width: 768px) {
  .two-column-section--reversed, .two-column-section {
    display: flex;
    gap: 3rem;
  }
}
.two-column-section--reversed .content--image, .two-column-section .content--image,
.two-column-section--reversed .content--right:has(img),
.two-column-section .content--right:has(img),
.two-column-section--reversed .content--left:has(img:only-child),
.two-column-section .content--left:has(img:only-child) {
  display: flex;
  align-items: flex-end;
  width: 40vw;
  height: 100%;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .content--image, .two-column-section .content--image,
  .two-column-section--reversed .content--right:has(img),
  .two-column-section .content--right:has(img),
  .two-column-section--reversed .content--left:has(img:only-child),
  .two-column-section .content--left:has(img:only-child) {
    width: 100vw;
  }
}
.two-column-section--reversed .content--image img, .two-column-section .content--image img,
.two-column-section--reversed .content--right:has(img) img,
.two-column-section .content--right:has(img) img,
.two-column-section--reversed .content--left:has(img:only-child) img,
.two-column-section .content--left:has(img:only-child) img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .content--image img, .two-column-section .content--image img,
  .two-column-section--reversed .content--right:has(img) img,
  .two-column-section .content--right:has(img) img,
  .two-column-section--reversed .content--left:has(img:only-child) img,
  .two-column-section .content--left:has(img:only-child) img {
    width: 100vw;
  }
}
.two-column-section--reversed .content--text, .two-column-section .content--text,
.two-column-section--reversed .content--left:not(:has(img:only-child)),
.two-column-section .content--left:not(:has(img:only-child)),
.two-column-section--reversed .content--right:not(:has(img:only-child)),
.two-column-section .content--right:not(:has(img:only-child)) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.two-column-section--reversed .content--text h3, .two-column-section .content--text h3,
.two-column-section--reversed .content--left:not(:has(img:only-child)) h3,
.two-column-section .content--left:not(:has(img:only-child)) h3,
.two-column-section--reversed .content--right:not(:has(img:only-child)) h3,
.two-column-section .content--right:not(:has(img:only-child)) h3 {
  font-size: 3.5rem;
  font-weight: 700;
  max-width: 18ch;
  line-height: 90%;
  letter-spacing: -1.28px;
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .content--text h3, .two-column-section .content--text h3,
  .two-column-section--reversed .content--left:not(:has(img:only-child)) h3,
  .two-column-section .content--left:not(:has(img:only-child)) h3,
  .two-column-section--reversed .content--right:not(:has(img:only-child)) h3,
  .two-column-section .content--right:not(:has(img:only-child)) h3 {
    font-size: 2.35rem;
    max-width: unset;
    margin-top: 0;
  }
}
.two-column-section--reversed .content--text h3 span, .two-column-section .content--text h3 span,
.two-column-section--reversed .content--left:not(:has(img:only-child)) h3 span,
.two-column-section .content--left:not(:has(img:only-child)) h3 span,
.two-column-section--reversed .content--right:not(:has(img:only-child)) h3 span,
.two-column-section .content--right:not(:has(img:only-child)) h3 span {
  color: var(--color-accent-blue);
}
.two-column-section--reversed .content--text h4, .two-column-section .content--text h4,
.two-column-section--reversed .content--left:not(:has(img:only-child)) h4,
.two-column-section .content--left:not(:has(img:only-child)) h4,
.two-column-section--reversed .content--right:not(:has(img:only-child)) h4,
.two-column-section .content--right:not(:has(img:only-child)) h4 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.64px;
  margin: 0.5rem 0 2rem;
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .content--text h4, .two-column-section .content--text h4,
  .two-column-section--reversed .content--left:not(:has(img:only-child)) h4,
  .two-column-section .content--left:not(:has(img:only-child)) h4,
  .two-column-section--reversed .content--right:not(:has(img:only-child)) h4,
  .two-column-section .content--right:not(:has(img:only-child)) h4 {
    font-size: 1.5rem;
  }
}
.two-column-section--reversed .content--text p, .two-column-section .content--text p,
.two-column-section--reversed .content--left:not(:has(img:only-child)) p,
.two-column-section .content--left:not(:has(img:only-child)) p,
.two-column-section--reversed .content--right:not(:has(img:only-child)) p,
.two-column-section .content--right:not(:has(img:only-child)) p {
  max-width: 50ch;
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .content--text p, .two-column-section .content--text p,
  .two-column-section--reversed .content--left:not(:has(img:only-child)) p,
  .two-column-section .content--left:not(:has(img:only-child)) p,
  .two-column-section--reversed .content--right:not(:has(img:only-child)) p,
  .two-column-section .content--right:not(:has(img:only-child)) p {
    max-width: 100%;
    font-size: 1.15rem;
  }
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .content--text a.global-btn, .two-column-section .content--text a.global-btn,
  .two-column-section--reversed .content--left:not(:has(img:only-child)) a.global-btn,
  .two-column-section .content--left:not(:has(img:only-child)) a.global-btn,
  .two-column-section--reversed .content--right:not(:has(img:only-child)) a.global-btn,
  .two-column-section .content--right:not(:has(img:only-child)) a.global-btn {
    width: 100%;
  }
}
.two-column-section--reversed .icons, .two-column-section .icons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
  max-width: 80%;
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .icons, .two-column-section .icons {
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
    margin: 2rem 0;
  }
}
.two-column-section--reversed .icons .icon, .two-column-section .icons .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 0.85rem;
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .icons .icon, .two-column-section .icons .icon {
    flex-direction: row;
  }
}
.two-column-section--reversed .icons .icon .svg-wrapper, .two-column-section .icons .icon .svg-wrapper {
  padding: 0.5rem;
  border-radius: 8px;
  background: #FFF;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .icons .icon .svg-wrapper, .two-column-section .icons .icon .svg-wrapper {
    width: 50px;
    height: 50px;
  }
}
.two-column-section--reversed .icons .icon > span, .two-column-section .icons .icon > span {
  color: var(--color-accent-blue);
  font-size: 1rem;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: -0.72px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .icons .icon > span, .two-column-section .icons .icon > span {
    flex: 1;
    text-align: left;
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 768px) {
  .two-column-section {
    flex-direction: column-reverse;
  }
}
.two-column-section .content--right {
  display: flex;
  align-items: flex-end;
  width: 40vw;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .two-column-section .content--right {
    width: 100vw;
  }
}
.two-column-section .content--right img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .two-column-section .content--right img {
    width: 100vw;
  }
}
.two-column-section .content--right .circle-image {
  transform-origin: center left;
  background-position: 70% 50%;
}
@media screen and (max-width: 768px) {
  .two-column-section .content--right .circle-image {
    transform-origin: center;
    background-position: 70% 50%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transform: scale(1.25);
  }
}
.two-column-section .content--left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .two-column-section .content--left {
    padding-inline: 1.5rem;
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .two-column-section--reversed {
    flex-direction: column;
  }
}
.two-column-section--reversed .content--left {
  display: flex;
  align-items: flex-end;
  width: 40vw;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .content--left {
    width: 100vw;
  }
}
.two-column-section--reversed .content--left img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .content--left img {
    width: 100vw;
  }
}
.two-column-section--reversed .content--left .circle-image {
  transform-origin: center right;
  background-position: 30% 50%;
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .content--left .circle-image {
    transform-origin: center;
    background-position: 70% 50%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transform: scale(1.25);
  }
}
.two-column-section--reversed .content--right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .two-column-section--reversed .content--right {
    padding-inline: 1.5rem;
    padding-bottom: 3rem;
  }
}

.rating-badge .rating-container {
  display: flex;
  align-items: center;
  position: relative;
  transform: translateX(-30px);
}
.rating-badge .rating-container::before {
  content: "";
  background-image: url(/wp-content/uploads/2025/08/mascot-min.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 240px;
  height: 200px;
  top: -165px;
  right: 10px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .rating-badge .rating-container::before {
    width: 160px;
    height: 135px;
    top: 0;
    right: unset;
    left: 50%;
    z-index: -1;
    transform: translate(calc(-50% + 15px), -80%);
    background-position: center;
  }
}
.rating-badge .rating-container svg.google-logo {
  width: 95px;
  height: 95px;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  transform: translateX(30px);
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .rating-badge .rating-container svg.google-logo {
    width: 50px;
    height: 50px;
    padding: 0.35rem;
  }
}
.rating-badge .rating-wrapper {
  background-color: #fff;
  padding: 20px 30px 20px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  font-family: var(--font-family-body);
}
@media screen and (max-width: 768px) {
  .rating-badge .rating-wrapper {
    border-radius: 50px;
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
  }
}
.rating-badge.pinned-right .rating-wrapper {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
@media screen and (max-width: 768px) {
  .rating-badge.pinned-right .rating-wrapper {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
}
.rating-badge .review-count {
  color: var(--color-accent-green);
  font-family: var(--font-family-heading);
  font-weight: 600;
  font-size: 2.25rem;
  letter-spacing: -2px;
  line-height: 1 !important;
  transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
  .rating-badge .review-count {
    font-size: 1.85rem;
  }
}
.rating-badge .stars {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rating-badge .stars span {
  color: var(--color-accent-green);
  font-size: 1rem;
  display: block;
  line-height: 1 !important;
  font-weight: 500;
  letter-spacing: -0.05ch;
}

.rating-badge.blue .rating-wrapper {
  background-color: #226EFF;
}
.rating-badge.blue .review-count {
  color: #fff;
}
.rating-badge.blue .google-logo {
  background-color: #226EFF;
}
.rating-badge.blue .stars span {
  color: #fff;
}
.rating-badge.blue .stars svg path {
  fill: #FFE93E;
}

.rating-badge.green .rating-wrapper {
  background-color: #4AA22A;
}
.rating-badge.green .review-count {
  color: #fff;
}
.rating-badge.green .stars span {
  color: #fff;
}
.rating-badge.green .stars svg path {
  fill: #FFE93E;
}

.rating-badge.no-mascot .rating-container::before {
  display: none;
}

.wash-package-card {
  --accent-color: #ffffff;
  --subheader-bg-color: #ffffff;
  --subheader-text-color: #000000;
  --title-span-color: #000000;
  --button-text-color: #000000;
  position: relative;
}
.wash-package-card:not(.dummy) {
  background-image: url("/wp-content/uploads/2025/08/water-min.jpg");
  border-radius: 32px;
  background-size: cover;
  background-position: 50% 50%;
}
.wash-package-card svg.best-value-badge {
  position: absolute;
  top: -40px;
  right: -40px;
  transform: scale(1.25) rotate(-11.013deg);
}
@media screen and (max-width: 768px) {
  .wash-package-card svg.best-value-badge {
    top: -50px;
    right: unset;
    left: -40px;
    transform: scale(0.85) rotate(-11.013deg);
  }
}
.wash-package-card svg.best-value-badge p {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}
.wash-package-card .promo-badge {
  position: absolute;
  top: -40px;
  left: -60px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  display: none;
}
@media screen and (max-width: 768px) {
  .wash-package-card .promo-badge {
    display: none;
    width: 120px;
    height: 120px;
    top: -30px;
    left: -30px;
    padding: 1rem;
  }
}
.wash-package-card .promo-badge p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
  white-space: pre-line;
}
@media screen and (max-width: 768px) {
  .wash-package-card .promo-badge p {
    font-size: 12px;
  }
}
.wash-package-card .package-container {
  padding: 4rem;
}
@media screen and (max-width: 768px) {
  .wash-package-card .package-container {
    padding: 2rem 1.5rem 1.5rem;
  }
}
.wash-package-card .package-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wash-package-card .package-badge {
  display: none;
}
.wash-package-card .package-subheadline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: var(--font-family-heading);
  line-height: 1;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 40px;
  margin: 0 0 0.5rem;
  background-color: var(--subheader-bg-color);
  color: var(--subheader-text-color);
}
.wash-package-card h3.package-title {
  font-size: 3.5rem !important;
  line-height: 1 !important;
  color: #fff;
  letter-spacing: -1.12px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .wash-package-card h3.package-title {
    font-size: 2rem !important;
  }
}
.wash-package-card h3.package-title span {
  color: var(--title-span-color);
}
.wash-package-card h4.option-title {
  margin: 0 0 0.15rem;
  font-weight: 600;
  letter-spacing: -0.36px;
}
.wash-package-card p.option-description {
  margin: 0;
  color: var(--accent-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.28px;
}
.wash-package-card .global-btn {
  margin: 2rem 0 0;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: -0.56px;
}
.wash-package-card.purple .global-btn {
  --text: #9F2B90;
}
.wash-package-card.purple .global-btn.membership {
  --text: #9F2B90;
}
.wash-package-card.purple .global-btn.single {
  --text: #ffffff;
  --border: #ffffff;
}
.wash-package-card.purple .global-btn:hover {
  --bg: #FF62C5;
  --text: #ffffff;
  --border: #FF62C5;
}
.wash-package-card.green .global-btn {
  --text: #49B622;
}
.wash-package-card.green .global-btn.membership {
  --text: #49B622;
}
.wash-package-card.green .global-btn.single {
  --text: #ffffff;
  --border: #ffffff;
}
.wash-package-card.green .global-btn:hover {
  --bg: #DBFF97;
  --text: #49B622;
  --border: #DBFF97;
}
.wash-package-card.blue .global-btn {
  --text: #1F62E0;
}
.wash-package-card.blue .global-btn.membership {
  --text: #1F62E0;
}
.wash-package-card.blue .global-btn.single {
  --text: #C5FFFD;
  --border: #C5FFFD;
}
.wash-package-card.blue .global-btn:hover {
  --bg: #C5FFFD;
  --text: #1F62E0;
  --border: #C5FFFD;
}
.wash-package-card.grey .global-btn {
  --text: #697AA3;
}
.wash-package-card.grey .global-btn.membership {
  --text: #697AA3;
}
.wash-package-card.grey .global-btn.single {
  --text: #C6D2F1;
  --border: #C6D2F1;
}
.wash-package-card.grey .global-btn:hover {
  --bg: #C6D2F1;
  --text: #697AA3;
  --border: #C6D2F1;
}
.wash-package-card .package-options {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .wash-package-card .package-options {
    grid-template-columns: 1fr;
  }
}
.wash-package-card .package-option {
  padding: 1.5rem 0 0;
  color: #ffffff;
}
.wash-package-card .package-option:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  padding-right: 1.5rem;
}
@media screen and (max-width: 768px) {
  .wash-package-card .package-option:first-child {
    border-right: none;
    padding-right: 0;
  }
}
.wash-package-card .package-option:last-child {
  padding-left: 1.5rem;
}
@media screen and (max-width: 768px) {
  .wash-package-card .package-option:last-child {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .wash-package-card .package-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.wash-package-card .package-features-list-items {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  font-size: 0;
  padding: 0;
  margin: 2rem 0 0;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2px);
}
@media screen and (max-width: 768px) {
  .wash-package-card .package-features-list-items {
    display: grid;
    padding: 0.85rem;
  }
}
.wash-package-card .package-features-list-items .features-heading {
  grid-column: 1/-1;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.wash-package-card .package-features-list-items img {
  display: block;
  width: 100%;
  height: auto;
}
.wash-package-card .package-features-list-items span {
  display: none;
}
.wash-package-card .price {
  display: none;
}
.wash-package-card .price.active {
  display: block;
}
.wash-package-card .price--original {
  position: relative;
  display: block;
  text-decoration: none;
}
.wash-package-card .price--original * {
  opacity: 0.75;
}
.wash-package-card .price--original .price--amount--details-bottom {
  display: none;
}
.wash-package-card .price--original::after {
  --slash-width: 4px;
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  clip-path: polygon(0% calc(100% - var(--slash-width)), calc(100% - var(--slash-width)) 0%, 100% var(--slash-width), var(--slash-width) 100%);
}
.wash-package-card .price--flex {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  line-height: 1;
  margin: 0.85rem 0 0;
  font-variant: titling-caps;
}
.wash-package-card .price--symbol {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.64px;
  font-family: var(--font-family-heading);
  color: var(--accent-color);
}
.wash-package-card .price--amount--dollars {
  color: #FFF;
  font-family: var(--font-family-heading);
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -5px;
  line-height: 52px;
}
@media screen and (max-width: 768px) {
  .wash-package-card .price--amount--dollars {
    font-size: 60px;
  }
}
.wash-package-card .price--amount--details {
  margin-left: 0.25rem;
}
.wash-package-card .price--amount--details-top {
  display: flex;
  color: #FFF;
  font-family: var(--font-family-heading);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -2px;
}
@media screen and (max-width: 768px) {
  .wash-package-card .price--amount--details-top {
    font-size: 24px;
  }
}
.wash-package-card .price span.country-code {
  --flag-gap: 3px;
  font-family: var(--font-family-heading);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.7px;
  white-space: normal;
  background-color: #fff;
  border-radius: 40px;
  padding: 3px 5px 5px 25px;
  color: var(--button-text-color);
  display: inline-block;
  margin: 0.5rem 0 0;
  position: relative;
}
.wash-package-card .price span.country-code::before {
  content: "";
  display: block;
  height: calc(100% - var(--flag-gap) * 2);
  width: auto;
  background-size: contain;
  position: absolute;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  top: var(--flag-gap);
  left: var(--flag-gap);
}
.wash-package-card .price span.country-code[data-country=us]::before {
  left: var(--flag-gap);
  background-image: url(/wp-content/uploads/2025/07/us.svg) !important;
}
.wash-package-card .price span.country-code[data-country=cad]::before {
  right: var(--flag-gap);
  background-image: url(/wp-content/uploads/2025/07/canada.svg) !important;
}
.wash-package-card .canada-wash-limit,
.wash-package-card .cad-wash-limit,
.wash-package-card .us-wash-limit,
.wash-package-card .usd-wash-limit {
  display: none;
}
.wash-package-card .canada-wash-limit.active,
.wash-package-card .cad-wash-limit.active,
.wash-package-card .us-wash-limit.active,
.wash-package-card .usd-wash-limit.active {
  display: inline;
}
.wash-package-card.purple {
  box-shadow: inset 0 0 0 2000px rgba(159, 43, 144, 0.8);
  --accent-color: #FF62C5;
  --subheader-bg-color: #FF62C5;
  --subheader-text-color: #FFFFFF;
  --title-span-color: #FF62C5;
  --button-text-color: #9F2B90;
}
.wash-package-card.green {
  box-shadow: inset 0 0 0 2000px rgba(73, 182, 34, 0.8);
  --accent-color: #DBFF97;
  --subheader-bg-color: #DBFF97;
  --subheader-text-color: #49B622;
  --button-text-color: #49B622;
}
.wash-package-card.blue {
  box-shadow: inset 0 0 0 2000px rgba(4, 77, 216, 0.8);
  --accent-color: #C5FFFD;
  --subheader-bg-color: #C5FFFD;
  --subheader-text-color: #1F62E0;
  --button-text-color: #1F62E0;
}
.wash-package-card.grey {
  box-shadow: inset 0 0 0 2000px rgba(94, 111, 153, 0.8);
  --accent-color: #C6D2F1;
  --subheader-bg-color: #C6D2F1;
  --subheader-text-color: #697AA3;
  --button-text-color: #697AA3;
}
.wash-package-card.alt .package-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
  gap: 3rem;
}
.wash-package-card.alt .package-header {
  align-items: flex-start;
}
.wash-package-card.alt .package-title {
  margin: 0.25rem 0 1rem;
}
.wash-package-card.alt .package-subheadline {
  margin: 0;
}
.wash-package-card.alt .select-label {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -1px;
  font-size: 1rem;
}
.wash-package-card.alt .package-options {
  margin-top: 0.5rem;
  border-top: none;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.16);
  padding: 1rem;
  gap: 0.75rem;
}
.wash-package-card.alt .package-option {
  cursor: pointer;
  padding: 1rem !important;
  border-radius: 12px;
  transition: all 200ms ease-out;
}
.wash-package-card.alt .package-option.active,
.wash-package-card.alt .package-option:hover {
  background-color: #fff;
  color: var(--button-text-color);
}
.wash-package-card.alt .package-option:first-child {
  border-right: none;
}
.wash-package-card.alt .package-content {
  width: 40%;
  flex: 0 0 auto;
}
.wash-package-card.alt .package-features-list-items {
  display: grid;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
}
.wash-package-card.alt .option-title,
.wash-package-card.alt .option-description {
  text-align: center;
}
.wash-package-card.alt .option-description {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.5px;
}
.wash-package-card.alt .package-option.active .price--amount--dollars,
.wash-package-card.alt .package-option.active .price--amount--details-top,
.wash-package-card.alt .package-option:hover .price--amount--dollars,
.wash-package-card.alt .package-option:hover .price--amount--details-top {
  color: var(--button-text-color);
}
.wash-package-card.alt .package-option.active .country-code,
.wash-package-card.alt .package-option:hover .country-code {
  background-color: var(--button-text-color);
  color: #fff;
}
.wash-package-card.alt .price--flex {
  justify-content: center;
}
.wash-package-card.alt .price--amount--dollars {
  font-size: 60px;
  transform: translateY(-5px);
}
.wash-package-card.alt .price--amount--details-top {
  font-size: 24px !important;
}
.wash-package-card.alt .price--symbol {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -6px;
}
.wash-package-card.alt svg.best-value-badge {
  z-index: 1;
}
.wash-package-card.alt.primary svg.best-value-badge {
  transform: scale(1.25) rotate(11.013deg);
}
@media screen and (max-width: 768px) {
  .wash-package-card.alt.primary svg.best-value-badge {
    right: unset;
    left: -50px;
    transform: scale(0.9) rotate(-11.013deg);
  }
}
.wash-package-card.alt.primary:has(.promo-badge) svg.best-value-badge {
  top: -40px;
  right: -40px;
  left: unset;
  transform: scale(1.25) rotate(12deg);
}
@media screen and (max-width: 768px) {
  .wash-package-card.alt.primary:has(.promo-badge) svg.best-value-badge {
    bottom: -50px;
    right: -20px;
    transform: scale(0.9) rotate(12deg);
  }
}
.wash-package-card.alt.primary .package-features-list-items li:nth-child(12) {
  grid-column: 2/span 1;
}
.wash-package-card.alt.primary .package-features-list-items li:nth-child(13) {
  grid-column: 3/span 1;
}
.wash-package-card.alt.primary .package-features-list-items li:nth-child(14) {
  grid-column: 4/span 1;
}
@media screen and (max-width: 768px) {
  .wash-package-card.alt.primary .package-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 1.5rem;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .wash-package-card.alt.primary .package-header {
    align-items: center !important;
  }
}
@media screen and (max-width: 768px) {
  .wash-package-card.alt.primary .package-content {
    width: 100%;
  }
}
.wash-package-card.alt.secondary .package-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding: 1.5rem;
  height: 100%;
}
.wash-package-card.alt.secondary .package-content {
  width: 100%;
}
.wash-package-card.alt.secondary svg.best-value-badge {
  right: unset;
  left: -40px;
  transform: scale(1) rotate(12deg);
}
@media screen and (max-width: 768px) {
  .wash-package-card.alt.secondary svg.best-value-badge {
    left: -20px;
    transform: scale(0.9) rotate(12deg);
  }
}
.wash-package-card.alt.secondary:has(.promo-badge) svg.best-value-badge {
  top: -40px;
  right: -40px;
  left: unset;
  transform: scale(1) rotate(12deg);
}
@media screen and (max-width: 768px) {
  .wash-package-card.alt.secondary:has(.promo-badge) svg.best-value-badge {
    bottom: -50px;
    right: -20px;
    transform: scale(0.9) rotate(12deg);
  }
}
.wash-package-card.alt.secondary .package-header {
  align-items: center !important;
}
.wash-package-card.alt.secondary .package-title {
  font-size: 2.5rem !important;
}
.wash-package-card.alt.secondary .package-description {
  font-size: 10px;
}
.wash-package-card.alt.secondary .package-options {
  padding: 0.75rem;
  gap: 0.5rem;
}
.wash-package-card.alt.secondary .package-option {
  padding: 0.75rem 0.5rem !important;
}
.wash-package-card.alt.secondary .package-option:hover .price--symbol,
.wash-package-card.alt.secondary .package-option:hover .option-description,
.wash-package-card.alt.secondary .package-option.active .price--symbol,
.wash-package-card.alt.secondary .package-option.active .option-description {
  color: var(--subheader-text-color);
}
.wash-package-card.alt.secondary .package-features-list-items {
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1.25rem 1rem 1rem;
}
.wash-package-card.alt.secondary h4.option-title {
  font-size: 16px !important;
}
.wash-package-card.alt.secondary .price--amount--dollars {
  font-size: 48px !important;
  letter-spacing: -2px;
}
.wash-package-card.alt.secondary .price--amount--details-top {
  font-size: 14px !important;
  letter-spacing: 0px;
}
.wash-package-card.alt.secondary .price span.country-code {
  font-size: 10px;
  letter-spacing: 0;
}

.testimonials-slider {
  height: 100dvh;
  width: 100%;
  position: relative;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .testimonials-slider {
    display: block;
    height: auto;
  }
}
.testimonials-slider .testimonials-swiper {
  flex: 1;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .testimonials-slider .testimonials-swiper {
    height: calc(100% + 225px) !important;
    padding-bottom: 225px;
  }
}
.testimonials-slider .testimonials-swiper img.mascot {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(25%, -10%) rotate(-4.666deg);
  z-index: 10;
  width: 150px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .testimonials-slider .testimonials-swiper img.mascot {
    top: unset;
    bottom: 0;
    transform: translate(50%, 15%);
    right: 50%;
  }
}
.testimonials-slider .swiper {
  overflow: unset !important;
}
.testimonials-slider .swiper-wrapper {
  height: 100dvh !important;
  overflow: visible !important;
  padding-right: 4rem;
}
@media screen and (max-width: 768px) {
  .testimonials-slider .swiper-wrapper {
    height: auto !important;
  }
}
.testimonials-slider .swiper-slide {
  height: auto !important;
  overflow: visible !important;
}
@media screen and (max-width: 768px) {
  .testimonials-slider .swiper-slide {
    width: 70vw;
  }
}
.testimonials-slider .swiper-slide .testimonial-item {
  transform: translateX(8rem);
  transition: all 0.3s ease;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .testimonials-slider .swiper-slide .testimonial-item {
    transform: translateX(0);
  }
}
.testimonials-slider .swiper-slide-active .testimonial-item,
.testimonials-slider .swiper-slide-duplicate-active .testimonial-item {
  transform: translateX(0%);
  opacity: 1;
  box-shadow: 0 4px 42px -9px rgba(0, 23, 67, 0.3);
}
.testimonials-slider .testimonial-item {
  background-color: #fff;
  padding: 3rem;
  max-width: 395px;
  border-radius: 2rem;
  box-sizing: content-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  .testimonials-slider .testimonial-item {
    max-width: 70vw;
    padding: 1.5rem;
  }
}
.testimonials-slider svg.icon-google {
  width: 89px;
  height: 89px;
  background-color: #fff;
  border-radius: 50%;
  padding: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-45%, -25%);
}
@media screen and (max-width: 768px) {
  .testimonials-slider svg.icon-google {
    width: 68px;
    height: 68px;
    transform: translate(-30%, -55%);
  }
}
.testimonials-slider .testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.testimonials-slider .testimonial-content p {
  color: var(--color-accent-blue);
  font-family: var(--font-family-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 136%;
  letter-spacing: -0.48px;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .testimonials-slider .testimonial-content p {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.testimonials-slider .stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .testimonials-slider .stars {
    margin-bottom: 16px;
  }
}
.testimonials-slider .stars svg {
  width: 40.8px;
  height: 40.8px;
}
@media screen and (max-width: 768px) {
  .testimonials-slider .stars svg {
    width: 30px;
    height: 30px;
  }
}
.testimonials-slider .testimonial-author {
  text-align: right;
  color: var(--color-accent-blue);
  opacity: 0.6;
  font-family: var(--font-family-body);
  font-size: 16px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 136%;
  letter-spacing: -0.36px;
  margin: 0;
}
.testimonials-slider .testimonials-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 768px) {
  .testimonials-slider .testimonials-navigation {
    position: absolute;
    bottom: 200px;
  }
}
.testimonials-slider .testimonials-navigation .testimonials-btn-prev,
.testimonials-slider .testimonials-navigation .testimonials-btn-next {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .testimonials-slider .testimonials-navigation .testimonials-btn-prev,
  .testimonials-slider .testimonials-navigation .testimonials-btn-next {
    display: none;
  }
}
.testimonials-slider .testimonials-navigation .testimonials-btn-prev:hover,
.testimonials-slider .testimonials-navigation .testimonials-btn-next:hover {
  opacity: 1;
  transform: scale(1.1);
}
.testimonials-slider .testimonials-navigation .testimonials-btn-prev:disabled,
.testimonials-slider .testimonials-navigation .testimonials-btn-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.testimonials-slider .testimonials-navigation .testimonials-btn-prev svg,
.testimonials-slider .testimonials-navigation .testimonials-btn-next svg {
  width: 36px;
  height: 36px;
  fill: transparent;
}
.testimonials-slider .testimonials-navigation .testimonials-pagination {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform: unset;
}
@media screen and (max-width: 768px) {
  .testimonials-slider .testimonials-navigation .testimonials-pagination {
    flex-direction: row;
    width: 100vw;
    align-items: center;
    justify-content: center;
  }
}
.testimonials-slider .testimonials-navigation .testimonials-pagination .testimonials-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonials-slider .testimonials-navigation .testimonials-pagination .testimonials-pagination-bullet:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.testimonials-slider .testimonials-navigation .testimonials-pagination .testimonials-pagination-bullet.testimonials-pagination-bullet-active {
  background-color: white;
}

span.tick-numbers {
  display: flex;
}

.tick {
  font-size: 4rem;
  white-space: nowrap;
  font-family: var(--font-family-heading) !important;
}

span.tick-numbers span.tick-flip:nth-child(1) {
  margin-left: 0;
}

.tick-flip {
  font-weight: 900 !important;
}

.tick-flip {
  border-radius: 0.12em !important;
}

.tick-flip-panel {
  background-color: #ffffff !important;
  color: var(--color-accent-green) !important;
}

.tick-flip-shadow {
  box-shadow: unset !important;
}

.tick-comma {
  color: #ffffff;
  letter-spacing: -2px;
  font-weight: 100;
}

.country-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0 2.5rem;
}

button.country-btn {
  --flag-gap: 3px;
  font-size: 10px;
  width: 100px;
  white-space: normal;
  line-height: 1;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 40px;
  padding: 5px;
  font-weight: 600;
  color: #fff;
  position: relative;
  transition: all 200ms ease-out;
  letter-spacing: -0.4px;
}
button.country-btn::before {
  content: "";
  display: block;
  height: calc(100% - var(--flag-gap) * 2);
  width: auto;
  background-size: contain;
  position: absolute;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  top: var(--flag-gap);
}
button.country-btn[data-country=us] {
  background-color: transparent;
  text-align: left;
  padding-left: 35px;
}
button.country-btn[data-country=us]::before {
  left: var(--flag-gap);
  background-image: url(/wp-content/uploads/2025/07/us.svg) !important;
}
button.country-btn[data-country=canada] {
  text-align: right;
  padding-right: 35px;
}
button.country-btn[data-country=canada]::before {
  right: var(--flag-gap);
  background-image: url(/wp-content/uploads/2025/07/canada.svg) !important;
}
button.country-btn:hover, button.country-btn.active {
  background-color: #fff !important;
  color: var(--button-text-color) !important;
}

.country-toggle input[type=checkbox] {
  display: none;
}

label.switch > div.switch-btn {
  --switch-width: 51px;
  --switch-height: 28px;
  --switch-border-radius: 25.5px;
  --switch-knob-size: 21px;
  --switch-padding: 4px;
  --switch-knob-checked-position: calc(var(--switch-width) - var(--switch-knob-size) - var(--switch-padding));
  position: relative;
  width: var(--switch-width);
  height: var(--switch-height);
  background: #ffffff;
  border-radius: var(--switch-border-radius);
}

label.switch > div.switch-btn:before {
  content: "";
  position: absolute;
  height: var(--switch-knob-size);
  width: var(--switch-knob-size);
  background: var(--button-text-color);
  left: var(--switch-padding);
  top: 50%;
  transition: all 200ms ease-out;
  cursor: pointer;
  border-radius: 50%;
  transform: translateY(-50%);
}

label.switch > input[type=checkbox]:checked + div.switch-btn:before {
  left: var(--switch-knob-checked-position);
}

#splash {
  overflow: hidden;
  padding: 0 !important;
}
#splash .e-con-inner {
  padding: 0 !important;
  margin: 0;
}
#splash .splash-overlay {
  z-index: 1;
}
#splash .splash-container {
  position: relative;
  background-size: contain;
  background-position: right;
  display: flex;
  height: calc(100dvh - var(--header-height)) !important;
  align-items: center;
  width: 100vw;
  background-color: #012FF3;
}
@media screen and (max-width: 768px) {
  #splash .splash-container {
    padding-top: 150px;
    height: auto !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
}
#splash .splash-container::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  left: auto;
  right: 0;
  background-image: url(/wp-content/uploads/2025/07/mint-splash-bg.png);
  background-size: cover;
  background-position: center center;
  width: 65%;
  background-repeat: no-repeat;
  mix-blend-mode: luminosity;
  z-index: 0;
  mask-image: linear-gradient(to right, transparent, black 65%);
}
@media screen and (max-width: 768px) {
  #splash .splash-container::before {
    background-size: 100%;
    background-position: 50% 0%;
    width: 100%;
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
    z-index: 0;
    mask-image: linear-gradient(to top, transparent, black 145%);
  }
}
#splash .splash-overlay > svg {
  position: absolute;
  top: 0;
  left: 15%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #splash .splash-overlay > svg {
    left: 0;
    height: 940px;
    bottom: 0;
    top: unset;
    width: 100dvh;
    transform: rotate(-90deg) translateY(-25%);
  }
}
#splash .splash-content-outer {
  z-index: 10;
  color: #fff;
  padding: 0 5rem;
}
@media screen and (max-width: 768px) {
  #splash .splash-content-outer {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
    gap: 1.5rem;
    position: relative;
  }
}
#splash .splash-content {
  transform: translateY(-30px);
}
@media screen and (max-width: 768px) {
  #splash .splash-content {
    transform: translateY(0px);
  }
}
#splash h1 {
  font-family: var(--font-family-heading);
  line-height: 1;
  font-size: 4.25rem;
  margin: 0;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #splash h1 {
    font-size: 2rem;
    text-align: center;
    letter-spacing: -2px;
  }
}
#splash h1::before {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/07/bubbles-1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 130px;
  width: 70px;
  right: 0;
  top: 0;
  transform: translate(90px, -40px);
}
@media screen and (max-width: 768px) {
  #splash h1::before {
    height: 50px;
    width: 25px;
    right: 0;
    top: 0;
    transform: translate(-15px, -35px);
  }
}
#splash h1 strong {
  display: block;
  font-size: 110px;
  font-weight: 600;
  color: var(--color-accent-mint);
}
@media screen and (max-width: 768px) {
  #splash h1 strong {
    font-size: 2.75rem;
  }
}
#splash .time-flex {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0 3rem;
}
@media screen and (max-width: 768px) {
  #splash .time-flex {
    flex-direction: column;
    text-align: center;
  }
}
#splash .time-flex .icon,
#splash .time-flex .icon svg {
  width: 45px;
  height: 45px;
}
#splash .time-flex p {
  line-height: 1.35;
  font-size: 1.15rem;
  margin: 0;
  font-family: var(--font-family-body);
  font-weight: 400;
  max-width: 30ch;
}
@media screen and (max-width: 768px) {
  #splash .time-flex p {
    font-size: 1rem;
  }
}
#splash .time-flex .time {
  display: flex;
  background: var(--color-accent-mint);
  padding: 0.7rem 1.25rem 0.7rem 1rem;
  border-radius: 100px;
  color: var(--color-accent-blue);
  gap: 1rem;
  min-width: fit-content;
  position: relative;
  align-items: center;
}
#splash .time-flex .time::before {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/07/speed.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 75px;
  height: 100%;
  left: 0;
  top: 50%;
  transform: translate(-30px, -50%);
  z-index: -1;
}
#splash .time-flex .info {
  line-height: 1;
  font-family: var(--font-family-body);
  display: flex;
  flex-direction: column;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -2px;
}
@media screen and (max-width: 768px) {
  #splash .time-flex .info {
    font-size: 1.5rem;
    text-align: left;
  }
}
#splash .time-flex .info small {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.5px;
  font-weight: 400;
}
#splash .btns-flex {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  #splash .btns-flex {
    flex-direction: column;
    gap: 0.25rem;
  }
}
#splash .btns-flex > span {
  font-weight: 900;
  font-family: var(--font-family-heading);
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #splash .btns-flex > span {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
  }
  #splash .btns-flex > span::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #3f63ff;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: -1;
  }
  #splash .btns-flex > span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 20px;
    background-color: #012ff3;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
}
#splash .btns-flex .select-btn > button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#splash .btns-flex .select-btn > button.disabled {
  display: none;
}
#splash .btns-flex .select-btn .dropdown {
  display: none;
}
#splash .btns-flex .select-btn > .dropdown.active {
  display: flex;
  white-space: nowrap;
  gap: 0.75rem;
}
#splash .btns-flex .select-btn .down-chevron {
  color: var(--color-accent-blue);
  position: relative;
}
#splash .btns-flex .select-btn .down-chevron::before {
  content: "";
  background-color: var(--color-accent-mint);
  border-radius: 30px;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 2px;
  left: -2px;
  z-index: -1;
}
#splash .rating-badge {
  position: absolute;
  bottom: 30%;
  right: 0;
  z-index: 1;
  transform: translateX(calc(100% - 130px));
  animation: slideInBadge 0.6s ease-out 0.2s forwards;
}
@media screen and (max-width: 768px) {
  #splash .rating-badge {
    animation: unset;
    position: relative;
    bottom: unset;
    right: unset;
    transform: scale(0.85) translateX(-15px);
  }
}
#splash .rating-badge .rating-container {
  transform: unset;
}
@keyframes slideInBadge {
  from {
    transform: translateX(calc(100% - 130px));
  }
  to {
    transform: translateX(0);
  }
}

section#shopify {
  display: none;
  padding: 6rem 0 0;
}

/**
 * Mint SmartWash - Store Locator Brand Customization
 * Built on top of m3WPSL plugin foundation
 */
#store-locator {
  --m3-wpsl-primary-color: var(--color-accent-blue);
  --m3-wpsl-secondary-color: var(--color-accent-green);
  --m3-wpsl-accent-color: var(--color-accent-pink);
  --m3-wpsl-border-radius-base: 30px;
  --m3-wpsl-thumbnail-size: 150px;
  --m3-wpsl-mobile-card-width: 65vw;
  --m3-wpsl-card-bg-color: var(--color-accent-green);
  --m3-wpsl-text-primary: #fff;
  --m3-wpsl-text-secondary: #fff;
  --m3-wpsl-shadow-sm: 0 8px 30px rgb(0, 0, 0, 0.12);
  /* Thumbnail border radius override. */
}
#store-locator .wpsl-store-thumb {
  border-radius: 20px !important;
}
#store-locator {
  /* Custom header styling - Mint specific */
}
#store-locator .map-title {
  padding: 0 3.5rem 0;
}
@media screen and (max-width: 768px) {
  #store-locator .map-title {
    text-align: center;
    padding: 2rem 2rem 0;
  }
}
#store-locator .map-title h4 {
  font-family: var(--font-family-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-accent-green);
  line-height: 1;
  margin: 0 0 -6px;
  letter-spacing: 1px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #store-locator .map-title h4 {
    margin: 0 0 1rem;
  }
}
#store-locator .map-title .title {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  color: var(--color-accent-blue);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: -0.05ch;
}
@media screen and (max-width: 768px) {
  #store-locator .map-title .title {
    font-size: 2rem;
    margin: 0;
    transform: translateY(-5px);
  }
}
#store-locator .map-title .highlight {
  font-size: 4rem;
  font-weight: 600;
  background: linear-gradient(90deg, #044DD8 20.25%, #60DBDD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
@media screen and (max-width: 768px) {
  #store-locator .map-title .highlight {
    display: block;
    font-size: 2rem;
  }
}
#store-locator .map-title .highlight::before {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/07/bubbles-2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 30px;
  right: -20px;
  top: 20px;
}
@media screen and (max-width: 768px) {
  #store-locator .map-title .highlight::before {
    width: 20px;
    height: 30px;
    right: 0px;
    top: -10px;
  }
}
#store-locator .map-title .desc {
  margin-bottom: 3rem;
  color: var(--color-accent-blue);
  max-width: 450px;
  font-family: var(--font-family-body);
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.05ch;
}
@media screen and (max-width: 768px) {
  #store-locator .map-title .desc {
    margin-top: 2rem;
  }
}
#store-locator {
  /* Map border radius - Mint specific curved corners */
}
#store-locator #wpsl-gmap {
  --map-offset: 5vh;
  --header-total: calc(var(--header-height, 0px) + var(--m3promobar-top-desktop-height, 0px));
  height: calc(100vh - var(--header-total) - var(--map-offset) * 2) !important;
  top: calc(var(--header-total) + var(--map-offset)) !important;
  border-bottom-left-radius: 50px !important;
  border-top-left-radius: 50px !important;
}
#store-locator #wpsl-gmap .m3-locations-map-wrapper,
#store-locator #wpsl-gmap .m3-locations-map {
  border-bottom-left-radius: 50px !important;
  border-top-left-radius: 50px !important;
}
@media screen and (max-width: 768px) {
  #store-locator #wpsl-gmap .m3-locations-map-wrapper,
  #store-locator #wpsl-gmap .m3-locations-map {
    border-radius: 0 !important;
  }
}
#store-locator #wpsl-gmap {
  /* Mobile gradient overlay */
}
@media screen and (max-width: 768px) {
  #store-locator #wpsl-gmap {
    border-radius: 0 !important;
    border-radius: 0 !important;
    top: unset !important;
    position: relative !important;
    max-width: unset !important;
    flex: unset !important;
  }
  #store-locator #wpsl-gmap::after {
    content: "";
    position: absolute;
    height: 150px;
    width: 100%;
    background: linear-gradient(0deg, white 20%, rgba(255, 255, 255, 0) 100%);
    bottom: 0;
    z-index: 1;
    pointer-events: none;
  }
}
#store-locator {
  /* Country flag badges - Mint specific feature */
}
#store-locator #wpsl-stores li:not(.wpsl-preloader):not(.wpsl-no-results-msg)::before {
  content: "";
  position: absolute;
  background-size: 72%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/wp-content/uploads/2025/07/us.svg);
  width: 50px;
  height: 50px;
  background-color: var(--color-accent-green);
  padding: 10px;
  z-index: 9;
  left: -15px;
  top: -15px;
  border-radius: 50%;
}
#store-locator #wpsl-stores li:not(.wpsl-preloader):not(.wpsl-no-results-msg)[data-country=ca]::before, #store-locator #wpsl-stores li:not(.wpsl-preloader):not(.wpsl-no-results-msg)[data-country=canada]::before {
  background-image: url(/wp-content/uploads/2025/07/canada.svg);
}
#store-locator {
  /* Grid area styling - Mint specific separator */
}
#store-locator .wpsl-content-col .wpsl-flex-icon:first-of-type {
  grid-area: address;
  padding-right: 1.25rem;
  border-right: 1px solid #96d77e;
}
@media screen and (max-width: 768px) {
  #store-locator .wpsl-content-col .wpsl-flex-icon:first-of-type {
    border-right: none;
    padding-right: 0;
  }
}
#store-locator .wpsl-content-col .wpsl-flex-icon:nth-of-type(2) {
  grid-area: hours;
}
#store-locator {
  /* Mint button styling for card buttons */
}
#store-locator .wpsl-btn-grid > a {
  border-radius: 50px;
  width: 100%;
  padding: 0.5rem 1.5rem 0.6rem;
  height: fit-content;
}
#store-locator {
  /* Mobile horizontal scroll with margin - Mint specific */
}
@media screen and (max-width: 768px) {
  #store-locator #wpsl-stores ul {
    padding: 1rem 0 3rem;
  }
  #store-locator #wpsl-stores li:first-child {
    margin-left: 1rem;
  }
  #store-locator #wpsl-stores li:last-child {
    margin-right: 1rem;
  }
}

#wash-packages {
  padding: 6rem !important;
  background: #F5F7FC;
}
@media screen and (max-width: 768px) {
  #wash-packages {
    padding: 0 !important;
  }
}
#wash-packages .wash-packages-header--left {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #wash-packages .wash-packages-header--left {
    width: 100%;
    padding: 4rem 2rem 0;
    text-align: center;
  }
}
#wash-packages .wash-packages-header--right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #wash-packages .wash-packages-header--right {
    display: none;
  }
}
#wash-packages .wash-packages-header img {
  display: block;
}
#wash-packages .wash-packages-header h2 {
  font-size: 3.5rem;
  margin-top: 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #wash-packages .wash-packages-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
#wash-packages .wash-packages-header p {
  max-width: 50ch;
  margin: 0.25rem 0 4rem;
}
@media screen and (max-width: 768px) {
  #wash-packages .wash-packages-header p {
    margin: 0;
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
  #wash-packages .wash-packages-header .global-btn {
    display: none;
  }
}
#wash-packages .wash-packages-header .handwritten {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 250px;
}
@media screen and (max-width: 768px) {
  #wash-packages .wash-packages-header .handwritten {
    display: none;
  }
}
#wash-packages .wash-packages-header .handwritten span {
  color: var(--color-accent-blue);
  font-family: var(--font-family-handwritten);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 107%;
  letter-spacing: -0.52px;
  width: 298px;
  transform: rotate(-5.051deg);
  display: block;
}
#wash-packages .wash-packages-header .handwritten svg {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -130%);
}
#wash-packages .wash-packages-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  #wash-packages .wash-packages-content {
    margin-top: 0;
    padding-top: 3rem;
  }
}
#wash-packages .wash-packages-content--left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #wash-packages .wash-packages-content--left {
    width: 100%;
    padding: 0 1.5rem;
    gap: 2rem;
  }
}
#wash-packages .wash-packages-content--right {
  width: 50%;
  text-align: center;
  padding-top: 1rem;
  position: sticky;
  top: 4rem;
}
@media screen and (max-width: 768px) {
  #wash-packages .wash-packages-content--right {
    display: none;
  }
}
#wash-packages .wash-packages-content .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 2rem;
}
#wash-packages .wash-packages-content .btn-wrapper svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 100%);
}
#wash-packages .wash-packages-content .wash-packages-features-container .global-btn {
  --bg: #ffffff;
  --border: var(--color-accent-blue);
  --text: var(--color-accent-blue);
  cursor: pointer;
  font-weight: 400;
}
#wash-packages .wash-packages-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
}
#wash-packages .wash-packages-features {
  display: grid;
  row-gap: 0;
  column-gap: 0;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: repeat(5, auto);
  list-style: none;
  margin: 0 0 -10px;
  padding: 0;
}
#wash-packages .wash-packages-features img {
  display: block;
}
#wash-packages .wash-packages-features span {
  display: none;
}
#wash-packages .wash-packages-features li.disabled {
  opacity: 0.5;
  filter: grayscale(100%);
}
#wash-packages .wash-packages-features li:nth-child(11) {
  grid-column: 2/span 1;
}
#wash-packages .wash-packages-features li:nth-child(12) {
  grid-column: 3/span 1;
}
#wash-packages .wash-packages-features li:nth-child(13) {
  grid-column: 4/span 1;
}

#value {
  position: relative;
  background-color: var(--color-accent-green);
}
@media screen and (max-width: 768px) {
  #value {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 4rem;
  }
}
#value .content--left {
  width: 50vw;
  position: relative;
  margin-left: -15vw;
}
@media screen and (max-width: 768px) {
  #value .content--left {
    width: 100%;
    margin-left: 0;
  }
}
#value .content--left img {
  width: calc(50vw - 80px);
  height: calc(50vw - 80px);
  object-fit: cover;
  border-radius: 50%;
  outline: 20px solid var(--color-accent-blue);
  outline-offset: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  #value .content--left img {
    width: 100%;
    height: auto;
    outline: unset;
    object-fit: unset;
    top: unset;
    transform: unset;
    border-radius: 0;
    position: relative;
  }
}
#value .content--right {
  width: 75vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #value .content--right {
    width: 100%;
    padding: 0;
  }
}
#value .content--right h3 {
  font-size: 3.5rem;
  color: #ffffff;
  margin: 0 auto;
  font-weight: 700;
  max-width: 18ch;
  line-height: 90%;
  letter-spacing: -1.28px;
}
@media screen and (max-width: 768px) {
  #value .content--right h3 {
    font-size: 2rem;
    font-weight: 400;
    max-width: 100%;
    text-align: left;
    line-height: 0.85;
    padding: 2rem;
  }
}
#value .content--right h3 span {
  color: var(--color-accent-blue);
}
#value .content--right h3 span.larger {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin: 0.75rem 0 1.75rem;
}
@media screen and (max-width: 768px) {
  #value .content--right h3 span.larger {
    font-size: 3.5rem;
    margin: 0.75rem 0 2.5rem;
  }
}
#value .content--right h3 span.fancy {
  background-color: var(--color-accent-blue);
  padding: 0.35rem 2rem 0.5rem;
  border-radius: 100vw;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
#value .content--right h4 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.64px;
  margin: 2rem 0 3rem;
}
#value ul {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 50vw;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  #value ul {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
}
#value ul::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 225px;
  height: 225px;
  z-index: 1;
  background-image: url(/wp-content/uploads/2025/08/mascot-min.png);
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: bounce 2s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  #value ul::before {
    display: none;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  40% {
    transform: translate(-50%, -50%) translateY(-15px);
  }
  60% {
    transform: translate(-50%, -50%) translateY(-8px);
  }
}
#value ul li {
  padding: 1.75rem 1.75rem 1.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: var(--color-accent-blue);
  border-radius: 1rem;
  color: #ffffff;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #value ul li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: transparent;
  }
}
#value ul li:nth-child(3) {
  transform: translateX(-50px);
}
@media screen and (max-width: 768px) {
  #value ul li:nth-child(3) {
    transform: translateX(0);
  }
}
#value ul li:nth-child(4) {
  transform: translateX(50px);
}
@media screen and (max-width: 768px) {
  #value ul li:nth-child(4) {
    transform: translateX(0);
  }
}
#value ul li svg {
  width: 100px;
}
@media screen and (max-width: 768px) {
  #value ul li svg {
    width: 50px;
  }
  #value ul li svg path {
    fill: var(--color-accent-blue);
  }
}
#value ul li h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.8px;
  margin: 0 0 0.35rem;
}
#value ul li p {
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: -0.56px;
  margin: 0;
}

#video-lightbox {
  background-image: url(/wp-content/uploads/2025/09/video-section-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 75vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#video-lightbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 29, 85, 0.6);
}
#video-lightbox svg.video-lightbox-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: 125px;
}
#video-lightbox svg.video-lightbox-icon .play {
  transition: 250ms ease all;
  transform-origin: center center;
}
#video-lightbox svg.video-lightbox-icon:hover .play {
  transform: scale(1.1);
}
#video-lightbox .video-lightbox-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px 20px 0 0;
  background: rgba(0, 23, 63, 0.75);
}
@media screen and (max-width: 768px) {
  #video-lightbox .video-lightbox-text {
    width: 80%;
    border-radius: 20px 20px 0px 0px;
  }
}
#video-lightbox .video-lightbox-text h5 {
  color: #ffffff;
  text-align: center;
  font-family: var(--font-family-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.54px;
  white-space: nowrap;
  padding: 1.5rem 2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #video-lightbox .video-lightbox-text h5 {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
}
#video-lightbox .video-lightbox-text h5 span {
  display: inline-block;
  color: var(--color-accent-green);
}

section#ecological {
  background: linear-gradient(180deg, rgba(4, 77, 216, 0.79) 0%, #044DD8 30%), url(/wp-content/uploads/2025/08/water-min.jpg);
  background-size: 100%;
  background-position: 50% 0%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  section#ecological {
    padding: 0;
    background-size: unset;
  }
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0 0;
    text-align: center;
    margin-bottom: 0;
  }
}
section#ecological .ecological-header h2 {
  color: #FFF;
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -1.14px;
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-header h2 {
    font-size: 2rem;
    margin: 0;
  }
}
section#ecological .ecological-header h3 {
  color: #FFF;
  font-size: 90px;
  font-style: normal;
  font-weight: 700;
  line-height: 75%;
  letter-spacing: -2.7px;
  position: relative;
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-header h3 {
    display: flex;
    flex-direction: column;
    letter-spacing: -0.35px;
    line-height: 100%;
    font-weight: 400;
    font-size: 1rem;
  }
}
section#ecological .ecological-header h3 span {
  color: var(--color-accent-green);
}
section#ecological .ecological-header h3 span.larger {
  font-size: 2.15rem;
  color: #ffffff;
  display: block;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 0.5rem;
}
section#ecological .ecological-header h3 span.white {
  color: #ffffff;
}
section#ecological .ecological-header h3 svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-60%, -50%);
}
section#ecological .ecological-header h5 {
  color: var(--color-accent-green);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-header h5 {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-content {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    margin-top: 0;
    padding-top: 0;
    text-align: center;
  }
}
section#ecological .ecological-content--left {
  position: relative;
  width: 35vw;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-content--left {
    width: 100%;
  }
}
section#ecological .ecological-content--right {
  padding-left: 3.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  flex: 1;
  max-width: 65vw;
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-content--right {
    padding: 2rem 2rem 150px;
    border-left: none;
    max-width: 100%;
  }
}
section#ecological .ecological-content--right h5 {
  color: #FFF;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: -0.8px;
}
section#ecological .ecological-content--right p {
  color: #FFF;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: -0.36px;
}
section#ecological .ecological-content--image-callout {
  position: absolute;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(19, 69, 166, 0.9);
  padding: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 370px;
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-content--image-callout {
    max-width: 80%;
    text-align: left;
  }
}
section#ecological .ecological-content--image-callout.top {
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-content--image-callout.top {
    top: -50px;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
section#ecological .ecological-content--image-callout.bottom {
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-content--image-callout.bottom {
    bottom: -50px;
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
section#ecological .ecological-content--image-callout > div {
  color: var(--color-accent-green);
  font-family: var(--font-family-heading);
  font-size: 4rem;
  font-weight: 900;
  padding-bottom: 10px;
}
section#ecological .ecological-content--image-callout p {
  font-size: 14px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-content--image-callout p {
    font-size: 11px;
  }
}
section#ecological .water-animated-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  position: relative;
}
section#ecological .water-animated-text-wrapper .handwritten {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translate(30%, 100%);
}
@media screen and (max-width: 768px) {
  section#ecological .water-animated-text-wrapper .handwritten {
    transform: translate(30%, 150%);
  }
}
section#ecological .water-animated-text-wrapper .handwritten span {
  color: #fff;
  font-family: var(--font-family-handwritten);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 107%;
  letter-spacing: -0.52px;
  width: 25ch;
  display: block;
  transform: rotate(4.5deg);
  text-align: center;
}
section#ecological .water-animated-text-wrapper .handwritten span span {
  display: inline-block;
  font-size: 24px;
  width: unset;
  font-family: var(--font-family-heading);
  font-weight: 900;
  letter-spacing: -1px;
}
section#ecological .water-animated-text-wrapper .handwritten svg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(65%, -100%);
}
section#ecological .water-animated-text-wrapper .text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: -0.8px;
  color: #FFF;
}
section#ecological .water-animated-text-wrapper .text.text--top {
  transform: translateY(25px);
}
@media screen and (max-width: 768px) {
  section#ecological .water-animated-text-wrapper .text.text--top {
    transform: translateY(12px);
    text-align: left;
  }
}
section#ecological .water-animated-text-wrapper .text.text--bottom {
  text-align: right;
}
section#ecological .water-animated-text-wrapper .water-animated-text {
  background-image: url(/wp-content/uploads/2025/09/water-animated-scaled.jpg) !important;
  background-size: 1920px 100% !important;
  background-repeat: repeat-x !important;
  -moz-background-clip: text !important;
  -o-background-clip: text !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  animation: wave-animation 15s infinite linear !important;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-family-heading);
  letter-spacing: -4px;
}
section#ecological .water-animated-text-wrapper .water-animated-text.ecological-countup-container #ecological-countup {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  background-image: inherit;
  background-size: inherit;
  background-repeat: inherit;
  -moz-background-clip: text;
  -o-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: inherit;
  font-variant-numeric: tabular-nums;
}
@keyframes wave-animation {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: 1920px bottom;
  }
}
section#ecological .ecological-content--grid h6 {
  color: #FFF;
  text-align: center;
  font-family: var(--font-family-heading);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: -0.64px;
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-content--grid h6 {
    font-size: 1.5rem;
    padding: 0 2rem;
    margin: 0 0 0.75rem;
  }
}
section#ecological .ecological-content--grid p {
  color: #FFF;
  text-align: center;
  font-family: var(--font-family-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 115%;
  letter-spacing: -0.48px;
  margin: 0 0 2.5rem;
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-content--grid p {
    font-size: 20px;
  }
}
section#ecological .ecological-content--grid--items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-content--grid--items {
    display: flex;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    overflow: scroll;
    padding: 1rem 1rem 3rem;
  }
}
section#ecological .ecological-content--grid--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background: rgba(29, 29, 29, 0.14);
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  section#ecological .ecological-content--grid--item {
    scroll-snap-align: center;
    scroll-padding-inline-start: 2rem;
    width: 80vw;
    flex: 0 0 auto;
  }
}
section#ecological .ecological-content--grid--item svg {
  margin: 0 0 2rem;
}
section#ecological .ecological-content--grid--item .header {
  color: #FFF;
  text-align: center;
  font-family: var(--font-family-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: -0.4px;
  margin-bottom: 1rem;
}
section#ecological .ecological-content--grid--item .description {
  color: #FFF;
  text-align: center;
  font-family: var(--font-family-body);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 400;
  line-height: 115%;
  letter-spacing: -0.32px;
  opacity: 0.75;
}

section#fleet .content--left h3 {
  color: #ffffff;
}
