/* ============================================================
   BUNDLE.CSS — Combined stylesheet for index.html
   Generated from styles.css, nav.css, hero.css, services.css,
   sidebyside.css, servicescards.css, howitworks.css, ctabanner.css,
   faq.css, reviews.css, servicearea.css, footer.css, beforeafter.css
   to reduce render-blocking requests. Edit the source files above
   and ask Claude to regenerate this bundle, do not edit directly.
   ============================================================ */

/* ---- styles.css ---- */
:root {
    /* Electric green accent */
    --primary: #3B82F6;
    --primaryLight: #3B82F6;
    --primaryDark: #1e40af;
    --secondary: #3B82F6;
    --secondaryLight: #3B82F6;

    /* Dark base */
    --charcoal: #11150F;      /* primary/dark base */
    --offBlack: #1A1F17;      /* sections / cards */
    --lineColor: #2A3022;     /* borders / dividers */

    /* Text */
    --headerColor: #F4F6F2;       /* off-white headings on dark */
    --bodyTextColor: #C7CCC2;     /* readable light body text */
    --mutedText: #9CA39A;         /* secondary text */
    --bodyTextColorWhite: #F4F6F2;

    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi', sans-serif;
    background-color: var(--charcoal);
    color: var(--bodyTextColor);
}

/* Logo size override */

/* Barlow for nav and h1 */
#cs-navigation,
#cs-navigation .cs-logo,
#cs-navigation .cs-li-link,
#cs-navigation .cs-phone,
h1 {
    font-family: 'Barlow', sans-serif;
}

/* Capitalise nav and h1 */
#cs-navigation .cs-li-link,
#cs-navigation .cs-phone,
h1 {
    text-transform: uppercase;
}

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

.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cs-topper::before {
    content: '';
    display: block;
    width: 3px;
    height: 1em;
    background: #3B82F6;
    border-radius: 2px;
    flex-shrink: 0;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: #ffffff;
    position: relative;
}

.cs-title span {
    color: var(--primaryLight);
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: rgba(255,255,255,0.85);
}

/* ---- nav.css ---- */
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile scroll CTAs inside nav */
@media only screen and (max-width: 1023.5px) {
  .cs-mobile-scroll-ctas {
    display: none;
    flex: 1;
    gap: 0.5rem;
    align-items: center;
  }
  body.scroll .cs-mobile-scroll-ctas {
    display: flex;
  }
  body.scroll #cs-navigation .cs-logo {
    display: none;
  }
  .cs-mob-cta-quote,
  .cs-mob-cta-call {
    flex: 1;
    text-align: center;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.65rem 0.5rem;
    border-radius: 0.375rem;
    white-space: nowrap;
    transition: background-color 0.2s, color 0.2s;
  }
  .cs-mob-cta-quote {
    background: #3B82F6;
    color: #fff;
    border: 2px solid #3B82F6;
  }
  .cs-mob-cta-quote:hover { background: #1d4ed8; border-color: #1d4ed8; }
  .cs-mob-cta-call {
    background: transparent;
    color: #fff;
    border: 2px solid #3B82F6;
  }
  .cs-mob-cta-call:hover { background: #3B82F6; }
}
@media only screen and (min-width: 1024px) {
  .cs-mobile-scroll-ctas { display: none; }
}

/* Mobile - 1023px */
@media only screen and (max-width: 1023.5px) {
  body.cs-open {
    overflow: hidden;
  }
  body.scroll #cs-navigation {
    width: 100%;
    max-width: 100%;
    top: 0;
  }
  body.scroll #cs-navigation:before {
    border-radius: 0;
  }
  body.scroll #cs-navigation .cs-ul-wrapper {
    top: 100%;
  }
  #cs-navigation {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.625rem clamp(0.75rem, 2vw, 1.5rem);
    border-radius: 0;
    background: #1A1F17;
    box-shadow: rgba(149, 157, 165, 0.15) 0px 4px 16px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    transform: none;
    transition: none;
  }
  #cs-navigation:before {
    display: none;
  }
  #cs-navigation.cs-active:before {
    display: none;
  }
  #cs-navigation.cs-active .cs-toggle {
    transform: rotate(180deg);
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.15s;
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-logo {
    width: auto;
    max-width: 12.5rem;
    height: 2.75rem;
    margin: 0 auto 0 0;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
  }
  #cs-navigation .cs-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
  }
  #cs-navigation .cs-toggle {
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
    background-color: var(--primary);
    border: none;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    transition: transform 0.6s;
  }
  #cs-navigation .cs-nav {
    order: 3;
  }
  #cs-navigation .cs-contact-group {
    display: none;
    position: relative;
    z-index: 10;
  }
  #cs-navigation .cs-phone {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
  }
  #cs-navigation .cs-phone-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-social {
    display: none;
  }
  #cs-navigation .cs-quote-bar {
    display: none;
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }
  #cs-navigation .cs-active .cs-line3 {
    opacity: 0;
    bottom: 100%;
  }
  #cs-navigation .cs-box {
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: 1rem;
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #11150F;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 768px) {
  #cs-navigation .cs-contact-group {
    display: block;
  }
}

/*-- -------------------------- -->
<---   Mobile Navigation Menu   -->
<--- -------------------------- -*/
@media only screen and (max-width: 1023.5px) {
  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 2.4em;
    background-color: #1A1F17;
    border-radius: 0 0 1.5rem 1.5rem;
    position: absolute;
    top: 85%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.4s;
    transform-origin: top;
  }
  #cs-navigation .cs-ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 4rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    overflow: auto;
  }
  #cs-navigation .cs-li {
    text-align: center;
    list-style: none;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    transform: translateY(-4.375rem);
    transition: transform 0.6s, opacity 0.9s;
  }
  #cs-navigation .cs-li:nth-of-type(1) { transition-delay: 0.05s; }
  #cs-navigation .cs-li:nth-of-type(2) { transition-delay: 0.1s; }
  #cs-navigation .cs-li:nth-of-type(3) { transition-delay: 0.15s; }
  #cs-navigation .cs-li:nth-of-type(4) { transition-delay: 0.2s; }
  #cs-navigation .cs-li:nth-of-type(5) { transition-delay: 0.25s; }
  #cs-navigation .cs-li:nth-of-type(6) { transition-delay: 0.3s; }
  #cs-navigation .cs-li:nth-of-type(7) { transition-delay: 0.35s; }
  #cs-navigation .cs-li:nth-of-type(8) { transition-delay: 0.4s; }
  #cs-navigation .cs-li:nth-of-type(9) { transition-delay: 0.45s; }
  #cs-navigation .cs-li:nth-of-type(10) { transition-delay: 0.5s; }
  #cs-navigation .cs-li:nth-of-type(11) { transition-delay: 0.55s; }
  #cs-navigation .cs-li:nth-of-type(12) { transition-delay: 0.6s; }
  #cs-navigation .cs-li:nth-of-type(13) { transition-delay: 0.65s; }
  #cs-navigation .cs-li-link {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
    padding: 0.25rem;
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }
}

/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 1023.5px) {
  #cs-navigation .cs-li {
    text-align: center;
    width: 100%;
    display: block;
  }
  #cs-navigation .cs-dropdown {
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #cs-navigation .cs-dropdown .cs-dropdown-toggle {
    background: none;
    border: none;
    text-align: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    height: auto;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem 0;
    opacity: 1;
    visibility: visible;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }
  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
  }
  #cs-navigation .cs-drop-ul {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    background-color: #11150F;
    opacity: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
  }
  #cs-navigation .cs-drop-li {
    list-style: none;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #fff;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 1024px) {
  #cs-navigation .cs-dropdown {
    position: relative;
  }
  #cs-navigation .cs-dropdown .cs-dropdown-toggle {
    background: none;
    border: none;
    text-align: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  #cs-navigation .cs-dropdown:hover,
  #cs-navigation .cs-dropdown.cs-active {
    cursor: pointer;
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-ul,
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-li,
  #cs-navigation .cs-dropdown.cs-active .cs-drop-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    display: inline-block;
  }
  #cs-navigation .cs-drop-ul {
    min-width: 12.5rem;
    margin: 0;
    padding: 0;
    background-color: #1A1F17;
    box-shadow: inset rgba(149, 157, 165, 0.1) 0px 8px 10px;
    opacity: 0;
    border-bottom: 5px solid var(--primary);
    border-radius: 0 0 1.5rem 1.5rem;
    visibility: hidden;
    position: absolute;
    top: calc(100% - 2px);
    z-index: 100;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    transform-origin: top;
  }
  #cs-navigation .cs-drop-li {
    font-size: 1rem;
    text-decoration: none;
    list-style: none;
    width: 100%;
    height: auto;
    opacity: 0;
    display: block;
    transform: translateY(-0.625rem);
    transition: opacity 0.6s, transform 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(1) { transition-delay: 0.05s; }
  #cs-navigation .cs-drop-li:nth-of-type(2) { transition-delay: 0.1s; }
  #cs-navigation .cs-drop-li:nth-of-type(3) { transition-delay: 0.15s; }
  #cs-navigation .cs-drop-li:nth-of-type(4) { transition-delay: 0.2s; }
  #cs-navigation .cs-drop-li:nth-of-type(5) { transition-delay: 0.25s; }
  #cs-navigation .cs-drop-li:nth-of-type(6) { transition-delay: 0.3s; }
  #cs-navigation .cs-drop-li:nth-of-type(7) { transition-delay: 0.35s; }
  #cs-navigation .cs-drop-li:nth-of-type(8) { transition-delay: 0.4s; }
  #cs-navigation .cs-drop-li:nth-of-type(9) { transition-delay: 0.45s; }
  #cs-navigation .cs-li-link.cs-drop-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-transform: capitalize;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem;
    color: var(--headerColor);
    display: block;
    transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
    color: var(--bodyTextColorWhite);
    background-color: #11150F;
  }
  #cs-navigation .cs-li-link.cs-drop-link:before {
    display: none;
  }
  #cs-navigation .cs-li-link.cs-drop-link:focus-visible {
    outline-offset: -2px;
  }
}
/* Dark Mode - Desktop */
@media only screen and (min-width: 1024px) {
  body.dark-mode #cs-navigation .cs-drop-ul {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-drop-link:hover {
    color: var(--bodyTextColorWhite);
  }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
@media only screen and (min-width: 1024px) {
  body.scroll #cs-navigation {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    top: 0;
    background-color: #1A1F17;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  /* Show quote bar + toggle on scroll, hide regular nav content */
  body.scroll #cs-navigation .cs-quote-bar {
    display: flex;
    order: 1;
    flex: 1;
  }
  body.scroll #cs-navigation .cs-ul-wrapper,
  body.scroll #cs-navigation .cs-contact-group,
  body.scroll #cs-navigation .cs-logo {
    display: none;
  }
  body.scroll #cs-navigation .cs-toggle {
    display: flex;
    order: 2;
    flex-shrink: 0;
    margin-left: 0.75rem;
    background-color: transparent;
    border: 2px solid #2A3022;
    border-radius: 0.375rem;
  }
  body.scroll #cs-navigation .cs-toggle .cs-line {
    background-color: #fff;
  }
  body.scroll #cs-navigation .cs-nav {
    order: 2;
  }
  #cs-navigation {
    width: 100%;
    max-width: 100%;
    height: 7rem;
    box-sizing: border-box;
    padding: 0.5rem 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%);
    transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s, background-color 0.3s, box-shadow 0.3s;
  }

  /* Quote bar - hidden by default, shown on scroll */
  #cs-navigation .cs-quote-bar {
    display: none;
    position: relative;
    width: auto;
    align-items: center;
    gap: 1.5rem;
    min-width: 0;
  }
  #cs-navigation .cs-qb-label {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex-shrink: 0;
    padding-right: 1.5rem;
    border-right: 1px solid #2A3022;
  }
  #cs-navigation .cs-qb-title {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #fff;
    white-space: nowrap;
    line-height: 1.2;
  }
  #cs-navigation .cs-qb-sub {
    font-size: 0.8125rem;
    color: var(--mutedText);
    white-space: nowrap;
  }
  #cs-navigation .cs-qb-form {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    min-width: 0;
  }
  #cs-navigation .cs-qb-input {
    flex: 1;
    min-width: 0;
    height: 2.625rem;
    padding: 0 0.875rem;
    background: #11150F;
    border: 1.5px solid #2A3022;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    color: var(--headerColor);
    outline: none;
    appearance: none;
    transition: border-color 0.2s;
  }
  #cs-navigation .cs-qb-input:focus {
    border-color: var(--primary);
  }
  #cs-navigation .cs-qb-input::placeholder,
  #cs-navigation select.cs-qb-input {
    color: var(--mutedText);
  }
  #cs-navigation .cs-qb-btn {
    flex-shrink: 0;
    height: 2.625rem;
    padding: 0 1.25rem;
    background-color: var(--primary);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s;
  }
  #cs-navigation .cs-qb-btn:hover {
    background-color: var(--primaryDark);
  }
  #cs-navigation .cs-qb-btn:disabled {
    cursor: not-allowed;
    opacity: 0.75;
  }
  #cs-navigation .cs-qb-message {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    background: #11150F;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
  }
  #cs-navigation .cs-qb-message.is-success {
    color: #22c55e;
  }
  #cs-navigation .cs-qb-message.is-error {
    color: #f87171;
  }
  #cs-navigation .cs-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    box-sizing: border-box;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    width: auto;
    max-width: 21.875rem;
    height: 6rem;
    margin: 0 auto 0 0;
    padding: 0.5rem 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
  }
  #cs-navigation .cs-logo img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }
  #cs-navigation .cs-contact-group {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-phone {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem;
    transition: opacity 0.3s, color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-phone:hover {
    background-color: transparent;
    color: var(--primary);
  }
  #cs-navigation .cs-phone-icon {
    width: 1.5rem;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
  }
  #cs-navigation .cs-phone:hover .cs-phone-icon {
    filter: none;
  }
  #cs-navigation .cs-social {
    height: 2rem;
    opacity: 1;
    display: none;
    visibility: visible;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
  }
  #cs-navigation .cs-social-link {
    text-decoration: none;
    width: 2rem;
    height: 2rem;
    background-color: #f7f7f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
  }
  #cs-navigation .cs-social-link:hover {
    background-color: #11150F;
  }
  #cs-navigation .cs-social-link:hover .cs-social-icon {
    filter: grayscale(1) brightness(10000%);
    opacity: 1;
  }
  #cs-navigation .cs-social-icon {
    width: 0.75rem;
    height: auto;
    opacity: 0.6;
    display: block;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #cs-navigation .cs-ul {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }
  #cs-navigation .cs-li {
    list-style: none;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    flex: none;
  }
  #cs-navigation .cs-li-link {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
    transition: color 0.3s;
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }
  #cs-navigation .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0 2rem;
    background-color: #11150F;
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #cs-navigation .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #1A1F17;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #cs-navigation .cs-button-solid:hover {
    color: #1a1a1a;
  }
  #cs-navigation .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 1300px) {
  #cs-navigation .cs-social {
    display: flex;
  }
}

/* ---- hero.css ---- */
/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-wc {
        /* push down past the fixed nav */
        padding: clamp(8rem, 18vw, 12rem) 1rem clamp(16rem, 26vw, 22rem);
        position: relative;
        z-index: 1;
        overflow: hidden;
        min-height: 100vh;
        display: flex;
        align-items: center;
        border-bottom: 3px solid #3B82F6;
    }

    /* Dark overlay over background image */
    #hero-wc:before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to right,
            rgba(23, 30, 38, 0.95) 0%,
            rgba(23, 30, 38, 0.75) 50%,
            rgba(23, 30, 38, 0.2) 100%
        );
        z-index: 1;
    }

    /* Background image */
    #hero-wc .cs-background {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    #hero-wc .cs-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    #hero-wc .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        align-items: flex-start;
    }

    /* Left: Content */
    #hero-wc .cs-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    #hero-wc .cs-hero-actions {
        display: flex;
        align-items: stretch;
        gap: 0.75rem;
        flex-wrap: nowrap;
        width: 100%;
    }
    #hero-wc .cs-hero-actions .cs-hero-button,
    #hero-wc .cs-hero-actions .cs-hero-phone {
        flex: 1;
        font-size: 0.8125rem;
        padding: 0.875rem 0.75rem;
        margin: 0;
        text-align: center;
        justify-content: center;
    }
    #hero-wc .cs-desktop-text { display: none !important; }
    #hero-wc .cs-mobile-text { display: inline !important; }
    #hero-wc .cs-hero-phone {
        font-family: 'Barlow', sans-serif;
        font-size: 1.1875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        line-height: 1.2em;
        text-decoration: none;
        text-align: center;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background-color: transparent;
        border: 2px solid #fff;
        border-radius: 0.5rem;
        padding: 0.875rem 1.5rem;
        margin: 0.5rem 0 0;
        transition: background-color 0.3s, color 0.3s;
    }
    #hero-wc .cs-hero-phone:hover {
        background-color: #1A1F17;
        color: var(--primary);
    }
    #hero-wc .cs-hero-phone .cs-phone-icon {
        filter: brightness(0) invert(1);
        width: 1.25rem;
        height: 1.25rem;
        transition: filter 0.3s;
    }
    #hero-wc .cs-hero-phone:hover .cs-phone-icon {
        filter: none;
    }

    #hero-wc .cs-hero-stars {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    #hero-wc .cs-stars-icons {
        color: #f5a623;
        font-size: 1.25rem;
        letter-spacing: 0.05em;
        line-height: 1;
    }
    #hero-wc .cs-stars-text {
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
    }

    #hero-wc .cs-title {
        font-size: clamp(2rem, 5.5vw, 5rem);
        font-weight: 700;
        line-height: 1.1em;
        color: #ffffff;
        margin: 0;
        max-width: 22ch;
        text-shadow:
            1px 1px 0 #333,
            2px 2px 0 #222,
            3px 3px 0 #111,
            4px 4px 8px rgba(0,0,0,0.5);
    }

    #hero-wc .cs-title span {
        color: #ffffff;
    }

    #hero-wc .cs-title .cs-highlight {
        color: #93c5fd;
        text-shadow:
            1px 1px 0 #1e40af,
            2px 2px 0 #1d3a9e,
            3px 3px 0 #1a3490,
            4px 4px 8px rgba(0,0,0,0.5);
    }

    #hero-wc .cs-text {
        font-size: clamp(1rem, 1.8vw, 1.25rem);
        color: rgba(255,255,255,0.85);
        max-width: 34rem;
        line-height: 1.7em;
        margin: 0;
    }

    /* Hero bullet points */
    #hero-wc .cs-hero-bullets {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.625rem 1.5rem;
    }
    #hero-wc .cs-hero-bullets li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'Satoshi', sans-serif;
        font-size: clamp(0.9rem, 1.5vw, 1.0625rem);
        font-weight: 600;
        color: #fff;
    }
    #hero-wc .cs-hero-bullets i,
    #hero-wc .cs-hero-bullets svg {
        color: #3B82F6;
        stroke: #3B82F6;
        flex-shrink: 0;
        width: 1.125rem;
        height: 1.125rem;
    }

    /* Hero CTA button */
    #hero-wc .cs-hero-button {
        margin: 0.5rem 0 0;
        font-family: 'Barlow', sans-serif;
        font-size: clamp(0.875rem, 2vw, 1.1875rem);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        line-height: 1.2em;
        text-decoration: none;
        text-align: center;
        padding: 0.875rem 1.5rem;
        background-color: #3B82F6;
        color: #fff;
        border-radius: 0.5rem;
        display: inline-block;
        transition: background-color 0.3s, transform 0.3s;
    }

    #hero-wc .cs-hero-button:hover {
        background-color: #1e40af;
        transform: translateY(-2px);
    }

    /* Right: Van Image */
    #hero-wc .cs-van-wrap {
        display: none;
    }

    /* Right: Quote Form Card */
    #hero-wc .cs-form-card {
        width: 100%;
        background: #1A1F17;
        border-radius: 0.75rem;
        padding: 1.25rem;
        box-shadow: 0 24px 64px rgba(0,0,0,0.3);
        border: 2px solid rgba(255,255,255,0.85);
    }

    #hero-wc .cs-form-title {
        font-family: 'Barlow', sans-serif;
        font-size: clamp(1.25rem, 2vw, 1.5rem);
        font-weight: 700;
        color: var(--headerColor);
        text-align: center;
        margin: 0 0 1rem;
    }

    #hero-wc .cs-form-subtitle {
        font-size: 0.9375rem;
        color: var(--bodyTextColor);
        margin: 0 0 1.5rem;
    }

    #hero-wc .cs-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    #hero-wc .cs-label {
        font-size: 0.875rem;
        font-weight: 700;
        color: var(--headerColor);
        display: flex;
        flex-direction: column;
        gap: 0.375rem;
    }

    #hero-wc .cs-input,
    #hero-wc .cs-select {
        width: 100%;
        height: 3rem;
        padding: 0 1rem;
        border: 1.5px solid #d1d5db;
        border-radius: 0.5rem;
        font-size: 1rem;
        font-family: inherit;
        color: #1a1a1a;
        background: #ffffff;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
        appearance: none;
    }

    #hero-wc .cs-input:focus,
    #hero-wc .cs-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(255, 106, 62, 0.12);
        background: #1A1F17;
    }

    #hero-wc .cs-input::placeholder {
        color: #9ca3af;
    }
    #hero-wc .cs-select {
        color: #9ca3af;
    }
    #hero-wc .cs-select:valid,
    #hero-wc .cs-select option:not([disabled]) {
        color: #1a1a1a;
    }

    #hero-wc .cs-consent {
        display: flex;
        align-items: flex-start;
        gap: 0.625rem;
        cursor: pointer;
    }
    #hero-wc .cs-consent-check {
        width: 1.125rem;
        height: 1.125rem;
        flex-shrink: 0;
        margin-top: 0.125rem;
        accent-color: var(--primary);
        cursor: pointer;
    }
    #hero-wc .cs-consent span {
        font-size: 0.8125rem;
        color: var(--bodyTextColor);
        line-height: 1.5;
    }

    #hero-wc .cs-button-solid {
        width: 100%;
        padding: 1rem 1.5rem;
        background-color: var(--primary);
        color: #fff;
        font-family: 'Barlow', sans-serif;
        font-size: 1.125rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        border: none;
        border-radius: 0.5rem;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: color 0.3s;
        margin-top: 0.25rem;
    }

    #hero-wc .cs-button-solid:before {
        content: '';
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }

    #hero-wc .cs-button-solid:hover:before {
        width: 100%;
    }

    #hero-wc .cs-button-solid:disabled {
        cursor: not-allowed;
        opacity: 0.75;
    }

    #hero-wc .cs-form-message {
        margin: 0.625rem 0 0;
        font-size: 0.8125rem;
        font-weight: 600;
        text-align: center;
    }

    #hero-wc .cs-form-message.is-success {
        color: #22c55e;
    }

    #hero-wc .cs-form-message.is-error {
        color: #f87171;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #hero-wc .cs-trust-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #hero-wc {
        min-height: 100vh;
        align-items: center;
    }

    #hero-wc .cs-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
    }

    #hero-wc .cs-content {
        flex: 1;
    }

    #hero-wc .cs-form-card {
        width: 28%;
        flex-shrink: 0;
    }

    #hero-wc .cs-van-wrap {
        display: flex;
        width: 44%;
        flex-shrink: 0;
        align-self: flex-end;
    }

    #hero-wc .cs-van-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: bottom right;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    }

    #hero-wc .cs-hero-actions {
        width: auto;
        gap: 1rem;
    }

    #hero-wc .cs-hero-actions .cs-hero-button,
    #hero-wc .cs-hero-actions .cs-hero-phone {
        font-size: 1.1875rem !important;
        padding: 1.25rem 2.5rem !important;
        flex: unset !important;
        width: auto !important;
    }
    #hero-wc .cs-desktop-text { display: inline !important; }
    #hero-wc .cs-mobile-text { display: none !important; }
}

/* ---- services.css ---- */
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-468 {
        padding: 0 1rem clamp(3.75rem, 7.82vw, 6.25rem);
        position: relative;
        z-index: 2;
        /* Negative margin pulls section up into hero; gradient keeps top transparent so hero photo shows through */
        margin-top: -9rem;
        background: linear-gradient(to bottom, transparent 9rem, #11150F 9rem);
    }
    #services-468 .cs-container {
        width: 100%;
        /* narrower box = more left/right white space */
        max-width: 75rem;
        margin: auto;
    }
    /* White panel holding the cards */
    #services-468 .cs-panel {
        background-color: #1A1F17;
        border-radius: 0.75rem;
        padding: clamp(0.5rem, 1vw, 0.75rem);
        box-shadow: 0px 24px 54px rgba(0, 0, 0, 0.18);
        position: relative;
        z-index: 3;
        border: 3px solid #3B82F6;
    }
    #services-468 .cs-plug-wrap {
        display: none;
        position: absolute;
        top: calc(100% + 3px);
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        align-items: center;
        pointer-events: none;
        z-index: 4;
    }
    #services-468 .cs-plug-wire {
        display: block;
        width: 3px;
        height: 2.5rem;
        background: #3B82F6;
        border-radius: 0 0 2px 2px;
        margin-top: 0;
    }
    #services-468 .cs-plug-icon {
        width: 2rem;
        height: 2.25rem;
        flex-shrink: 0;
    }
    #services-468 .cs-card-group {
        margin: 0;
        padding: 0 0.25rem;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        gap: 0.75rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    #services-468 .cs-card-group::-webkit-scrollbar {
        display: none;
    }
    #services-468 .cs-item {
        min-width: calc(50% - 0.375rem);
        flex-shrink: 0;
        scroll-snap-align: start;
        list-style: none;
        padding: clamp(0.625rem, 1.5vw, 1rem) 0.75rem;
        box-sizing: border-box;
        border-radius: 0.625rem;
        background-color: #1A1F17;
        border: 3px solid transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(0.5rem, 1vw, 0.75rem);
        position: relative;
        transition: border-color 0.3s, box-shadow 0.3s;
    }
    /* Highlighted / hovered card gets the blue outline */
    #services-468 .cs-item:hover,
    #services-468 .cs-item.cs-active {
        border-color: #3B82F6;
    }
    #services-468 .cs-item:nth-of-type(5) {
        width: auto;
    }
    #services-468 .cs-icon {
        /* 40px - 56px */
        width: clamp(2.5rem, 4.5vw, 3.5rem);
        height: auto;
    }
    #services-468 .cs-h3 {
        /* 14px - 17px */
        font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        line-height: 1.3em;
        text-align: center;
        margin: 0;
        color: var(--headerColor);
    }

    /* Scroll dots — mobile only */
    #services-468 .cs-scroll-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 0 0.25rem;
    }
    #services-468 .cs-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #2A3022;
        transition: background-color 0.3s, transform 0.3s;
        display: block;
    }
    #services-468 .cs-dot.cs-dot-active {
        background-color: var(--primary);
        transform: scale(1.3);
    }

    /* Blue banner bar with arrow + downward pointer */
    #services-468 .cs-banner {
        width: 100%;
        margin: clamp(1.25rem, 2.5vw, 2rem) 0 0;
        box-sizing: border-box;
        padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 3vw, 2.5rem);
        background-color: #1e40af;
        border-radius: 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        position: relative;
        transition: background-color 0.3s;
    }
    #services-468 .cs-banner:hover {
        background-color: #1d4ed8;
    }
    #services-468 .cs-banner-text {
        font-size: clamp(1rem, 2.2vw, 1.75rem);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        line-height: 1.2em;
        color: #fff;
        margin: 0;
    }
    #services-468 .cs-banner-arrow {
        flex-shrink: 0;
        font-size: clamp(1.375rem, 2.5vw, 2rem);
        line-height: 1;
        color: #fff;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-468 .cs-card-group {
        flex-wrap: nowrap;
        flex-direction: row;
        overflow: visible;
        scroll-snap-type: none;
        gap: clamp(0.5rem, 1.5vw, 1.25rem);
        padding: 0;
        justify-content: space-between;
    }
    #services-468 .cs-item {
        flex: 1;
        min-width: 0;
        width: auto;
        scroll-snap-align: none;
    }
    #services-468 .cs-scroll-dots {
        display: none;
    }
    #services-468 .cs-plug-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ---- sidebyside.css ---- */
/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #about {
        padding: var(--sectionPadding);
        overflow: visible;
        background-color: #11150F;
        position: relative;
        scroll-margin-top: 80px;
    }

#about .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
    }

    /* Image */
    #about .cs-image-group {
        width: 100%;
        max-width: 36rem;
        flex-shrink: 0;
        position: relative;
        height: 22rem;
    }
    #about .cs-picture {
        position: absolute;
        width: 80%;
        height: 80%;
        display: block;
        border-radius: 1rem;
        border: 3px solid #fff;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.65);
        overflow: hidden;
    }
    #about .cs-picture-back {
        bottom: 0;
        right: 0;
    }
    #about .cs-picture-front {
        top: 0;
        left: 0;
    }
    #about .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    #about .cs-video-wrap {
        position: absolute;
        overflow: hidden;
    }

    #about .cs-play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 4rem;
        height: 4rem;
        background: #ffffff;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.2s, box-shadow 0.2s;
        z-index: 2;
        padding-left: 4px;
    }

    #about .cs-play-btn:hover {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
    }

    #about .cs-play-btn.hidden {
        display: none;
    }

    /* Content */
    #about .cs-content {
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    #about .cs-topper {
        font-size: clamp(0.75rem, 1.4vw, 0.9375rem);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--headerColor);
        margin-bottom: 0.5rem;
        display: inline-flex;
    }
    #about .cs-title {
        font-size: clamp(1.75rem, 3.5vw, 2.75rem);
        font-weight: 700;
        text-transform: uppercase;
        line-height: 1.15em;
        color: var(--headerColor);
        margin: 0 0 1.25rem;
    }
    #about .cs-text {
        font-size: 1rem;
        line-height: 1.7em;
        color: var(--bodyTextColor);
        margin: 0 0 1.75rem;
    }

    /* Feature list */
    #about .cs-ul {
        margin: 0 0 2rem;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.875rem;
    }
    #about .cs-li {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1rem;
        font-weight: 700;
        color: var(--headerColor);
        line-height: 1.4em;
    }
    #about .cs-li-icon {
        width: 1.375rem;
        height: 1.375rem;
        flex-shrink: 0;
        stroke: #3B82F6;
        stroke-width: 2.25;
    }

    /* CTA row: button + badge */
    #about .cs-cta-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.25rem;
    }

    #about a.cs-fb-badge {
        text-decoration: none;
    }

    #about .cs-fb-badge {
        display: flex;
        align-items: center;
        gap: 0.625rem;
        background: #ffffff;
        border-radius: 0.5rem;
        padding: 0.5rem 0.875rem;
    }

    #about .cs-fb-info {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
    }

    #about .cs-fb-stars {
        display: flex;
        gap: 0.1rem;
    }

    #about .cs-fb-text {
        margin: 0;
        font-family: 'Barlow', sans-serif;
        font-size: 0.8rem;
        color: #11150F;
        white-space: nowrap;
    }

    #about .cs-fb-score {
        font-weight: 700;
    }

    /* CTA Button */
    #about .cs-button-solid {
        font-family: 'Barlow', sans-serif;
        font-size: 1.0625rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        text-decoration: none;
        text-align: center;
        padding: 1rem 2.75rem;
        background-color: #3B82F6;
        color: #fff;
        border-radius: 0.375rem;
        display: inline-block;
        transition: background-color 0.3s;
    }
    #about .cs-button-solid:hover {
        background-color: #1e40af;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #about .cs-container {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
    }
    #about .cs-image-group {
        width: 45%;
        max-width: 100%;
        height: 30rem;
    }
    #about .cs-content {
        width: 55%;
    }

}

/* ---- servicescards.css ---- */
/*-- -------------------------- -->
<---        Services Cards       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-cards {
        padding: var(--sectionPadding);
        background-color: #11150F;
        scroll-margin-top: 80px;
    }
    #services-cards .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(2.5rem, 5vw, 4rem);
    }
    #services-cards .cs-header-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }

    #services-cards .cs-title {
        font-family: 'Barlow', sans-serif;
        font-size: clamp(1.875rem, 4vw, 3rem);
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        line-height: 1.15em;
        color: #fff;
        margin: 0;
        max-width: 20ch;
    }
    #services-cards .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    #services-cards .cs-item {
        list-style: none;
        background-color: #1A1F17;
        border-radius: 0 0 0.75rem 0.75rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border-top: 6px solid var(--primary);
        transition: transform 0.3s;
    }
    #services-cards .cs-item:hover {
        transform: translateY(-4px);
    }
    #services-cards .cs-image-wrap {
        width: 100%;
        height: 14rem;
        overflow: hidden;
        flex-shrink: 0;
    }
    #services-cards .cs-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s;
    }
    #services-cards .cs-item:hover .cs-img {
        transform: scale(1.04);
    }
    #services-cards .cs-content {
        padding: clamp(1.25rem, 3vw, 1.75rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        gap: 0.75rem;
    }
    #services-cards .cs-h3 {
        font-family: 'Barlow', sans-serif;
        font-size: clamp(1rem, 2vw, 1.25rem);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        line-height: 1.2em;
        color: #3B82F6;
        margin: 0;
    }
    #services-cards .cs-text {
        font-size: 0.9375rem;
        line-height: 1.7em;
        color: var(--bodyTextColor);
        margin: 0;
        flex: 1;
    }
    #services-cards .cs-button {
        font-family: 'Barlow', sans-serif;
        font-size: 0.8125rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-decoration: none;
        padding: 0.625rem 1.5rem;
        color: #3B82F6;
        border: 2px solid #3B82F6;
        border-radius: 0.375rem;
        display: inline-block;
        margin-top: auto;
        transition: background-color 0.3s, color 0.3s;
    }
    #services-cards .cs-button:hover {
        background-color: #3B82F6;
        color: #fff;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-cards .cs-card-group {
        flex-direction: row;
        flex-wrap: wrap;
    }
    #services-cards .cs-item {
        width: calc(50% - 0.75rem);
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #services-cards .cs-item {
        width: calc(25% - 1.125rem);
    }
}

/* ---- howitworks.css ---- */
/*-- -------------------------- -->
<---        How It Works         -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    #how-it-works {
        background-color: #ffffff;
        padding: clamp(1.5rem, 3vw, 2.5rem) 1rem clamp(3.75rem, 7.82vw, 6.25rem);
    }

    .hw-container {
        max-width: 75rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hw-eyebrow {
        font-size: 0.8125rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #3B82F6;
        margin: 0 0 0.6rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .hw-eyebrow::before {
        content: '';
        display: block;
        width: 3px;
        height: 1em;
        background: #3B82F6;
        border-radius: 2px;
        flex-shrink: 0;
    }

    .hw-heading {
        font-family: 'Barlow', sans-serif;
        font-size: clamp(1.75rem, 4vw, 2.75rem);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        line-height: 1.15;
        color: #11150F;
        margin: 0 0 clamp(2.5rem, 5vw, 4rem);
        max-width: 36rem;
    }

    .hw-steps {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
    }

    .hw-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 22rem;
    }

    .hw-icon-wrap {
        position: relative;
        width: 5rem;
        height: 5rem;
        background-color: #EFF4FB;
        border: 2px solid #3B82F6;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
        flex-shrink: 0;
    }

    .hw-icon {
        width: 2rem;
        height: 2rem;
        color: #3B82F6;
        stroke-width: 1.75;
    }

    .hw-num {
        position: absolute;
        bottom: -0.6rem;
        right: -0.6rem;
        width: 1.4rem;
        height: 1.4rem;
        background-color: #3B82F6;
        color: #11150F;
        font-size: 0.8rem;
        font-weight: 800;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .hw-step-title {
        font-size: clamp(1.0625rem, 2vw, 1.25rem);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        color: #11150F;
        margin: 0 0 0.6rem;
    }

    .hw-step-text {
        font-size: 0.9375rem;
        line-height: 1.65;
        color: #4b5563;
        font-weight: 700;
        margin: 0;
    }

    /* Arrow — rotated 90deg on mobile to point down */
    .hw-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.25rem 0;
        transform: rotate(90deg);
    }

    .hw-arrow svg {
        width: 3rem;
        height: 1.25rem;
    }

    .hw-cta {
        display: inline-block;
        margin-top: clamp(2.5rem, 5vw, 3.5rem);
        padding: 1rem 2.5rem;
        background-color: #3B82F6;
        color: #11150F;
        font-family: 'Barlow', sans-serif;
        font-size: 0.9375rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 0.375rem;
        transition: background-color 0.25s;
    }

    .hw-cta:hover {
        background-color: #1d4ed8;
    }
}

@media only screen and (min-width: 48rem) {
    .hw-steps {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
    }

    .hw-step {
        flex: 1;
        max-width: none;
    }

    .hw-arrow {
        transform: none;
        padding: 0;
        margin-top: 2.5rem; /* align with centre of icon */
        flex-shrink: 0;
        width: 4rem;
    }

    .hw-arrow svg {
        width: 100%;
        height: auto;
    }
}

@media only screen and (min-width: 64rem) {
    .hw-arrow {
        width: 5rem;
    }
}

/* ---- ctabanner.css ---- */
/*-- -------------------------- -->
<---         CTA Banner          -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    #cta-banner {
        position: relative;
        padding: clamp(4rem, 10vw, 7rem) 1rem clamp(6rem, 12vw, 9rem);
        overflow: hidden;
        text-align: center;
        border-top: 3px solid #3B82F6;
    }

    /* Background image — swap src to images/cta-banner.webp once image is added */
    #cta-banner::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: -5%;
        width: 110%;
        height: 4rem;
        background: #ffffff;
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        z-index: 3;
    }

    #cta-banner .cta-bg {
        position: absolute;
        inset: 0;
        background-image: url('../images/macrodroneshot.webp');
        background-size: cover;
        background-position: center;
        background-color: #1A1F17;
        z-index: 0;
    }

    /* Dark overlay */
    #cta-banner .cta-overlay {
        position: absolute;
        inset: 0;
        background: rgba(10, 28, 28, 0.75);
        z-index: 1;
    }

    #cta-banner .cta-container {
        position: relative;
        z-index: 2;
        max-width: 52rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }

    #cta-banner .cta-eyebrow {
        font-size: 0.875rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.75);
        margin: 0;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    #cta-banner .cta-eyebrow::before {
        content: '';
        display: block;
        width: 3px;
        height: 1em;
        background: #3B82F6;
        border-radius: 2px;
        flex-shrink: 0;
    }

    #cta-banner .cta-heading {
        font-family: 'Barlow', sans-serif;
        font-size: clamp(1.75rem, 4.5vw, 3rem);
        font-weight: 800;
        line-height: 1.15;
        color: #ffffff;
        margin: 0;
    }

    #cta-banner .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        margin-top: 0.5rem;
        padding: 1rem 1.25rem 1rem 2.25rem;
        background-color: #3B82F6;
        color: #11150F;
        font-family: 'Barlow', sans-serif;
        font-size: 0.9375rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 2rem;
        transition: background-color 0.25s;
    }

    #cta-banner .cta-btn:hover {
        background-color: #1d4ed8;
    }

    #cta-banner .cta-btn-icon {
        width: 2rem;
        height: 2rem;
        flex-shrink: 0;
        background: #11150F;
        border-radius: 50%;
        padding: 0.3rem;
        box-sizing: border-box;
        color: #3B82F6;
        stroke: #3B82F6;
    }
}

/* ---- faq.css ---- */
/*-- -------------------------- -->
<---             FAQ            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #faq-section {
        padding: var(--sectionPadding);
        background-color: var(--charcoal);
        /* Faint diamond pattern */
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Crect x='20' y='2' width='11' height='11' rx='0' transform='rotate(45 20 7.5)' fill='none' stroke='%233B82F6' stroke-width='0.6' opacity='0.12'/%3E%3C/svg%3E");
        background-repeat: repeat;
        background-size: 40px 40px;
    }
    #faq-section .cs-container {
        width: 100%;
        max-width: 50rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    #faq-section .cs-header-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }

    #faq-section .cs-title {
        font-family: 'Barlow', sans-serif;
        font-size: clamp(1.875rem, 4vw, 3rem);
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        line-height: 1.15em;
        color: var(--headerColor);
        margin: 0;
    }
    #faq-section .cs-faq-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #faq-section .cs-faq-item {
        list-style: none;
        width: 100%;
    }
    #faq-section .cs-faq-button {
        width: 100%;
        background: #1A1F17;
        border: 2px solid #2A3022;
        border-radius: 0.5rem;
        padding: 1.125rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        cursor: pointer;
        text-align: left;
        transition: border-color 0.3s, background-color 0.3s;
    }
    #faq-section .cs-faq-button:hover {
        border-color: #3B82F6;
    }
    #faq-section .cs-faq-button.cs-open {
        border-color: #3B82F6;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: none;
    }
    #faq-section .cs-faq-icon {
        width: 1.25rem;
        height: 1.25rem;
        flex-shrink: 0;
        stroke: var(--bodyTextColor);
        stroke-width: 2.5;
        transition: transform 0.3s;
    }
    #faq-section .cs-faq-button.cs-open .cs-faq-icon {
        transform: rotate(180deg);
        stroke: #3B82F6;
    }
    #faq-section .cs-faq-question {
        font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
        font-weight: 700;
        color: var(--headerColor);
        line-height: 1.4em;
        margin: 0;
    }
    #faq-section .cs-faq-answer {
        display: none;
        background: #1A1F17;
        border: 2px solid #3B82F6;
        border-top: none;
        border-bottom-left-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
        padding: 1.25rem 1.5rem 1.5rem;
    }
    #faq-section .cs-faq-answer.cs-open {
        display: block;
    }
    #faq-section .cs-faq-answer p {
        font-size: 0.9375rem;
        line-height: 1.75em;
        color: var(--bodyTextColor);
        margin: 0;
    }
}

/* ---- reviews.css ---- */
/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #reviews-section {
        padding: calc(clamp(3.75rem, 7.82vw, 6.25rem) + 3.5rem) 1rem;
        background-color: #ffffff;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Crect x='40' y='2' width='26' height='26' rx='1' transform='rotate(45 40 15)' fill='none' stroke='%233B82F6' stroke-width='1' opacity='0.18'/%3E%3Crect x='0' y='2' width='26' height='26' rx='1' transform='rotate(45 0 15)' fill='none' stroke='%233B82F6' stroke-width='1' opacity='0.18'/%3E%3Crect x='80' y='2' width='26' height='26' rx='1' transform='rotate(45 80 15)' fill='none' stroke='%233B82F6' stroke-width='1' opacity='0.18'/%3E%3Crect x='40' y='42' width='26' height='26' rx='1' transform='rotate(45 40 55)' fill='none' stroke='%233B82F6' stroke-width='1' opacity='0.18'/%3E%3Crect x='0' y='42' width='26' height='26' rx='1' transform='rotate(45 0 55)' fill='none' stroke='%233B82F6' stroke-width='1' opacity='0.18'/%3E%3Crect x='80' y='42' width='26' height='26' rx='1' transform='rotate(45 80 55)' fill='none' stroke='%233B82F6' stroke-width='1' opacity='0.18'/%3E%3C/svg%3E");
        background-repeat: repeat;
        background-size: 80px 80px;
        position: relative;
        overflow: hidden;
    }

    #reviews-section .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        position: relative;
        z-index: 3;
    }
    #reviews-section .cs-header-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }

    #reviews-section .cs-header-group .cs-topper {
        color: #11150F !important;
    }

    #reviews-section .cs-header-group .cs-topper::before {
        background: #3B82F6;
    }

    #reviews-section .cs-title {
        font-family: 'Barlow', sans-serif;
        font-size: clamp(1.75rem, 4vw, 2.75rem);
        font-weight: 800;
        text-transform: uppercase;
        text-align: center;
        line-height: 1.15em;
        color: #111510;
        margin: 0;
    }

    /* Carousel wrapper */
    #reviews-section .cs-carousel-wrap {
        width: 100%;
        overflow: hidden;
    }
    #reviews-section .cs-carousel {
        display: flex;
        gap: 1.5rem;
        transition: transform 0.4s ease;
    }

    /* Individual card — dark themed */
    #reviews-section .cs-review-card {
        min-width: 100%;
        background-color: #1A1F17;
        border: 1px solid #2A3022;
        border-radius: 0.75rem;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    /* Left accent strip with avatar */
    #reviews-section .cs-card-accent {
        width: 7rem;
        flex-shrink: 0;
        background-color: #141914;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Cpolygon points='22,4 28,18 24,18 30,40 16,22 21,22' fill='none' stroke='%233B82F6' stroke-width='0.8' opacity='0.18'/%3E%3C/svg%3E");
        background-repeat: repeat;
        background-size: 44px 44px;
        border-right: 2px solid #3B82F6;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Right content column */
    #reviews-section .cs-card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.875rem;
        padding: clamp(1.25rem, 2.5vw, 1.5rem);
    }

    /* Stars + service title + divider */
    #reviews-section .cs-card-top {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }
    #reviews-section .cs-stars {
        display: flex;
        gap: 0.1rem;
    }
    #reviews-section .cs-star {
        color: #3B82F6;
        font-size: 1.1rem;
        line-height: 1;
    }
    #reviews-section .cs-reviewer-service {
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
        line-height: 1.3;
    }
    #reviews-section .cs-divider {
        border: none;
        border-top: 2px solid #3B82F6;
        margin: 0.35rem 0 0;
    }

    #reviews-section .cs-avatar {
        width: 4.5rem;
        height: 4.5rem;
        border-radius: 0.375rem;
        object-fit: cover;
        flex-shrink: 0;
        border: 2px solid #3B82F6;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    }
    #reviews-section .cs-avatar-initial {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        font-family: 'Barlow', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        line-height: 1;
        text-transform: uppercase;
    }
    #reviews-section .cs-review-text {
        font-size: 0.9rem;
        line-height: 1.7em;
        color: var(--bodyTextColor);
        margin: 0;
    }

    /* Reviewer name */
    #reviews-section .cs-reviewer-name {
        font-size: 0.8125rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #3B82F6;
        margin: 0;
    }

    /* Controls row */
    #reviews-section .cs-controls {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    #reviews-section .cs-arrows {
        display: flex;
        gap: 0.5rem;
    }
    #reviews-section .cs-arrow {
        width: 2.75rem;
        height: 2.75rem;
        background: #1A1F17;
        border: 2px solid #2A3022;
        border-radius: 0.375rem;
        font-size: 1.25rem;
        color: #fff;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s, border-color 0.3s;
    }
    #reviews-section .cs-arrow:hover {
        background-color: #3B82F6;
        border-color: #3B82F6;
    }
    #reviews-section .cs-cta-buttons {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    #reviews-section .cs-btn-solid {
        font-family: 'Barlow', sans-serif;
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        text-decoration: none;
        padding: 0.75rem 1.5rem;
        background-color: #3B82F6;
        color: #fff;
        border-radius: 0.375rem;
        border: 2px solid #3B82F6;
        display: inline-block;
        transition: background-color 0.3s, color 0.3s;
    }
    #reviews-section .cs-btn-solid:hover {
        background-color: transparent;
        color: #3B82F6;
    }
    #reviews-section .cs-btn-outline {
        font-family: 'Barlow', sans-serif;
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        text-decoration: none;
        padding: 0.75rem 1.5rem;
        background-color: transparent;
        color: #3B82F6;
        border-radius: 0.375rem;
        border: 2px solid #3B82F6;
        display: inline-block;
        transition: background-color 0.3s, color 0.3s;
    }
    #reviews-section .cs-btn-outline:hover {
        background-color: #3B82F6;
        color: #fff;
    }
}

/* Tablet - 768px: show 2 cards */
@media only screen and (min-width: 48rem) {
    #reviews-section .cs-review-card {
        min-width: calc(50% - 0.75rem);
    }
}

/* Desktop - 1024px: show 3 cards */
@media only screen and (min-width: 64rem) {
    #reviews-section .cs-review-card {
        min-width: calc(33.333% - 1rem);
    }
}

/* ---- servicearea.css ---- */
/*-- -------------------------- -->
<---         Service Area        -->
<--- -------------------------- -*/

#service-area {
    display: flex;
    flex-direction: column-reverse;
    scroll-margin-top: 80px;
}

/* Left: Map */
.sa-map-col {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.sa-map-col img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Right: Dark panel */
.sa-content-col {
    width: 100%;
    background: #0d1b2a;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Diagonal accent behind the van */
.sa-content-col::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(115deg, transparent 45%, #16314d 45%);
    pointer-events: none;
    z-index: 0;
}

.sa-inner {
    padding: 3rem 1.5rem 1.5rem;
    position: relative;
    z-index: 2;
}

.sa-eyebrow {
    font-family: 'Barlow', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3B82F6;
    margin: 0 0 0.75rem;
}

.sa-heading {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 1.75rem;
    text-transform: uppercase;
}

.sa-heading span {
    color: #3B82F6;
}

.sa-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #3B82F6;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.sa-cta-btn:hover {
    background: #2563eb;
}

.sa-cta-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Van */
.sa-van {
    display: block;
    width: 100%;
    max-width: 460px;
    margin: 0.5rem auto -1rem;
    position: relative;
    z-index: 1;
    object-fit: contain;
}

@media only screen and (min-width: 48rem) {
    #service-area {
        flex-direction: row;
        height: 540px;
    }

    .sa-map-col {
        width: 55%;
        height: 100%;
    }

    .sa-content-col {
        width: 45%;
        height: 100%;
        overflow: visible;
        justify-content: flex-start;
    }

    .sa-content-col::before {
        width: 70%;
        height: 75%;
        z-index: 0;
    }

    .sa-inner {
        height: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 2.5rem;
        z-index: 4;
    }

    .sa-heading {
        font-size: clamp(1.75rem, 2.4vw, 2.35rem);
        margin-bottom: 2rem;
    }

    .sa-eyebrow {
        font-size: 0.9rem;
    }

    .sa-cta-btn {
        font-size: 1.05rem;
        padding: 1.05rem 2.25rem;
    }

    .sa-cta-btn svg {
        width: 22px;
        height: 22px;
    }

    /* Van anchored bottom, spills left over the map.
       The PNG has transparent padding below the van, so a negative
       bottom drops that empty space below the section edge. */
    .sa-van {
        position: absolute;
        bottom: -16%;
        left: -16%;
        right: auto;
        width: auto;
        height: 66%;
        max-width: none;
        margin: 0;
        z-index: 3;
    }
}

/* ---- footer.css ---- */
/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cs-footer-269 {
        padding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
        background-color: #11150F;
    }
    #cs-footer-269 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    /* ---- Col 1 ---- */
    #cs-footer-269 .cs-logo-group {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    #cs-footer-269 .cs-logo {
        display: block;
        width: clamp(10rem, 18vw, 13rem);
        height: auto;
    }
    #cs-footer-269 .cs-logo-img {
        width: 100%;
        height: auto;
    }

    /* Contact detail list */
    #cs-footer-269 .cs-contact-details {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
    }
    #cs-footer-269 .cs-contact-details li {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 0.625rem;
        font-size: 0.9375rem;
        color: var(--bodyTextColorWhite);
    }
    #cs-footer-269 .cs-contact-details a {
        color: var(--bodyTextColorWhite);
        text-decoration: none;
        transition: color 0.3s;
    }
    #cs-footer-269 .cs-contact-details a:hover {
        color: #3B82F6;
    }
    #cs-footer-269 .cs-detail-icon {
        width: 1rem;
        height: 1rem;
        flex-shrink: 0;
        stroke: #3B82F6;
        stroke-width: 2;
    }

    /* Social row */
    #cs-footer-269 .cs-social-row {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    #cs-footer-269 .cs-follow-label {
        font-size: 0.9375rem;
        font-weight: 700;
        color: var(--bodyTextColorWhite);
        white-space: nowrap;
    }
    #cs-footer-269 .cs-social {
        display: flex;
        gap: 0.625rem;
    }
    #cs-footer-269 .cs-social-link {
        width: 2rem;
        height: 2rem;
        background-color: #3B82F6;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s, transform 0.3s;
    }
    #cs-footer-269 .cs-social-link:hover {
        background-color: #1e40af;
        transform: translateY(-2px);
    }
    #cs-footer-269 .cs-social-img {
        height: 0.75rem;
        width: auto;
        display: block;
    }

    /* CTA button */
    #cs-footer-269 .cs-cta-button {
        font-family: 'Barlow', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        text-decoration: none;
        text-align: center;
        padding: 1rem 1.5rem;
        background-color: #3B82F6;
        color: #fff;
        border-radius: 0.375rem;
        display: block;
        transition: background-color 0.3s;
    }
    #cs-footer-269 .cs-cta-button:hover {
        background-color: #1e40af;
    }

    /* ---- Col 2 & 3 ---- */
    #cs-footer-269 .cs-nav-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #cs-footer-269 .cs-header {
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
        display: block;
    }
    #cs-footer-269 .cs-nav {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    #cs-footer-269 .cs-nav-li {
        list-style: none;
    }
    #cs-footer-269 .cs-nav-link {
        font-size: 0.9375rem;
        text-decoration: none;
        color: var(--bodyTextColorWhite);
        line-height: 1.5em;
        position: relative;
        transition: color 0.3s;
    }
    #cs-footer-269 .cs-nav-link:hover {
        color: #3B82F6;
    }

    /* ---- Col 4: Map ---- */
    #cs-footer-269 .cs-map-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #cs-footer-269 .cs-map-wrap {
        width: 100%;
        border-radius: 0.5rem;
        overflow: hidden;
        border: 2px solid rgba(255,255,255,0.1);
    }
    #cs-footer-269 .cs-map-wrap iframe {
        display: block;
        width: 100%;
        height: 220px;
        border: 0;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #cs-footer-269 .cs-container {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 3rem 2rem;
    }
    #cs-footer-269 .cs-logo-group {
        width: 100%;
    }
    #cs-footer-269 .cs-cta-button {
        max-width: 16rem;
    }
    #cs-footer-269 .cs-nav-group {
        flex: 1;
        min-width: 10rem;
    }
    #cs-footer-269 .cs-map-group {
        width: 100%;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cs-footer-269 .cs-container {
        flex-wrap: nowrap;
        gap: 2rem;
        align-items: flex-start;
    }
    #cs-footer-269 .cs-logo-group {
        width: auto;
        min-width: 14rem;
        max-width: 18rem;
        flex-shrink: 0;
    }
    #cs-footer-269 .cs-nav-group {
        flex: 1;
    }
    #cs-footer-269 .cs-map-group {
        width: auto;
        min-width: 16rem;
        max-width: 22rem;
        flex-shrink: 0;
    }
}

#cs-footer-269 .cs-credit {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--mutedText);
    padding: 1.25rem 1rem 0;
    border-top: 1px solid #2A3022;
    margin-top: 2rem;
}

/* ---- beforeafter.css ---- */
/*-- -------------------------- -->
<---       Before & After        -->
<--- -------------------------- -*/

#before-after {
    padding: 5rem 1.25rem;
    background: #0a0a0a;
    text-align: center;
}

.ba-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.ba-header-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ba-eyebrow {
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3B82F6;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ba-eyebrow::before {
    content: '';
    display: block;
    width: 3px;
    height: 1em;
    background: #3B82F6;
    border-radius: 2px;
    flex-shrink: 0;
}

.ba-heading {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.ba-highlight {
    color: #3B82F6;
}

/* Grid */
.ba-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 48rem) {
    .ba-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Individual slider wrapper */
.ba-item {
    position: relative;
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    aspect-ratio: 1/1;
}

.ba-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    draggable: false;
}

/* After image sits on top, clipped */
.ba-after {
    clip-path: inset(0 50% 0 0);
    z-index: 1;
}

/* Labels */
.ba-label {
    position: absolute;
    bottom: 1rem;
    z-index: 3;
    font-family: 'Barlow', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: #3B82F6;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    pointer-events: none;
}

.ba-label-before { left: 1rem; }
.ba-label-after  { right: 1rem; }

/* Divider line */
.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

/* Handle */
.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.75rem;
    height: 2.75rem;
    background: #3B82F6;
    border: 3px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.15rem;
    pointer-events: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.ba-handle svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* CTA */
.ba-cta {
    display: inline-block;
    background: #3B82F6;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.ba-cta:hover { background: #2563eb; }

