/* =========================================
   CARPET CLEANING HERO — COMPLETE CSS
   NAVIGATION AT THE TOP INSIDE HERO
========================================= */

:root {
    --cc-dark: #030a0f;
    --cc-dark-2: #051e2e;
    --cc-navy: #073f61;
    --cc-blue: #0d638c;
    --cc-blue-dark: #084765;
    --cc-light-blue: #a1b20f;
    --cc-sky: #9be8f7;

    --cc-green: #a1b20f;
    --cc-green-dark: #0d9e79;

    --cc-yellow: #bed310;
    --cc-orange: #a1b20f;

    --cc-white: #ffffff;
    --cc-soft-white: #eefaff;
    --cc-text-light: #c4dce6;

    --cc-border: rgba(255, 255, 255, 0.16);
    --cc-shadow: 0 24px 60px rgba(0, 18, 31, 0.28);
}


/* =========================================
   GENERAL HERO
========================================= */

.cc-hero {
    position: relative;
    overflow: hidden;

    padding-left: 72px;

    color: var(--cc-white);
    background: var(--cc-dark);

    font-family: "Poppins", sans-serif;
}

.cc-hero-background {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    /*
        Large top padding leaves space
        for the floating navigation.
    */
    padding: 185px 0 150px;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 26, 42, 0.97) 0%,
            rgba(4, 43, 66, 0.88) 43%,
            rgba(5, 51, 76, 0.52) 72%,
            rgba(5, 29, 45, 0.25) 100%
        ),
        url("../images/background-hero-section-carpet-cleaning.webp");

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cc-hero-background::before {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;

    height: 260px;

    background:
        linear-gradient(
            to top,
            var(--cc-dark) 0%,
            rgba(5, 28, 43, 0.94) 30%,
            rgba(5, 28, 43, 0) 100%
        );
}

.cc-hero-background::after {
    content: "";

    position: absolute;
    top: -190px;
    right: -120px;

    width: 470px;
    height: 470px;

    border-radius: 50%;

    background: rgba(86, 197, 232, 0.14);

    filter: blur(15px);
}

.cc-hero-overlay {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 85%
        );
}

.cc-hero-container {
    position: relative;
    z-index: 3;
}


/* =========================================
   LEFT SIDE RAIL
========================================= */

.cc-hero-rail {
    position: absolute;
    inset: 0 auto 0 0;

    z-index: 50;

    width: 72px;
    min-height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    background:
        linear-gradient(
            180deg,
            #07537b 0%,
            #063c5d 48%,
            #052d47 100%
        );

    box-shadow:
        8px 0 30px rgba(0, 0, 0, 0.14);
}

.cc-hero-rail::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 28px;
    height: 120px;

    background: rgba(255, 255, 255, 0.05);

    clip-path:
        polygon(
            0 0,
            100% 0,
            100% 100%
        );
}

.cc-rail-logo {
    position: relative;
    z-index: 2;

    width: 48px;
    height: 48px;

    margin-top: 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: var(--cc-dark);
    background: var(--cc-light-blue);

    font-size: 20px;
    text-decoration: none;

    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.18);

    transition: 0.3s ease;
}

.cc-rail-logo:hover {
    color: var(--cc-white);
    background: var(--cc-green);

    transform: translateY(-3px);
}

.cc-menu-toggle {
    width: 48px;
    height: 48px;

    margin-top: auto;
    margin-bottom: auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--cc-border);
    border-radius: 12px;

    color: var(--cc-white);
    background: rgba(255, 255, 255, 0.07);

    font-size: 19px;

    transition: 0.3s ease;
}

.cc-menu-toggle:hover {
    color: var(--cc-dark);
    background: var(--cc-yellow);
    border-color: var(--cc-yellow);

    transform: rotate(5deg);
}

.cc-rail-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;

    padding-bottom: 28px;
}

.cc-rail-socials a {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--cc-white);
    background: rgba(255, 255, 255, 0.07);

    font-size: 13px;
    text-decoration: none;

    transition: 0.3s ease;
}

.cc-rail-socials a:hover {
    color: var(--cc-dark);
    background: var(--cc-light-blue);

    transform: translateY(-3px);
}


/* =========================================
   TOP FLOATING NAVIGATION
========================================= */

.cc-bottom-navbar {
    position: absolute;

    /*
        Navigation is now at the top
        inside the hero.
    */
    top: 28px;
    left: calc(50% + 36px);

    z-index: 40;

    width: calc(100% - 130px);
    max-width: 1320px;
    min-height: 92px;

    padding: 13px 22px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 21px;

    background:
        linear-gradient(
            90deg,
            rgba(6, 38, 59, 0.97),
            rgba(8, 61, 91, 0.97),
            rgba(6, 38, 59, 0.97)
        );

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.34),
        0 0 0 7px rgba(255, 255, 255, 0.035);

    backdrop-filter: blur(16px);

    transform: translateX(-50%);
}

.cc-bottom-navbar::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -1;

    border-radius: inherit;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(86, 197, 232, 0.14),
            transparent 52%
        );

    pointer-events: none;
}

.cc-navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    color: var(--cc-white);
    text-decoration: none;
}

.cc-navbar-brand:hover {
    color: var(--cc-white);
}

.cc-brand-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-light-blue),
            var(--cc-green)
        );

    font-size: 19px;
}

.cc-navbar-brand > span:last-child {
    display: flex;
    flex-direction: column;
}

.cc-navbar-brand strong {
    font-size: 15px;
    line-height: 1.1;
}

.cc-navbar-brand small {
    margin-top: 4px;

    color: var(--cc-text-light);

    font-size: 9px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.cc-bottom-navbar .nav-link {
    position: relative;

    margin: 0 3px;
    padding: 11px 10px !important;

    color: var(--cc-text-light);

    font-size: 12px;
    font-weight: 650;

    transition: 0.3s ease;
}

.cc-bottom-navbar .nav-link:hover,
.cc-bottom-navbar .nav-link.active {
    color: var(--cc-white);
}

.cc-bottom-navbar
.nav-link:not(.dropdown-toggle)::before {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 3px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: var(--cc-yellow);

    transform: translateX(-50%);

    transition: 0.3s ease;
}

.cc-bottom-navbar
.nav-link:hover::before,
.cc-bottom-navbar
.nav-link.active::before {
    width: 24px;
}

.cc-bottom-navbar .dropdown-toggle::after {
    margin-left: 6px;

    vertical-align: middle;

    transition: 0.3s ease;
}

.cc-bottom-navbar
.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}


/* Navigation phone button */

.cc-navbar-phone {
    min-width: 175px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-left: 12px;
    padding: 9px 13px;

    border-radius: 12px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    text-decoration: none;

    box-shadow:
        0 12px 25px rgba(255, 159, 28, 0.18);

    transition: 0.3s ease;
}

.cc-navbar-phone:hover {
    color: var(--cc-dark);

    transform: translateY(-3px);

    box-shadow:
        0 17px 32px rgba(255, 159, 28, 0.28);
}

.cc-navbar-phone > i {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color: var(--cc-white);
    background: var(--cc-dark);

    font-size: 13px;
}

.cc-navbar-phone span {
    display: flex;
    flex-direction: column;
}

.cc-navbar-phone small {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.cc-navbar-phone strong {
    font-size: 13px;
}


/* Dropdown menu */

.cc-dropdown-menu {
    min-width: 275px;

    margin-top: 14px !important;
    padding: 10px;

    border: 1px solid rgba(5, 28, 43, 0.1);
    border-radius: 15px;

    background: var(--cc-white);

    box-shadow:
        0 20px 50px rgba(0, 20, 35, 0.18);
}

.cc-dropdown-menu .dropdown-item {
    padding: 11px 13px;

    border-radius: 9px;

    color: var(--cc-dark);

    font-size: 12px;
    font-weight: 600;

    transition: 0.25s ease;
}

.cc-dropdown-menu .dropdown-item:hover {
    padding-left: 17px;

    color: var(--cc-white);
    background: var(--cc-blue);
}

.cc-bottom-navbar .navbar-toggler {
    width: 45px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--cc-border);
    border-radius: 11px;

    color: var(--cc-white);
    background: rgba(255, 255, 255, 0.06);

    box-shadow: none;
}

.cc-bottom-navbar .navbar-toggler:focus {
    box-shadow: none;
}


/* =========================================
   HERO CONTENT
========================================= */

.cc-hero-content {
    max-width: 730px;

    padding-right: 30px;

    animation:
        ccFadeLeft 0.8s ease both;
}

.cc-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 20px;
    padding: 9px 16px;

    border: 1px solid rgba(155, 232, 247, 0.28);
    border-radius: 50px;

    color: var(--cc-sky);
    background: rgba(86, 197, 232, 0.09);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cc-hero-label i {
    color: var(--cc-yellow);
}

.cc-hero-content h1 {
    max-width: 820px;

    margin: 0 0 20px;

    color: var(--cc-white);

    font-size:
        clamp(
            46px,
            5.8vw,
            82px
        );

    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -3px;

    text-shadow:
        0 15px 30px rgba(0, 0, 0, 0.22);
}

.cc-hero-content h1 span {
    display: block;

    margin-top: 10px;

    color: var(--cc-light-blue);

    font-size: 0.61em;
    letter-spacing: -1.5px;
}

.cc-hero-description {
    max-width: 660px;

    margin: 0 0 30px;

    color: var(--cc-text-light);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   HERO BUTTONS
========================================= */

.cc-hero-actions {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 14px;
}

.cc-phone-button,
.cc-estimate-button {
    position: relative;

    min-height: 74px;

    display: inline-flex;
    align-items: center;
    gap: 13px;

    padding: 10px 18px 10px 11px;

    border-radius: 16px;

    text-decoration: none;
    overflow: hidden;

    transition: 0.35s ease;
}

.cc-phone-button {
    color: var(--cc-white);

    border: 1px solid var(--cc-border);

    background: rgba(255, 255, 255, 0.09);

    backdrop-filter: blur(13px);
}

.cc-estimate-button {
    color: var(--cc-dark);

    border: 1px solid var(--cc-yellow);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    box-shadow:
        0 16px 35px rgba(255, 159, 28, 0.24);
}

.cc-phone-button:hover {
    color: var(--cc-white);

    border-color: rgba(86, 197, 232, 0.65);

    background: rgba(86, 197, 232, 0.18);

    transform: translateY(-4px);
}

.cc-estimate-button:hover {
    color: var(--cc-dark);

    transform: translateY(-4px);

    box-shadow:
        0 20px 42px rgba(255, 159, 28, 0.35);
}

.cc-action-icon {
    flex: 0 0 51px;

    width: 51px;
    height: 51px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    font-size: 19px;
}

.cc-phone-button .cc-action-icon {
    color: var(--cc-dark);
    background: var(--cc-light-blue);
}

.cc-estimate-button .cc-action-icon {
    color: var(--cc-white);
    background: rgba(5, 28, 43, 0.88);
}

.cc-action-text {
    display: flex;
    flex-direction: column;

    line-height: 1.2;
}

.cc-action-text small {
    margin-bottom: 5px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    opacity: 0.78;
}

.cc-action-text strong {
    font-size: 17px;
    font-weight: 800;
}

.cc-button-arrow {
    margin-left: 5px;

    font-size: 13px;
}


/* =========================================
   TRUST ITEMS
========================================= */

.cc-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;

    margin-top: 26px;
}

.cc-trust-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--cc-soft-white);

    font-size: 12px;
    font-weight: 600;
}

.cc-trust-list i {
    color: var(--cc-green);
}


/* =========================================
   HERO COUPON
========================================= */

.cc-coupon-wrapper {
    position: relative;

    display: flex;
    justify-content: flex-end;

    animation:
        ccFadeRight 0.9s ease both;
}

.cc-coupon {
    position: relative;

    width: min(100%, 385px);

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 26px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.97),
            rgba(234, 249, 252, 0.98)
        );

    box-shadow:
        0 30px 75px rgba(0, 16, 28, 0.42),
        0 0 0 8px rgba(255, 255, 255, 0.05);

    /* Coupon is now straight */
    transform: none;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.cc-coupon:hover {
    transform: translateY(-7px);

    box-shadow:
        0 36px 85px rgba(0, 16, 28, 0.5),
        0 0 0 8px rgba(255, 255, 255, 0.06);
}

.cc-coupon::before,
.cc-coupon::after {
    content: "";

    position: absolute;
    top: 66%;

    z-index: 4;

    width: 24px;
    height: 24px;

    border-radius: 50%;

    background: var(--cc-dark);
}

.cc-coupon::before {
    left: -12px;
}

.cc-coupon::after {
    right: -12px;
}

.cc-coupon-glow {
    position: absolute;
    top: -95px;
    right: -70px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        rgba(86, 197, 232, 0.34);

    filter: blur(10px);
}

.cc-coupon-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 19px 22px;

    background:
        linear-gradient(
            135deg,
            var(--cc-blue),
            var(--cc-navy)
        );
}

.cc-coupon-badge {
    display: inline-flex;

    padding: 7px 12px;

    border-radius: 50px;

    color: var(--cc-dark);
    background: var(--cc-yellow);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.cc-coupon-icon {
    width: 39px;
    height: 39px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--cc-white);
    background: rgba(255, 255, 255, 0.12);

    font-size: 18px;
}

.cc-coupon-body {
    position: relative;
    z-index: 2;

    padding: 28px 25px 24px;

    text-align: center;
}

.cc-coupon-body > small {
    color: var(--cc-blue);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.cc-coupon-body h2 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;

    margin: 5px 0 0;

    color: var(--cc-dark);

    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.cc-coupon-body h2 span {
    color: var(--cc-blue);

    font-size: 75px;
    letter-spacing: -5px;
}

.cc-coupon-body h3 {
    margin: 9px 0 0;

    color: var(--cc-dark);

    font-size: 20px;
    font-weight: 800;
}

.cc-coupon-divider {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 21px 0 16px;
}

.cc-coupon-divider span {
    flex: 1;

    border-top:
        1px dashed
        rgba(5, 28, 43, 0.25);
}

.cc-coupon-divider i {
    color: var(--cc-blue);

    font-size: 12px;
}

.cc-coupon-body p {
    margin: 0 0 18px;

    color: #596e79;

    font-size: 11px;
    line-height: 1.65;
}

.cc-coupon-call {
    width: 100%;
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px 16px;

    border-radius: 12px;

    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            var(--cc-green),
            var(--cc-green-dark)
        );

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 12px 25px rgba(13, 158, 121, 0.22);

    transition: 0.3s ease;
}

.cc-coupon-call:hover {
    color: var(--cc-white);

    transform: translateY(-3px);
}

.cc-coupon-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding: 15px 23px;

    border-top:
        1px dashed
        rgba(5, 28, 43, 0.18);

    background: #dff7fb;
}

.cc-coupon-bottom span {
    color: #6b8089;

    font-size: 9px;
}

.cc-coupon-bottom strong {
    color: var(--cc-blue);

    font-size: 10px;
    letter-spacing: 1px;
}


/* =========================================
   LOWER HERO AREA
========================================= */

.cc-hero-lower {
    position: relative;
    z-index: 7;

    margin-top: -95px;
    padding: 0 0 55px;

    background:
        linear-gradient(
            180deg,
            transparent 0,
            var(--cc-dark) 95px,
            var(--cc-dark) 100%
        );
}

.cc-discover-box {
    min-height: 190px;

    display: flex;
    align-items: center;
    gap: 20px;

    padding: 28px;

    border: 1px solid var(--cc-border);
    border-radius: 23px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.02)
        );

    backdrop-filter: blur(12px);
}

.cc-discover-image {
    flex: 0 0 115px;

    width: 115px;
    height: 115px;

    padding: 6px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--cc-light-blue),
            var(--cc-green)
        );

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.22);
}

.cc-discover-image img {
    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}

.cc-discover-content span {
    display: block;

    margin-bottom: 7px;

    color: var(--cc-light-blue);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cc-discover-content h2 {
    margin: 0 0 12px;

    color: var(--cc-white);

    font-size: 20px;
    font-weight: 750;
    line-height: 1.32;
}

.cc-discover-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--cc-text-light);

    font-size: 11px;
    font-weight: 700;
    text-decoration: none;

    transition: 0.3s ease;
}

.cc-discover-content a:hover {
    gap: 12px;

    color: var(--cc-yellow);
}


/* =========================================
   LOWER SERVICE IMAGE
========================================= */

.cc-feature-image {
    position: relative;

    min-height: 310px;

    border:
        7px solid
        rgba(255, 255, 255, 0.13);

    border-radius: 25px;

    overflow: hidden;

    box-shadow: var(--cc-shadow);
}

.cc-feature-image img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.cc-feature-image:hover img {
    transform: scale(1.06);
}

.cc-feature-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 28, 43, 0.82),
            rgba(5, 28, 43, 0.15)
        );
}

.cc-feature-caption {
    position: absolute;
    inset: auto 0 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 25px;
}

.cc-feature-caption span {
    display: block;

    margin-bottom: 4px;

    color: var(--cc-light-blue);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.cc-feature-caption strong {
    display: block;

    color: var(--cc-white);

    font-size: 19px;
}

.cc-feature-play {
    flex: 0 0 65px;

    width: 65px;
    height: 65px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border:
        6px solid
        rgba(255, 255, 255, 0.22);

    border-radius: 50%;

    color: var(--cc-dark);
    background: var(--cc-white);

    text-decoration: none;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.26);

    transition: 0.35s ease;
}

.cc-feature-play:hover {
    color: var(--cc-white);
    background: var(--cc-green);

    transform: scale(1.08);
}


/* =========================================
   OFFCANVAS MENU
========================================= */

.cc-offcanvas {
    color: var(--cc-white);

    background:
        linear-gradient(
            160deg,
            var(--cc-dark),
            var(--cc-navy)
        );
}

.cc-offcanvas .offcanvas-header {
    padding: 22px;

    border-bottom:
        1px solid
        var(--cc-border);
}

.cc-offcanvas-brand {
    display: flex;
    align-items: center;
    gap: 11px;

    font-weight: 800;
}

.cc-offcanvas-brand > i {
    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--cc-dark);
    background: var(--cc-light-blue);
}

.cc-offcanvas-brand span {
    display: flex;
    flex-direction: column;
}

.cc-offcanvas-brand small {
    margin-top: 3px;

    color: var(--cc-text-light);

    font-size: 9px;
    font-weight: 500;
}

.cc-mobile-links {
    display: grid;
    gap: 9px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.cc-mobile-links a {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 13px 14px;

    border: 1px solid var(--cc-border);
    border-radius: 11px;

    color: var(--cc-white);
    background: rgba(255, 255, 255, 0.05);

    font-size: 13px;
    font-weight: 650;
    text-decoration: none;

    transition: 0.3s ease;
}

.cc-mobile-links a:hover {
    padding-left: 18px;

    color: var(--cc-dark);
    background: var(--cc-light-blue);
}

.cc-mobile-links i {
    width: 22px;

    text-align: center;
}

.cc-mobile-call {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 25px;
    padding: 15px;

    border-radius: 14px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    text-decoration: none;
}

.cc-mobile-call:hover {
    color: var(--cc-dark);
}

.cc-mobile-call > i {
    width: 45px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--cc-white);
    background: var(--cc-dark);
}

.cc-mobile-call span {
    display: flex;
    flex-direction: column;

    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.cc-mobile-call strong {
    margin-top: 3px;

    font-size: 16px;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes ccFadeLeft {

    from {
        opacity: 0;

        transform:
            translateX(-35px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}

@keyframes ccFadeRight {

    from {
        opacity: 0;

        transform:
            translateX(35px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1199.98px) {

    .cc-hero-content h1 {
        font-size: 58px;
    }

    .cc-bottom-navbar {
        width: calc(100% - 110px);

        padding-left: 16px;
        padding-right: 16px;
    }

    .cc-bottom-navbar .nav-link {
        padding-left: 7px !important;
        padding-right: 7px !important;

        font-size: 11px;
    }

    .cc-navbar-phone {
        min-width: auto;
    }

    .cc-navbar-phone span {
        display: none;
    }

    .cc-navbar-phone > i {
        width: 37px;
        height: 37px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .cc-hero {
        padding-left: 0;
    }

    .cc-hero-rail {
        display: none;
    }

    .cc-bottom-navbar {
        top: 18px;
        left: 50%;

        width: calc(100% - 30px);
        min-height: auto;

        padding: 14px 16px;

        border-radius: 17px;

        transform: translateX(-50%);
    }

    .cc-bottom-navbar .navbar-collapse {
        margin-top: 15px;
        padding: 15px;

        border: 1px solid var(--cc-border);
        border-radius: 13px;

        background:
            rgba(0, 18, 30, 0.82);

        max-height: 68vh;
        overflow-y: auto;
    }

    .cc-bottom-navbar .nav-link {
        margin: 2px 0;
        padding: 11px 12px !important;

        border-radius: 8px;
    }

    .cc-bottom-navbar .nav-link:hover,
    .cc-bottom-navbar .nav-link.active {
        background:
            rgba(255, 255, 255, 0.08);
    }

    .cc-bottom-navbar
    .nav-link::before {
        display: none;
    }

    .cc-navbar-phone {
        width: 100%;

        margin: 13px 0 0;

        justify-content: center;
    }

    .cc-navbar-phone span {
        display: flex;
    }

    .cc-hero-background {
        min-height: auto;

        padding: 175px 0 165px;

        background-image:
            linear-gradient(
                rgba(3, 27, 43, 0.88),
                rgba(3, 27, 43, 0.92)
            ),
            url("images/carpet-cleaning-hero.webp");

        background-position: center;
    }

    .cc-hero-content {
        max-width: 760px;

        padding-right: 0;

        text-align: center;
    }

    .cc-hero-content h1 {
        margin-left: auto;
        margin-right: auto;
    }

    .cc-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .cc-hero-actions,
    .cc-trust-list {
        justify-content: center;
    }

    .cc-coupon-wrapper {
        justify-content: center;

        margin-top: 45px;
    }

    .cc-coupon {
        transform: none;
    }

    .cc-hero-lower {
        margin-top: -105px;
        padding-bottom: 40px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .cc-bottom-navbar {
        top: 12px;

        width: calc(100% - 22px);

        padding: 12px 14px;
    }

    .cc-hero-background {
        padding: 150px 0 155px;
    }

    .cc-hero-content h1 {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .cc-hero-content h1 span {
        font-size: 0.56em;
        line-height: 1.25;
    }

    .cc-hero-description {
        font-size: 14px;
    }

    .cc-phone-button,
    .cc-estimate-button {
        width: 100%;

        justify-content: flex-start;
    }

    .cc-button-arrow {
        margin-left: auto;
    }

    .cc-coupon {
        width: 100%;
    }

    .cc-discover-box {
        flex-direction: column;

        text-align: center;
    }

    .cc-feature-image {
        min-height: 270px;
    }

    .cc-feature-caption {
        padding: 20px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .cc-bottom-navbar {
        top: 10px;

        width: calc(100% - 18px);

        padding: 11px 12px;

        border-radius: 15px;
    }

    .cc-navbar-brand strong {
        font-size: 12px;
    }

    .cc-navbar-brand small {
        font-size: 7px;
    }

    .cc-brand-icon {
        flex-basis: 42px;

        width: 42px;
        height: 42px;
    }

    .cc-hero-background {
        padding-top: 135px;
    }

    .cc-hero-label {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .cc-hero-content h1 {
        font-size: 37px;
    }

    .cc-action-text strong {
        font-size: 15px;
    }

    .cc-trust-list {
        display: grid;
        justify-content: start;

        max-width: 260px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

    .cc-coupon-body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .cc-coupon-body h2 span {
        font-size: 64px;
    }

    .cc-coupon-body h2 {
        font-size: 31px;
    }

    .cc-coupon-bottom {
        flex-direction: column;
        gap: 4px;

        text-align: center;
    }

    .cc-hero-lower {
        padding-bottom: 30px;
    }

    .cc-discover-box {
        padding: 22px 18px;
    }

    .cc-feature-caption strong {
        font-size: 15px;
    }

    .cc-feature-play {
        flex-basis: 54px;

        width: 54px;
        height: 54px;
    }

}


/* =========================================
   BEFORE & AFTER COMPARISON
========================================= */

.cc-before-after-card {
    position: relative;

    padding: 7px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 26px;

    background: rgba(255, 255, 255, 0.08);

    box-shadow:
        0 24px 60px rgba(0, 18, 31, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.04);

    overflow: hidden;
}

.cc-comparison {
    position: relative;

    min-height: 310px;

    border-radius: 20px;

    overflow: hidden;

    background: var(--cc-dark);
    isolation: isolate;
}

.cc-comparison-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.cc-after-image {
    z-index: 1;
}

.cc-before-layer {
    position: absolute;
    inset: 0 auto 0 0;

    z-index: 2;

    width: 50%;
    height: 100%;

    overflow: hidden;
}

.cc-before-image {
    width: 100%;
    max-width: none;
}

.cc-comparison::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 3;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(5, 28, 43, 0.08) 0%,
            rgba(5, 28, 43, 0) 45%,
            rgba(5, 28, 43, 0.82) 100%
        );
}

.cc-comparison-label {
    position: absolute;
    top: 19px;

    z-index: 6;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 76px;

    padding: 8px 13px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;

    color: var(--cc-white);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(10px);
}

.cc-label-before {
    left: 18px;

    background: rgba(5, 28, 43, 0.78);
}

.cc-label-after {
    right: 18px;

    color: var(--cc-dark);

    background: rgba(255, 207, 63, 0.93);
}

.cc-comparison-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;

    z-index: 5;

    width: 3px;

    background: var(--cc-white);

    box-shadow:
        0 0 0 1px rgba(5, 28, 43, 0.15),
        0 0 18px rgba(255, 255, 255, 0.45);

    transform: translateX(-50%);

    pointer-events: none;
}

.cc-comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border: 5px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;

    color: var(--cc-dark);

    background: var(--cc-white);

    font-size: 11px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.28);

    transform: translate(-50%, -50%);
}

.cc-comparison-handle i:first-child {
    animation: ccArrowLeft 1.4s ease-in-out infinite;
}

.cc-comparison-handle i:last-child {
    animation: ccArrowRight 1.4s ease-in-out infinite;
}

.cc-comparison-range {
    position: absolute;
    inset: 0;

    z-index: 7;

    width: 100%;
    height: 100%;

    margin: 0;

    cursor: ew-resize;

    opacity: 0;
}

.cc-comparison-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 6;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 24px 25px;
}

.cc-comparison-caption span {
    display: block;

    margin-bottom: 4px;

    color: var(--cc-light-blue);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.cc-comparison-caption strong {
    display: block;

    color: var(--cc-white);

    font-size: 19px;
    line-height: 1.35;
}

.cc-clean-result-icon {
    flex: 0 0 57px;

    width: 57px;
    height: 57px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 5px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-size: 19px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.22);
}

@keyframes ccArrowLeft {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-3px);
    }
}

@keyframes ccArrowRight {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(3px);
    }
}


/* Before & After Responsive */

@media (max-width: 767.98px) {

    .cc-comparison {
        min-height: 280px;
    }

    .cc-comparison-caption {
        padding: 20px;
    }

    .cc-comparison-caption strong {
        font-size: 16px;
    }

    .cc-clean-result-icon {
        flex-basis: 50px;

        width: 50px;
        height: 50px;

        font-size: 16px;
    }

}


@media (max-width: 575.98px) {

    .cc-comparison {
        min-height: 310px;
    }

    .cc-comparison-label {
        top: 14px;

        min-width: 67px;

        padding: 7px 10px;

        font-size: 9px;
    }

    .cc-label-before {
        left: 13px;
    }

    .cc-label-after {
        right: 13px;
    }

    .cc-comparison-handle {
        width: 47px;
        height: 47px;

        border-width: 4px;
    }

    .cc-comparison-caption {
        padding: 17px;
    }

    .cc-comparison-caption span {
        font-size: 8px;
    }

    .cc-comparison-caption strong {
        max-width: 205px;

        font-size: 14px;
    }

    .cc-clean-result-icon {
        flex-basis: 45px;

        width: 45px;
        height: 45px;

        border-width: 4px;
    }

}



/* =========================================
   SECOND SECTION
   KEEP CARPETS FRESH LONGER
========================================= */

.cc-fresh-section {
    position: relative;
    overflow: hidden;

    padding: 115px 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(86, 197, 232, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 93% 85%,
            rgba(33, 200, 154, 0.1),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f5fcfe 0%,
            #ffffff 48%,
            #eef9fb 100%
        );
}

.cc-fresh-section::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 430px;
    height: 430px;

    border-radius: 0 0 0 100%;

    background:
        linear-gradient(
            135deg,
            rgba(86, 197, 232, 0.08),
            rgba(33, 200, 154, 0.03)
        );

    pointer-events: none;
}

.cc-fresh-section::after {
    content: "";

    position: absolute;
    left: -120px;
    bottom: -160px;

    width: 330px;
    height: 330px;

    border: 1px solid rgba(13, 99, 140, 0.1);
    border-radius: 50%;

    box-shadow:
        0 0 0 35px rgba(13, 99, 140, 0.025),
        0 0 0 70px rgba(13, 99, 140, 0.018);

    pointer-events: none;
}

.cc-fresh-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   IMAGE COMPOSITION
========================================= */

.cc-fresh-visual {
    position: relative;

    min-height: 580px;

    padding-right: 55px;
    padding-bottom: 55px;
}

.cc-fresh-main-image {
    position: relative;

    width: 88%;
    height: 510px;

    margin-left: auto;

    border-radius: 30px;
    overflow: hidden;

    background: var(--cc-dark);

    box-shadow:
        0 32px 75px rgba(5, 28, 43, 0.19);
}

.cc-fresh-main-image::before {
    content: "";

    position: absolute;
    inset: 14px;

    z-index: 3;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 21px;

    pointer-events: none;
}

.cc-fresh-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}

.cc-fresh-main-image:hover img {
    transform: scale(1.06);
}

.cc-fresh-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 38%,
            rgba(5, 28, 43, 0.86) 100%
        );
}

.cc-fresh-image-label {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 27px;

    z-index: 4;

    display: flex;
    align-items: center;
    gap: 13px;

    color: var(--cc-white);
}

.cc-fresh-label-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 15px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-size: 18px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}

.cc-fresh-image-label > span:last-child {
    display: flex;
    flex-direction: column;
}

.cc-fresh-image-label small {
    margin-bottom: 4px;

    color: var(--cc-light-blue);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.cc-fresh-image-label strong {
    font-size: 16px;
    font-weight: 750;
}


/* Small overlapping image */

.cc-fresh-small-image {
    position: absolute;
    left: 0;
    bottom: 0;

    z-index: 5;

    width: 215px;
    height: 230px;

    padding: 7px;

    border-radius: 25px;

    background: var(--cc-white);

    box-shadow:
        0 25px 55px rgba(5, 28, 43, 0.22);
}

.cc-fresh-small-image img {
    width: 100%;
    height: 100%;

    border-radius: 19px;

    object-fit: cover;
}

.cc-fresh-small-badge {
    position: absolute;
    top: -19px;
    right: -19px;

    width: 58px;
    height: 58px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 6px solid var(--cc-white);
    border-radius: 50%;

    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            var(--cc-green),
            var(--cc-green-dark)
        );

    font-size: 19px;

    box-shadow:
        0 12px 26px rgba(13, 158, 121, 0.25);
}


/* Floating result card */

.cc-fresh-result-card {
    position: absolute;
    top: 48px;
    left: 0;

    z-index: 6;

    min-width: 245px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 17px;

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 17px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 20px 45px rgba(5, 28, 43, 0.15);

    backdrop-filter: blur(12px);

    animation:
        ccFreshFloat 4s ease-in-out infinite;
}

.cc-result-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            var(--cc-blue),
            var(--cc-navy)
        );

    font-size: 17px;
}

.cc-fresh-result-card > span:last-child {
    display: flex;
    flex-direction: column;
}

.cc-fresh-result-card small {
    margin-bottom: 4px;

    color: var(--cc-blue);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cc-fresh-result-card strong {
    color: var(--cc-dark);

    font-size: 12px;
    font-weight: 800;
}


/* Decorative circles */

.cc-fresh-circle {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}

.cc-fresh-circle-one {
    top: 9px;
    right: 13px;

    width: 95px;
    height: 95px;

    border: 18px solid rgba(86, 197, 232, 0.14);
}

.cc-fresh-circle-two {
    right: 2px;
    bottom: 85px;

    width: 42px;
    height: 42px;

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    box-shadow:
        0 12px 28px rgba(255, 159, 28, 0.25);
}


/* =========================================
   CONTENT
========================================= */

.cc-fresh-content {
    position: relative;

    max-width: 650px;

    padding-left: 20px;
}

.cc-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;
    padding: 9px 15px;

    border: 1px solid rgba(13, 99, 140, 0.13);
    border-radius: 50px;

    color: var(--cc-blue);

    background: rgba(86, 197, 232, 0.09);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cc-section-kicker i {
    color: var(--cc-green-dark);
}

.cc-fresh-content h2 {
    max-width: 670px;

    margin: 0;

    color: var(--cc-dark);

    font-size:
        clamp(
            35px,
            4vw,
            55px
        );

    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -2px;
}

.cc-heading-line {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 150px;

    margin: 23px 0 26px;
}

.cc-heading-line span {
    flex: 1;

    height: 3px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--cc-blue),
            var(--cc-light-blue)
        );
}

.cc-heading-line i {
    color: var(--cc-yellow);

    font-size: 14px;
}

.cc-fresh-content p {
    margin: 0 0 20px;

    color: #5e717b;

    font-size: 15px;
    line-height: 1.95;
}

.cc-fresh-content p:last-of-type {
    margin-bottom: 0;
}


/* =========================================
   FEATURES
========================================= */

.cc-fresh-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;

    margin-top: 30px;
}

.cc-fresh-feature {
    display: flex;
    align-items: center;
    gap: 12px;

    min-height: 88px;

    padding: 14px;

    border: 1px solid rgba(13, 99, 140, 0.1);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.88);

    box-shadow:
        0 14px 30px rgba(5, 28, 43, 0.055);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.cc-fresh-feature:hover {
    border-color: rgba(13, 99, 140, 0.22);

    transform: translateY(-5px);

    box-shadow:
        0 20px 40px rgba(5, 28, 43, 0.1);
}

.cc-fresh-feature > span {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            var(--cc-blue),
            var(--cc-navy)
        );

    font-size: 17px;
}

.cc-fresh-feature:nth-child(2) > span {
    background:
        linear-gradient(
            135deg,
            var(--cc-green),
            var(--cc-green-dark)
        );
}

.cc-fresh-feature div {
    display: flex;
    flex-direction: column;
}

.cc-fresh-feature strong {
    margin-bottom: 4px;

    color: var(--cc-dark);

    font-size: 13px;
    font-weight: 800;
}

.cc-fresh-feature small {
    color: #70838c;

    font-size: 9px;
    line-height: 1.5;
}


/* =========================================
   ACTIONS
========================================= */

.cc-fresh-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 31px;
}

.cc-fresh-primary-btn {
    min-height: 67px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 9px 17px 9px 9px;

    border-radius: 15px;

    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            var(--cc-blue),
            var(--cc-navy)
        );

    text-decoration: none;

    box-shadow:
        0 17px 36px rgba(7, 63, 97, 0.2);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cc-fresh-primary-btn:hover {
    color: var(--cc-white);

    transform: translateY(-4px);

    box-shadow:
        0 22px 44px rgba(7, 63, 97, 0.28);
}

.cc-fresh-primary-btn > span:first-child {
    flex: 0 0 49px;

    width: 49px;
    height: 49px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-size: 17px;
}

.cc-fresh-primary-btn > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.cc-fresh-primary-btn small {
    margin-bottom: 3px;

    color: var(--cc-text-light);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cc-fresh-primary-btn strong {
    font-size: 14px;
    font-weight: 800;
}

.cc-fresh-primary-btn > i {
    margin-left: 6px;

    font-size: 12px;

    transition:
        transform 0.3s ease;
}

.cc-fresh-primary-btn:hover > i {
    transform: translateX(4px);
}


/* Phone */

.cc-fresh-phone {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    color: var(--cc-dark);

    text-decoration: none;
}

.cc-fresh-phone:hover {
    color: var(--cc-blue);
}

.cc-fresh-phone-icon {
    width: 49px;
    height: 49px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(13, 99, 140, 0.13);
    border-radius: 50%;

    color: var(--cc-blue);

    background: var(--cc-white);

    box-shadow:
        0 10px 26px rgba(5, 28, 43, 0.09);

    font-size: 16px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.cc-fresh-phone:hover .cc-fresh-phone-icon {
    color: var(--cc-white);
    background: var(--cc-green);

    transform: rotate(-8deg);
}

.cc-fresh-phone > span:last-child {
    display: flex;
    flex-direction: column;
}

.cc-fresh-phone small {
    margin-bottom: 3px;

    color: #768991;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cc-fresh-phone strong {
    font-size: 15px;
    font-weight: 800;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes ccFreshFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199.98px) {

    .cc-fresh-visual {
        padding-right: 30px;
    }

    .cc-fresh-main-image {
        width: 90%;
    }

    .cc-fresh-content {
        padding-left: 0;
    }

    .cc-fresh-content h2 {
        font-size: 43px;
    }

}


@media (max-width: 991.98px) {

    .cc-fresh-section {
        padding: 90px 0;
    }

    .cc-fresh-visual {
        max-width: 680px;
        min-height: 570px;

        margin: 0 auto 15px;

        padding-right: 45px;
    }

    .cc-fresh-main-image {
        width: 88%;
    }

    .cc-fresh-content {
        max-width: 760px;

        margin: 0 auto;

        text-align: center;
    }

    .cc-heading-line {
        margin-left: auto;
        margin-right: auto;
    }

    .cc-fresh-actions {
        justify-content: center;
    }

}


@media (max-width: 767.98px) {

    .cc-fresh-section {
        padding: 75px 0;
    }

    .cc-fresh-visual {
        min-height: 505px;

        padding-right: 20px;
        padding-bottom: 45px;
    }

    .cc-fresh-main-image {
        width: 92%;
        height: 440px;
    }

    .cc-fresh-small-image {
        width: 175px;
        height: 185px;
    }

    .cc-fresh-result-card {
        top: 30px;

        min-width: 220px;
    }

    .cc-fresh-content h2 {
        font-size: 36px;
    }

    .cc-fresh-content p {
        font-size: 14px;
    }

    .cc-fresh-features {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 575.98px) {

    .cc-fresh-section {
        padding: 65px 0;
    }

    .cc-fresh-visual {
        min-height: 430px;

        padding-right: 0;
        padding-bottom: 30px;
    }

    .cc-fresh-main-image {
        width: 100%;
        height: 380px;

        border-radius: 23px;
    }

    .cc-fresh-main-image::before {
        inset: 10px;

        border-radius: 16px;
    }

    .cc-fresh-image-label {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .cc-fresh-image-label strong {
        font-size: 13px;
    }

    .cc-fresh-small-image {
        left: 12px;
        bottom: 0;

        width: 135px;
        height: 140px;

        border-radius: 19px;
    }

    .cc-fresh-small-image img {
        border-radius: 14px;
    }

    .cc-fresh-result-card {
        top: 20px;
        left: 12px;

        min-width: 190px;

        padding: 11px 12px;
    }

    .cc-result-icon {
        flex-basis: 40px;

        width: 40px;
        height: 40px;
    }

    .cc-fresh-result-card strong {
        font-size: 10px;
    }

    .cc-fresh-circle-one,
    .cc-fresh-circle-two {
        display: none;
    }

    .cc-section-kicker {
        font-size: 8px;
    }

    .cc-fresh-content h2 {
        font-size: 31px;
        letter-spacing: -1.2px;
    }

    .cc-fresh-content p {
        line-height: 1.8;
    }

    .cc-fresh-actions {
        display: grid;
        grid-template-columns: 1fr;

        width: 100%;
    }

    .cc-fresh-primary-btn {
        width: 100%;

        justify-content: flex-start;
    }

    .cc-fresh-primary-btn > i {
        margin-left: auto;
    }

    .cc-fresh-phone {
        justify-content: center;
    }

}


/* =========================================
   SECTION 3
   WHY HOMEOWNERS TRUST US
========================================= */

.cc-trust-section {
    position: relative;
    overflow: hidden;

    padding: 115px 0 105px;

    font-family: "Poppins", sans-serif;

    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(86, 197, 232, 0.12),
            transparent 24%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(33, 200, 154, 0.11),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #041925 0%,
            #062c42 48%,
            #051c2b 100%
        );
}

.cc-trust-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 62px 62px;

    pointer-events: none;
}

.cc-trust-section::after {
    content: "";

    position: absolute;
    top: -170px;
    left: 50%;

    width: 560px;
    height: 560px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(86, 197, 232, 0.13),
            transparent 68%
        );

    transform: translateX(-50%);

    pointer-events: none;
}

.cc-trust-section .container {
    position: relative;
    z-index: 3;
}


/* =========================================
   DECORATIONS
========================================= */

.cc-trust-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.cc-trust-decoration-one {
    top: 90px;
    left: -85px;

    width: 190px;
    height: 190px;

    border: 30px solid rgba(86, 197, 232, 0.07);
}

.cc-trust-decoration-two {
    right: -75px;
    bottom: 100px;

    width: 165px;
    height: 165px;

    border: 25px solid rgba(255, 207, 63, 0.06);
}


/* =========================================
   SECTION HEADING
========================================= */

.cc-trust-heading {
    position: relative;

    max-width: 820px;

    margin: 0 auto 65px;
}

.cc-trust-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;
    padding: 9px 15px;

    border: 1px solid rgba(155, 232, 247, 0.2);
    border-radius: 50px;

    color: var(--cc-sky);
    background: rgba(86, 197, 232, 0.08);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.cc-trust-kicker i {
    color: var(--cc-yellow);
}

.cc-trust-heading h2 {
    max-width: 800px;

    margin: 0 auto 20px;

    color: var(--cc-white);

    font-size:
        clamp(
            36px,
            4.5vw,
            59px
        );

    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -2px;
}

.cc-trust-heading p {
    max-width: 690px;

    margin: 0 auto;

    color: var(--cc-text-light);

    font-size: 15px;
    line-height: 1.85;
}

.cc-trust-heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    width: 200px;

    margin: 25px auto 0;
}

.cc-trust-heading-line span {
    flex: 1;

    height: 2px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cc-light-blue)
        );
}

.cc-trust-heading-line span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--cc-light-blue),
            transparent
        );
}

.cc-trust-heading-line i {
    color: var(--cc-yellow);

    font-size: 14px;
}


/* =========================================
   FEATURE LISTS
========================================= */

.cc-trust-feature-list {
    display: grid;
    gap: 20px;
}

.cc-trust-feature-card {
    position: relative;
    overflow: hidden;

    min-height: 165px;

    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 24px 21px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.085),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.13);

    backdrop-filter: blur(12px);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.cc-trust-feature-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            var(--cc-light-blue),
            var(--cc-green)
        );

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform 0.35s ease;
}

.cc-trust-feature-card::after {
    content: "";

    position: absolute;
    top: -70px;
    right: -70px;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background: rgba(86, 197, 232, 0.06);

    transition:
        transform 0.45s ease,
        background 0.45s ease;
}

.cc-trust-feature-card:hover {
    border-color: rgba(86, 197, 232, 0.28);

    background:
        linear-gradient(
            135deg,
            rgba(86, 197, 232, 0.13),
            rgba(255, 255, 255, 0.04)
        );

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.23);

    transform: translateY(-8px);
}

.cc-trust-feature-card:hover::before {
    transform: scaleY(1);
}

.cc-trust-feature-card:hover::after {
    background: rgba(86, 197, 232, 0.11);

    transform: scale(1.18);
}

.cc-trust-feature-number {
    position: absolute;
    top: 12px;
    right: 15px;

    color: rgba(255, 255, 255, 0.08);

    font-size: 43px;
    font-weight: 900;
    line-height: 1;
}

.cc-trust-feature-icon {
    position: relative;
    z-index: 2;

    flex: 0 0 56px;

    width: 56px;
    height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-light-blue),
            var(--cc-green)
        );

    font-size: 20px;

    box-shadow:
        0 13px 28px rgba(0, 0, 0, 0.16);

    transition:
        transform 0.4s ease;
}

.cc-trust-feature-card:nth-child(2) .cc-trust-feature-icon {
    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );
}

.cc-trust-feature-card:nth-child(3) .cc-trust-feature-icon {
    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            var(--cc-blue),
            var(--cc-navy)
        );
}

.cc-trust-feature-card:hover .cc-trust-feature-icon {
    transform:
        rotate(-7deg)
        scale(1.08);
}

.cc-trust-feature-content {
    position: relative;
    z-index: 2;
}

.cc-trust-feature-content h3 {
    margin: 2px 0 9px;

    color: var(--cc-white);

    font-size: 17px;
    font-weight: 800;
}

.cc-trust-feature-content p {
    margin: 0;

    color: var(--cc-text-light);

    font-size: 11px;
    line-height: 1.75;
}


/* =========================================
   CENTER IMAGE
========================================= */

.cc-trust-center {
    position: relative;

    max-width: 430px;

    margin: 0 auto;

    padding: 30px 0 72px;
}

.cc-trust-image {
    position: relative;

    height: 570px;

    border: 8px solid rgba(255, 255, 255, 0.11);
    border-radius: 215px 215px 30px 30px;

    overflow: hidden;

    background: var(--cc-dark);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.04);

    isolation: isolate;
}

.cc-trust-image::before {
    content: "";

    position: absolute;
    inset: 14px;

    z-index: 3;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 200px 200px 22px 22px;

    pointer-events: none;
}

.cc-trust-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.85s ease;
}

.cc-trust-image:hover img {
    transform: scale(1.07);
}

.cc-trust-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(5, 28, 43, 0.93) 100%
        );
}

.cc-trust-image-caption {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 33px;

    z-index: 4;
}

.cc-trust-image-caption span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 9px;

    color: var(--cc-light-blue);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cc-trust-image-caption strong {
    display: block;

    color: var(--cc-white);

    font-size: 19px;
    line-height: 1.4;
}


/* =========================================
   IMAGE DECORATIVE RINGS
========================================= */

.cc-trust-image-ring {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}

.cc-ring-one {
    top: 2px;
    right: -28px;

    width: 120px;
    height: 120px;

    border: 22px solid rgba(86, 197, 232, 0.1);
}

.cc-ring-two {
    left: -30px;
    bottom: 85px;

    width: 75px;
    height: 75px;

    border: 14px solid rgba(255, 207, 63, 0.15);
}


/* =========================================
   RATING BADGE
========================================= */

.cc-trust-rating {
    position: absolute;
    top: 80px;
    left: -38px;

    z-index: 8;

    min-width: 180px;

    padding: 14px 17px;

    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.22);

    backdrop-filter: blur(12px);

    animation:
        ccTrustFloat 4s ease-in-out infinite;
}

.cc-trust-stars {
    display: flex;
    gap: 3px;

    margin-bottom: 5px;

    color: var(--cc-yellow);

    font-size: 11px;
}

.cc-trust-rating > span {
    color: var(--cc-dark);

    font-size: 11px;
    font-weight: 800;
}


/* =========================================
   PHONE CARD
========================================= */

.cc-trust-phone-card {
    position: absolute;
    left: 50%;
    bottom: 17px;

    z-index: 9;

    width: calc(100% - 45px);
    min-height: 86px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 17px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;

    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            rgba(7, 63, 97, 0.98),
            rgba(5, 28, 43, 0.98)
        );

    text-decoration: none;

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.32);

    transform: translateX(-50%);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.cc-trust-phone-card:hover {
    color: var(--cc-white);

    box-shadow:
        0 30px 65px rgba(0, 0, 0, 0.42);

    transform:
        translateX(-50%)
        translateY(-6px);
}

.cc-trust-phone-icon {
    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-size: 19px;
}

.cc-trust-phone-content {
    display: flex;
    flex-direction: column;
}

.cc-trust-phone-content small {
    margin-bottom: 4px;

    color: var(--cc-text-light);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.cc-trust-phone-content strong {
    color: var(--cc-white);

    font-size: 17px;
    font-weight: 800;
}

.cc-trust-phone-card > i {
    margin-left: auto;

    color: var(--cc-light-blue);

    font-size: 13px;

    transition:
        transform 0.3s ease;
}

.cc-trust-phone-card:hover > i {
    transform: translateX(5px);
}


/* =========================================
   BOTTOM STATS
========================================= */

.cc-trust-stats {
    margin-top: 70px;
    padding: 22px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 23px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.17);

    backdrop-filter: blur(13px);
}

.cc-trust-stat {
    min-height: 88px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 16px;

    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.cc-trust-stats .col-lg-3:last-child .cc-trust-stat {
    border-right: 0;
}

.cc-trust-stat-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-light-blue),
            var(--cc-green)
        );

    font-size: 16px;
}

.cc-trust-stat > div {
    display: flex;
    flex-direction: column;
}

.cc-trust-stat strong {
    margin-bottom: 3px;

    color: var(--cc-white);

    font-size: 14px;
    font-weight: 800;
}

.cc-trust-stat small {
    color: var(--cc-text-light);

    font-size: 9px;
    letter-spacing: 0.4px;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes ccTrustFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199.98px) {

    .cc-trust-feature-card {
        min-height: 180px;

        padding-left: 18px;
        padding-right: 18px;
    }

    .cc-trust-feature-icon {
        flex-basis: 50px;

        width: 50px;
        height: 50px;
    }

    .cc-trust-center {
        max-width: 390px;
    }

    .cc-trust-image {
        height: 540px;
    }

    .cc-trust-rating {
        left: -18px;
    }

}


@media (max-width: 991.98px) {

    .cc-trust-section {
        padding: 90px 0;
    }

    .cc-trust-heading {
        margin-bottom: 50px;
    }

    .cc-trust-feature-list {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .cc-trust-feature-card {
        min-height: 220px;

        flex-direction: column;

        text-align: center;
    }

    .cc-trust-feature-icon {
        margin: 0 auto;
    }

    .cc-trust-center {
        max-width: 500px;

        margin-top: 20px;
        margin-bottom: 20px;
    }

    .cc-trust-image {
        height: 620px;
    }

    .cc-trust-rating {
        left: -20px;
    }

    .cc-trust-stats {
        margin-top: 50px;
    }

    .cc-trust-stat {
        border-right: 0;
    }

}


@media (max-width: 767.98px) {

    .cc-trust-section {
        padding: 75px 0;
    }

    .cc-trust-heading h2 {
        font-size: 38px;
    }

    .cc-trust-feature-list {
        grid-template-columns: 1fr;
    }

    .cc-trust-feature-card {
        min-height: auto;

        flex-direction: row;

        text-align: left;
    }

    .cc-trust-feature-icon {
        margin: 0;
    }

    .cc-trust-center {
        max-width: 440px;
    }

    .cc-trust-image {
        height: 560px;
    }

    .cc-trust-rating {
        left: 10px;
    }

}


@media (max-width: 575.98px) {

    .cc-trust-section {
        padding: 65px 0;
    }

    .cc-trust-heading {
        margin-bottom: 38px;
    }

    .cc-trust-kicker {
        font-size: 8px;
    }

    .cc-trust-heading h2 {
        font-size: 31px;
        letter-spacing: -1.2px;
    }

    .cc-trust-heading p {
        font-size: 13px;
    }

    .cc-trust-feature-card {
        padding: 20px 17px;
    }

    .cc-trust-feature-icon {
        flex-basis: 47px;

        width: 47px;
        height: 47px;

        font-size: 17px;
    }

    .cc-trust-feature-content h3 {
        font-size: 15px;
    }

    .cc-trust-center {
        padding-bottom: 65px;
    }

    .cc-trust-image {
        height: 470px;

        border-width: 6px;
        border-radius: 150px 150px 24px 24px;
    }

    .cc-trust-image::before {
        inset: 10px;

        border-radius: 140px 140px 17px 17px;
    }

    .cc-trust-image-caption {
        left: 22px;
        right: 22px;
        bottom: 28px;
    }

    .cc-trust-image-caption strong {
        font-size: 16px;
    }

    .cc-trust-rating {
        top: 55px;
        left: 8px;

        min-width: 155px;

        padding: 11px 13px;
    }

    .cc-trust-phone-card {
        width: calc(100% - 20px);

        padding-left: 12px;
        padding-right: 12px;
    }

    .cc-trust-phone-icon {
        flex-basis: 48px;

        width: 48px;
        height: 48px;
    }

    .cc-trust-phone-content strong {
        font-size: 15px;
    }

    .cc-ring-one,
    .cc-ring-two {
        display: none;
    }

    .cc-trust-stats {
        padding: 12px;
    }

    .cc-trust-stat {
        min-height: 82px;

        padding: 10px 8px;
    }

    .cc-trust-stat-icon {
        flex-basis: 40px;

        width: 40px;
        height: 40px;
    }

    .cc-trust-stat strong {
        font-size: 12px;
    }

    .cc-trust-stat small {
        font-size: 8px;
    }

}


/* =========================================
   SECTION 4
   STAIN REMOVAL & CLEANING TECHNOLOGY
========================================= */

.cc-stain-section {
    position: relative;
    overflow: hidden;

    padding: 115px 0;

    font-family: "Poppins", sans-serif;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(86, 197, 232, 0.11),
            transparent 26%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(33, 200, 154, 0.1),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #f8fdff 0%,
            #ffffff 47%,
            #eef9fb 100%
        );
}

.cc-stain-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(7, 63, 97, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(7, 63, 97, 0.025) 1px,
            transparent 1px
        );

    background-size: 58px 58px;

    pointer-events: none;
}

.cc-stain-section .container {
    position: relative;
    z-index: 3;
}


/* =========================================
   DECORATIVE SHAPES
========================================= */

.cc-stain-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.cc-stain-shape-one {
    top: -100px;
    left: -90px;

    width: 260px;
    height: 260px;

    border: 38px solid rgba(86, 197, 232, 0.08);
}

.cc-stain-shape-two {
    right: -85px;
    bottom: -80px;

    width: 220px;
    height: 220px;

    border: 32px solid rgba(33, 200, 154, 0.07);
}


/* =========================================
   MAIN HEADING
========================================= */

.cc-stain-heading {
    max-width: 880px;

    margin: 0 auto 60px;
}

.cc-stain-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;
    padding: 9px 15px;

    border: 1px solid rgba(13, 99, 140, 0.13);
    border-radius: 50px;

    color: var(--cc-blue);

    background: rgba(86, 197, 232, 0.09);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cc-stain-kicker i {
    color: var(--cc-green-dark);
}

.cc-stain-heading h2 {
    margin: 0;

    color: var(--cc-dark);

    font-size:
        clamp(
            38px,
            4.8vw,
            62px
        );

    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2.4px;
}

.cc-stain-heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    width: 230px;

    margin: 24px auto 0;
}

.cc-stain-heading-line span {
    flex: 1;

    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cc-blue)
        );
}

.cc-stain-heading-line span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--cc-blue),
            transparent
        );
}

.cc-stain-heading-line i {
    color: var(--cc-yellow);

    font-size: 14px;
}


/* =========================================
   TOP CONTENT CARD
========================================= */

.cc-stain-content-card {
    position: relative;
    overflow: hidden;

    height: 100%;
    min-height: 470px;

    padding: 44px 42px;

    border: 1px solid rgba(13, 99, 140, 0.11);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.97),
            rgba(239, 250, 252, 0.97)
        );

    box-shadow:
        0 28px 65px rgba(5, 28, 43, 0.1);
}

.cc-stain-content-card::before {
    content: "";

    position: absolute;
    top: -90px;
    right: -90px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(86, 197, 232, 0.16),
            transparent 68%
        );
}

.cc-stain-content-card::after {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 5px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            var(--cc-blue),
            var(--cc-green)
        );
}

.cc-stain-content-number {
    position: absolute;
    top: 20px;
    right: 26px;

    color: rgba(7, 63, 97, 0.055);

    font-size: 85px;
    font-weight: 900;
    line-height: 1;
}

.cc-stain-content-icon {
    position: relative;
    z-index: 2;

    width: 62px;
    height: 62px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 18px;

    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            var(--cc-blue),
            var(--cc-navy)
        );

    font-size: 22px;

    box-shadow:
        0 15px 32px rgba(7, 63, 97, 0.22);
}

.cc-stain-content-card p {
    position: relative;
    z-index: 2;

    margin: 0 0 22px;

    color: #5b7079;

    font-size: 15px;
    line-height: 1.95;
}

.cc-stain-content-card p:last-of-type {
    margin-bottom: 0;
}

.cc-stain-content-footer {
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}

.cc-stain-content-footer span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 13px;

    border: 1px solid rgba(13, 99, 140, 0.1);
    border-radius: 50px;

    color: var(--cc-dark);
    background: var(--cc-white);

    font-size: 10px;
    font-weight: 750;

    box-shadow:
        0 8px 20px rgba(5, 28, 43, 0.05);
}

.cc-stain-content-footer i {
    color: var(--cc-green);
}


/* =========================================
   RIGHT HIGHLIGHT CARD
========================================= */

.cc-stain-highlight {
    position: relative;
    overflow: hidden;

    height: 100%;
    min-height: 470px;

    padding: 40px 35px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;

    color: var(--cc-white);

    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(86, 197, 232, 0.16),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            var(--cc-navy),
            var(--cc-dark)
        );

    box-shadow:
        0 30px 70px rgba(5, 28, 43, 0.25);
}

.cc-stain-highlight::before {
    content: "";

    position: absolute;
    right: -45px;
    bottom: -55px;

    width: 170px;
    height: 170px;

    border: 28px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.cc-stain-highlight-label {
    display: inline-flex;

    margin-bottom: 28px;
    padding: 8px 13px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;

    color: var(--cc-sky);
    background: rgba(255, 255, 255, 0.06);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.cc-stain-highlight-icon {
    width: 66px;
    height: 66px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 19px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-size: 24px;

    box-shadow:
        0 16px 35px rgba(255, 159, 28, 0.22);
}

.cc-stain-highlight h3 {
    max-width: 420px;

    margin: 0 0 25px;

    color: var(--cc-white);

    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1px;
}

.cc-stain-highlight-points {
    display: grid;
    gap: 12px;

    margin-bottom: 30px;
}

.cc-stain-highlight-points span {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--cc-text-light);

    font-size: 12px;
    font-weight: 600;
}

.cc-stain-highlight-points i {
    width: 25px;
    height: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--cc-dark);
    background: var(--cc-green);

    font-size: 10px;
}

.cc-stain-call {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 72px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 15px 10px 10px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;

    color: var(--cc-white);
    background: rgba(255, 255, 255, 0.07);

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.cc-stain-call:hover {
    color: var(--cc-white);

    border-color: rgba(86, 197, 232, 0.3);
    background: rgba(86, 197, 232, 0.12);

    transform: translateY(-4px);
}

.cc-stain-call-icon {
    flex: 0 0 51px;

    width: 51px;
    height: 51px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: var(--cc-dark);
    background: var(--cc-light-blue);

    font-size: 18px;
}

.cc-stain-call > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.cc-stain-call small {
    margin-bottom: 4px;

    color: var(--cc-text-light);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cc-stain-call strong {
    color: var(--cc-white);

    font-size: 16px;
    font-weight: 800;
}

.cc-stain-call > i {
    margin-left: auto;

    color: var(--cc-yellow);

    font-size: 13px;

    transition: transform 0.3s ease;
}

.cc-stain-call:hover > i {
    transform: translateX(5px);
}


/* =========================================
   TECHNOLOGY HEADING
========================================= */

.cc-technology-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 50px;

    align-items: center;

    margin: 90px 0 38px;
}

.cc-technology-title {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.cc-technology-icon {
    flex: 0 0 64px;

    width: 64px;
    height: 64px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            var(--cc-blue),
            var(--cc-navy)
        );

    font-size: 22px;

    box-shadow:
        0 15px 32px rgba(7, 63, 97, 0.2);
}

.cc-technology-title > div {
    display: flex;
    flex-direction: column;
}

.cc-technology-kicker {
    margin-bottom: 8px;

    color: var(--cc-blue);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cc-technology-title h3 {
    margin: 0;

    color: var(--cc-dark);

    font-size:
        clamp(
            30px,
            3.5vw,
            47px
        );

    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.6px;
}

.cc-technology-heading > p {
    margin: 0;

    color: #5f737c;

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================
   TECHNOLOGY GRID
========================================= */

.cc-technology-grid {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
    gap: 15px;
}

.cc-technology-card {
    position: relative;
    overflow: hidden;

    min-height: 220px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 24px 20px;

    border: 1px solid rgba(13, 99, 140, 0.1);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(238, 249, 251, 0.98)
        );

    box-shadow:
        0 16px 38px rgba(5, 28, 43, 0.075);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.cc-technology-card::before {
    content: "";

    position: absolute;
    top: -80px;
    right: -80px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: rgba(86, 197, 232, 0.08);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.cc-technology-card:hover {
    border-color: rgba(13, 99, 140, 0.22);

    box-shadow:
        0 24px 50px rgba(5, 28, 43, 0.13);

    transform: translateY(-8px);
}

.cc-technology-card:hover::before {
    background: rgba(86, 197, 232, 0.14);

    transform: scale(1.2);
}

.cc-technology-number {
    position: absolute;
    top: 17px;
    right: 18px;

    color: rgba(7, 63, 97, 0.08);

    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.cc-technology-card-icon {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 42px;

    border-radius: 16px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-light-blue),
            var(--cc-green)
        );

    font-size: 20px;

    box-shadow:
        0 13px 28px rgba(7, 63, 97, 0.12);

    transition: transform 0.35s ease;
}

.cc-technology-card:nth-child(2) .cc-technology-card-icon {
    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );
}

.cc-technology-card:nth-child(3) .cc-technology-card-icon {
    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            var(--cc-blue),
            var(--cc-navy)
        );
}

.cc-technology-card:nth-child(4) .cc-technology-card-icon {
    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            var(--cc-green),
            var(--cc-green-dark)
        );
}

.cc-technology-card:nth-child(5) .cc-technology-card-icon {
    background:
        linear-gradient(
            135deg,
            var(--cc-sky),
            var(--cc-light-blue)
        );
}

.cc-technology-card:hover .cc-technology-card-icon {
    transform:
        rotate(-7deg)
        scale(1.08);
}

.cc-technology-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--cc-dark);

    font-size: 12px;
    font-weight: 750;
    line-height: 1.7;
}


/* =========================================
   CLOSING CARD
========================================= */

.cc-stain-closing {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 22px;

    align-items: center;

    margin-top: 45px;
    padding: 26px 28px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            var(--cc-navy),
            var(--cc-dark)
        );

    box-shadow:
        0 25px 60px rgba(5, 28, 43, 0.2);
}

.cc-stain-closing::before {
    content: "";

    position: absolute;
    top: -70px;
    right: 220px;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(86, 197, 232, 0.13),
            transparent 70%
        );
}

.cc-stain-closing-icon {
    position: relative;
    z-index: 2;

    flex: 0 0 60px;

    width: 60px;
    height: 60px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-size: 22px;
}

.cc-stain-closing p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--cc-text-light);

    font-size: 13px;
    line-height: 1.8;
}

.cc-stain-estimate-btn {
    position: relative;
    z-index: 2;

    min-height: 66px;

    display: inline-flex;
    align-items: center;
    gap: 11px;

    padding: 9px 16px 9px 9px;

    border-radius: 15px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    text-decoration: none;

    box-shadow:
        0 15px 32px rgba(255, 159, 28, 0.2);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cc-stain-estimate-btn:hover {
    color: var(--cc-dark);

    transform: translateY(-4px);

    box-shadow:
        0 20px 40px rgba(255, 159, 28, 0.3);
}

.cc-stain-estimate-btn > span:first-child {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--cc-white);
    background: var(--cc-dark);

    font-size: 16px;
}

.cc-stain-estimate-btn > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.cc-stain-estimate-btn small {
    margin-bottom: 3px;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cc-stain-estimate-btn strong {
    font-size: 13px;
    font-weight: 800;
}

.cc-stain-estimate-btn > i {
    margin-left: 4px;

    font-size: 12px;

    transition: transform 0.3s ease;
}

.cc-stain-estimate-btn:hover > i {
    transform: translateX(4px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199.98px) {

    .cc-technology-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .cc-technology-card:nth-child(4),
    .cc-technology-card:nth-child(5) {
        min-height: 190px;
    }

}


@media (max-width: 991.98px) {

    .cc-stain-section {
        padding: 90px 0;
    }

    .cc-stain-content-card,
    .cc-stain-highlight {
        min-height: auto;
    }

    .cc-technology-heading {
        grid-template-columns: 1fr;
        gap: 22px;

        margin-top: 70px;

        text-align: center;
    }

    .cc-technology-title {
        justify-content: center;
    }

    .cc-technology-heading > p {
        max-width: 760px;

        margin: 0 auto;
    }

    .cc-stain-closing {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .cc-stain-estimate-btn {
        grid-column: 1 / -1;

        justify-self: center;
    }

}


@media (max-width: 767.98px) {

    .cc-stain-section {
        padding: 75px 0;
    }

    .cc-stain-heading {
        margin-bottom: 45px;
    }

    .cc-stain-heading h2 {
        font-size: 39px;
    }

    .cc-stain-content-card {
        padding: 35px 28px;
    }

    .cc-stain-highlight {
        padding: 35px 28px;
    }

    .cc-technology-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .cc-technology-card {
        min-height: 205px;
    }

    .cc-stain-closing {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .cc-stain-closing-icon {
        margin: 0 auto;
    }

    .cc-stain-estimate-btn {
        width: 100%;

        justify-content: flex-start;
    }

    .cc-stain-estimate-btn > i {
        margin-left: auto;
    }

}


@media (max-width: 575.98px) {

    .cc-stain-section {
        padding: 65px 0;
    }

    .cc-stain-kicker {
        font-size: 8px;
    }

    .cc-stain-heading h2 {
        font-size: 31px;
        letter-spacing: -1.2px;
    }

    .cc-stain-content-card {
        padding: 30px 21px;
    }

    .cc-stain-content-card p {
        font-size: 14px;
        line-height: 1.82;
    }

    .cc-stain-content-number {
        font-size: 65px;
    }

    .cc-stain-highlight {
        padding: 30px 22px;
    }

    .cc-stain-highlight h3 {
        font-size: 25px;
    }

    .cc-technology-title {
        flex-direction: column;

        align-items: center;
    }

    .cc-technology-title h3 {
        font-size: 30px;
    }

    .cc-technology-grid {
        grid-template-columns: 1fr;
    }

    .cc-technology-card {
        min-height: 180px;
    }

    .cc-technology-card-icon {
        margin-bottom: 30px;
    }

    .cc-stain-closing {
        padding: 24px 20px;
    }

}


/* =========================================
   SECTION 5
   LOCATION SERVICES & MAP
========================================= */

.cc-location-section {
    position: relative;
    overflow: hidden;

    padding: 115px 0;

    font-family: "Poppins", sans-serif;

    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(86, 197, 232, 0.13),
            transparent 27%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(33, 200, 154, 0.11),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #041925 0%,
            #062c42 50%,
            #051c2b 100%
        );
}

.cc-location-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    pointer-events: none;
}

.cc-location-section .container {
    position: relative;
    z-index: 3;
}


/* =========================================
   DECORATIVE SHAPES
========================================= */

.cc-location-shape {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}

.cc-location-shape-one {
    top: -95px;
    left: -110px;

    width: 280px;
    height: 280px;

    border: 42px solid rgba(86, 197, 232, 0.07);
}

.cc-location-shape-two {
    right: -90px;
    bottom: 130px;

    width: 210px;
    height: 210px;

    border: 32px solid rgba(255, 207, 63, 0.055);
}


/* =========================================
   SECTION HEADING
========================================= */

.cc-location-heading {
    max-width: 850px;

    margin: 0 auto 60px;
}

.cc-location-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;
    padding: 9px 15px;

    border: 1px solid rgba(155, 232, 247, 0.2);
    border-radius: 50px;

    color: var(--cc-sky);
    background: rgba(86, 197, 232, 0.08);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cc-location-kicker i {
    color: var(--cc-yellow);
}

.cc-location-heading h2 {
    margin: 0 0 20px;

    color: var(--cc-white);

    font-size:
        clamp(
            38px,
            4.8vw,
            61px
        );

    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -2.2px;
}

.cc-location-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: var(--cc-text-light);

    font-size: 14px;
    line-height: 1.85;
}

.cc-location-heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 220px;

    margin: 24px auto 0;
}

.cc-location-heading-line span {
    flex: 1;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cc-light-blue)
        );
}

.cc-location-heading-line span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--cc-light-blue),
            transparent
        );
}

.cc-location-heading-line i {
    color: var(--cc-yellow);

    font-size: 15px;
}


/* =========================================
   MAIN LOCATION WRAPPER
========================================= */

.cc-location-wrapper {
    position: relative;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.055);

    box-shadow:
        0 35px 85px rgba(0, 0, 0, 0.28);

    backdrop-filter: blur(12px);
}


/* =========================================
   LOCATION CONTENT
========================================= */

.cc-location-content {
    height: 100%;

    padding: 42px 37px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.025)
        );
}

.cc-location-address {
    display: flex;
    align-items: center;
    gap: 15px;

    padding-bottom: 27px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.cc-location-address-icon {
    flex: 0 0 62px;

    width: 62px;
    height: 62px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-size: 21px;

    box-shadow:
        0 15px 32px rgba(255, 159, 28, 0.2);
}

.cc-location-address > div {
    display: flex;
    flex-direction: column;
}

.cc-location-address small {
    margin-bottom: 5px;

    color: var(--cc-light-blue);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cc-location-address h3 {
    margin: 0 0 4px;

    color: var(--cc-white);

    font-size: 18px;
    font-weight: 800;
}

.cc-location-address p {
    margin: 0;

    color: var(--cc-text-light);

    font-size: 12px;
}


/* Intro */

.cc-location-intro {
    padding: 30px 0 25px;
}

.cc-location-intro > span {
    display: block;

    margin-bottom: 8px;

    color: var(--cc-green);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.cc-location-intro h3 {
    margin: 0 0 15px;

    color: var(--cc-white);

    font-size: 28px;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.8px;
}

.cc-location-intro p {
    margin: 0;

    color: var(--cc-text-light);

    font-size: 12px;
    line-height: 1.85;
}


/* =========================================
   LOCATION FEATURES
========================================= */

.cc-location-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.cc-location-feature {
    display: flex;
    align-items: center;
    gap: 10px;

    min-height: 78px;

    padding: 12px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.045);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.cc-location-feature:hover {
    border-color: rgba(86, 197, 232, 0.25);
    background: rgba(86, 197, 232, 0.1);

    transform: translateY(-4px);
}

.cc-location-feature > span {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-light-blue),
            var(--cc-green)
        );

    font-size: 15px;
}

.cc-location-feature:nth-child(2) > span,
.cc-location-feature:nth-child(4) > span {
    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );
}

.cc-location-feature > div {
    display: flex;
    flex-direction: column;
}

.cc-location-feature strong {
    margin-bottom: 3px;

    color: var(--cc-white);

    font-size: 11px;
    font-weight: 800;
}

.cc-location-feature small {
    color: var(--cc-text-light);

    font-size: 8px;
    line-height: 1.4;
}


/* =========================================
   LOCATION ACTIONS
========================================= */

.cc-location-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;

    margin-top: 25px;
}

.cc-location-phone,
.cc-location-estimate {
    min-height: 66px;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 9px 15px 9px 9px;

    border-radius: 15px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cc-location-phone {
    border: 1px solid rgba(255, 255, 255, 0.13);

    color: var(--cc-white);
    background: rgba(255, 255, 255, 0.06);
}

.cc-location-estimate {
    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    box-shadow:
        0 15px 32px rgba(255, 159, 28, 0.18);
}

.cc-location-phone:hover {
    color: var(--cc-white);

    background: rgba(86, 197, 232, 0.12);

    transform: translateY(-4px);
}

.cc-location-estimate:hover {
    color: var(--cc-dark);

    box-shadow:
        0 20px 40px rgba(255, 159, 28, 0.28);

    transform: translateY(-4px);
}

.cc-location-phone > span:first-child,
.cc-location-estimate > span:first-child {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 16px;
}

.cc-location-phone > span:first-child {
    color: var(--cc-dark);
    background: var(--cc-light-blue);
}

.cc-location-estimate > span:first-child {
    color: var(--cc-white);
    background: var(--cc-dark);
}

.cc-location-phone > span:nth-child(2),
.cc-location-estimate > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.cc-location-phone small,
.cc-location-estimate small {
    margin-bottom: 3px;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cc-location-phone small {
    color: var(--cc-text-light);
}

.cc-location-phone strong,
.cc-location-estimate strong {
    font-size: 14px;
    font-weight: 800;
}

.cc-location-estimate > i {
    margin-left: auto;

    font-size: 12px;

    transition: transform 0.3s ease;
}

.cc-location-estimate:hover > i {
    transform: translateX(4px);
}


/* =========================================
   MAP
========================================= */

.cc-location-map {
    position: relative;

    min-height: 680px;
    height: 100%;

    overflow: hidden;

    background: #dce8ec;
}

.cc-location-map iframe {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    filter:
        saturate(0.85)
        contrast(1.03);
}


/* Map floating card */

.cc-map-floating-card {
    position: absolute;
    left: 28px;
    bottom: 28px;

    z-index: 4;

    max-width: 330px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 17px;

    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 17px;

    background: rgba(255, 255, 255, 0.95);

    box-shadow:
        0 22px 50px rgba(5, 28, 43, 0.22);

    backdrop-filter: blur(12px);
}

.cc-map-card-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            var(--cc-blue),
            var(--cc-navy)
        );

    font-size: 17px;
}

.cc-map-floating-card > div {
    display: flex;
    flex-direction: column;
}

.cc-map-floating-card small {
    margin-bottom: 4px;

    color: var(--cc-blue);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cc-map-floating-card strong {
    color: var(--cc-dark);

    font-size: 12px;
    line-height: 1.5;
}


/* Map badge */

.cc-map-badge {
    position: absolute;
    top: 28px;
    right: 28px;

    z-index: 4;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 14px;

    border-radius: 14px;

    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            rgba(7, 63, 97, 0.96),
            rgba(5, 28, 43, 0.96)
        );

    box-shadow:
        0 15px 35px rgba(5, 28, 43, 0.24);
}

.cc-map-badge > i {
    color: var(--cc-yellow);

    font-size: 18px;
}

.cc-map-badge > span {
    display: flex;
    flex-direction: column;

    font-size: 12px;
    font-weight: 800;
}

.cc-map-badge small {
    margin-top: 2px;

    color: var(--cc-text-light);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


/* =========================================
   ZIP SECTION
========================================= */

.cc-zip-section {
    margin-top: 34px;
    padding: 30px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.16);

    backdrop-filter: blur(12px);
}

.cc-zip-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    gap: 40px;

    align-items: center;

    margin-bottom: 27px;
}

.cc-zip-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cc-zip-title-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-size: 20px;
}

.cc-zip-title > div {
    display: flex;
    flex-direction: column;
}

.cc-zip-title small {
    margin-bottom: 5px;

    color: var(--cc-light-blue);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cc-zip-title h3 {
    margin: 0;

    color: var(--cc-white);

    font-size: 27px;
    font-weight: 800;
}

.cc-zip-header > p {
    margin: 0;

    color: var(--cc-text-light);

    font-size: 12px;
    line-height: 1.8;
}


/* ZIP grid */

.cc-zip-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.cc-zip-card {
    position: relative;
    overflow: hidden;

    min-height: 90px;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 13px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.045);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.cc-zip-card::before {
    content: "";

    position: absolute;
    top: -40px;
    right: -40px;

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: rgba(86, 197, 232, 0.06);
}

.cc-zip-card:hover,
.cc-zip-card.active {
    border-color: rgba(86, 197, 232, 0.28);
    background: rgba(86, 197, 232, 0.11);

    transform: translateY(-5px);
}

.cc-zip-icon {
    position: relative;
    z-index: 2;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-light-blue),
            var(--cc-green)
        );

    font-size: 15px;
}

.cc-zip-card.active .cc-zip-icon {
    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );
}

.cc-zip-card > span:last-child {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
}

.cc-zip-card strong {
    margin-bottom: 3px;

    color: var(--cc-white);

    font-size: 16px;
    font-weight: 800;
}

.cc-zip-card small {
    color: var(--cc-text-light);

    font-size: 8px;
    line-height: 1.4;
}


/* =========================================
   BOTTOM LOCATION CTA
========================================= */

.cc-location-bottom {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;

    align-items: center;

    margin-top: 25px;
    padding: 22px 25px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(13, 99, 140, 0.95),
            rgba(7, 63, 97, 0.95)
        );

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.18);
}

.cc-location-bottom::before {
    content: "";

    position: absolute;
    top: -65px;
    right: 230px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.09),
            transparent 70%
        );
}

.cc-location-bottom-icon {
    position: relative;
    z-index: 2;

    flex: 0 0 56px;

    width: 56px;
    height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-size: 20px;
}

.cc-location-bottom > div {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
}

.cc-location-bottom small {
    margin-bottom: 5px;

    color: var(--cc-sky);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cc-location-bottom strong {
    color: var(--cc-white);

    font-size: 13px;
    line-height: 1.6;
}

.cc-location-bottom > a {
    position: relative;
    z-index: 2;

    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 10px 18px;

    border-radius: 13px;

    color: var(--cc-dark);

    background: var(--cc-white);

    font-size: 11px;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.cc-location-bottom > a:hover {
    color: var(--cc-dark);
    background: var(--cc-yellow);

    transform: translateY(-4px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199.98px) {

    .cc-location-content {
        padding-left: 29px;
        padding-right: 29px;
    }

    .cc-location-map {
        min-height: 700px;
    }

    .cc-zip-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 991.98px) {

    .cc-location-section {
        padding: 90px 0;
    }

    .cc-location-content {
        padding: 40px 35px;
    }

    .cc-location-map {
        min-height: 520px;
    }

    .cc-zip-header {
        grid-template-columns: 1fr;
        gap: 15px;

        text-align: center;
    }

    .cc-zip-title {
        justify-content: center;
    }

    .cc-zip-header > p {
        max-width: 650px;

        margin: 0 auto;
    }

    .cc-location-bottom {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .cc-location-bottom > a {
        grid-column: 1 / -1;

        justify-self: center;
    }

}


@media (max-width: 767.98px) {

    .cc-location-section {
        padding: 75px 0;
    }

    .cc-location-heading {
        margin-bottom: 45px;
    }

    .cc-location-heading h2 {
        font-size: 39px;
    }

    .cc-location-content {
        padding: 34px 27px;
    }

    .cc-location-map {
        min-height: 460px;
    }

    .cc-zip-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .cc-location-bottom {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .cc-location-bottom-icon {
        margin: 0 auto;
    }

    .cc-location-bottom > a {
        width: 100%;
    }

}


@media (max-width: 575.98px) {

    .cc-location-section {
        padding: 65px 0;
    }

    .cc-location-kicker {
        font-size: 8px;
    }

    .cc-location-heading h2 {
        font-size: 31px;
        letter-spacing: -1.2px;
    }

    .cc-location-content {
        padding: 29px 20px;
    }

    .cc-location-address {
        align-items: flex-start;
    }

    .cc-location-address-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;
    }

    .cc-location-address h3 {
        font-size: 15px;
    }

    .cc-location-intro h3 {
        font-size: 24px;
    }

    .cc-location-features {
        grid-template-columns: 1fr;
    }

    .cc-location-map {
        min-height: 420px;
    }

    .cc-map-floating-card {
        left: 14px;
        right: 14px;
        bottom: 14px;

        max-width: none;
    }

    .cc-map-badge {
        top: 14px;
        right: 14px;
    }

    .cc-zip-section {
        padding: 23px 17px;
    }

    .cc-zip-title {
        flex-direction: column;

        text-align: center;
    }

    .cc-zip-title h3 {
        font-size: 23px;
    }

    .cc-zip-grid {
        grid-template-columns: 1fr;
    }

    .cc-zip-card {
        min-height: 78px;
    }

    .cc-location-bottom {
        padding: 22px 18px;
    }

}


/* =========================================
   FAQ SECTION
========================================= */

.cc-faq-section {
    position: relative;
    overflow: hidden;

    padding: 115px 0;

    font-family: "Poppins", sans-serif;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(86, 197, 232, 0.12),
            transparent 27%
        ),
        radial-gradient(
            circle at 94% 85%,
            rgba(33, 200, 154, 0.1),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f7fcfe 0%,
            #ffffff 48%,
            #edf8fb 100%
        );
}

.cc-faq-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(7, 63, 97, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(7, 63, 97, 0.025) 1px,
            transparent 1px
        );

    background-size: 58px 58px;

    pointer-events: none;
}

.cc-faq-section .container {
    position: relative;
    z-index: 3;
}


/* =========================================
   DECORATIVE SHAPES
========================================= */

.cc-faq-shape {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}

.cc-faq-shape-one {
    top: -105px;
    left: -100px;

    width: 270px;
    height: 270px;

    border: 42px solid rgba(86, 197, 232, 0.08);
}

.cc-faq-shape-two {
    right: -85px;
    bottom: -90px;

    width: 220px;
    height: 220px;

    border: 34px solid rgba(33, 200, 154, 0.07);
}


/* =========================================
   FAQ INTRODUCTION
========================================= */

.cc-faq-intro {
    position: sticky;
    top: 35px;

    max-width: 510px;
}

.cc-faq-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;
    padding: 9px 15px;

    border: 1px solid rgba(13, 99, 140, 0.13);
    border-radius: 50px;

    color: var(--cc-blue);
    background: rgba(86, 197, 232, 0.09);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cc-faq-kicker i {
    color: var(--cc-green-dark);
}

.cc-faq-intro h2 {
    margin: 0 0 21px;

    color: var(--cc-dark);

    font-size:
        clamp(
            38px,
            4.4vw,
            58px
        );

    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -2px;
}

.cc-faq-intro > p {
    max-width: 490px;

    margin: 0;

    color: #5d717a;

    font-size: 14px;
    line-height: 1.9;
}

.cc-faq-divider {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 160px;

    margin: 25px 0 31px;
}

.cc-faq-divider span {
    flex: 1;

    height: 3px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--cc-blue),
            var(--cc-light-blue)
        );
}

.cc-faq-divider i {
    color: var(--cc-yellow);

    font-size: 14px;
}


/* =========================================
   FAQ CONTACT CARD
========================================= */

.cc-faq-contact-card {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 22px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 21px;

    background:
        radial-gradient(
            circle at 95% 5%,
            rgba(86, 197, 232, 0.17),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            var(--cc-navy),
            var(--cc-dark)
        );

    box-shadow:
        0 24px 55px rgba(5, 28, 43, 0.2);
}

.cc-faq-contact-card::before {
    content: "";

    position: absolute;
    right: -40px;
    bottom: -55px;

    width: 140px;
    height: 140px;

    border: 24px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.cc-faq-contact-icon {
    position: relative;
    z-index: 2;

    flex: 0 0 65px;

    width: 65px;
    height: 65px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-size: 23px;

    box-shadow:
        0 15px 32px rgba(255, 159, 28, 0.18);
}

.cc-faq-contact-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
}

.cc-faq-contact-content small {
    margin-bottom: 5px;

    color: var(--cc-light-blue);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cc-faq-contact-content strong {
    margin-bottom: 8px;

    color: var(--cc-white);

    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.cc-faq-contact-content a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--cc-yellow);

    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.cc-faq-contact-content a:hover {
    color: var(--cc-white);
}


/* =========================================
   FREE ESTIMATE BUTTON
========================================= */

.cc-faq-estimate-btn {
    min-height: 68px;

    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 15px;
    padding: 9px 17px 9px 9px;

    border-radius: 16px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    text-decoration: none;

    box-shadow:
        0 17px 36px rgba(255, 159, 28, 0.2);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cc-faq-estimate-btn:hover {
    color: var(--cc-dark);

    transform: translateY(-4px);

    box-shadow:
        0 22px 45px rgba(255, 159, 28, 0.3);
}

.cc-faq-estimate-btn > span:first-child {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: var(--cc-white);
    background: var(--cc-dark);

    font-size: 17px;
}

.cc-faq-estimate-btn > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.cc-faq-estimate-btn small {
    margin-bottom: 3px;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cc-faq-estimate-btn strong {
    font-size: 14px;
    font-weight: 800;
}

.cc-faq-estimate-btn > i {
    margin-left: auto;

    font-size: 12px;

    transition: transform 0.3s ease;
}

.cc-faq-estimate-btn:hover > i {
    transform: translateX(5px);
}


/* =========================================
   FAQ ACCORDION
========================================= */

.cc-faq-accordion {
    display: grid;
    gap: 16px;
}

.cc-faq-item {
    position: relative;
    overflow: hidden;

    margin: 0;

    border: 1px solid rgba(13, 99, 140, 0.1) !important;
    border-radius: 20px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(239, 250, 252, 0.98)
        );

    box-shadow:
        0 18px 45px rgba(5, 28, 43, 0.075);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.cc-faq-item:hover {
    border-color: rgba(13, 99, 140, 0.22) !important;

    box-shadow:
        0 24px 55px rgba(5, 28, 43, 0.12);

    transform: translateY(-3px);
}

.cc-faq-item::before {
    content: "";

    position: absolute;
    top: -70px;
    right: -70px;

    width: 145px;
    height: 145px;

    border-radius: 50%;

    background: rgba(86, 197, 232, 0.07);

    pointer-events: none;
}

.cc-faq-button {
    position: relative;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;

    align-items: center;

    min-height: 105px;

    padding: 20px 22px !important;

    border: 0 !important;
    border-radius: 20px !important;

    color: var(--cc-dark) !important;
    background: transparent !important;

    box-shadow: none !important;
}

.cc-faq-button:not(.collapsed) {
    color: var(--cc-white) !important;

    background:
        linear-gradient(
            135deg,
            var(--cc-blue),
            var(--cc-navy)
        ) !important;

    border-radius: 20px 20px 0 0 !important;
}

.cc-faq-button::after {
    display: none;
}

.cc-faq-number {
    position: relative;
    z-index: 2;

    flex: 0 0 54px;

    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            var(--cc-blue),
            var(--cc-navy)
        );

    font-size: 13px;
    font-weight: 900;

    box-shadow:
        0 12px 26px rgba(7, 63, 97, 0.16);
}

.cc-faq-button:not(.collapsed) .cc-faq-number {
    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );
}

.cc-faq-question {
    position: relative;
    z-index: 2;

    color: inherit;

    font-size: 16px;
    font-weight: 800;
    line-height: 1.55;
    text-align: left;
}


/* Custom plus and minus */

.cc-faq-toggle-icon {
    position: relative;
    z-index: 2;

    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(13, 99, 140, 0.12);
    border-radius: 50%;

    background: var(--cc-white);

    box-shadow:
        0 10px 24px rgba(5, 28, 43, 0.08);
}

.cc-faq-toggle-icon span {
    position: absolute;

    width: 15px;
    height: 2px;

    border-radius: 5px;

    background: var(--cc-blue);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.cc-faq-toggle-icon span:last-child {
    transform: rotate(90deg);
}

.cc-faq-button:not(.collapsed)
.cc-faq-toggle-icon span:last-child {
    opacity: 0;

    transform: rotate(0deg);
}

.cc-faq-button:not(.collapsed)
.cc-faq-toggle-icon {
    border-color: rgba(255, 255, 255, 0.2);

    background: rgba(255, 255, 255, 0.12);
}

.cc-faq-button:not(.collapsed)
.cc-faq-toggle-icon span {
    background: var(--cc-white);
}


/* FAQ answer */

.cc-faq-answer {
    position: relative;

    padding: 27px 30px 30px 92px !important;

    border-top: 1px solid rgba(13, 99, 140, 0.08);

    background: var(--cc-white);
}

.cc-faq-answer::before {
    content: "";

    position: absolute;
    top: 31px;
    left: 46px;

    width: 24px;
    height: 3px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--cc-blue),
            var(--cc-green)
        );
}

.cc-faq-answer p {
    margin: 0 0 14px;

    color: #5b7079;

    font-size: 14px;
    line-height: 1.95;
}

.cc-faq-answer p:last-child {
    margin-bottom: 0;
}


/* =========================================
   BOTTOM TRUST BAR
========================================= */

.cc-faq-trust-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;

    margin-top: 20px;
    padding: 15px;

    border: 1px solid rgba(13, 99, 140, 0.1);
    border-radius: 19px;

    background: rgba(255, 255, 255, 0.82);

    box-shadow:
        0 16px 38px rgba(5, 28, 43, 0.065);

    backdrop-filter: blur(10px);
}

.cc-faq-trust-item {
    min-height: 75px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px;

    border-right: 1px solid rgba(13, 99, 140, 0.09);
}

.cc-faq-trust-item:last-child {
    border-right: 0;
}

.cc-faq-trust-item > span {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-light-blue),
            var(--cc-green)
        );

    font-size: 14px;
}

.cc-faq-trust-item:nth-child(2) > span {
    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );
}

.cc-faq-trust-item:nth-child(3) > span {
    color: var(--cc-white);

    background:
        linear-gradient(
            135deg,
            var(--cc-blue),
            var(--cc-navy)
        );
}

.cc-faq-trust-item > div {
    display: flex;
    flex-direction: column;
}

.cc-faq-trust-item strong {
    margin-bottom: 3px;

    color: var(--cc-dark);

    font-size: 11px;
    font-weight: 800;
}

.cc-faq-trust-item small {
    color: #74868e;

    font-size: 8px;
    line-height: 1.4;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991.98px) {

    .cc-faq-section {
        padding: 90px 0;
    }

    .cc-faq-intro {
        position: relative;
        top: auto;

        max-width: 760px;

        margin: 0 auto 15px;

        text-align: center;
    }

    .cc-faq-intro > p {
        margin-left: auto;
        margin-right: auto;
    }

    .cc-faq-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .cc-faq-contact-card {
        max-width: 540px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

    .cc-faq-estimate-btn {
        max-width: 540px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

}


@media (max-width: 767.98px) {

    .cc-faq-section {
        padding: 75px 0;
    }

    .cc-faq-intro h2 {
        font-size: 39px;
    }

    .cc-faq-button {
        grid-template-columns: auto minmax(0, 1fr) auto;

        gap: 12px;

        min-height: 95px;

        padding: 17px !important;
    }

    .cc-faq-number {
        flex-basis: 47px;

        width: 47px;
        height: 47px;
    }

    .cc-faq-question {
        font-size: 14px;
    }

    .cc-faq-toggle-icon {
        flex-basis: 39px;

        width: 39px;
        height: 39px;
    }

    .cc-faq-answer {
        padding:
            24px
            23px
            26px
            56px !important;
    }

    .cc-faq-answer::before {
        left: 23px;
    }

    .cc-faq-trust-bar {
        grid-template-columns: 1fr;
    }

    .cc-faq-trust-item {
        border-right: 0;
        border-bottom: 1px solid rgba(13, 99, 140, 0.09);
    }

    .cc-faq-trust-item:last-child {
        border-bottom: 0;
    }

}


@media (max-width: 575.98px) {

    .cc-faq-section {
        padding: 65px 0;
    }

    .cc-faq-kicker {
        font-size: 8px;
    }

    .cc-faq-intro h2 {
        font-size: 31px;
        letter-spacing: -1.2px;
    }

    .cc-faq-intro > p {
        font-size: 13px;
    }

    .cc-faq-contact-card {
        align-items: flex-start;

        padding: 19px 17px;
    }

    .cc-faq-contact-icon {
        flex-basis: 53px;

        width: 53px;
        height: 53px;
    }

    .cc-faq-button {
        grid-template-columns: auto minmax(0, 1fr);

        padding: 16px !important;
    }

    .cc-faq-toggle-icon {
        grid-column: 1 / -1;

        width: 100%;
        height: 34px;

        border-radius: 10px;
    }

    .cc-faq-question {
        font-size: 13px;
    }

    .cc-faq-answer {
        padding:
            22px
            18px
            24px
            43px !important;
    }

    .cc-faq-answer::before {
        left: 17px;

        width: 16px;
    }

    .cc-faq-answer p {
        font-size: 13px;
        line-height: 1.82;
    }

}


/* =========================================
   CONTACT FORM SECTION
========================================= */

.cc-form-section {
    position: relative;
    overflow: hidden;

    padding: 110px 0;

    font-family: "Poppins", sans-serif;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(86, 197, 232, 0.14),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(33, 200, 154, 0.12),
            transparent 26%
        ),
        linear-gradient(
            145deg,
            #041925 0%,
            #062c42 50%,
            #051c2b 100%
        );
}

.cc-form-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    pointer-events: none;
}

.cc-form-section .container {
    position: relative;
    z-index: 3;
}


/* Decorative shapes */

.cc-form-shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.cc-form-shape-one {
    top: -110px;
    left: -105px;

    width: 280px;
    height: 280px;

    border: 42px solid rgba(86, 197, 232, 0.07);
}

.cc-form-shape-two {
    right: -90px;
    bottom: -80px;

    width: 230px;
    height: 230px;

    border: 34px solid rgba(255, 207, 63, 0.055);
}


/* Main form wrapper */

.cc-form-wrapper {
    max-width: 1050px;

    margin: 0 auto;
    padding: 48px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.035)
        );

    box-shadow:
        0 35px 85px rgba(0, 0, 0, 0.28);

    backdrop-filter: blur(16px);
}


/* Heading */

.cc-form-heading {
    max-width: 760px;
    margin: 0 auto 42px;
}

.cc-form-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 17px;
    padding: 9px 15px;

    border: 1px solid rgba(155, 232, 247, 0.2);
    border-radius: 50px;

    color: var(--cc-sky);
    background: rgba(86, 197, 232, 0.08);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cc-form-kicker i {
    color: var(--cc-yellow);
}

.cc-form-heading h2 {
    margin: 0 0 17px;

    color: var(--cc-white);

    font-size:
        clamp(
            37px,
            4.5vw,
            58px
        );

    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -2px;
}

.cc-form-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: var(--cc-text-light);

    font-size: 14px;
    line-height: 1.85;
}


/* Form */

.cc-service-form,
.cc-service-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.cc-form-group {
    height: 100%;
}

.cc-form-group label {
    display: block;

    margin: 0 0 8px 4px;

    color: var(--cc-white);

    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.5px;
}

.cc-input-wrap {
    position: relative;
}

.cc-input-icon {
    position: absolute;
    top: 50%;
    left: 11px;

    z-index: 2;

    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-light-blue),
            var(--cc-green)
        );

    font-size: 14px;

    transform: translateY(-50%);
}

.cc-form-group:nth-child(even) .cc-input-icon {
    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );
}

.cc-service-form input,
.cc-service-form select,
.cc-service-form textarea {
    width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;

    color: var(--cc-white);
    background: rgba(255, 255, 255, 0.065);

    font-family: inherit;
    font-size: 12px;

    outline: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.cc-service-form input,
.cc-service-form select {
    height: 65px;
    padding: 0 18px 0 66px;
}

.cc-service-form textarea {
    min-height: 155px;
    padding: 20px 18px 18px 66px;
    resize: vertical;
}

.cc-textarea-wrap .cc-input-icon {
    top: 13px;
    transform: none;
}

.cc-service-form input::placeholder,
.cc-service-form textarea::placeholder {
    color: rgba(196, 220, 230, 0.66);
}

.cc-service-form select {
    appearance: none;
    cursor: pointer;
}

.cc-select-wrap::after {
    content: "\f078";

    position: absolute;
    top: 50%;
    right: 19px;

    color: var(--cc-yellow);

    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: 900;

    transform: translateY(-50%);

    pointer-events: none;
}

.cc-service-form select option {
    color: var(--cc-dark);
    background: var(--cc-white);
}

.cc-service-form input:focus,
.cc-service-form select:focus,
.cc-service-form textarea:focus {
    border-color: rgba(86, 197, 232, 0.55);

    background: rgba(86, 197, 232, 0.1);

    box-shadow:
        0 0 0 4px rgba(86, 197, 232, 0.08),
        0 14px 30px rgba(0, 0, 0, 0.12);

    transform: translateY(-2px);
}


/* Date input icon */

.cc-service-form input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1);
    opacity: 0.75;
}


/* Submit button */

.cc-form-submit {
    width: 100%;
    min-height: 76px;

    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 9px;
    padding: 10px 20px 10px 11px;

    border: 0;
    border-radius: 17px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-family: inherit;
    cursor: pointer;

    box-shadow:
        0 18px 40px rgba(255, 159, 28, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cc-form-submit:hover {
    transform: translateY(-5px);

    box-shadow:
        0 25px 50px rgba(255, 159, 28, 0.34);
}

.cc-submit-icon {
    flex: 0 0 54px;

    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: var(--cc-white);
    background: var(--cc-dark);

    font-size: 18px;
}

.cc-submit-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cc-submit-text small {
    margin-bottom: 3px;

    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.cc-submit-text strong {
    font-size: 16px;
    font-weight: 850;
}

.cc-form-submit > i {
    margin-left: auto;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cc-form-submit:hover > i {
    transform: translateX(6px);
}


/* Responsive */

@media (max-width: 991.98px) {

    .cc-form-section {
        padding: 90px 0;
    }

    .cc-form-wrapper {
        padding: 40px 32px;
    }

}


@media (max-width: 767.98px) {

    .cc-form-section {
        padding: 75px 0;
    }

    .cc-form-wrapper {
        padding: 34px 24px;
        border-radius: 24px;
    }

    .cc-form-heading {
        margin-bottom: 34px;
    }

    .cc-form-heading h2 {
        font-size: 39px;
    }

}


@media (max-width: 575.98px) {

    .cc-form-section {
        padding: 65px 0;
    }

    .cc-form-wrapper {
        padding: 28px 17px;
    }

    .cc-form-kicker {
        font-size: 8px;
    }

    .cc-form-heading h2 {
        font-size: 31px;
        letter-spacing: -1.2px;
    }

    .cc-form-heading p {
        font-size: 13px;
    }

    .cc-form-group label {
        font-size: 9px;
    }

    .cc-input-icon {
        left: 9px;

        width: 40px;
        height: 40px;
    }

    .cc-service-form input,
    .cc-service-form select {
        height: 61px;
        padding-left: 59px;
    }

    .cc-service-form textarea {
        padding-left: 59px;
    }

    .cc-submit-text strong {
        font-size: 14px;
    }

}


/* =========================================
   FOOTER SECTION
========================================= */

.cc-footer {
    position: relative;
    overflow: hidden;

    padding: 95px 0 0;

    color: var(--cc-white);

    font-family: "Poppins", sans-serif;

    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(86, 197, 232, 0.13),
            transparent 25%
        ),
        radial-gradient(
            circle at 95% 85%,
            rgba(33, 200, 154, 0.1),
            transparent 24%
        ),
        linear-gradient(
            145deg,
            #03141f 0%,
            #06283c 48%,
            #041925 100%
        );
}

.cc-footer::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );

    background-size: 58px 58px;

    pointer-events: none;
}

.cc-footer .container {
    position: relative;
    z-index: 3;
}


/* Decorative shapes */

.cc-footer-shape {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}

.cc-footer-shape-one {
    top: -110px;
    left: -110px;

    width: 280px;
    height: 280px;

    border: 42px solid rgba(86, 197, 232, 0.06);
}

.cc-footer-shape-two {
    right: -95px;
    bottom: 80px;

    width: 230px;
    height: 230px;

    border: 34px solid rgba(255, 207, 63, 0.05);
}


/* =========================================
   MAIN FOOTER CONTAINER
========================================= */

.cc-footer-main {
    position: relative;

    padding: 45px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 35px 85px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(14px);
}


/* =========================================
   FOOTER BRAND
========================================= */

.cc-footer-brand {
    max-width: 500px;
}

.cc-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 23px;

    color: var(--cc-white);

    text-decoration: none;
}

.cc-footer-logo:hover {
    color: var(--cc-white);
}

.cc-footer-logo-icon {
    flex: 0 0 60px;

    width: 60px;
    height: 60px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-light-blue),
            var(--cc-green)
        );

    font-size: 22px;

    box-shadow:
        0 15px 32px rgba(33, 200, 154, 0.18);
}

.cc-footer-logo > span:last-child {
    display: flex;
    flex-direction: column;
}

.cc-footer-logo strong {
    font-size: 21px;
    font-weight: 850;
    line-height: 1.15;
}

.cc-footer-logo small {
    margin-top: 5px;

    color: var(--cc-light-blue);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cc-footer-brand > p {
    max-width: 480px;

    margin: 0 0 25px;

    color: var(--cc-text-light);

    font-size: 13px;
    line-height: 1.85;
}


/* Website and email links */

.cc-footer-info-link {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 11px;
    padding: 12px 14px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;

    color: var(--cc-white);
    background: rgba(255, 255, 255, 0.04);

    text-decoration: none;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.cc-footer-info-link:hover {
    color: var(--cc-white);

    border-color: rgba(86, 197, 232, 0.24);
    background: rgba(86, 197, 232, 0.09);

    transform: translateX(5px);
}

.cc-footer-info-link > span {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-size: 14px;
}

.cc-footer-info-link > div {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.cc-footer-info-link small {
    margin-bottom: 4px;

    color: var(--cc-light-blue);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cc-footer-info-link strong {
    color: var(--cc-white);

    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;

    overflow-wrap: anywhere;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.cc-footer-column {
    height: 100%;
}

.cc-footer-column-heading {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 23px;
    padding-bottom: 16px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-footer-column-heading > span {
    flex: 0 0 43px;

    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-light-blue),
            var(--cc-green)
        );

    font-size: 15px;
}

.cc-footer-column-heading h2 {
    margin: 0;

    color: var(--cc-white);

    font-size: 16px;
    font-weight: 800;
}


/* =========================================
   CONTACT LIST
========================================= */

.cc-footer-contact-list {
    display: grid;
    gap: 12px;
}

.cc-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    padding: 12px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.035);

    color: var(--cc-white);
    text-decoration: none;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

a.cc-footer-contact-item:hover {
    color: var(--cc-white);

    border-color: rgba(86, 197, 232, 0.22);
    background: rgba(86, 197, 232, 0.08);

    transform: translateY(-4px);
}

.cc-footer-contact-icon {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-size: 14px;
}

.cc-footer-contact-item:nth-child(even)
.cc-footer-contact-icon {
    background:
        linear-gradient(
            135deg,
            var(--cc-light-blue),
            var(--cc-green)
        );
}

.cc-footer-contact-item > div {
    display: flex;
    flex-direction: column;
}

.cc-footer-contact-item small {
    margin-bottom: 4px;

    color: var(--cc-light-blue);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cc-footer-contact-item strong {
    color: var(--cc-white);

    font-size: 11px;
    font-weight: 700;
    line-height: 1.6;
}


/* =========================================
   QUICK LINKS
========================================= */

.cc-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.cc-footer-links a {
    display: flex;
    align-items: center;
    gap: 9px;

    min-height: 47px;

    padding: 10px 12px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    color: var(--cc-text-light);
    background: rgba(255, 255, 255, 0.035);

    font-size: 10px;
    font-weight: 650;
    line-height: 1.45;
    text-decoration: none;
    text-transform: capitalize;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.cc-footer-links a:hover {
    color: var(--cc-white);

    border-color: rgba(86, 197, 232, 0.23);
    background: rgba(86, 197, 232, 0.09);

    transform: translateX(4px);
}

.cc-footer-links i {
    flex: 0 0 auto;

    color: var(--cc-yellow);

    font-size: 8px;

    transition: transform 0.3s ease;
}

.cc-footer-links a:hover i {
    transform: translateX(3px);
}


/* =========================================
   FOOTER CTA
========================================= */

.cc-footer-cta {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;

    align-items: center;

    margin-top: 25px;
    padding: 23px 25px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;

    background:
        radial-gradient(
            circle at 80% 0,
            rgba(255, 255, 255, 0.1),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--cc-blue),
            var(--cc-navy)
        );

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.22);
}

.cc-footer-cta::before {
    content: "";

    position: absolute;
    right: 250px;
    bottom: -70px;

    width: 160px;
    height: 160px;

    border: 26px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cc-footer-cta-icon {
    position: relative;
    z-index: 2;

    flex: 0 0 60px;

    width: 60px;
    height: 60px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-size: 21px;
}

.cc-footer-cta-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
}

.cc-footer-cta-content small {
    margin-bottom: 5px;

    color: var(--cc-sky);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cc-footer-cta-content strong {
    color: var(--cc-white);

    font-size: 14px;
    font-weight: 750;
    line-height: 1.55;
}


/* CTA phone button */

.cc-footer-cta-button {
    position: relative;
    z-index: 2;

    min-height: 66px;

    display: inline-flex;
    align-items: center;
    gap: 11px;

    padding: 9px 15px 9px 9px;

    border-radius: 15px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    text-decoration: none;

    box-shadow:
        0 15px 32px rgba(255, 159, 28, 0.2);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cc-footer-cta-button:hover {
    color: var(--cc-dark);

    transform: translateY(-4px);

    box-shadow:
        0 20px 42px rgba(255, 159, 28, 0.3);
}

.cc-footer-cta-button > span:first-child {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--cc-white);
    background: var(--cc-dark);

    font-size: 16px;
}

.cc-footer-cta-button > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.cc-footer-cta-button small {
    margin-bottom: 3px;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.cc-footer-cta-button strong {
    font-size: 13px;
    font-weight: 850;
}

.cc-footer-cta-button > i {
    margin-left: 3px;

    font-size: 12px;

    transition: transform 0.3s ease;
}

.cc-footer-cta-button:hover > i {
    transform: translateX(4px);
}


/* =========================================
   COPYRIGHT
========================================= */

.cc-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    margin-top: 30px;
    padding: 24px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.cc-footer-bottom p {
    margin: 0;

    color: rgba(196, 220, 230, 0.72);

    font-size: 10px;
    line-height: 1.6;
}

.cc-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 13px;
}

.cc-footer-bottom-links a {
    color: rgba(196, 220, 230, 0.72);

    font-size: 9px;
    font-weight: 650;
    text-decoration: none;

    transition: color 0.3s ease;
}

.cc-footer-bottom-links a:hover {
    color: var(--cc-yellow);
}

.cc-footer-bottom-links span {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--cc-light-blue);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199.98px) {

    .cc-footer-main {
        padding: 38px 32px;
    }

    .cc-footer-links {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 991.98px) {

    .cc-footer {
        padding-top: 80px;
    }

    .cc-footer-brand {
        max-width: none;
    }

    .cc-footer-cta {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .cc-footer-cta-button {
        grid-column: 1 / -1;

        justify-self: center;
    }

}


@media (max-width: 767.98px) {

    .cc-footer {
        padding-top: 70px;
    }

    .cc-footer-main {
        padding: 32px 25px;
        border-radius: 24px;
    }

    .cc-footer-links {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .cc-footer-bottom {
        flex-direction: column;

        text-align: center;
    }

}


@media (max-width: 575.98px) {

    .cc-footer {
        padding-top: 60px;
    }

    .cc-footer-main {
        padding: 27px 18px;
    }

    .cc-footer-logo {
        align-items: flex-start;
    }

    .cc-footer-logo-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;

        border-radius: 15px;
    }

    .cc-footer-logo strong {
        font-size: 17px;
    }

    .cc-footer-logo small {
        font-size: 8px;
    }

    .cc-footer-brand > p {
        font-size: 12px;
    }

    .cc-footer-info-link {
        align-items: flex-start;
    }

    .cc-footer-column-heading h2 {
        font-size: 15px;
    }

    .cc-footer-links {
        grid-template-columns: 1fr;
    }

    .cc-footer-cta {
        grid-template-columns: 1fr;

        padding: 22px 18px;

        text-align: center;
    }

    .cc-footer-cta-icon {
        margin: 0 auto;
    }

    .cc-footer-cta-button {
        width: 100%;

        justify-content: flex-start;
    }

    .cc-footer-cta-button > i {
        margin-left: auto;
    }

    .cc-footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

}




/* =========================================
   SERVICES GALLERY SECTION
========================================= */

.cc-services-gallery {
    position: relative;
    overflow: hidden;

    padding: 115px 0;

    font-family: "Poppins", sans-serif;

    background:
        radial-gradient(
            circle at 9% 15%,
            rgba(86, 197, 232, 0.13),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(33, 200, 154, 0.1),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #041925 0%,
            #062c42 48%,
            #051c2b 100%
        );
}

.cc-services-gallery::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    pointer-events: none;
}

.cc-services-gallery .container {
    position: relative;
    z-index: 3;
}


/* =========================================
   DECORATIVE SHAPES
========================================= */

.cc-gallery-shape {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}

.cc-gallery-shape-one {
    top: -110px;
    left: -110px;

    width: 280px;
    height: 280px;

    border: 42px solid rgba(86, 197, 232, 0.06);
}

.cc-gallery-shape-two {
    right: -90px;
    bottom: -80px;

    width: 230px;
    height: 230px;

    border: 34px solid rgba(255, 207, 63, 0.05);
}


/* =========================================
   SECTION HEADING
========================================= */

.cc-gallery-heading {
    max-width: 860px;

    margin: 0 auto 60px;
}

.cc-gallery-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;
    padding: 9px 15px;

    border: 1px solid rgba(155, 232, 247, 0.2);
    border-radius: 50px;

    color: var(--cc-sky);
    background: rgba(86, 197, 232, 0.08);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cc-gallery-kicker i {
    color: var(--cc-yellow);
}

.cc-gallery-heading h2 {
    margin: 0 0 20px;

    color: var(--cc-white);

    font-size:
        clamp(
            38px,
            4.8vw,
            61px
        );

    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -2.2px;
}

.cc-gallery-heading p {
    max-width: 680px;

    margin: 0 auto;

    color: var(--cc-text-light);

    font-size: 14px;
    line-height: 1.85;
}

.cc-gallery-heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 220px;

    margin: 24px auto 0;
}

.cc-gallery-heading-line span {
    flex: 1;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cc-light-blue)
        );
}

.cc-gallery-heading-line span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--cc-light-blue),
            transparent
        );
}

.cc-gallery-heading-line i {
    color: var(--cc-yellow);

    font-size: 15px;
}


/* =========================================
   GALLERY GRID
========================================= */

.cc-gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    grid-auto-rows: 285px;

    gap: 17px;
}

.cc-gallery-card {
    position: relative;

    min-width: 0;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 23px;

    overflow: hidden;

    background: var(--cc-dark);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.22);

    isolation: isolate;
}

.cc-gallery-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.cc-gallery-card-wide {
    grid-column: span 2;
}


/* =========================================
   GALLERY CARD LINK
========================================= */

.cc-gallery-card-link {
    position: absolute;
    inset: 0;

    display: block;

    color: var(--cc-white);

    text-decoration: none;
}

.cc-gallery-card-link:hover {
    color: var(--cc-white);
}

.cc-gallery-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.75s ease,
        filter 0.75s ease;
}

.cc-gallery-card:hover img {
    transform: scale(1.09);

    filter:
        saturate(1.08)
        contrast(1.03);
}


/* =========================================
   CARD OVERLAY
========================================= */

.cc-gallery-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(5, 28, 43, 0.08) 15%,
            rgba(5, 28, 43, 0.18) 40%,
            rgba(5, 28, 43, 0.94) 100%
        );

    transition: background 0.4s ease;
}

.cc-gallery-card:hover .cc-gallery-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(7, 63, 97, 0.08) 10%,
            rgba(5, 28, 43, 0.2) 37%,
            rgba(5, 28, 43, 0.98) 100%
        );
}


/* =========================================
   CARD NUMBER
========================================= */

.cc-gallery-number {
    position: absolute;
    top: 18px;
    right: 18px;

    z-index: 4;

    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 13px;

    color: var(--cc-white);
    background: rgba(5, 28, 43, 0.7);

    font-size: 11px;
    font-weight: 900;

    backdrop-filter: blur(10px);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.cc-gallery-card:hover .cc-gallery-number {
    color: var(--cc-dark);
    background: var(--cc-yellow);

    transform: rotate(7deg);
}


/* =========================================
   CARD CONTENT
========================================= */

.cc-gallery-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 4;

    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr) auto;

    align-items: center;

    gap: 12px;

    padding: 22px;
}

.cc-gallery-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-light-blue),
            var(--cc-green)
        );

    font-size: 18px;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.2);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.cc-gallery-card:nth-child(even)
.cc-gallery-icon {
    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );
}

.cc-gallery-card:hover .cc-gallery-icon {
    transform:
        translateY(-5px)
        rotate(-7deg)
        scale(1.06);
}

.cc-gallery-content > div {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.cc-gallery-content small {
    margin-bottom: 5px;

    color: var(--cc-light-blue);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cc-gallery-content h3 {
    margin: 0;

    color: var(--cc-white);

    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: capitalize;
}

.cc-gallery-card-large
.cc-gallery-content h3 {
    font-size: 25px;
}

.cc-gallery-arrow {
    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;

    color: var(--cc-white);
    background: rgba(255, 255, 255, 0.08);

    font-size: 12px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.cc-gallery-card:hover .cc-gallery-arrow {
    color: var(--cc-dark);
    background: var(--cc-yellow);

    transform: translateX(5px);
}


/* =========================================
   BOTTOM CTA
========================================= */

.cc-gallery-bottom {
    position: relative;
    overflow: hidden;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) auto;

    align-items: center;

    gap: 22px;

    margin-top: 26px;
    padding: 24px 27px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 21px;

    background:
        radial-gradient(
            circle at 80% 0,
            rgba(255, 255, 255, 0.1),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--cc-blue),
            var(--cc-navy)
        );

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.2);
}

.cc-gallery-bottom::before {
    content: "";

    position: absolute;
    top: -70px;
    right: 280px;

    width: 170px;
    height: 170px;

    border: 27px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.cc-gallery-bottom-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 14px;
}

.cc-gallery-bottom-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    font-size: 20px;
}

.cc-gallery-bottom-content > div {
    display: flex;
    flex-direction: column;
}

.cc-gallery-bottom-content small {
    margin-bottom: 5px;

    color: var(--cc-sky);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cc-gallery-bottom-content strong {
    color: var(--cc-white);

    font-size: 14px;
    font-weight: 750;
    line-height: 1.55;
}


/* Phone button */

.cc-gallery-phone {
    position: relative;
    z-index: 2;

    min-height: 66px;

    display: inline-flex;
    align-items: center;
    gap: 11px;

    padding: 9px 15px 9px 9px;

    border-radius: 15px;

    color: var(--cc-dark);

    background:
        linear-gradient(
            135deg,
            var(--cc-yellow),
            var(--cc-orange)
        );

    text-decoration: none;

    box-shadow:
        0 15px 32px rgba(255, 159, 28, 0.2);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cc-gallery-phone:hover {
    color: var(--cc-dark);

    transform: translateY(-4px);

    box-shadow:
        0 20px 42px rgba(255, 159, 28, 0.3);
}

.cc-gallery-phone > span:first-child {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--cc-white);
    background: var(--cc-dark);

    font-size: 16px;
}

.cc-gallery-phone > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.cc-gallery-phone small {
    margin-bottom: 3px;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cc-gallery-phone strong {
    font-size: 13px;
    font-weight: 850;
}

.cc-gallery-phone > i {
    margin-left: 3px;

    font-size: 12px;

    transition: transform 0.3s ease;
}

.cc-gallery-phone:hover > i {
    transform: translateX(5px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199.98px) {

    .cc-gallery-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .cc-gallery-card-large {
        grid-column: span 2;
    }

    .cc-gallery-card-wide {
        grid-column: span 1;
    }

}


@media (max-width: 991.98px) {

    .cc-services-gallery {
        padding: 90px 0;
    }

    .cc-gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-auto-rows: 290px;
    }

    .cc-gallery-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .cc-gallery-card-wide {
        grid-column: span 1;
    }

    .cc-gallery-bottom {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .cc-gallery-bottom-content {
        justify-content: center;
    }

    .cc-gallery-phone {
        justify-self: center;
    }

}


@media (max-width: 767.98px) {

    .cc-services-gallery {
        padding: 75px 0;
    }

    .cc-gallery-heading {
        margin-bottom: 45px;
    }

    .cc-gallery-heading h2 {
        font-size: 39px;
    }

    .cc-gallery-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 300px;
    }

    .cc-gallery-card-large,
    .cc-gallery-card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .cc-gallery-card-large
    .cc-gallery-content h3 {
        font-size: 18px;
    }

}


@media (max-width: 575.98px) {

    .cc-services-gallery {
        padding: 65px 0;
    }

    .cc-gallery-kicker {
        font-size: 8px;
    }

    .cc-gallery-heading h2 {
        font-size: 31px;
        letter-spacing: -1.2px;
    }

    .cc-gallery-heading p {
        font-size: 13px;
    }

    .cc-gallery-grid {
        grid-auto-rows: 280px;
    }

    .cc-gallery-content {
        grid-template-columns: auto minmax(0, 1fr);

        padding: 18px;
    }

    .cc-gallery-icon {
        flex-basis: 47px;

        width: 47px;
        height: 47px;
    }

    .cc-gallery-content h3 {
        font-size: 15px;
    }

    .cc-gallery-arrow {
        grid-column: 1 / -1;

        width: 100%;
        height: 38px;

        border-radius: 10px;
    }

    .cc-gallery-bottom {
        padding: 22px 18px;
    }

    .cc-gallery-bottom-content {
        flex-direction: column;
    }

    .cc-gallery-phone {
        width: 100%;

        justify-content: flex-start;
    }

    .cc-gallery-phone > i {
        margin-left: auto;
    }

}

/* Image */

.cc-contact-image{
    position:relative;
    overflow:hidden;

    border-radius:28px;

    height:760px;

    box-shadow:
    0 30px 70px rgba(0,0,0,.28);
}

.cc-contact-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.7s;
}

.cc-contact-image:hover img{

    transform:scale(1.08);

}

/* Dark Overlay */

.cc-contact-image::before{

    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(4,25,37,.88),
    rgba(4,25,37,.15)
    );

    z-index:1;

}


/* Floating Card */

.cc-contact-floating{

    position:absolute;

    left:30px;
    right:30px;
    bottom:30px;

    z-index:5;

    padding:28px;

    border-radius:22px;

    backdrop-filter:blur(15px);

    background:
    rgba(255,255,255,.12);

    border:
    1px solid rgba(255,255,255,.18);

}

.cc-contact-floating span{

    display:flex;
    align-items:center;

    gap:12px;

    color:#fff;

    font-size:15px;

    margin-bottom:16px;

    font-weight:600;

}

.cc-contact-floating span:last-child{

    margin-bottom:0;

}

.cc-contact-floating i{

    color:var(--cc-yellow);

    font-size:18px;

}

/* Responsive */

@media(max-width:991px){

    .cc-contact-image{

        height:520px;
    }

}


/* =========================================
   STAIN REMOVAL IMAGE SHOWCASE
========================================= */

.cc-stain-image-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    gap: 20px;

    margin-top: 38px;
}

.cc-stain-image-card {
    position: relative;
    overflow: hidden;

    min-height: 360px;

    border: 1px solid rgba(13, 99, 140, 0.12);
    border-radius: 25px;

    background: var(--cc-dark);

    box-shadow:
        0 26px 60px rgba(5, 28, 43, 0.16);

    isolation: isolate;
}

.cc-stain-image-card-small {
    min-height: 360px;
}

.cc-stain-image-card::before {
    content: "";

    position: absolute;
    inset: 14px;

    z-index: 3;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 17px;

    pointer-events: none;
}

.cc-stain-image-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.75s ease,
        filter 0.75s ease;
}

.cc-stain-image-card:hover img {
    transform: scale(1.07);

    filter:
        saturate(1.08)
        contrast(1.03);
}

.cc-stain-image-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(5, 28, 43, 0.08) 15%,
            rgba(5, 28, 43, 0.22) 50%,
            rgba(5, 28, 43, 0.94) 100%
        );
}

.cc-stain-image-badge {
    position: absolute;
    top: 25px;
    left: 25px;

    z-index: 4;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 14px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;

    color: var(--cc-white);
    background: rgba(5, 28, 43, 0.72);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    backdrop-filter: blur(10px);
}

.cc-stain-image-badge i {
    color: var(--cc-yellow);
}

.cc-stain-image-caption {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;

    z-index: 4;
}

.cc-stain-image-caption span {
    display: block;

    margin-bottom: 7px;

    color: var(--cc-light-blue);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cc-stain-image-caption strong {
    display: block;

    max-width: 520px;

    color: var(--cc-white);

    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
}

.cc-stain-image-card-small
.cc-stain-image-caption strong {
    font-size: 18px;
}


/* Hover accent */

.cc-stain-image-card::after {
    content: "";

    position: absolute;
    right: -70px;
    bottom: -70px;

    z-index: 2;

    width: 170px;
    height: 170px;

    border: 30px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;

    transition:
        transform 0.45s ease,
        border-color 0.45s ease;
}

.cc-stain-image-card:hover::after {
    border-color: rgba(86, 197, 232, 0.1);

    transform: scale(1.15);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991.98px) {

    .cc-stain-image-showcase {
        grid-template-columns: 1fr;
    }

    .cc-stain-image-card,
    .cc-stain-image-card-small {
        min-height: 400px;
    }

}


@media (max-width: 767.98px) {

    .cc-stain-image-card,
    .cc-stain-image-card-small {
        min-height: 330px;
    }

    .cc-stain-image-caption strong,
    .cc-stain-image-card-small
    .cc-stain-image-caption strong {
        font-size: 18px;
    }

}


@media (max-width: 575.98px) {

    .cc-stain-image-showcase {
        margin-top: 28px;
    }

    .cc-stain-image-card,
    .cc-stain-image-card-small {
        min-height: 290px;

        border-radius: 20px;
    }

    .cc-stain-image-card::before {
        inset: 10px;

        border-radius: 13px;
    }

    .cc-stain-image-badge {
        top: 18px;
        left: 18px;

        font-size: 8px;
    }

    .cc-stain-image-caption {
        left: 21px;
        right: 21px;
        bottom: 21px;
    }

    .cc-stain-image-caption strong,
    .cc-stain-image-card-small
    .cc-stain-image-caption strong {
        font-size: 16px;
    }

}


/* FAQ IMAGE */

.cc-faq-image{

    position:relative;

    overflow:hidden;

    margin:30px 0;

    border-radius:24px;

    height:320px;

    box-shadow:
    0 25px 55px rgba(0,0,0,.18);

}

.cc-faq-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s;

}

.cc-faq-image:hover img{

    transform:scale(1.08);

}

.cc-faq-image::before{

    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(5,28,43,.88),
    rgba(5,28,43,.10)
    );

}

.cc-faq-image-badge{

    position:absolute;

    left:22px;
    right:22px;
    bottom:22px;

    z-index:2;

    display:flex;
    align-items:center;

    gap:14px;

    padding:16px 18px;

    border-radius:18px;

    backdrop-filter:blur(12px);

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

}

.cc-faq-image-badge i{

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--cc-yellow);

    color:var(--cc-dark);

    font-size:18px;

}

.cc-faq-image-badge small{

    display:block;

    color:var(--cc-light-blue);

    font-size:10px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.cc-faq-image-badge strong{

    display:block;

    margin-top:4px;

    color:#fff;

    font-size:17px;

    font-weight:700;

}

@media(max-width:991px){

    .cc-faq-image{

        height:260px;

    }

}


/* =========================================
   PREMIUM SERVICE REQUEST FORM
   SAME HTML — CSS ONLY
========================================= */

form.CUS {
    --form-dark: #051c2b;
    --form-dark-2: #07283d;
    --form-navy: #073f61;
    --form-blue: #0d638c;
    --form-aqua: #56c5e8;
    --form-mint: #26d0b4;
    --form-mint-light: #67eddc;
    --form-white: #ffffff;
    --form-soft: #f3fbfd;
    --form-text: #425d69;
    --form-muted: #718891;
    --form-border: rgba(7, 63, 97, 0.13);

    position: relative;
    overflow: hidden;

    width: 100%;
    max-width: 1080px;

    margin: 30px auto;
    padding: 42px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(86, 197, 232, 0.16),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            var(--form-dark-2),
            var(--form-dark)
        );

    box-shadow:
        0 30px 75px rgba(0, 18, 31, 0.3);

    font-family: "Poppins", system-ui, sans-serif;
}

/* Decorative glow */

form.CUS::before {
    content: "";

    position: absolute;
    top: -110px;
    right: -90px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(38, 208, 180, 0.11);

    pointer-events: none;
}

form.CUS::after {
    content: "";

    position: absolute;
    left: -90px;
    bottom: -120px;

    width: 240px;
    height: 240px;

    border: 35px solid rgba(86, 197, 232, 0.045);
    border-radius: 50%;

    pointer-events: none;
}


/* =========================================
   FIELDSET
========================================= */

form.CUS fieldset {
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;

    margin: 0;
    padding: 0;

    border: 0;
}


/* =========================================
   FORM TITLE / LEGEND
========================================= */

form.CUS legend {
    width: 100%;

    margin: 0 0 32px;
    padding: 0 0 22px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    color: var(--form-white);

    font-size: clamp(27px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.2px;
}

form.CUS legend::before {
    content: "\f15c";

    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-right: 13px;

    border-radius: 15px;

    color: var(--form-dark);

    background:
        linear-gradient(
            135deg,
            var(--form-aqua),
            var(--form-mint)
        );

    font-family: "Font Awesome 6 Free";
    font-size: 18px;
    font-weight: 900;
    vertical-align: middle;

    box-shadow:
        0 12px 27px rgba(38, 208, 180, 0.18);
}


/* =========================================
   FIELD BLOCKS
========================================= */

form.CUS fieldset > p {
    position: relative;

    width: 100%;

    margin: 0;
    padding: 10px;

    color: #d8e9ef;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.35px;
}


/* Row 1 */

form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 33.333%;
}


/* Row 2 */

form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 33.333%;
}


/* Message */

form.CUS fieldset > p:nth-of-type(7) {
    width: 100%;
}


/* =========================================
   INPUTS, SELECTS & TEXTAREA
========================================= */

form.CUS input,
form.CUS select,
form.CUS textarea {
    width: 100%;

    margin-top: 7px;
    padding: 0 17px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;

    color: var(--form-white);
    background: rgba(255, 255, 255, 0.065);

    font-family: inherit;
    font-size: 13px;
    font-weight: 500;

    outline: none;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

form.CUS input,
form.CUS select {
    min-height: 58px;
}

form.CUS textarea {
    min-height: 145px;
    height: 145px !important;

    padding: 17px !important;

    resize: vertical;
}

form.CUS input::placeholder,
form.CUS textarea::placeholder {
    color: rgba(216, 233, 239, 0.58);
}


/* Focus effect */

form.CUS input:focus,
form.CUS select:focus,
form.CUS textarea:focus {
    border-color: var(--form-aqua);

    background: rgba(86, 197, 232, 0.11);

    box-shadow:
        0 0 0 4px rgba(86, 197, 232, 0.09),
        0 14px 28px rgba(0, 0, 0, 0.14);

    transform: translateY(-2px);
}


/* Autofill */

form.CUS input:-webkit-autofill,
form.CUS input:-webkit-autofill:hover,
form.CUS input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--form-white);

    box-shadow:
        0 0 0 1000px var(--form-dark-2) inset;

    transition:
        background-color 9999s ease-in-out 0s;
}


/* Select */

form.CUS select {
    padding-right: 42px;

    cursor: pointer;

    appearance: none;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            var(--form-aqua) 50%
        ),
        linear-gradient(
            135deg,
            var(--form-aqua) 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 20px) 26px,
        calc(100% - 14px) 26px;

    background-size:
        6px 6px,
        6px 6px;

    background-repeat: no-repeat;
}

form.CUS select option {
    color: var(--form-dark);
    background: var(--form-white);
}


/* Number controls */

form.CUS input[type="number"]::-webkit-inner-spin-button,
form.CUS input[type="number"]::-webkit-outer-spin-button {
    margin: 0;

    opacity: 0.65;
}


/* =========================================
   SERVICE DATE
========================================= */

form.CUS fieldset > p:nth-of-type(8) {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;

    margin-top: 4px;

    /*
       Hides the raw text node visually while
       maintaining the original HTML.
    */
    font-size: 0;
}

form.CUS fieldset > p:nth-of-type(8)::before {
    content: "Service Date:";

    flex: 0 0 100%;

    color: #d8e9ef;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.35px;
}

form.CUS fieldset > p:nth-of-type(8) br {
    display: none;
}

form.CUS fieldset > p:nth-of-type(8) select#service_date,
form.CUS fieldset > p:nth-of-type(8) select#service_day,
form.CUS fieldset > p:nth-of-type(8) input#service_year {
    flex: 1 1 0;

    width: auto;
    min-width: 0;

    margin-top: 0;

    font-size: 13px;
}


/* =========================================
   SERVICE TIME
========================================= */

form.CUS fieldset > p:nth-of-type(9) {
    width: 100%;

    margin-top: 2px;
}

form.CUS fieldset > p:nth-of-type(9) select {
    width: 100%;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

form.CUS fieldset > p:nth-of-type(10) {
    width: 100%;

    padding-top: 17px;
}

form.CUS input[type="submit"] {
    position: relative;

    width: 100%;
    min-height: 68px;

    margin: 0;
    padding: 14px 22px;

    border: 0;
    border-radius: 16px;

    color: var(--form-dark);

    background:
        #a1b20f;

    font-family: inherit;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: 0.3px;

    cursor: pointer;

    box-shadow:
        0 17px 37px rgba(38, 208, 180, 0.23);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

form.CUS input[type="submit"]:hover {
    background:
    #fff;

    box-shadow:
        0 24px 48px rgba(38, 208, 180, 0.34);

    filter: brightness(1.03);

    transform: translateY(-4px);
}

form.CUS input[type="submit"]:active {
    transform: translateY(-1px);
}


/* =========================================
   HONEYPOT & HIDDEN FIELDS
========================================= */

form.CUS input.subject,
form.CUS input[type="hidden"] {
    display: none !important;
}


/* =========================================
   REQUIRED FIELD INDICATOR
========================================= */

form.CUS input:required,
form.CUS select:required,
form.CUS textarea:required {
    background-color: rgba(255, 255, 255, 0.065);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    form.CUS {
        max-width: 780px;

        padding: 34px 27px;
    }

    form.CUS fieldset > p:nth-of-type(1),
    form.CUS fieldset > p:nth-of-type(2),
    form.CUS fieldset > p:nth-of-type(3) {
        width: 50%;
    }

    form.CUS fieldset > p:nth-of-type(3) {
        width: 100%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    form.CUS {
        margin: 20px auto;
        padding: 29px 20px;

        border-radius: 22px;
    }

    form.CUS legend {
        margin-bottom: 23px;
        padding-bottom: 17px;

        font-size: 28px;
    }

    form.CUS legend::before {
        width: 46px;
        height: 46px;

        margin-right: 9px;

        border-radius: 13px;

        font-size: 16px;
    }

    form.CUS fieldset > p,
    form.CUS fieldset > p:nth-of-type(1),
    form.CUS fieldset > p:nth-of-type(2),
    form.CUS fieldset > p:nth-of-type(3),
    form.CUS fieldset > p:nth-of-type(4),
    form.CUS fieldset > p:nth-of-type(5),
    form.CUS fieldset > p:nth-of-type(6),
    form.CUS fieldset > p:nth-of-type(7),
    form.CUS fieldset > p:nth-of-type(8),
    form.CUS fieldset > p:nth-of-type(9),
    form.CUS fieldset > p:nth-of-type(10) {
        width: 100%;
    }

    form.CUS fieldset > p {
        padding: 7px 4px;
    }

    form.CUS fieldset > p:nth-of-type(8) {
        flex-direction: column;
        align-items: stretch;

        gap: 8px;
    }

    form.CUS fieldset > p:nth-of-type(8)::before {
        flex-basis: auto;
    }

    form.CUS fieldset > p:nth-of-type(8) select#service_date,
    form.CUS fieldset > p:nth-of-type(8) select#service_day,
    form.CUS fieldset > p:nth-of-type(8) input#service_year {
        flex: none;

        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    form.CUS {
        padding: 25px 14px;
    }

    form.CUS legend {
        display: flex;
        align-items: center;

        font-size: 23px;
        letter-spacing: -0.7px;
    }

    form.CUS legend::before {
        flex: 0 0 43px;

        width: 43px;
        height: 43px;
    }

    form.CUS input,
    form.CUS select {
        min-height: 55px;
    }

    form.CUS textarea {
        min-height: 135px;
    }

    form.CUS input[type="submit"] {
        min-height: 62px;

        font-size: 14px;
    }

}