/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-712 {
      /* 175px - 200px top */
      padding: clamp(10.9375rem, 10vw, 12.5rem) 1rem 6.25rem;
      position: relative;
      z-index: 1;
  }
  #banner-712 .cs-container {
      text-align: center;
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 1rem;
  }
  #banner-712 .cs-int-title {
      /* 39px - 61px */
      font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
      font-weight: 900;
      line-height: 1.2em;
      text-align: inherit;
      margin: 0;
      color: var(--bodyTextColorWhite);
      position: relative;
  }
  #banner-712 .cs-int-text {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      line-height: 1.5em;
      text-align: inherit;
      margin: 0;
      color: var(--bodyTextColorWhite);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0px 0px 8px rgba(0, 0, 0, 0.6);
      max-width: 50rem;
  }
  #banner-712 .cs-background {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
  }
  #banner-712 .cs-background:before {
      /* background color overlay */
      content: "";
      position: absolute;
      display: block;
      height: 100%;
      width: 100%;
      /* background: #000; */
      opacity: 0.3;
      top: 0;
      left: 0;
      z-index: 1;
  }
  #banner-712 .cs-background img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      /* Makes img tag act as a background image */
      object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #banner-712 {
    padding-top: 20rem;
  }
  /* #banner-712 .cs-background:before {
      opacity: 1;
      background: linear-gradient(
          90.01deg,
          rgba(0, 0, 0, 0.9) 16.86%,
          rgba(0, 0, 0, 0) 100%
      );
  } */
}

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-82 {
        /* Centers button */
        text-align: center;
        /* Full viewport height */
        min-height: 100vh;
        /* 144px - 300px - leaving extra space for the navigation */
        padding: clamp(9rem, 25.95vw, 18.75rem) 1rem 2rem;
        position: relative;
        z-index: 1;
        /* Center content vertically */
        display: flex;
        align-items: center;
    }
    #hero-82 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    #hero-82 .cs-background:before {
        /* Overlay */
        content: "";
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.7;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 1;
        /* prevents the cursor from interacting with it */
        pointer-events: none;
    }
    #hero-82 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #hero-82 .cs-container {
        width: 100%;
        max-width: 67.5rem;
        margin: auto;
    }
    #hero-82 .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 700;
        line-height: 1.2em;
        text-align: center;
        max-width: 51.8125rem;
        /* 16px - 24px */
        margin: 0 auto clamp(1rem, 4vw, 1.5rem);
        color: #fff;
        position: relative;
    }
    #hero-82 .cs-title:after {
        /* Divider Line */
        content: "";
        width: 6.25rem;
        height: 0.5rem;
        /* 16px - 24px */
        margin: clamp(1rem, 4vw, 1.5rem) auto clamp(1rem, 4vw, 1.5rem);
        background: var(--primary);
        opacity: 1;
        position: relative;
        display: block;
    }
    #hero-82 .cs-text {
        /* 16px - 25px */
        font-size: clamp(1rem, 1.95vw, 1.5625rem);
        line-height: 1.5em;
        text-align: center;
        width: 100%;
        /* 464px - 800px */
        max-width: clamp(29rem, 60vw, 50rem);
        margin: 0 auto;
        /* 40px - 48px */
        margin-bottom: clamp(2.5rem, 4vw, 3rem);
        color: #fff;
    }
    #hero-82 .cs-button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        margin: auto;
        color: #000;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
    }
    #hero-82 .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #hero-82 .cs-button-solid:hover {
        color: #fff;
    }
    #hero-82 .cs-button-solid:hover:before {
        width: 100%;
    }
}
/* Desktop Parallax Effect - 601px */
@media only screen and (min-width: 601px) {
    #hero-82 {
        background: url("../../assets/images/service-locations/vancouver/vancouver-pest-control-hero.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
    #hero-82 .cs-background img {
        display: none;
    }
}
                                

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-1301 {
        padding: var(--sectionPadding);
        background-color: #f7f7f7;
        position: relative;
        z-index: 10;
    }
    #services-1301 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #services-1301 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #services-1301 .cs-title {
        max-width: 20ch;
    }
    #services-1301 .cs-card-group {
        width: 100%;
        max-width: 80rem;
        margin: 0;
        padding: 0 1rem;
        /* prevents padding and border from affecting height and width */
        background-color: #fff;
        box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        position: relative;
        z-index: 15;
    }
    #services-1301 .cs-item {
        text-align: left;
        list-style: none;
        width: 100%;
        border-bottom: 1px solid #e8e8e8;
        box-sizing: border-box;
        grid-column: span 12;
        transition:
            background-color 0.3s,
            border-color 0.3s;
    }
    #services-1301 .cs-item:last-of-type {
        border-bottom: none;
    }
    #services-1301 .cs-link {
        text-decoration: none;
        /* 24px - 60px top & Bottom */
        /* 24px - 16px top & Bottom */
        padding: clamp(1.5rem, 5.3vw, 3.75rem) clamp(1rem, 2.7vw, 2.5rem);
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
        height: 100%;
        box-sizing: border-box;
    }
    #services-1301 .cs-icon {
        /* 32px - 40px */
        height: clamp(2rem, 4vw, 2.5rem);
        width: auto;
        margin: 0 0 1rem 0;
    }
    #services-1301 .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2vw, 1.5625rem);
        font-weight: 700;
        text-align: inherit;
        line-height: 1.2em;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
        transition: color 0.3s;
    }
    #services-1301 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        text-align: inherit;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        transition:
            color 0.3s,
            opacity 0.3s;
    }
    #services-1301 .cs-fake-link {
        font-size: 1rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        margin-top: 2rem;
        color: #3D5E25;
        display: inline-flex;
        justify-content: flex-start;
        align-items: baseline;
        gap: 0.5rem;
    }
    #services-1301 .cs-fake-link:hover .cs-icon {
        transform: translateX(0.5rem) translateY(0.25rem);
    }
    #services-1301 .cs-fake-link .cs-icon {
        width: 1.25rem;
        height: auto;
        display: block;
        transition: transform .3s;
        transform: translateY(0.25rem);
    }
    #services-1301 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #000;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #services-1301 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #services-1301 .cs-button-solid:hover {
        color: #fff;
    }
    #services-1301 .cs-button-solid:hover:before {
        width: 100%;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-1301 .cs-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 3rem;
    }
    #services-1301 .cs-title {
        margin: 0;
    }
    #services-1301 .cs-flex-group {
        width: 50%;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #services-1301 .cs-item {
        grid-column: span 6;
    }
    #services-1301 .cs-item:nth-of-type(3) {
        border-bottom: none;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #services-1301 .cs-card-group {
        padding: 0;
    }
    #services-1301 .cs-item {
        grid-column: span 3;
        border-bottom: 0;
        border-right: 1px solid #e8e8e8;
    }
    #services-1301 .cs-item:hover {
        background-color: #1a1a1a;
        border-color: #1a1a1a;
    }
    #services-1301 .cs-item:hover .cs-h3,
    #services-1301 .cs-item:hover .cs-item-text {
        color: var(--bodyTextColorWhite);
    }
    #services-1301 .cs-item:hover .cs-item-text {
        opacity: 0.8;
    }
    #services-1301 .cs-item:last-of-type {
        border: none;
    }
}

                                


/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-1176 {
        padding: var(--sectionPadding);
        background: #ffff;
    }
    #services-1176 .cs-container {
        max-width: 34.375rem;
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #services-1176 .cs-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
        /* set text align to left if content needs to be left aligned */
        text-align: center;
    }

    #services-1176 .cs-card-group {
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2.3vw, 1.25rem);
    }
    #services-1176 .cs-item {
        list-style: none;
        width: 100%;
        margin: 0 auto;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        border-radius: 1rem;
        padding: 1.5rem;
        padding-bottom: 2rem;
        background-color: #f7f7f7;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        z-index: 1;
        transition:
            box-shadow 0.3s,
            border-color 0.3s;
        text-align: center;
        grid-column: span 12;
        grid-row: span 1;
    }
    #services-1176 .cs-item:hover .cs-h3,
    #services-1176 .cs-item:hover .cs-link {
        color: var(--primary);
    }
    #services-1176 .cs-item:hover .cs-arrow {
        filter: initial;
    }
    #services-1176 .cs-picture {
        width: 6.25rem;
        height: auto;
        margin: 0.5rem 0 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #services-1176 .cs-icon {
        width: 4.5rem;
        height: 4.5rem;
        object-fit: contain;
    }
    #services-1176 .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
        line-height: 1.2em;
        font-weight: bold;
        margin: 0 0 0.75rem;
        color: var(--headerColor);
        transition: color 0.3s;
        text-align: inherit;
    }
    #services-1176 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        max-width: 28.125rem;
        margin: 0;
        margin-bottom: 1.25rem;
        padding: 0;
        color: var(--bodyTextColor);
    }
    #services-1176 .cs-link {
        font-size: 1rem;
        line-height: 1.2em;
        font-weight: 700;
        margin-top: auto;
        color: var(--headerColor);
        text-decoration: none;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        transition: color 0.3s;
        text-align: inherit;
    }
    #services-1176 .cs-link:hover .cs-arrow {
        transform: translateX(0.25rem);
    }

      #services-1176 .cs-link1 {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
  }
  
  /* #services-1176 .cs-link1:hover {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
  } */
    #services-1176 .cs-arrow {
        width: 1.25rem;
        height: auto;
        display: block;
        filter: grayscale(1) brightness(0);
        transition:
            filter 0.3s,
            transform 0.3s;
    }
    #services-1176 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #000;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #services-1176 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #services-1176 .cs-button-solid:hover {
        color: #fff;
    }
    #services-1176 .cs-button-solid:hover:before {
        width: 100%;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-1176 .cs-container {
        max-width: 80rem;
    }
    #services-1176 .cs-item {
        grid-column: span 4;
    }
}

/*-- -------------------------- -->
<---       Neighbourhoods       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #neighbourhoods {
    padding: var(--sectionPadding);
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
  }
  
  #neighbourhoods::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="50" cy="30" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="80" cy="20" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="30" cy="70" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="70" cy="80" r="1" fill="%23e2e8f0" opacity="0.3"/></svg>') repeat;
    z-index: 1;
  }
  
  #neighbourhoods h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--headerColor);
    margin: 0 0 1rem;
    position: relative;
    z-index: 2;
  }
  
  #neighbourhoods h2::after {
    content: "";
    display: block;
    width: 4rem;
    height: 0.25rem;
    background: var(--primary);
    margin: 1rem auto;
    border-radius: 0.125rem;
  }
  
  #neighbourhoods > p {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto 4rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--bodyTextColor);
    position: relative;
    z-index: 2;
  }
  
  .neighbourhood-grid {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
  }
  
  .neighbourhood-grid article {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
  }
  
  .neighbourhood-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .neighbourhood-grid article:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary);
  }
  
  .neighbourhood-grid article:hover::before {
    transform: scaleX(1);
  }
  
  .neighbourhood-grid article h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--headerColor);
    margin: 0 0 1rem;
    position: relative;
  }
  
  .neighbourhood-grid article h3::after {
    content: "📍";
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.6;
    transition: all 0.3s ease;
  }
  
  .neighbourhood-grid article:hover h3::after {
    opacity: 1;
    transform: scale(1.1);
  }
  
  .neighbourhood-grid article p {
    color: var(--bodyTextColor);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .neighbourhood-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .neighbourhood-grid article {
    padding: 2.5rem;
  }
  
  .neighbourhood-grid article h3 {
    font-size: 1.625rem;
  }
  
  .neighbourhood-grid article p {
    font-size: 1rem;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  .neighbourhood-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* Neighbourhoods CTA Button */
.neighbourhoods-cta {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.neighbourhoods-cta .cs-button-solid {
  font-size: 1rem;
  line-height: 3.5rem;
  text-decoration: none;
  font-weight: 700;
  margin: auto;
  color: #000;
  padding: 0 1.5rem;
  background-color: var(--primary);
  border-radius: 0.25rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.neighbourhoods-cta .cs-button-solid:before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 0%;
  background: #000;
  opacity: 1;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0.25rem;
  transition: width 0.3s;
}

.neighbourhoods-cta .cs-button-solid:hover {
  color: #fff;
}

.neighbourhoods-cta .cs-button-solid:hover:before {
  width: 100%;
}

/* Service Area Map */
.service-area-map-container {
  margin: 4rem 0 3rem 0;
  position: relative;
  z-index: 2;
}

.map-wrapper {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e5e5;
}

.service-map {
  width: 100%;
  height: 400px;
  position: relative;
  background-color: #f8f9fa;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}

.map-loading {
  text-align: center;
  color: var(--bodyTextColor);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e5e5;
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.map-loading p {
  margin: 0;
  font-size: 1rem;
  color: var(--bodyTextColor);
}

.map-error {
  text-align: center;
  color: var(--bodyTextColor);
}

.map-error p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
}

/* Map responsive adjustments */
@media only screen and (min-width: 48rem) {
  .service-map {
    height: 450px;
  }
}

@media only screen and (min-width: 64rem) {
  .service-map {
    height: 500px;
  }
}                                


/*-- -------------------------- -->
<--- Internal linking services  -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1628 {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
  }
  #services-1628 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375em;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-1628 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #services-1628 .cs-title {
    max-width: 20ch;
  }
  #services-1628 .cs-text {
    max-width: 40rem;
    position: relative;
    z-index: 1;
  }
  #services-1628 .cs-text:after {
    /* divider line */
    content: "";
    width: 100%;
    height: 1px;
    margin-top: 1.5rem;
    background: var(--primary);
    opacity: 1;
    display: block;
    position: relative;
  }
  #services-1628 .cs-chevron {
    --chevronColor: var(--primary);
    width: 3rem;
    height: auto;
  }
  #services-1628 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    column-gap: clamp(1rem, 2.5vw, 1.25rem);
    /* 28px - 40px */
    row-gap: clamp(1.75rem, 2.5vw, 2.5rem);
  }
  #services-1628 .cs-item {
    list-style: none;
    width: 100%;
    display: flex;
    grid-column: span 12;
    flex-direction: column;
    align-items: flex-start;
  }
  #services-1628 .cs-item:hover .cs-picture img {
    opacity: .5;
    transform: scale(1.2);
  }
  #services-1628 .cs-link {
    text-decoration: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #services-1628 .cs-picture {
    width: 100%;
    height: 15rem;
    margin-bottom: 1.5rem;
    background-color: #000;
    overflow: hidden;
    display: block;
    position: relative;
  }
  #services-1628 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform .6s, opacity .3s;
  }
  #services-1628 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    text-align: left;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #services-1628 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0 0 1.5rem 0;
    color: var(--bodyTextColor);
  }
  #services-1628 .cs-fake-link, .cs-inline-link {
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    margin-top: auto;
    color: #3D5E25;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #services-1628 .cs-fake-link:hover .cs-icon {
    transform: translateX(0.5rem);
  }
  #services-1628 .cs-icon {
    width: 1.25rem;
    height: auto;
    display: block;
    transition: transform .3s;
  }
  #services-1628 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #000;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #services-1628 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #services-1628 .cs-button-solid:hover {
    color: #fff;
  }
  #services-1628 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-1628 .cs-container {
    max-width: 80rem;
  }
  #services-1628 .cs-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #services-1628 .cs-flex {
    text-align: left;
    width: 40vw;
    max-width: 40rem;
    flex: none;
  }
  #services-1628 .cs-title {
    margin: 0;
  }
  #services-1628 .cs-text {
    padding: 0.75rem 0 0.75rem 1.5rem;
  }
  #services-1628 .cs-text:after {
    width: 1px;
    height: 100%;
    margin: 0 1.5rem 0 0;
    order: -1;
    position: absolute;
    left: 0;
    top: 0;
  }
  #services-1628 .cs-item {
    grid-column: span 6;
  }
  #services-1628 .cs-picture {
    /* 240px - 420px */
    height: clamp(15rem, 33vw, 26.25rem);
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #services-1628 .cs-item {
    grid-column: span 3;
  }
}


/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    @keyframes floatAnimation {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-2rem);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3rem);
        }
        100% {
            transform: translateY(0);
        }
    }
    #cs-wrapper-1411 {
        display: flex;
        flex-direction: column;
        margin-top: var(--sectionPadding);
    }
    #reviews-1411 {
        /* centers the button */
        text-align: center;
        padding: var(--sectionPadding);
        background-color: #f7f7f7;
        /* clips the orbs from causing overflow issues */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #reviews-1411 .cs-container {
        width: 100%;
        /* changes to 1024px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 40px - 64px */
        gap: clamp(2.5rem, 5vw, 4rem);
    }
    #reviews-1411 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #reviews-1411 .cs-title {
        max-width: 20ch;
        margin: 0;
    }
    #reviews-1411 .cs-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 28px - 60px */
        gap: clamp(1.75rem, 5vw, 3.75rem);
    }
    #reviews-1411 .cs-item {
        list-style: none;
        text-align: center;
        padding: 0;
        display: flex;
        grid-column: span 12;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        z-index: 1;
    }
    #reviews-1411 .cs-quote {
        width: 5.6875rem;
        height: auto;
        opacity: 0.3;
        display: block;
        position: absolute;
        top: -1.25rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }
    #reviews-1411 .cs-item-text {
        /* 16px - 20px */
        font-size: clamp(1rem, 2.6vw, 1.25rem);
        line-height: 1.5em;
        margin: 0;
        margin-bottom: 1.5rem;
        color: var(--bodyTextColor);
    }
    #reviews-1411 .cs-flex-group {
        /* in case one card has more text than the other, this pushes up against the review text so the name and title are always at the bottom. Only works if parent is a flexbox */
        margin-top: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        /* 8px - 24px */
        gap: clamp(0.8rem, 1.5vw, 1rem);
    }
    #reviews-1411 .cs-picture {
        width: 7rem;
        height: 7rem;
        margin: 0;
        border-radius: 50%;
        box-sizing: border-box;
        border: 2px solid var(--primary);
        background-color: var(--primary);
        display: block;
        /* sends it to the bottom in the 2nd position */
        order: 2;
        /* clips image corners to make circle */
        overflow: hidden;
        position: relative;
    }
    #reviews-1411 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes the image behave like a background image */
        object-fit: cover;
    }
    #reviews-1411 .cs-name {
        font-size: 1.5625rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--headerColor);
        display: block;
    }
    #reviews-1411 .cs-job {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 400;
        margin: 0;
        color: var(--bodyTextColor);
        display: block;
    }
    #reviews-1411 .cs-bubbles {
        font-size: min(2.5vw, 0.7em);
        width: 35.125em;
        height: 35.125em;
        display: none;
        position: absolute;
        /* changes to 160px at larger desktop */
        left: -16.25em;
        /* changes to 30px at large desktop */
        bottom: -3.125em;
        z-index: -1;
    }
    #reviews-1411 .cs-bubbles:before {
        /* white border bubble */
        content: "";
        width: 26.25em;
        height: 26.25em;
        background: transparent;
        border: 1px solid #1a1a1a;
        border-radius: 50%;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: 0;
        left: 0;
        animation-name: floatAnimation;
        animation-duration: 5s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #reviews-1411 .cs-bubbles:after {
        /* orange bubble */
        content: "";
        width: 20.6875em;
        height: 20.6875em;
        background: var(--primary);
        opacity: 0.15;
        border-radius: 50%;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        animation-name: floatAnimation2;
        animation-duration: 14s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
}
/* Desktop - 1204px */
@media only screen and (min-width: 64rem) {
    #cs-wrapper-1411 {
        flex-direction: row;
        margin-top: var(--sectionPadding);
    }
    #reviews-1411 {
        width: 50%;
        /* 40px - 80px */
        padding-left: clamp(2.5rem, 5vw, 5rem);
        padding-right: clamp(2.5rem, 5vw, 5rem);
    }
    #reviews-1411 .cs-content {
        text-align: left;
        align-items: flex-start;
    }
    #reviews-1411 .cs-flex,
    #reviews-1411 .cs-item {
        text-align: left;
        align-items: flex-start;
    }
    #reviews-1411 .cs-quote {
        left: 0;
        transform: none;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #reviews-1411 .cs-container {
        margin-right: 0;
    }
    #reviews-1411 .cs-flex {
        flex-direction: row;
    }
    #reviews-1411 .cs-picture {
        /* sends it to the left in the 1st position */
        order: -1;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #reviews-1411 .cs-bubbles {
        display: block;
        margin-right: 15.625rem;
        left: auto;
        right: 50%;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #reviews-1411 {
        background-color: rgba(0, 0, 0, 0.2);
    }
    body.dark-mode #reviews-1411 .cs-title {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #reviews-1411 .cs-item-text,
    body.dark-mode #reviews-1411 .cs-name {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #reviews-1411 .cs-job {
        color: var(--bodyTextColorWhite);
        opacity: 0.7;
    }
    body.dark-mode #reviews-1411 .cs-bubbles:before {
        border-color: rgba(255, 255, 255, 0.2);
    }
}

/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #faq-1411 {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
    }
    #faq-1411 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 40px - 48px */
        gap: clamp(2.5rem, 5vw, 3rem);
    }
    #faq-1411 .cs-content {
        text-align: left;
    }
    #faq-1411 .cs-topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: inherit;
        letter-spacing: 0.1em;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.25rem;
        display: block;
    }
    #faq-1411 .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        max-width: 43.75rem;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #faq-1411 .cs-title {
        margin: 0 0 1.5rem 0;
        color: var(--bodyTextColorWhite);
    }
    #faq-1411 .cs-faq-group {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #faq-1411 .cs-faq-item {
        list-style: none;
        width: 100%;
        border-bottom: 1px solid #e8e8e8;
        transition: border-bottom 0.3s;
    }
    #faq-1411 .cs-faq-item.active {
        border-color: var(--primary);
    }
    #faq-1411 .cs-faq-item.active .cs-button {
        color: var(--primary);
    }
    #faq-1411 .cs-faq-item.active .cs-button:before {
        background-color: var(--primary);
        transform: rotate(315deg);
    }
    #faq-1411 .cs-faq-item.active .cs-button:after {
        background-color: var(--primary);
        transform: rotate(-315deg);
    }
    #faq-1411 .cs-faq-item.active .cs-item-p {
        height: auto;
        /* 20px - 24px bottom */
        /* 16px - 24px left & right */
        padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 1.3vw, 1.5rem);
        opacity: 1;
    }
    #faq-1411 .cs-button {
        font-size: 1.25rem;
        line-height: 1.2em;
        text-align: left;
        font-weight: bold;
        /* 16px - 20px */
        padding: clamp(1rem, 1.3vw, 1.25rem) 0;
        border: none;
        background: transparent;
        color: var(--bodyTextColorWhite);
        display: block;
        width: 100%;
        position: relative;
        transition:
            background-color 0.3s,
            color 0.3s;
    }
    #faq-1411 .cs-button:hover {
        cursor: pointer;
    }
    #faq-1411 .cs-button:before {
        /* left line */
        content: "";
        width: 0.5rem;
        height: 0.125rem;
        background-color: var(--bodyTextColorWhite);
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 45%;
        right: 1.5rem;
        transform: rotate(45deg);
        /* animate the transform from the left side of the x axis, and the center of the y */
        transform-origin: left center;
        transition: transform 0.5s;
    }
    #faq-1411 .cs-button:after {
        /* right line */
        content: "";
        width: 0.5rem;
        height: 0.125rem;
        background-color: var(--bodyTextColorWhite);
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 45%;
        right: 1.3125rem;
        transform: rotate(-45deg);
        /* animate the transform from the right side of the x axis, and the center of the y */
        transform-origin: right center;
        transition: transform 0.5s;
    }
    #faq-1411 .cs-button-text {
        width: 80%;
        display: block;
    }
    #faq-1411 .cs-item-p {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        width: 90%;
        height: 0;
        margin: 0;
        padding: 0;
        opacity: 0;
        color: var(--bodyTextColorWhite);
        /* clips the text so it doesn't show up */
        overflow: hidden;
        transition:
            opacity 0.3s,
            padding-bottom 0.3s;
    }
    #faq-1411 .cs-card-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 8px - 20px */
        gap: clamp(0.5rem, 2vw, 1.25rem);
    }
    #faq-1411 .cs-item {
        width: 100%;
        text-align: center;
        list-style: none;
        margin: 0;
        /* 24px - 32px */
        padding: 2rem clamp(1.5rem, 3vw, 2rem);
        background-color: #fff;
        border-radius: 1rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        grid-column: span 6;
        grid-row: span 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        transition:
            box-shadow 0.3s,
            border-color 0.3s;
    }
    #faq-1411 .cs-item:hover {
        box-shadow: 0px 4px 120px 0px rgba(0, 0, 0, 0.12);
        border-color: transparent;
    }
    #faq-1411 .cs-item:hover .cs-h3 {
        color: var(--primary);
    }
    #faq-1411 .cs-image-group {
        /* 80px - 100px */
        width: clamp(5rem, 6vw, 6.25rem);
        height: auto;
        /* 20px - 24px */
        margin: 0 0 clamp(1.25rem, 2.5vw, 1.5rem);
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        position: relative;
    }
    #faq-1411 .cs-icon {
        /* 38px - 48px */
        width: clamp(2.375rem, 3vw, 3rem);
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #faq-1411 .cs-graphic {
        width: 100%;
        height: auto;
    }
    #faq-1411 .cs-number {
        /* 25px - 49px */
        font-size: clamp(1.5625rem, 3.3vw, 3.0625rem);
        line-height: 1.2em;
        font-weight: bold;
        text-align: inherit;
        margin: 0;
        color: var(--headerColor);
        transition: color 0.3s;
    }
    #faq-1411 .cs-desc {
        font-size: 1rem;
        line-height: 1.5em;
        text-align: inherit;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #faq-1411 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #faq-1411 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes img tag act as a background image */
        object-fit: cover;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #faq-1411 {
        width: 50%;
        /* 40px - 80px */
        padding-left: clamp(2.5rem, 5vw, 5rem);
        padding-right: clamp(2.5rem, 5vw, 5rem);
    }
    #faq-1411 .cs-container {
        max-width: 80rem;
        margin-left: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 3.25rem;
    }
    #faq-1411 .cs-content {
        max-width: 35rem;
    }
    #faq-1411 .cs-card-group {
        max-width: 39.375rem;
        /* pushes up the same amount the cs-items are being translated up to maintain the proper spacing */
        margin-top: 3.75rem;
        align-items: stretch;
        /* sends it to the left in the 1st */
        order: -1;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #faq-1411 {
        background-color: var(--medium) rgba(0, 0, 0, 0.2);
    }
    body.dark-mode #faq-1411 .cs-title,
    body.dark-mode #faq-1411 .cs-item-p,
    body.dark-mode #faq-1411 .cs-number,
    body.dark-mode #faq-1411 .cs-desc {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #faq-1411 .cs-graphic {
        opacity: 0.2;
    }
    body.dark-mode #faq-1411 .cs-button {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #faq-1411 .cs-button:before,
    body.dark-mode #faq-1411 .cs-button:after {
        background-color: var(--bodyTextColorWhite);
    }
}


/*-- -------------------------- -->
<---    Blog Section   -->
<--- -------------------------- -*/

#blog-2351 {
    background-color: #f7f7f7;
}


/*-- -------------------------- -->
<---    Reviews Section   -->
<--- -------------------------- -*/
#reviews-2246 {
    background-color: #fff;
}

/*-- -------------------------- -->
<---    Vancouver Pest Challenges  -->
<--- -------------------------- -*/

/* Mobile - 360px
@media only screen and (min-width: 0rem) {
  #vancouver-pest-challenges {
    padding: var(--sectionPadding);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
  }
  
  #vancouver-pest-challenges::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="15" cy="15" r="2" fill="%23cbd5e1" opacity="0.3"/><circle cx="45" cy="25" r="1.5" fill="%23cbd5e1" opacity="0.3"/><circle cx="25" cy="45" r="1" fill="%23cbd5e1" opacity="0.3"/></svg>') repeat;
    z-index: 1;
  }
  
  #vancouver-pest-challenges .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
  }
  
  #vancouver-pest-challenges .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #vancouver-pest-challenges .cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }
  
  #vancouver-pest-challenges .cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  
  #vancouver-pest-challenges .cs-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }
  
  .pest-challenges-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .challenge-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  
  .challenge-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--primary) 0%, #3b82f6 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .challenge-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
  }
  
  .challenge-item:hover::before {
    transform: scaleX(1);
  }
  
  .challenge-item .cs-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
  }
  
  .challenge-item:hover .cs-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .challenge-item .cs-icon {
    width: 2rem;
    height: 2rem;
    filter: brightness(0) invert(1);
  }
  
  .challenge-item .cs-h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 1rem;
    color: var(--headerColor);
    transition: color 0.3s ease;
  }
  
  .challenge-item:hover .cs-h3 {
    color: var(--primary);
  }
  
  .challenge-item .cs-item-text {
    font-size: 1rem;
    line-height: 1.6em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  
  .challenge-item .cs-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
  }
  
  .challenge-item .cs-link:hover {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
  }
} */

/* Tablet - 768px */
/* @media only screen and (min-width: 48rem) {
  .pest-challenges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  } */
  
  /* .challenge-item {
    padding: 3rem 2.5rem;
  }
  
  .challenge-item .cs-h3 {
    font-size: 1.625rem;
  }
} */

/* Desktop - 1024px */
/* @media only screen and (min-width: 64rem) {
  .pest-challenges-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
} */

/*-- -------------------------- -->
<---   Common Vancouver Pests     -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #common-vancouver-pests {
    padding: var(--sectionPadding);
    background: white;
    position: relative;
  }
  
  #common-vancouver-pests .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  
  #common-vancouver-pests .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #common-vancouver-pests .cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }
  
  #common-vancouver-pests .cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  
  #common-vancouver-pests .cs-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }
  
  .pest-carousel-wrapper {
    width: 100%;
    position: relative;
    max-width: 100%;
    padding: 0 3.5rem;
    margin: 0 auto;
  }
  
  .carousel-instruction {
    text-align: center;
    font-size: 0.875rem;
    color: var(--bodyTextColor);
    margin: 0 0 2rem;
    opacity: 0.8;
  }
  
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.08);
    color: var(--bodyTextColor);
    backdrop-filter: blur(4px);
  }
  
  .carousel-arrow:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-50%) scale(1.05);
  }
  
  .carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .carousel-arrow:disabled:hover {
    background: white;
    color: var(--bodyTextColor);
    border-color: #e2e8f0;
    transform: translateY(-50%) scale(1);
  }
  
  .carousel-arrow-left {
    left: 1rem;
  }
  
  .carousel-arrow-right {
    right: 1rem;
  }
  
  .pest-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    touch-action: pan-x;
    z-index: 1;
    transition: transform 0.3s ease;
    width: 600%; /* 6 slides × 100% each */
  }
  
  .pest-slide {
    width: calc(100% / 6); /* Each slide takes 1/6 of track width */
    flex-shrink: 0;
    padding: 0 1rem;
    box-sizing: border-box;
    opacity: 1;
  }
  
  .pest-slide.active {
    opacity: 1;
  }
  
  .pest-content {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .pest-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.25rem;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }
  
  .pest-slide:hover .pest-content {
    background: white;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
  }
  
  .pest-slide:hover .pest-content::before {
    transform: scaleY(1);
  }
  
  .pest-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  
  .pest-slide .cs-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: #334756;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
  
  .pest-slide:hover .cs-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .pest-slide .cs-icon {
    width: 2.5rem;
    height: 2.5rem;
    filter: brightness(160%);
  }
  
  .pest-slide .cs-h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
    color: var(--headerColor);
    transition: color 0.3s ease;
  }
  
  .pest-slide:hover .cs-h3 {
    color: var(--primary);
  }
  
  .pest-slide .cs-item-text {
    font-size: 0.85rem;
    line-height: 1.4em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  
  .pest-slide .cs-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
  }
  
  .pest-slide .cs-link:hover {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
  }
  
  .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 3rem;
    padding-bottom: 1rem;
    position: relative;
    z-index: 10;
  }
  
  .indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .indicator:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
  }
  
  .indicator.active {
    background: var(--primary);
    transform: scale(1.2);
  }
  
  #common-vancouver-pests .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #000;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #common-vancouver-pests .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #common-vancouver-pests .cs-button-solid:hover {
    color: #fff;
  }
  #common-vancouver-pests .cs-button-solid:hover:before {
    width: 100%;
  }
}

/* Mobile Small - 480px */
@media only screen and (max-width: 30rem) {
  .pest-carousel-wrapper {
    padding: 0 3rem;
  }
  
  .carousel-arrow-left {
    left: 0.5rem;
  }
  
  .carousel-arrow-right {
    right: 0.5rem;
  }
  
  .carousel-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .pest-content {
    padding: 0.75rem;
  }
  
  .pest-slide .cs-h3 {
    font-size: 1rem;
  }
  
  .pest-slide .cs-item-text {
    font-size: 0.8rem;
    line-height: 1.3em;
  }
  
  .pest-slide .cs-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .pest-slide .cs-icon {
    width: 2rem;
    height: 2rem;
  }
  
  .pest-header {
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .pest-carousel-wrapper {
    padding: 0 5rem;
  }
  
  .carousel-arrow-left {
    left: 1.5rem;
  }
  
  .carousel-arrow-right {
    right: 1.5rem;
  }
  
  .pest-content {
    padding: 2.5rem;
  }
  
  .pest-slide .cs-h3 {
    font-size: 1.375rem;
  }
  
  .pest-slide .cs-item-text {
    font-size: 1rem;
  }
  
  .carousel-instruction {
    font-size: 1rem;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  .pest-carousel-wrapper {
    padding: 0 6rem;
  }
  
  .carousel-arrow-left {
    left: 2rem;
  }
  
  .carousel-arrow-right {
    right: 2rem;
  }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #vancouver-pest-challenges {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  }
  
  body.dark-mode #vancouver-pest-challenges .cs-title,
  body.dark-mode #vancouver-pest-challenges .cs-text {
    color: var(--bodyTextColorWhite);
  }
  
  body.dark-mode .challenge-item {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(71, 85, 105, 0.3);
  }
  
  body.dark-mode .challenge-item .cs-h3,
  body.dark-mode .challenge-item .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
  
  body.dark-mode #common-vancouver-pests {
    background: rgba(15, 23, 42, 0.95);
  }
  
  body.dark-mode #common-vancouver-pests .cs-title,
  body.dark-mode #common-vancouver-pests .cs-text {
    color: var(--bodyTextColorWhite);
  }
  
  body.dark-mode .pest-content {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(71, 85, 105, 0.3);
  }
  
  body.dark-mode .pest-slide:hover .pest-content {
    background: rgba(30, 41, 59, 0.95);
  }
  
  body.dark-mode .pest-slide .cs-h3,
  body.dark-mode .pest-slide .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
  
  body.dark-mode .carousel-instruction {
    color: var(--bodyTextColorWhite);
  }
  
  body.dark-mode .carousel-arrow {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(71, 85, 105, 0.3);
    color: var(--bodyTextColorWhite);
  }
  
  body.dark-mode .carousel-arrow:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
  }
  
  body.dark-mode .carousel-arrow:disabled:hover {
    background: rgba(30, 41, 59, 0.9);
    color: var(--bodyTextColorWhite);
    border-color: rgba(71, 85, 105, 0.3);
  }
  
  body.dark-mode .indicator {
    background: rgba(255, 255, 255, 0.3);
  }
  
  body.dark-mode .indicator:hover {
    background: rgba(255, 255, 255, 0.5);
  }
  
  body.dark-mode .indicator.active {
    background: var(--primary);
  }
}

                                