/* ==================================================
   ROOT COLORS
================================================== */

:root {
    --pl-orange: #014782;
    --pl-orange-dark: #014782;

    --pl-dark: #2d3336;
    --pl-dark-two: #242a2d;
    --pl-dark-deep: #171b1d;

    --pl-white: #ffffff;
    --pl-light: #f7f7f5;

    --pl-gray: #747a7d;
    --pl-gray-light: #cfd2d3;

    --pl-border: rgba(35, 41, 44, 0.12);

    --pl-shadow:
        0 22px 55px rgba(22, 27, 29, 0.18);
}


/* ==================================================
   RESET
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    color: var(--pl-dark);
    background: var(--pl-white);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.pl-container {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    padding-right: 24px;
    padding-left: 24px;
}


/* ==================================================
   TOP BAR
================================================== */

.pl-topbar {
    position: relative;
    z-index: 1002;
    height: 30px;
    background: #fafafa;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #ececec;
}

.pl-topbar-inner {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pl-social {
    display: flex;
    align-items: center;
}

.pl-social a {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a4a7a8;
    font-size: 10px;
    border-left: 1px solid #ededed;
    transition: 0.3s ease;
}

.pl-social a:last-child {
    border-right: 1px solid #ededed;
}

.pl-social a:hover {
    color: var(--pl-white);
    background: var(--pl-orange);
}

.pl-top-info {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #7d8284;
    font-size: 10px;
}

.pl-top-info span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.pl-top-info i {
    color: var(--pl-orange);
}


/* ==================================================
   HEADER
================================================== */

.pl-header {
    position: relative;
    z-index: 1000;
    background: var(--pl-white);
    border-bottom: 1px solid #ececec;
}

.pl-header .navbar {
    min-height: 72px;
    padding: 0;
}

.pl-header .navbar > .container-fluid {
    min-height: 72px;
}


/* ==================================================
   LOGO
================================================== */

.pl-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 25px;
}

.pl-logo-mark {
    position: relative;
    width: 38px;
    height: 40px;
    flex-shrink: 0;
}

.pl-logo-mark span {
    position: absolute;
    width: 21px;
    height: 29px;
    border: 2px solid var(--pl-dark);
}

.pl-logo-mark span:first-child {
    top: 2px;
    left: 2px;
}

.pl-logo-mark span:last-child {
    right: 2px;
    bottom: 2px;
    border-color: var(--pl-orange);
}

.pl-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.pl-logo-text strong {
    color: var(--pl-dark);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.4px;
    white-space: nowrap;
}

.pl-logo-text small {
    margin-top: 5px;
    color: var(--pl-orange);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}


/* ==================================================
   NAVIGATION
================================================== */

.pl-nav {
    align-items: center;
    gap: 2px;
}

.pl-nav .nav-link {
    position: relative;
    padding: 28px 10px !important;
    color: #585e61;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.pl-nav .nav-link::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 18px;
    left: 10px;
    height: 2px;
    background: var(--pl-orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.3s ease;
}

.pl-nav .nav-link:hover,
.pl-nav .nav-link.active {
    color: var(--pl-orange);
}

.pl-nav .nav-link:hover::after,
.pl-nav .nav-link.active::after {
    transform: scaleX(1);
}


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

.pl-nav-actions {
    min-height: 72px;
    display: flex;
    align-items: stretch;
}

.pl-contact-button {
    min-width: 145px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    color: var(--pl-white);
    background: #29d137;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.pl-contact-button:hover {
    color: var(--pl-white);
    background: var(--pl-dark);
}

.pl-phone {
    min-width: 205px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    color: var(--pl-dark);
    background: var(--pl-white);
}

.pl-phone:hover {
    color: var(--pl-orange);
}

.pl-phone-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--pl-white);
    background: #29d137;
    font-size: 16px;
}

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

.pl-phone small {
    margin-bottom: 3px;
    color: #929698;
    font-size: 8px;
}

.pl-phone strong {
    color: var(--pl-dark);
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}


/* ==================================================
   MOBILE NAV BUTTON
================================================== */

.pl-toggler {
    width: 46px;
    height: 43px;
    padding: 8px;
    border: 0;
    border-radius: 0;
    background: var(--pl-orange);
}

.pl-toggler:focus {
    box-shadow: none;
}

.pl-toggler span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--pl-white);
}


/* ==================================================
   HERO LAYOUT
================================================== */

.pl-hero {
    position: relative;
    overflow: hidden;
    background: var(--pl-white);
}

.pl-hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: 57% 43%;
    grid-template-rows: 620px 190px;
    min-height: 810px;
}


/* ==================================================
   HERO LEFT
================================================== */

.pl-hero-left {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
    background: var(--pl-dark);
}

.pl-left-image {
    position: absolute;
    inset: 0;
    z-index: -5;
    background:
        url("../images/carpet-cleaning-hero.webp")
        center center / cover no-repeat;
}

.pl-left-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;
 background: linear-gradient(
        90deg,
        rgba(1,38,95,.88) 0%,
        rgba(5,66,165,.78) 45%,
        rgba(63,140,255,.45) 100%
    );
}

.pl-left-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.24)
        );
}


/* ==================================================
   ORANGE SHAPES
================================================== */

.pl-decor {
    position: absolute;
    z-index: -2;
    display: block;
    pointer-events: none;
}




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

.pl-hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 660px;
    padding:
        105px
        45px
        105px
        max(9vw, 70px);
}

.pl-eyebrow {
    display: block;
    margin-bottom: 16px;
    color: #29d137;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pl-hero-content h1 {
    max-width: 610px;
    margin-bottom: 24px;
    color: var(--pl-white);
    font-size: clamp(49px, 5vw, 72px);
    line-height: 1.07;
    font-weight: 600;
    letter-spacing: -2.8px;
}

.pl-hero-content h1 span {
    display: block;
}

.pl-hero-content p {
    max-width: 550px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.85;
}

.pl-hero-button {
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 13px 25px;
    color: var(--pl-white);
    background:#29d137;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.pl-hero-button:hover {
    color: var(--pl-dark);
    background: var(--pl-white);
    transform: translateY(-3px);
}


/* ==================================================
   RIGHT SLIDER
================================================== */

.pl-hero-right {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    min-height: 620px;
    background: var(--pl-white);
    border-left: 3px solid var(--pl-orange);
}

.pl-hero-right .carousel,
.pl-hero-right .carousel-inner,
.pl-hero-right .carousel-item {
    height: 510px;
}

.pl-hero-right .carousel-item {
    position: relative;
    overflow: hidden;
}

.pl-hero-right .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(20, 25, 27, 0.03),
            rgba(20, 25, 27, 0.05)
        );
}

.pl-hero-right .carousel-item img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform 7s ease;
}

.pl-hero-right .carousel-item.active img {
    transform: scale(1.035);
}


/* ==================================================
   SLIDER FOOTER
================================================== */

.pl-slider-footer {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
    padding: 15px 48px;
    background: var(--pl-white);
}

.pl-slider-pagination {
    display: flex;
    align-items: center;
    gap: 19px;
}

.pl-slider-pagination span {
    color: #d4d5d5;
    font-size: 10px;
    font-weight: 700;
}

.pl-slider-pagination .pl-current-number {
    color: var(--pl-dark);
}

.pl-slider-buttons {
    display: flex;
    align-items: center;
    gap: 7px;
}

.pl-slider-buttons button {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pl-orange);
    background: var(--pl-light);
    border: 0;
    font-size: 10px;
    transition: 0.3s ease;
}

.pl-slider-buttons button:hover {
    color: var(--pl-white);
    background: var(--pl-orange);
}


/* ==================================================
   LOWER WHITE AREA
================================================== */

.pl-lower-area {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    min-height: 190px;
    overflow: visible;
    background: var(--pl-white);
}

.pl-right-lower {
    position: relative;
    grid-column: 2;
    grid-row: 2;
    min-height: 190px;
    background: var(--pl-white);
}


/* ==================================================
   RULER LINES
================================================== */

.pl-ruler {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 22px;
    overflow: hidden;
    background: var(--pl-white);
}

.pl-ruler::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            #d7d9d9 0,
            #d7d9d9 1px,
            transparent 1px,
            transparent 12px
        );
    background-size: auto 10px;
    background-repeat: repeat-x;
}

.pl-ruler::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 15px;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 59px,
            #cfd1d1 59px,
            #cfd1d1 61px,
            transparent 61px,
            transparent 120px
        );
}


/* ==================================================
   CARPET CLEANING MACHINE
   تم تحريكها إلى اليسار بعيدًا عن كارت 10+
================================================== */

.pl-machine-image {
    position: absolute;
    left: clamp(30px, 5vw, 95px);
    right: auto;
    bottom: 0;
    z-index: 18;

    width: clamp(420px, 38vw, 590px);
    max-width: none;
    max-height: 270px;

    object-fit: contain;
    object-position: left bottom;

    pointer-events: none;

    filter:
        drop-shadow(0 18px 14px rgba(0, 0, 0, 0.15));
}


/* ==================================================
   EXPERIENCE CARD
================================================== */

.pl-experience-card {
    position: absolute;
    top: 475px;
    left: 52%;
    z-index: 50;

    width: 365px;
    min-height: 315px;

    padding: 32px 35px 24px;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.94),
            rgba(255, 255, 255, 0.97)
        ),
        url("../images/carpet-cleaning-hero.webp")
        center center / cover no-repeat;

    border-bottom: 3px solid var(--pl-orange);
    box-shadow: var(--pl-shadow);
}

.pl-card-cut {
    position: absolute;
    top: 0;
    left: -31px;
    width: 32px;
    height: 100%;
    background: var(--pl-white);

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

.pl-card-top {
    position: relative;
    min-height: 175px;
}

.pl-card-side-title {
    position: absolute;
    top: 16px;
    left: 0;

    color: #d1d3d3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;

    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.pl-award-icon {
    margin-left: 48px;
    color: var(--pl-dark);
    font-size: 37px;
}

.pl-years {
    margin-top: 7px;
    margin-left: 48px;
}

.pl-years strong {
    display: block;
    color: #29d137;
    font-size: 75px;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -5px;
}

.pl-years p {
    max-width: 165px;
    margin: 8px 0 0;
    color: #898e90;
    font-size: 10px;
    line-height: 1.55;
}


/* ==================================================
   CARD BOTTOM
================================================== */

.pl-card-bottom {
    display: flex;
    align-items: flex-end;
    gap: 21px;
    margin-top: 4px;
}

.pl-card-bottom img {
    width: 105px;
    height: 77px;
    flex-shrink: 0;
    object-fit: contain;
}

.pl-card-bottom a {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--pl-dark);
    transition: 0.3s ease;
}

.pl-card-bottom a > span {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 1.1;
}

.pl-card-bottom a strong {
    font-weight: 400;
}

.pl-card-bottom a i {
    color: var(--pl-orange);
    font-size: 19px;
    transition: 0.3s ease;
}

.pl-card-bottom a:hover {
    color: var(--pl-orange);
}

.pl-card-bottom a:hover i {
    transform: translateX(6px);
}


/* ==================================================
   LARGE DESKTOP
================================================== */

@media (min-width: 1600px) {

    .pl-hero-layout {
        grid-template-rows: 670px 200px;
        min-height: 870px;
    }

    .pl-hero-left,
    .pl-hero-right {
        min-height: 670px;
    }

    .pl-hero-right .carousel,
    .pl-hero-right .carousel-inner,
    .pl-hero-right .carousel-item {
        height: 550px;
    }

    .pl-slider-footer {
        height: 120px;
    }

    .pl-experience-card {
        top: 510px;
        left: 52%;
        width: 385px;
    }

    .pl-machine-image {
        left: 90px;
        width: 630px;
        max-height: 290px;
    }
}


/* ==================================================
   MEDIUM DESKTOP
================================================== */

@media (max-width: 1399.98px) {

    .pl-logo {
        margin-right: 15px;
    }

    .pl-nav {
        gap: 0;
    }

    .pl-nav .nav-link {
        padding-right: 8px !important;
        padding-left: 8px !important;
        font-size: 9px;
    }

    .pl-nav .nav-link::after {
        right: 8px;
        left: 8px;
    }

    .pl-contact-button {
        min-width: 125px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .pl-phone {
        min-width: 185px;
    }

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

    .pl-experience-card {
        left: 51%;
        width: 345px;
    }

    .pl-machine-image {
        left: 35px;
        width: 510px;
    }
}


/* ==================================================
   NAV BREAKPOINT
================================================== */

@media (max-width: 1199.98px) {

    .pl-header .navbar {
        min-height: 72px;
        padding: 10px 0;
    }

    .pl-header .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 20px;
        left: 20px;
        z-index: 1000;

        padding: 20px;

        background: var(--pl-white);
        border-top: 3px solid var(--pl-orange);

        box-shadow:
            0 20px 40px rgba(20, 25, 27, 0.18);
    }

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

    .pl-nav .nav-link {
        padding: 13px 10px !important;
        border-bottom: 1px solid #ededed;
        font-size: 11px;
    }

    .pl-nav .nav-link::after {
        display: none;
    }

    .pl-nav-actions {
        min-height: auto;
        margin-top: 17px;
    }

    .pl-contact-button,
    .pl-phone {
        flex: 1;
    }

    .pl-hero-content {
        padding-left: 50px;
    }

    .pl-experience-card {
        left: 50%;
    }

    .pl-machine-image {
        left: 15px;
        width: 480px;
    }
}


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

@media (max-width: 991.98px) {

    .pl-topbar {
        display: none;
    }

    .pl-hero {
        overflow: visible;
    }

    .pl-hero-layout {
        display: block;
        min-height: 0;
    }

    .pl-hero-left {
        min-height: 670px;
    }

    .pl-hero-right {
        min-height: 610px;
        border-top: 3px solid var(--pl-orange);
        border-left: 0;
    }

    .pl-hero-right .carousel,
    .pl-hero-right .carousel-inner,
    .pl-hero-right .carousel-item {
        height: 500px;
    }

    .pl-slider-footer {
        height: 110px;
    }

    .pl-lower-area {
        min-height: 280px;
        overflow: hidden;
    }

    .pl-right-lower {
        display: none;
    }

    .pl-machine-image {
        left: 20px;
        right: auto;
        bottom: 10px;
        width: min(70vw, 590px);
        max-height: 250px;
    }

    .pl-experience-card {
        position: relative;
        top: auto;
        left: auto;

        width: min(90%, 420px);
        margin: -80px auto 65px;
    }

    .pl-card-cut {
        display: none;
    }
}


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

@media (max-width: 767.98px) {

    .pl-container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .pl-logo-text strong {
        font-size: 13px;
    }

    .pl-logo-text small {
        font-size: 7px;
    }

    .pl-header .navbar-collapse {
        right: 10px;
        left: 10px;
    }

    .pl-nav-actions {
        flex-direction: column;
    }

    .pl-contact-button,
    .pl-phone {
        width: 100%;
    }

    .pl-phone {
        justify-content: center;
        background: var(--pl-light);
    }

    .pl-hero-left {
        min-height: 720px;
    }

    .pl-hero-content {
        max-width: 100%;
        padding:
            80px
            22px
            120px;
    }

    .pl-hero-content h1 {
        font-size: clamp(42px, 12vw, 58px);
        letter-spacing: -2px;
    }

    .pl-hero-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .pl-hero-right {
        min-height: 550px;
    }

    .pl-hero-right .carousel,
    .pl-hero-right .carousel-inner,
    .pl-hero-right .carousel-item {
        height: 440px;
    }

    .pl-slider-footer {
        height: 110px;
        justify-content: center;
        gap: 25px;
        padding: 15px 20px;
    }

    .pl-lower-area {
        min-height: 235px;
    }

    .pl-machine-image {
        left: 50%;
        right: auto;
        bottom: 5px;

        width: 490px;
        max-width: none;
        max-height: 225px;

        transform: translateX(-50%);
        object-position: center bottom;
    }

    .pl-experience-card {
        width: min(92%, 400px);
        margin-top: -45px;
        padding: 29px 25px 23px;
    }
}


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

@media (max-width: 480px) {

    .pl-logo-mark {
        width: 33px;
        height: 36px;
    }

    .pl-logo-mark span {
        width: 18px;
        height: 25px;
    }

    .pl-hero-left {
        min-height: 700px;
    }

    .pl-hero-content {
        padding-top: 72px;
        padding-bottom: 115px;
    }

    .pl-eyebrow {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .pl-hero-content h1 {
        font-size: 41px;
        line-height: 1.08;
    }

    .pl-hero-button {
        width: 100%;
    }

    .pl-hero-right {
        min-height: 500px;
    }

    .pl-hero-right .carousel,
    .pl-hero-right .carousel-inner,
    .pl-hero-right .carousel-item {
        height: 390px;
    }

    .pl-slider-footer {
        gap: 18px;
    }

    .pl-slider-pagination {
        gap: 13px;
    }

    .pl-slider-buttons button {
        width: 36px;
        height: 36px;
    }

    .pl-lower-area {
        min-height: 210px;
    }

    .pl-machine-image {
        left: 50%;
        bottom: 4px;

        width: 430px;
        max-height: 200px;

        transform: translateX(-50%);
    }

    .pl-experience-card {
        width: calc(100% - 30px);
        margin-top: -30px;
    }

    .pl-years strong {
        font-size: 66px;
    }

    .pl-card-bottom {
        gap: 13px;
    }

    .pl-card-bottom img {
        width: 88px;
        height: 70px;
    }

    .pl-card-bottom a > span {
        font-size: 16px;
    }
}


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

@media (max-width: 380px) {

    .pl-logo-text strong {
        font-size: 11px;
    }

    .pl-logo-text small {
        letter-spacing: 1.3px;
    }

    .pl-hero-content h1 {
        font-size: 36px;
    }

    .pl-hero-left {
        min-height: 670px;
    }

    .pl-slider-pagination {
        gap: 9px;
    }

    .pl-slider-footer {
        gap: 12px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .pl-machine-image {
        width: 390px;
        max-height: 185px;
    }

    .pl-experience-card {
        padding-right: 19px;
        padding-left: 19px;
    }

    .pl-award-icon,
    .pl-years {
        margin-left: 42px;
    }
}

/* ==================================================
   MASTER SECRETS SECTION
================================================== */

.cp-master-section {
    position: relative;
    padding: 115px 0 125px;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(5, 66, 165, 0.035),
            transparent 30%
        ),
        #ffffff;
    overflow: hidden;
}


/* ==================================================
   TOP BRUSH DECORATION
================================================== */

.cp-master-top-brush {
    position: absolute;
    top: 0;
    left: 50%;
    width: 310px;
    height: 24px;
    transform: translateX(-50%);
    opacity: 0.11;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent,
            #0542a5 20%,
            #0542a5 80%,
            transparent
        );

    clip-path:
        polygon(
            0 45%,
            10% 32%,
            20% 40%,
            31% 20%,
            43% 38%,
            55% 18%,
            68% 35%,
            80% 22%,
            90% 36%,
            100% 45%,
            90% 58%,
            80% 52%,
            68% 70%,
            55% 55%,
            43% 72%,
            31% 57%,
            20% 68%,
            10% 55%
        );
}


/* ==================================================
   LEFT VISUAL
================================================== */

.cp-master-visual {
    position: relative;
    width: min(100%, 560px);
    min-height: 545px;
    margin: 0 auto;
}


/* Main Photo */

.cp-master-main-image {
    position: relative;
    width: 74%;
    height: 500px;
    overflow: hidden;
    background: #e8edf3;
}

.cp-master-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(3, 27, 59, 0.12)
        );
}

.cp-master-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.cp-master-visual:hover .cp-master-main-image img {
    transform: scale(1.04);
}


/* Vertical Accent */

.cp-master-vertical-line {
    position: absolute;
    top: 18px;
    right: 20%;
    width: 10px;
    height: 118px;
    background: #0542a5;
}


/* ==================================================
   STAT CARD
================================================== */

.cp-master-stat-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
    width: 265px;
    min-height: 285px;
    padding: 28px 28px 24px;
    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #0542a5 0%,
            #0c5ac7 100%
        );

    box-shadow:
        0 25px 55px rgba(5, 66, 165, 0.25);
}

.cp-master-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -14px;
    width: 15px;
    height: 100%;
    background: #29d137;
}

.cp-master-stat-number {
    margin-bottom: 5px;
    font-size: 57px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -3px;
}

.cp-master-stat-card p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}


/* Card Pattern */

.cp-master-stat-pattern {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 40px 0 28px;
    overflow: hidden;
}

.cp-master-stat-pattern span {
    display: block;
    width: 20px;
    height: 2px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.85);
    transform: rotate(-48deg);
}


/* Customer Avatars */

.cp-master-customers {
    display: flex;
    align-items: center;
}

.cp-master-avatar {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    color: #0542a5;
    background: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cp-master-avatar:first-child {
    margin-left: 0;
}

.cp-master-avatar:nth-child(2) {
    background: #d9e8ff;
}

.cp-master-avatar:nth-child(3) {
    background: #f0e2d2;
}

.cp-master-avatar:nth-child(4) {
    background: #d7f1ec;
}

.cp-master-avatar-more {
    color: #ffffff;
    background: #29d137;
}


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

.cp-master-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}


/* Small Label */

.cp-master-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #8b929c;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.cp-master-label-icon {
    width: 0;
    height: 0;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #29d137;
}


/* Heading */

.cp-master-content h2 {
    max-width: 640px;
    margin-bottom: 24px;
    color: #111722;
    font-size: clamp(35px, 3.4vw, 53px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -1.7px;
}

.cp-master-content h2 span {
    display: block;
    color: #0542a5;
}


/* General Paragraph */

.cp-master-content > p {
    max-width: 635px;
    margin-bottom: 24px;
    color: #747b85;
    font-size: 14px;
    line-height: 1.9;
}


/* ==================================================
   POINTS
================================================== */

.cp-master-points {
    display: grid;
    gap: 12px;
    margin: 23px 0 28px;
}

.cp-master-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #303741;
    font-size: 13px;
    font-weight: 600;
}

.cp-master-point-icon {
    position: relative;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border: 2px solid #29d137;
    border-radius: 50%;
}

.cp-master-point-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 12px;
    height: 1px;
    background: #29d137;
    transform: translateY(-50%);
}


/* ==================================================
   INFORMATION BOXES
================================================== */

.cp-master-info-list {
    display: grid;
    gap: 20px;
    margin-bottom: 27px;
}

.cp-master-info-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 20px;
}

.cp-master-info-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #29d137;
    background: #f4f6f8;
    font-size: 25px;
    transition: 0.35s ease;
}

.cp-master-info-icon-blue {
    color: #ffffff;
    background: #0542a5;
}

.cp-master-info-item:hover .cp-master-info-icon {
    color: #ffffff;
    background: #29d137;
    transform: translateY(-4px);
}

.cp-master-info-item h3 {
    margin-bottom: 6px;
    color: #18202c;
    font-size: 16px;
    font-weight: 800;
}

.cp-master-info-item p {
    max-width: 390px;
    margin: 0;
    color: #7c838c;
    font-size: 12px;
    line-height: 1.65;
}


/* ==================================================
   FINAL TEXT
================================================== */

.cp-master-final-text {
    padding-left: 18px;
    border-left: 3px solid #29d137;
}


/* ==================================================
   BUTTON
================================================== */

.cp-master-button {
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 25px;
    color: #ffffff;
    background: #111722;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.35s ease;
}

.cp-master-button:hover {
    color: #ffffff;
    background: #0542a5;
    transform: translateY(-3px);
    box-shadow:
        0 15px 30px rgba(5, 66, 165, 0.22);
}


/* ==================================================
   DECORATIVE MACHINE
================================================== */

.cp-master-machine {
    position: absolute;
    right: -110px;
    bottom: 22px;
    width: 380px;
    opacity: 0.09;
    pointer-events: none;
}

.cp-master-machine img {
    width: 100%;
    max-height: 410px;
    object-fit: contain;
    filter: grayscale(1);
}


/* ==================================================
   BOTTOM RULER
================================================== */

.cp-master-ruler {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 22px;

    background:
        repeating-linear-gradient(
            90deg,
            #d7dadd 0,
            #d7dadd 1px,
            transparent 1px,
            transparent 13px
        );

    background-size: auto 10px;
    background-repeat: repeat-x;
}


/* ==================================================
   RESPONSIVE — LAPTOP
================================================== */

@media (max-width: 1199.98px) {

    .cp-master-section {
        padding-top: 95px;
    }

    .cp-master-main-image {
        width: 78%;
    }

    .cp-master-stat-card {
        width: 240px;
    }

    .cp-master-content h2 {
        font-size: 42px;
    }

    .cp-master-machine {
        right: -180px;
    }

}


/* ==================================================
   RESPONSIVE — TABLET
================================================== */

@media (max-width: 991.98px) {

    .cp-master-section {
        padding: 85px 0 105px;
    }

    .cp-master-visual {
        margin-bottom: 30px;
    }

    .cp-master-content {
        max-width: 100%;
    }

    .cp-master-content h2,
    .cp-master-content > p {
        max-width: 100%;
    }

    .cp-master-machine {
        display: none;
    }

}


/* ==================================================
   RESPONSIVE — MOBILE
================================================== */

@media (max-width: 767.98px) {

    .cp-master-section {
        padding: 70px 0 90px;
    }

    .cp-master-visual {
        min-height: 590px;
    }

    .cp-master-main-image {
        width: 88%;
        height: 440px;
    }

    .cp-master-vertical-line {
        right: 7%;
    }

    .cp-master-stat-card {
        right: 0;
        bottom: 0;
        width: 240px;
        min-height: 250px;
        padding: 25px 24px;
    }

    .cp-master-stat-number {
        font-size: 50px;
    }

    .cp-master-stat-pattern {
        margin: 30px 0 25px;
    }

    .cp-master-content h2 {
        font-size: 36px;
    }

}


/* ==================================================
   RESPONSIVE — SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .cp-master-visual {
        min-height: 565px;
    }

    .cp-master-main-image {
        width: 100%;
        height: 400px;
    }

    .cp-master-vertical-line {
        display: none;
    }

    .cp-master-stat-card {
        right: 15px;
        width: calc(100% - 60px);
    }

    .cp-master-info-item {
        grid-template-columns: 55px 1fr;
        gap: 15px;
    }

    .cp-master-info-icon {
        width: 55px;
        height: 55px;
        font-size: 21px;
    }

    .cp-master-content h2 {
        font-size: 32px;
    }

}


/* ==================================================
   SERVICES SECTION
================================================== */

.cc-services-section {
    position: relative;
    padding: 105px 0 120px;
    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #f4f7fb 100%
        );
    overflow: hidden;
}

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


/* ==================================================
   INTRO
================================================== */

.cc-services-intro {
    height: 100%;
    padding: 8px 35px 20px 0;
}

.cc-services-small-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    color: #89919b;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.cc-services-small-title i {
    color: #084cb3;
    font-size: 13px;
    transform: rotate(-30deg);
}

.cc-services-intro h2 {
    max-width: 320px;
    margin-bottom: 18px;
    color: #29d137;
    font-size: clamp(35px, 3.4vw, 49px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -1.6px;
}

.cc-services-intro h2 span {
    display: block;
    color: #0542a5;
}

.cc-services-intro p {
    max-width: 320px;
    margin: 0;
    color: #7c838d;
    font-size: 12px;
    line-height: 1.85;
}


/* ==================================================
   SERVICE CARD
================================================== */

.cc-service-card {
    position: relative;
    height: 100%;
    min-height: 245px;
    padding: 30px 28px 27px 76px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid transparent;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.cc-service-card::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 18px;
    width: 50px;
    height: 68px;
    opacity: 0.08;
    background:
        linear-gradient(
            90deg,
            transparent 0 44%,
            #29d137 44% 50%,
            transparent 50% 100%
        );
    transform: skewX(-14deg);
}

.cc-service-card:hover {
    border-color: rgba(5, 66, 165, 0.28);
    transform: translateY(-8px);
    box-shadow:
        0 20px 45px rgba(5, 66, 165, 0.13);
}


/* ==================================================
   FEATURED CARD
================================================== */

.cc-service-card-featured {
    border: 2px solid #29d137;
}

.cc-service-card-featured::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(41, 209, 55, 0.14);
    pointer-events: none;
}


/* ==================================================
   VERTICAL NUMBER
================================================== */

.cc-service-side-number {
    position: absolute;
    top: 32px;
    left: 18px;
    color: #e9ecf0;
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}


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

.cc-service-card-content {
    position: relative;
    z-index: 2;
}

.cc-service-card-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.cc-service-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #29d137;
    background: rgba(41, 209, 55, 0.08);
    border-radius: 50%;
    font-size: 23px;
    transition: 0.35s ease;
}

.cc-service-line {
    width: 100%;
    height: 1px;
    background: #e8ebef;
}

.cc-service-card h3 {
    margin-bottom: 11px;
    color: #17202b;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
}

.cc-service-card p {
    max-width: 280px;
    margin: 0;
    color: #858c95;
    font-size: 11px;
    line-height: 1.7;
}

.cc-service-card:hover .cc-service-icon {
    color: #ffffff;
    background: #0542a5;
    transform: rotateY(180deg);
}


/* ==================================================
   MAIN BUTTON
================================================== */

.cc-service-main-button {
    position: absolute;
    right: 25px;
    bottom: -18px;
    z-index: 4;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 11px 20px;
    color: #ffffff;
    background: #084cb3;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.35s ease;
}

.cc-service-main-button:hover {
    color: #ffffff;
    background: #0542a5;
}


/* ==================================================
   SMALL ARROW BUTTON
================================================== */

.cc-service-arrow {
    position: absolute;
    right: 21px;
    bottom: -15px;
    z-index: 4;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #084cb3;
    background: #eef1f4;
    font-size: 10px;
    transition: 0.35s ease;
}

.cc-service-arrow:hover {
    color: #ffffff;
    background: #0542a5;
    transform: translateY(-4px);
}


/* ==================================================
   BACKGROUND SHAPES
================================================== */

.cc-services-bg-shape {
    position: absolute;
    bottom: -60px;
    display: block;
    pointer-events: none;
    opacity: 0.045;
    border: 3px solid #0542a5;
}

.cc-services-bg-shape-one {
    left: 40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
}

.cc-services-bg-shape-two {
    right: 60px;
    width: 380px;
    height: 230px;
    transform: skewX(-24deg);
}


/* ==================================================
   RESPONSIVE — LAPTOP
================================================== */

@media (max-width: 1199.98px) {

    .cc-service-card {
        padding-left: 68px;
    }

    .cc-services-intro {
        padding-right: 10px;
    }

}


/* ==================================================
   RESPONSIVE — TABLET
================================================== */

@media (max-width: 991.98px) {

    .cc-services-section {
        padding: 85px 0 100px;
    }

    .cc-services-intro {
        padding-right: 0;
        padding-bottom: 25px;
    }

    .cc-services-intro h2,
    .cc-services-intro p {
        max-width: 600px;
    }

}


/* ==================================================
   RESPONSIVE — MOBILE
================================================== */

@media (max-width: 767.98px) {

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

    .cc-service-card {
        min-height: 230px;
    }

    .cc-services-intro h2 {
        font-size: 36px;
    }

}


/* ==================================================
   RESPONSIVE — SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .cc-service-card {
        padding:
            28px
            22px
            28px
            65px;
    }

    .cc-service-side-number {
        left: 15px;
        font-size: 14px;
    }

    .cc-service-card h3 {
        font-size: 16px;
    }

    .cc-service-main-button {
        right: 18px;
    }

}

/* ==================================================
   DEEP CONTAMINANTS SECTION
================================================== */

.cc-rescue-section {
    position: relative;
    padding: 115px 0;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 56%,
            #f2f6fd 56%,
            #f7f9fc 100%
        );
    overflow: hidden;
}

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


/* ==================================================
   BACKGROUND WORD
================================================== */

.cc-rescue-bg-text {
    position: absolute;
    right: -35px;
    bottom: -34px;
    color: rgba(5, 66, 165, 0.035);
    font-size: clamp(120px, 17vw, 260px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -12px;
    pointer-events: none;
}


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

.cc-rescue-content {
    position: relative;
    max-width: 650px;
}


/* Small Label */

.cc-rescue-label {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 19px;
    color: #7b8490;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.cc-rescue-label-icon {
    width: 29px;
    height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #29d137;
    font-size: 11px;
}


/* Heading */

.cc-rescue-content h2 {
    max-width: 640px;
    margin-bottom: 25px;
    color: #121a27;
    font-size: clamp(39px, 4vw, 58px);
    line-height: 1.03;
    font-weight: 850;
    letter-spacing: -2px;
}

.cc-rescue-content h2 span {
    display: block;
    color: #0542a5;
}


/* Main Copy */

.cc-rescue-content > p {
    max-width: 620px;
    margin-bottom: 30px;
    color: #747d88;
    font-size: 14px;
    line-height: 1.9;
}


/* ==================================================
   FEATURE ROWS
================================================== */

.cc-rescue-features {
    display: grid;
    gap: 13px;
    margin-bottom: 28px;
}

.cc-rescue-feature {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 19px;
    min-height: 92px;
    padding: 16px 20px 16px 14px;
    background: #f7f9fc;
    border-left: 3px solid transparent;
    transition: 0.35s ease;
}

.cc-rescue-feature:hover {
    background: #ffffff;
    border-left-color: #29d137;
    transform: translateX(8px);
    box-shadow:
        0 15px 35px rgba(5, 66, 165, 0.10);
}

.cc-rescue-feature-number {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0542a5;
    background: #ffffff;
    border: 1px solid rgba(5, 66, 165, 0.14);
    font-size: 14px;
    font-weight: 900;
}

.cc-rescue-feature h3 {
    margin-bottom: 5px;
    color: #152033;
    font-size: 16px;
    font-weight: 800;
}

.cc-rescue-feature p {
    max-width: 430px;
    margin: 0;
    color: #818994;
    font-size: 11px;
    line-height: 1.65;
}


/* ==================================================
   FINAL COPY BOX
================================================== */

.cc-rescue-final-copy {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 17px;
    margin-bottom: 29px;
    padding: 23px 25px;
    color: #ffffff;
    background:
        linear-gradient(
            120deg,
            #032d72 0%,
            #0542a5 55%,
            #1765c9 100%
        );
    box-shadow:
        0 20px 45px rgba(5, 66, 165, 0.20);
}

.cc-rescue-final-copy::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 95px;
    height: 4px;
    background: #29d137;
}

.cc-rescue-quote-icon {
    color: rgba(255, 255, 255, 0.32);
    font-size: 30px;
}

.cc-rescue-final-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    line-height: 1.8;
}


/* ==================================================
   BUTTON
================================================== */

.cc-rescue-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 26px;
    color: #ffffff;
    background: #29d137;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.35s ease;
}

.cc-rescue-button:hover {
    color: #ffffff;
    background: #0542a5;
    transform: translateY(-4px);
    box-shadow:
        0 15px 30px rgba(5, 66, 165, 0.20);
}


/* ==================================================
   VISUAL AREA
================================================== */

.cc-rescue-visual {
    position: relative;
    width: min(100%, 600px);
    min-height: 650px;
    margin-left: auto;
}


/* Main Image */

.cc-rescue-main-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 86%;
    height: 565px;
    overflow: hidden;
    background: #dce5f2;
}

.cc-rescue-main-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 7px;
    height: 140px;
    background: #29d137;
}

.cc-rescue-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.9s ease;
}

.cc-rescue-visual:hover .cc-rescue-main-image img {
    transform: scale(1.045);
}

.cc-rescue-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(3, 30, 68, 0.32)
        );
}

.cc-rescue-image-label {
    position: absolute;
    right: 24px;
    bottom: 25px;
    z-index: 4;
    padding: 10px 15px;
    color: #ffffff;
    background: rgba(5, 66, 165, 0.92);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ==================================================
   DARK FLOATING CARD
================================================== */

.cc-rescue-dark-card {
    position: absolute;
    top: 72px;
    left: 0;
    z-index: 6;
    width: 245px;
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 20px;
    color: #ffffff;
    background: #111a28;
    box-shadow:
        0 20px 45px rgba(9, 19, 34, 0.22);
}

.cc-rescue-dark-card-icon {
    width: 49px;
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    background: #29d137;
    font-size: 18px;
}

.cc-rescue-dark-card div {
    display: flex;
    flex-direction: column;
}

.cc-rescue-dark-card small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 9px;
    text-transform: uppercase;
}

.cc-rescue-dark-card strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.3;
}


/* ==================================================
   RESULT CARD
================================================== */

.cc-rescue-result-card {
    position: absolute;
    right: 35px;
    bottom: 0;
    z-index: 7;
    width: 265px;
    min-height: 130px;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 22px;
    background: #ffffff;
    border-bottom: 4px solid #0542a5;
    box-shadow:
        0 22px 50px rgba(10, 31, 58, 0.15);
}

.cc-rescue-result-number {
    color: #29d137;
    font-size: 43px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.cc-rescue-result-card div {
    display: flex;
    flex-direction: column;
}

.cc-rescue-result-card strong {
    margin-bottom: 4px;
    color: #172132;
    font-size: 15px;
}

.cc-rescue-result-card small {
    color: #838b95;
    font-size: 10px;
}


/* ==================================================
   DECORATIVE LINES
================================================== */

.cc-rescue-line {
    position: absolute;
    display: block;
    background: rgba(5, 66, 165, 0.11);
    pointer-events: none;
}

.cc-rescue-line-one {
    top: 24px;
    left: 45px;
    width: 140px;
    height: 2px;
}

.cc-rescue-line-two {
    right: -40px;
    bottom: 70px;
    width: 170px;
    height: 2px;
    transform: rotate(90deg);
}


/* ==================================================
   RESPONSIVE — TABLET
================================================== */

@media (max-width: 991.98px) {

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

    .cc-rescue-content {
        max-width: 100%;
    }

    .cc-rescue-visual {
        margin: 25px auto 0;
    }

}


/* ==================================================
   RESPONSIVE — MOBILE
================================================== */

@media (max-width: 767.98px) {

    .cc-rescue-section {
        padding: 70px 0;
        background: #ffffff;
    }

    .cc-rescue-content h2 {
        font-size: 37px;
    }

    .cc-rescue-final-copy {
        grid-template-columns: 35px 1fr;
        padding: 20px;
    }

    .cc-rescue-visual {
        min-height: 600px;
    }

    .cc-rescue-main-image {
        width: 90%;
        height: 500px;
    }

    .cc-rescue-dark-card {
        top: 45px;
        width: 230px;
    }

}


/* ==================================================
   RESPONSIVE — SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .cc-rescue-content h2 {
        font-size: 32px;
    }

    .cc-rescue-feature {
        grid-template-columns: 47px 1fr;
        padding-right: 14px;
    }

    .cc-rescue-feature-number {
        width: 43px;
        height: 43px;
    }

    .cc-rescue-visual {
        min-height: 555px;
    }

    .cc-rescue-main-image {
        width: 100%;
        height: 455px;
    }

    .cc-rescue-dark-card {
        top: 25px;
        left: 12px;
        width: calc(100% - 70px);
    }

    .cc-rescue-result-card {
        right: 12px;
        width: calc(100% - 65px);
    }

    .cc-rescue-result-number {
        font-size: 37px;
    }

}

/* ==================================================
   CARPET CLEANING PROCESS SECTION
================================================== */

.cc-process-section {
    position: relative;
    padding: 110px 0 120px;
    background:
        radial-gradient(
            circle at 7% 18%,
            rgba(5, 66, 165, 0.055),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f9fc 100%
        );
    overflow: hidden;
}

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


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

.cc-process-heading {
    max-width: 820px;
    margin: 0 auto 65px;
    text-align: center;
}

.cc-process-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #6f7884;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.cc-process-kicker i {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #29d137;
    font-size: 11px;
}

.cc-process-heading h2 {
    margin-bottom: 20px;
    color: #121a27;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.02;
    font-weight: 850;
    letter-spacing: -2px;
}

.cc-process-heading h2 span {
    display: block;
    color: #0542a5;
}

.cc-process-heading p {
    max-width: 730px;
    margin: 0 auto;
    color: #747d88;
    font-size: 14px;
    line-height: 1.85;
}


/* ==================================================
   PROCESS TIMELINE
================================================== */

.cc-process-timeline {
    position: relative;
    margin-bottom: 85px;
}

.cc-process-timeline::before {
    content: "";
    position: absolute;
    top: 52px;
    right: 8%;
    left: 8%;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            rgba(5, 66, 165, 0.10),
            rgba(5, 66, 165, 0.55),
            rgba(5, 66, 165, 0.10)
        );
}


/* ==================================================
   PROCESS STEP CARD
================================================== */

.cc-process-step {
    position: relative;
    height: 100%;
    min-height: 300px;
    padding: 80px 25px 27px;
    background: #ffffff;
    border: 1px solid rgba(5, 66, 165, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.cc-process-step:hover {
    border-color: rgba(5, 66, 165, 0.24);
    transform: translateY(-10px);
    box-shadow:
        0 22px 45px rgba(5, 66, 165, 0.11);
}

.cc-process-number {
    position: absolute;
    top: 18px;
    left: 22px;
    color: rgba(5, 66, 165, 0.08);
    font-size: 56px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -4px;
}

.cc-process-icon {
    position: absolute;
    top: 31px;
    left: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #0542a5;
    border: 6px solid #f7f9fc;
    border-radius: 50%;
    font-size: 16px;
    transform: translateX(-50%);
    transition: 0.35s ease;
}

.cc-process-step:hover .cc-process-icon {
    background: #29d137;
    transform: translateX(-50%) rotateY(180deg);
}

.cc-process-step h3 {
    margin-bottom: 13px;
    color: #162033;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.cc-process-step p {
    margin: 0;
    color: #808893;
    font-size: 12px;
    line-height: 1.75;
}


/* ==================================================
   RESULT AREA
================================================== */

.cc-process-result {
    position: relative;
    padding: 48px;
    background: #ffffff;
    box-shadow:
        0 25px 65px rgba(15, 35, 61, 0.10);
}

.cc-process-result::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 5px;
    background: #29d137;
}

.cc-process-result::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 190px;
    height: 5px;
    background: #0542a5;
}


/* ==================================================
   BEFORE / AFTER IMAGE LAYOUT
================================================== */

.cc-process-comparison {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-height: 480px;
}

.cc-process-photo {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    background: #e2e8f0;
}

.cc-process-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(4, 25, 53, 0.34)
        );
}

.cc-process-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cc-process-photo:hover img {
    transform: scale(1.045);
}

.cc-process-photo > span {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 3;
    min-width: 85px;
    padding: 10px 15px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cc-process-before > span {
    background: #131c29;
}

.cc-process-after > span {
    background: #29d137;
}

.cc-process-center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 8;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #0542a5;
    border: 5px solid #ffffff;
    border-radius: 50%;
    font-size: 17px;
    transform: translate(-50%, -50%);
    box-shadow:
        0 12px 25px rgba(5, 66, 165, 0.25);
}


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

.cc-process-result-content {
    max-width: 500px;
}

.cc-process-result-kicker {
    display: block;
    margin-bottom: 13px;
    color: #29d137;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.cc-process-result-content h3 {
    margin-bottom: 20px;
    color: #131c29;
    font-size: clamp(31px, 3.1vw, 46px);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -1.4px;
}

.cc-process-result-content > p {
    margin-bottom: 24px;
    color: #757e89;
    font-size: 13px;
    line-height: 1.85;
}


/* ==================================================
   BENEFITS
================================================== */

.cc-process-benefits {
    display: grid;
    gap: 13px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.cc-process-benefits li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #293445;
    font-size: 12px;
    font-weight: 700;
}

.cc-process-benefits i {
    color: #0542a5;
}


/* ==================================================
   BUTTON
================================================== */

.cc-process-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 25px;
    color: #ffffff;
    background: #0542a5;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.35s ease;
}

.cc-process-button:hover {
    color: #ffffff;
    background: #29d137;
    transform: translateY(-4px);
    box-shadow:
        0 15px 30px rgba(244, 81, 0, 0.22);
}


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

.cc-process-decoration {
    position: absolute;
    display: block;
    pointer-events: none;
}

.cc-process-decoration-one {
    top: 60px;
    left: -90px;
    width: 220px;
    height: 220px;
    border: 28px solid rgba(5, 66, 165, 0.035);
    border-radius: 50%;
}

.cc-process-decoration-two {
    right: -100px;
    bottom: 70px;
    width: 270px;
    height: 270px;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(244, 81, 0, 0.035) 0,
            rgba(244, 81, 0, 0.035) 4px,
            transparent 4px,
            transparent 14px
        );
    transform: rotate(15deg);
}


/* ==================================================
   RESPONSIVE — LAPTOP
================================================== */

@media (max-width: 1199.98px) {

    .cc-process-step {
        min-height: 320px;
    }

    .cc-process-result {
        padding: 38px;
    }

    .cc-process-comparison,
    .cc-process-photo {
        min-height: 430px;
    }

}


/* ==================================================
   RESPONSIVE — TABLET
================================================== */

@media (max-width: 991.98px) {

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

    .cc-process-timeline::before {
        display: none;
    }

    .cc-process-step {
        min-height: 275px;
    }

    .cc-process-result {
        padding: 34px;
    }

    .cc-process-result-content {
        max-width: 100%;
    }

}


/* ==================================================
   RESPONSIVE — MOBILE
================================================== */

@media (max-width: 767.98px) {

    .cc-process-section {
        padding: 70px 0 85px;
    }

    .cc-process-heading {
        margin-bottom: 45px;
    }

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

    .cc-process-timeline {
        margin-bottom: 60px;
    }

    .cc-process-result {
        padding: 25px;
    }

    .cc-process-comparison {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cc-process-photo {
        min-height: 370px;
    }

    .cc-process-center-badge {
        top: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
    }

}


/* ==================================================
   RESPONSIVE — SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .cc-process-heading h2 {
        font-size: 33px;
    }

    .cc-process-step {
        min-height: 260px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .cc-process-result {
        padding: 18px;
    }

    .cc-process-photo {
        min-height: 310px;
    }

    .cc-process-photo > span {
        left: 14px;
        bottom: 14px;
    }

    .cc-process-result-content h3 {
        font-size: 31px;
    }

}

/*========================*/

.cc-master-section{

padding:120px 0;

background:#fff;

}


.cc-master-image{

position:relative;

overflow:hidden;

border-radius:18px;

}

.cc-master-image img{

width:100%;

height:700px;

object-fit:cover;

display:block;

}


.cc-master-badge{

position:absolute;

bottom:30px;

left:30px;

background:#0542a5;

color:#fff;

padding:25px 35px;

border-radius:15px;

box-shadow:0 20px 40px rgba(0,0,0,.2);

}

.cc-master-badge strong{

display:block;

font-size:48px;

font-weight:800;

line-height:1;

}

.cc-master-badge span{

font-size:15px;

}


.cc-master-subtitle{

color:#29d137;

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

display:block;

margin-bottom:15px;

}


.cc-master-content h2{

font-size:54px;

font-weight:800;

line-height:1.1;

margin-bottom:25px;

}

.cc-master-content h2 span{

display:block;

color:#0542a5;

}


.cc-master-content p{

font-size:17px;

line-height:1.9;

color:#666;

}


.cc-master-list{

margin:35px 0;

display:grid;

gap:18px;

}


.cc-master-list div{

display:flex;

gap:15px;

font-weight:600;

}


.cc-master-list i{

color:#0542a5;

margin-top:4px;

}


.cc-master-note{

font-weight:600;

color:#222;

}


/*========================*/

.cc-master-bottom{

margin-top:90px;

padding:70px;

background:#0542a5;

border-radius:20px;

color:#fff;

position:relative;

overflow:hidden;

}


.cc-master-bottom:before{

content:"";

position:absolute;

right:-80px;

top:-80px;

width:250px;

height:250px;

background:rgba(255,255,255,.05);

border-radius:50%;

}


.cc-master-bottom h3{

font-size:42px;

font-weight:800;

line-height:1.2;

margin-bottom:0;

}


.cc-master-bottom h3 span{

display:block;

color:#fff;

}


.cc-master-bottom p{

color:rgba(255,255,255,.85);

font-size:16px;

line-height:1.9;

margin-bottom:20px;

}

/* ==================================================
   COUPON + FORM SECTION
================================================== */

.cc-offer-form-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(5, 66, 165, 0.06),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #f8faff 0%,
            #ffffff 100%
        );
    overflow: hidden;
}

.cc-offer-form-wrapper {
    position: relative;
    background: #ffffff;
    box-shadow:
        0 28px 75px rgba(10, 31, 61, 0.14);
}


/* ==================================================
   COUPON SIDE
================================================== */

.cc-coupon-side {
    position: relative;
    height: 100%;
    min-height: 780px;
    padding: 65px 45px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #021f4e 0%,
            #0542a5 58%,
            #1767d4 100%
        );
    overflow: hidden;
    isolation: isolate;
}

.cc-coupon-side::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    z-index: -1;
    width: 250px;
    height: 250px;
    border: 38px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cc-coupon-shape {
    position: absolute;
    z-index: -1;
    display: block;
    background: rgba(244, 81, 0, 0.13);
    pointer-events: none;
}

.cc-coupon-shape-one {
    top: -130px;
    left: -80px;
    width: 230px;
    height: 430px;
    transform: rotate(35deg);
}

.cc-coupon-shape-two {
    top: 290px;
    right: -60px;
    width: 170px;
    height: 360px;
    transform: skewX(-25deg);
}

.cc-coupon-content {
    position: relative;
    z-index: 3;
}

.cc-coupon-kicker {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.cc-coupon-kicker i {
    color: #29d137;
    font-size: 15px;
}

.cc-coupon-content h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: -2px;
}

.cc-coupon-content h2 span {
    display: block;
    color: #ffffff;
}

.cc-coupon-intro {
    max-width: 440px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.85;
}


/* ==================================================
   COUPON OFFER
================================================== */

.cc-coupon-offer {
    position: relative;
    display: grid;
    grid-template-columns: 105px 1fr;
    align-items: center;
    gap: 20px;
    min-height: 112px;
    margin-bottom: 15px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

.cc-coupon-offer:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateX(7px);
}

.cc-coupon-offer-featured {
    background: #29d137;
    border-color: #29d137;
}

.cc-coupon-offer-featured:hover {
    background: #21a82c;
    border-color: #21a82c;
}

.cc-coupon-value {
    padding-right: 18px;
    border-right: 1px dashed rgba(255, 255, 255, 0.38);
}

.cc-coupon-value strong {
    display: block;
    color: #ffffff;
    font-size: 44px;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -3px;
}

.cc-coupon-value span {
    color: rgba(255, 255, 255, 0.77);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.cc-coupon-details h3 {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
}

.cc-coupon-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    line-height: 1.6;
}


/* ==================================================
   COUPON TERMS
================================================== */

.cc-coupon-terms {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    margin: 25px 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
    line-height: 1.6;
}

.cc-coupon-terms i {
    color: #29d137;
    margin-top: 2px;
}


/* ==================================================
   COUPON PHONE
================================================== */

.cc-coupon-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
}

.cc-coupon-phone:hover {
    color: #ffffff;
}

.cc-coupon-phone-icon {
    width: 53px;
    height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    background: #29d137;
    font-size: 18px;
}

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

.cc-coupon-phone small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.cc-coupon-phone strong {
    color: #ffffff;
    font-size: 23px;
    font-weight: 900;
}


/* ==================================================
   FORM SIDE
================================================== */

.cc-form-side {
    height: 100%;
    min-height: 780px;
    padding: 65px 60px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcff 100%
        );
}

.cc-form-heading {
    max-width: 650px;
    margin-bottom: 32px;
}

.cc-form-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #6f7884;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.cc-form-kicker i {
    color: #29d137;
}

.cc-form-heading h2 {
    margin-bottom: 17px;
    color: #111a29;
    font-size: clamp(37px, 3.8vw, 52px);
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: -1.8px;
}

.cc-form-heading h2 span {
    display: block;
    color: #0542a5;
}

.cc-form-heading p {
    max-width: 600px;
    margin: 0;
    color: #7b838e;
    font-size: 13px;
    line-height: 1.8;
}


/* ==================================================
   FORM RESET
================================================== */

.cc-coupon-form,
.cc-coupon-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}


/* ==================================================
   FORM FIELD
================================================== */

.cc-form-field {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    background: #f5f7fb;
    border: 1px solid transparent;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.cc-form-field:focus-within {
    background: #ffffff;
    border-color: rgba(5, 66, 165, 0.45);
    box-shadow:
        0 10px 25px rgba(5, 66, 165, 0.08);
}

.cc-form-field > i {
    position: absolute;
    top: 50%;
    left: 19px;
    z-index: 2;
    color: #0542a5;
    font-size: 14px;
    transform: translateY(-50%);
}

.cc-form-field input,
.cc-form-field select,
.cc-form-field textarea {
    width: 100%;
    color: #1e2938;
    background: transparent;
    border: 0;
    outline: none;
    font-size: 12px;
}

.cc-form-field input,
.cc-form-field select {
    min-height: 58px;
    padding: 12px 17px 12px 48px;
}

.cc-form-field textarea {
    min-height: 125px;
    padding: 18px 17px 15px 48px;
    resize: vertical;
}

.cc-form-field input::placeholder,
.cc-form-field textarea::placeholder {
    color: #9299a3;
}

.cc-form-select select {
    appearance: none;
    cursor: pointer;
}

.cc-form-select::after {
    content: "\f078";
    position: absolute;
    top: 50%;
    right: 18px;
    color: #89919c;
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 900;
    pointer-events: none;
    transform: translateY(-50%);
}

.cc-form-message {
    align-items: flex-start;
}

.cc-form-message > i {
    top: 22px;
    transform: none;
}


/* ==================================================
   DATE FIELD
================================================== */

.cc-form-field input[type="date"] {
    color: #7e8792;
}


/* ==================================================
   SUBMIT BUTTON
================================================== */

.cc-form-submit {
    width: 100%;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 15px 24px;
    color: #ffffff;
    background: #0542a5;
    border: 0;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.cc-form-submit:hover {
    background: #29d137;
    transform: translateY(-3px);
    box-shadow:
        0 15px 30px rgba(41, 209, 55, 0.22);
}


/* ==================================================
   TRUST POINTS
================================================== */

.cc-form-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 23px;
}

.cc-form-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #69727d;
    font-size: 10px;
    font-weight: 700;
}

.cc-form-trust i {
    color: #0542a5;
}


/* ==================================================
   RESPONSIVE — LAPTOP
================================================== */

@media (max-width: 1199.98px) {

    .cc-coupon-side {
        padding-right: 32px;
        padding-left: 32px;
    }

    .cc-form-side {
        padding-right: 38px;
        padding-left: 38px;
    }

    .cc-coupon-offer {
        grid-template-columns: 90px 1fr;
    }

    .cc-coupon-value strong {
        font-size: 39px;
    }

}


/* ==================================================
   RESPONSIVE — TABLET
================================================== */

@media (max-width: 991.98px) {

    .cc-offer-form-section {
        padding: 85px 0;
    }

    .cc-coupon-side,
    .cc-form-side {
        min-height: auto;
    }

    .cc-coupon-side {
        padding: 55px 45px;
    }

    .cc-form-side {
        padding: 55px 45px;
    }

}


/* ==================================================
   RESPONSIVE — MOBILE
================================================== */

@media (max-width: 767.98px) {

    .cc-offer-form-section {
        padding: 70px 0;
    }

    .cc-coupon-side,
    .cc-form-side {
        padding: 45px 25px;
    }

    .cc-coupon-content h2,
    .cc-form-heading h2 {
        font-size: 38px;
    }

    .cc-form-trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

}


/* ==================================================
   RESPONSIVE — SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .cc-coupon-side,
    .cc-form-side {
        padding: 38px 18px;
    }

    .cc-coupon-content h2,
    .cc-form-heading h2 {
        font-size: 33px;
    }

    .cc-coupon-offer {
        grid-template-columns: 78px 1fr;
        gap: 14px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .cc-coupon-value {
        padding-right: 13px;
    }

    .cc-coupon-value strong {
        font-size: 34px;
    }

    .cc-coupon-details h3 {
        font-size: 15px;
    }

    .cc-coupon-phone strong {
        font-size: 20px;
    }

}


/* ==================================================
   UPDATED FORM STRUCTURE
================================================== */

.cc-coupon-form .cc-form-legend {
    width: 100%;
    margin: 0 0 25px;
    padding: 0 0 15px;
    color: #111a29;
    border-bottom: 1px solid #e8edf5;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
}

.cc-coupon-form .cc-form-group {
    height: 100%;
}

.cc-coupon-form .cc-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #273348;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.cc-coupon-form .cc-form-field {
    width: 100%;
}

.cc-coupon-form .cc-form-message {
    min-height: 125px;
}

.cc-coupon-form .cc-form-message textarea {
    width: 100% !important;
    min-height: 125px;
    height: 125px !important;
}

.cc-coupon-form .cc-form-field select {
    padding-right: 42px;
}

.cc-coupon-form input[type="number"] {
    appearance: textfield;
}

.cc-coupon-form input[type="number"]::-webkit-inner-spin-button,
.cc-coupon-form input[type="number"]::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.cc-coupon-form .subject {
    display: block;
}

@media (max-width: 767.98px) {

    .cc-coupon-form .cc-form-legend {
        font-size: 16px;
    }

}

/* ==================================================
   DARK FAQ SECTION
================================================== */

.cc-dark-faq-section {
    position: relative;
    padding: 110px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(244, 81, 0, 0.10),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #021a3f 0%,
            #032d72 45%,
            #0542a5 100%
        );
    overflow: hidden;
}

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


/* ==================================================
   INTRO
================================================== */

.cc-dark-faq-intro {
    position: sticky;
    top: 30px;
    max-width: 500px;
}

.cc-dark-faq-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.cc-dark-faq-kicker i {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #21a82c;
    font-size: 12px;
}

.cc-dark-faq-intro h2 {
    margin-bottom: 23px;
    color: #ffffff;
    font-size: clamp(38px, 4.3vw, 60px);
    line-height: 1.03;
    font-weight: 850;
    letter-spacing: -2px;
}

.cc-dark-faq-intro h2 span {
    display: block;
    color: #8fc1ff;
}

.cc-dark-faq-intro > p {
    max-width: 470px;
    margin-bottom: 31px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.9;
}


/* ==================================================
   CONTACT
================================================== */

.cc-dark-faq-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cc-dark-faq-contact-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    background: #21a82c;
    font-size: 18px;
}

.cc-dark-faq-contact > div {
    display: flex;
    flex-direction: column;
}

.cc-dark-faq-contact small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.cc-dark-faq-contact a {
    color: #ffffff;
    font-size: 25px;
    font-weight: 900;
}

.cc-dark-faq-contact a:hover {
    color: #21a82c;
}


/* ==================================================
   ACCORDION RESET
================================================== */

.cc-dark-faq-accordion {
    position: relative;
}

.cc-dark-faq-item {
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    overflow: hidden;
}

.cc-dark-faq-item:last-child {
    margin-bottom: 0;
}


/* ==================================================
   ACCORDION BUTTON
================================================== */

.cc-dark-faq-button {
    position: relative;
    min-height: 105px;
    display: grid;
    grid-template-columns: 54px 1fr 36px;
    align-items: center;
    gap: 18px;
    padding: 24px 26px;
    color: #ffffff;
    background: transparent;
    border: 0;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 16px;
    font-weight: 800;
    text-align: left;
}

.cc-dark-faq-button:not(.collapsed) {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.cc-dark-faq-button::after {
    display: none;
}

.cc-dark-faq-button:focus {
    box-shadow: none;
}


/* ==================================================
   NUMBER
================================================== */

.cc-dark-faq-number {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8fc1ff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    font-weight: 900;
}

.cc-dark-faq-button:not(.collapsed) .cc-dark-faq-number {
    color: #ffffff;
    background: #21a82c;
    border-color: #21a82c;
}


/* ==================================================
   QUESTION
================================================== */

.cc-dark-faq-question {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 800;
}


/* ==================================================
   CUSTOM PLUS ICON
================================================== */

.cc-dark-faq-icon {
    position: relative;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    background: rgba(255, 255, 255, 0.07);
}

.cc-dark-faq-icon span {
    position: absolute;
    width: 13px;
    height: 2px;
    background: #ffffff;
    transition: 0.3s ease;
}

.cc-dark-faq-icon span:last-child {
    transform: rotate(90deg);
}

.cc-dark-faq-button:not(.collapsed) .cc-dark-faq-icon {
    background: #21a82c;
}

.cc-dark-faq-button:not(.collapsed) .cc-dark-faq-icon span:last-child {
    transform: rotate(0deg);
}


/* ==================================================
   ANSWER
================================================== */

.cc-dark-faq-answer {
    padding: 0 26px 28px 98px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    line-height: 1.9;
}


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

.cc-dark-faq-shape {
    position: absolute;
    display: block;
    pointer-events: none;
}

.cc-dark-faq-shape-one {
    top: -120px;
    right: -90px;
    width: 320px;
    height: 320px;
    border: 45px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}

.cc-dark-faq-shape-two {
    left: -100px;
    bottom: -160px;
    width: 330px;
    height: 330px;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(244, 81, 0, 0.04) 0,
            rgba(244, 81, 0, 0.04) 4px,
            transparent 4px,
            transparent 15px
        );
    transform: rotate(18deg);
}


/* ==================================================
   RESPONSIVE — TABLET
================================================== */

@media (max-width: 991.98px) {

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

    .cc-dark-faq-intro {
        position: relative;
        top: auto;
        max-width: 100%;
    }

    .cc-dark-faq-intro > p {
        max-width: 680px;
    }

}


/* ==================================================
   RESPONSIVE — MOBILE
================================================== */

@media (max-width: 767.98px) {

    .cc-dark-faq-section {
        padding: 70px 0;
    }

    .cc-dark-faq-intro h2 {
        font-size: 38px;
    }

    .cc-dark-faq-button {
        grid-template-columns: 46px 1fr 31px;
        gap: 13px;
        min-height: 95px;
        padding: 20px 18px;
    }

    .cc-dark-faq-number {
        width: 46px;
        height: 46px;
    }

    .cc-dark-faq-question {
        font-size: 15px;
    }

    .cc-dark-faq-answer {
        padding:
            0
            18px
            24px
            77px;
    }

}


/* ==================================================
   RESPONSIVE — SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .cc-dark-faq-intro h2 {
        font-size: 33px;
    }

    .cc-dark-faq-button {
        grid-template-columns: 42px 1fr 28px;
        gap: 10px;
        padding: 18px 14px;
    }

    .cc-dark-faq-number {
        width: 42px;
        height: 42px;
        font-size: 12px;
    }

    .cc-dark-faq-question {
        font-size: 14px;
    }

    .cc-dark-faq-icon {
        width: 28px;
        height: 28px;
    }

    .cc-dark-faq-answer {
        padding:
            0
            14px
            22px
            66px;
        font-size: 12px;
    }

}

/*========================================*/

.cc-service-area{

padding:110px 0;

background:#f7f9fc;

position:relative;

overflow:hidden;

}

.cc-service-area:before{

content:"";

position:absolute;

right:-120px;

top:-120px;

width:320px;

height:320px;

border-radius:50%;

background:rgba(5,66,165,.05);

}

.cc-area-subtitle{

display:inline-flex;

align-items:center;

gap:10px;

margin-bottom:18px;

font-size:12px;

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

color:#21a82c;

}

.cc-area-subtitle i{

font-size:16px;

}

.cc-area-content h2{

font-size:54px;

font-weight:800;

line-height:1.1;

margin-bottom:25px;

color:#111;

}

.cc-area-content h2 span{

display:block;

color:#0542a5;

}

.cc-area-content p{

font-size:17px;

line-height:1.9;

color:#666;

margin-bottom:35px;

}

.cc-area-btn{

display:inline-flex;

align-items:center;

gap:12px;

padding:16px 34px;

background:#0542a5;

color:#fff;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.cc-area-btn:hover{

background:#21a82c;

color:#fff;

}


/*========================*/

.cc-area-box{

background:#fff;

padding:45px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

border-top:6px solid #0542a5;

}

.cc-area-box h3{

font-size:28px;

font-weight:800;

margin-bottom:30px;

}

.cc-area-box h4{

margin:35px 0 20px;

font-size:22px;

font-weight:700;

color:#0542a5;

}


/* ZIP */

.cc-zip-item{

display:flex;

justify-content:center;

align-items:center;

height:58px;

border:2px solid #21a82c;

font-weight:700;

font-size:18px;

color:#0542a5;

transition:.3s;

}

.cc-zip-item:hover{

background:#0542a5;

color:#fff;

transform:translateY(-4px);

}


/* Cities */

.cc-city-list{

display:flex;

flex-wrap:wrap;

gap:12px;

}

.cc-city-list span{

padding:12px 18px;

background:#eef4ff;

color:#0542a5;

font-weight:600;

border-radius:30px;

transition:.3s;

}

.cc-city-list span:hover{

background:#21a82c;

color:#fff;

transform:translateY(-3px);

}

.cc-area-box hr{

margin:40px 0;

border-color:#e5e5e5;

}


/*========================*/

@media(max-width:991px){

.cc-area-content{

margin-bottom:40px;

}

.cc-area-content h2{

font-size:42px;

}

}

@media(max-width:576px){

.cc-area-content h2{

font-size:34px;

}

.cc-area-box{

padding:25px;

}

}


/* ==================================================
   WHY CHOOSE US SECTION
================================================== */

.cc-why-section {
    position: relative;
    padding: 115px 0;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(41, 209, 55, 0.07),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faff 100%
        );
    overflow: hidden;
}

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


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

.cc-why-content {
    max-width: 690px;
}

.cc-why-kicker {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    color: #727b87;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.cc-why-kicker i {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #29d137;
    font-size: 12px;
}

.cc-why-content h2 {
    max-width: 650px;
    margin-bottom: 23px;
    color: #111a29;
    font-size: clamp(39px, 4.4vw, 61px);
    line-height: 1.03;
    font-weight: 850;
    letter-spacing: -2px;
}

.cc-why-content h2 span {
    display: block;
    color: #0542a5;
}

.cc-why-content > p {
    max-width: 620px;
    margin-bottom: 34px;
    color: #747d88;
    font-size: 14px;
    line-height: 1.9;
}


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

.cc-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 34px;
}

.cc-why-feature {
    position: relative;
    min-height: 145px;
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: start;
    gap: 16px;
    padding: 21px 18px;
    background: #ffffff;
    border: 1px solid rgba(5, 66, 165, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.cc-why-feature::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    background: #29d137;
    transition: width 0.35s ease;
}

.cc-why-feature:hover {
    background: #0542a5;
    border-color: #0542a5;
    transform: translateY(-7px);
    box-shadow:
        0 18px 40px rgba(5, 66, 165, 0.15);
}

.cc-why-feature:hover::after {
    width: 100%;
}

.cc-why-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #29d137;
    background: rgba(41, 209, 55, 0.09);
    font-size: 21px;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.cc-why-feature h3 {
    margin-bottom: 7px;
    color: #172132;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
    transition: color 0.35s ease;
}

.cc-why-feature p {
    margin: 0;
    color: #818995;
    font-size: 10px;
    line-height: 1.65;
    transition: color 0.35s ease;
}

.cc-why-feature:hover .cc-why-icon {
    color: #0542a5;
    background: #ffffff;
    transform: rotateY(180deg);
}

.cc-why-feature:hover h3 {
    color: #ffffff;
}

.cc-why-feature:hover p {
    color: rgba(255, 255, 255, 0.72);
}


/* ==================================================
   BUTTON
================================================== */

.cc-why-button {
    min-height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 27px;
    color: #ffffff;
    background: #29d137;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.cc-why-button:hover {
    color: #ffffff;
    background: #0542a5;
    transform: translateY(-4px);
    box-shadow:
        0 15px 30px rgba(5, 66, 165, 0.20);
}


/* ==================================================
   VISUAL
================================================== */

.cc-why-visual {
    position: relative;
    width: min(100%, 610px);
    min-height: 720px;
    margin-left: auto;
}

.cc-why-main-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 88%;
    height: 620px;
    overflow: hidden;
    background: #dfe7f2;
}

.cc-why-main-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 8px;
    height: 150px;
    background: #29d137;
}

.cc-why-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(3, 28, 64, 0.28)
        );
}

.cc-why-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.9s ease;
}

.cc-why-visual:hover .cc-why-main-image img {
    transform: scale(1.045);
}


/* ==================================================
   EXPERIENCE BADGE
================================================== */

.cc-why-experience {
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 6;
    width: 220px;
    min-height: 155px;
    padding: 27px 25px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #1fb82d 0%,
            #29d137 100%
        );
    box-shadow:
        0 22px 45px rgba(41, 209, 55, 0.24);
}

.cc-why-experience strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 58px;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -4px;
}

.cc-why-experience span {
    display: block;
    max-width: 150px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 11px;
    line-height: 1.55;
    font-weight: 700;
}


/* ==================================================
   TRUST CARD
================================================== */

.cc-why-trust-card {
    position: absolute;
    right: 32px;
    bottom: 0;
    z-index: 7;
    width: 285px;
    min-height: 125px;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 24px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #032d72 0%,
            #0542a5 100%
        );
    border-bottom: 4px solid #29d137;
    box-shadow:
        0 24px 50px rgba(5, 66, 165, 0.22);
}

.cc-why-trust-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0542a5;
    background: #ffffff;
    font-size: 20px;
}

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

.cc-why-trust-card small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.cc-why-trust-card strong {
    color: #ffffff;
    font-size: 17px;
}


/* ==================================================
   DECORATIVE LINES
================================================== */

.cc-why-line {
    position: absolute;
    z-index: 1;
    display: block;
    pointer-events: none;
}

.cc-why-line-one {
    top: 25px;
    left: 40px;
    width: 155px;
    height: 2px;
    background: rgba(5, 66, 165, 0.14);
}

.cc-why-line-two {
    right: -28px;
    bottom: 110px;
    width: 165px;
    height: 2px;
    background: rgba(41, 209, 55, 0.24);
    transform: rotate(90deg);
}


/* ==================================================
   BACKGROUND SHAPES
================================================== */

.cc-why-shape {
    position: absolute;
    display: block;
    pointer-events: none;
}

.cc-why-shape-one {
    top: -100px;
    right: -95px;
    width: 310px;
    height: 310px;
    border: 42px solid rgba(5, 66, 165, 0.03);
    border-radius: 50%;
}

.cc-why-shape-two {
    left: -75px;
    bottom: -105px;
    width: 250px;
    height: 250px;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(41, 209, 55, 0.045) 0,
            rgba(41, 209, 55, 0.045) 4px,
            transparent 4px,
            transparent 15px
        );
    transform: rotate(17deg);
}


/* ==================================================
   RESPONSIVE — LAPTOP
================================================== */

@media (max-width: 1199.98px) {

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

    .cc-why-feature {
        min-height: 125px;
    }

    .cc-why-visual {
        min-height: 700px;
    }

}


/* ==================================================
   RESPONSIVE — TABLET
================================================== */

@media (max-width: 991.98px) {

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

    .cc-why-content {
        max-width: 100%;
    }

    .cc-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-why-visual {
        margin: 25px auto 0;
    }

}


/* ==================================================
   RESPONSIVE — MOBILE
================================================== */

@media (max-width: 767.98px) {

    .cc-why-section {
        padding: 70px 0;
    }

    .cc-why-content h2 {
        font-size: 38px;
    }

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

    .cc-why-visual {
        min-height: 610px;
    }

    .cc-why-main-image {
        width: 92%;
        height: 520px;
    }

    .cc-why-experience {
        top: 40px;
        width: 195px;
    }

}


/* ==================================================
   RESPONSIVE — SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .cc-why-content h2 {
        font-size: 33px;
    }

    .cc-why-feature {
        grid-template-columns: 48px 1fr;
        min-height: 120px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .cc-why-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .cc-why-visual {
        min-height: 560px;
    }

    .cc-why-main-image {
        width: 100%;
        height: 465px;
    }

    .cc-why-experience {
        top: 22px;
        left: 12px;
        width: 175px;
        min-height: 135px;
        padding: 22px;
    }

    .cc-why-experience strong {
        font-size: 50px;
    }

    .cc-why-trust-card {
        right: 12px;
        width: calc(100% - 55px);
    }

}

/*==============================================*/

.cc-equipment-section{

padding:120px 0;

background:#ffffff;

overflow:hidden;

position:relative;

}

.cc-equipment-section:before{

content:"";

position:absolute;

right:-120px;

top:-120px;

width:320px;

height:320px;

border-radius:50%;

background:rgba(41,209,55,.05);

}

.cc-equipment-section:after{

content:"";

position:absolute;

left:-120px;

bottom:-120px;

width:260px;

height:260px;

border:40px solid rgba(5,66,165,.04);

border-radius:50%;

}

/*====================*/

.cc-equipment-image{

position:relative;

overflow:hidden;

border-radius:22px;

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

}

.cc-equipment-image img{

width:100%;

height:760px;

display:block;

object-fit:cover;

transition:.7s;

}

.cc-equipment-image:hover img{

transform:scale(1.05);

}

.cc-equipment-image:after{

content:"";

position:absolute;

inset:0;

background:linear-gradient(
180deg,
transparent 45%,
rgba(3,32,74,.35)
);

}

.cc-equipment-badge{

position:absolute;

left:35px;

bottom:35px;

z-index:5;

background:#29d137;

color:#fff;

padding:22px 28px;

border-radius:14px;

box-shadow:0 20px 45px rgba(41,209,55,.25);

}

.cc-equipment-badge strong{

display:block;

font-size:28px;

font-weight:800;

}

.cc-equipment-badge span{

font-size:13px;

}

/*====================*/

.cc-equipment-subtitle{

display:inline-flex;

align-items:center;

gap:10px;

margin-bottom:18px;

font-size:12px;

font-weight:700;

text-transform:uppercase;

letter-spacing:2px;

color:#29d137;

}

.cc-equipment-subtitle i{

font-size:18px;

}

.cc-equipment-content h2{

font-size:56px;

font-weight:800;

line-height:1.08;

margin-bottom:25px;

color:#111;

}

.cc-equipment-content h2 span{

display:block;

color:#0542a5;

}

.cc-equipment-content>p{

font-size:17px;

line-height:1.9;

color:#666;

margin-bottom:40px;

}

/*====================*/

.cc-equipment-box{

height:100%;

padding:28px;

background:#fff;

border:1px solid #edf2f7;

transition:.35s;

}

.cc-equipment-box:hover{

background:#0542a5;

transform:translateY(-8px);

box-shadow:0 20px 50px rgba(5,66,165,.18);

}

.cc-equipment-box i{

font-size:34px;

margin-bottom:18px;

color:#29d137;

transition:.35s;

}

.cc-equipment-box h3{

font-size:20px;

font-weight:700;

line-height:1.35;

margin-bottom:12px;

color:#111;

transition:.35s;

}

.cc-equipment-box p{

margin:0;

font-size:15px;

line-height:1.8;

color:#777;

transition:.35s;

}

.cc-equipment-box:hover h3,

.cc-equipment-box:hover p{

color:#fff;

}

.cc-equipment-box:hover i{

color:#fff;

transform:rotateY(180deg);

}

/*====================*/

@media(max-width:991px){

.cc-equipment-content{

margin-top:30px;

}

.cc-equipment-content h2{

font-size:42px;

}

.cc-equipment-image img{

height:550px;

}

}

@media(max-width:576px){

.cc-equipment-section{

padding:80px 0;

}

.cc-equipment-content h2{

font-size:34px;

}

.cc-equipment-image img{

height:420px;

}

.cc-equipment-badge{

left:15px;

bottom:15px;

padding:18px;

}

.cc-equipment-badge strong{

font-size:22px;

}

}


/* ==================================================
   FOOTER
================================================== */

.cc-footer {
    position: relative;
    color: #ffffff;
    background: #021a3f;
    overflow: hidden;
}


/* ==================================================
   FOOTER MAIN
================================================== */

.cc-footer-main {
    position: relative;
    padding: 95px 0 55px;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(41, 209, 55, 0.08),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #01142f 0%,
            #032d72 58%,
            #0542a5 100%
        );
}

.cc-footer-main::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -120px;
    width: 380px;
    height: 380px;
    border: 55px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}

.cc-footer-main::after {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -130px;
    width: 280px;
    height: 280px;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(41, 209, 55, 0.04) 0,
            rgba(41, 209, 55, 0.04) 4px,
            transparent 4px,
            transparent 15px
        );
    transform: rotate(18deg);
}

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


/* ==================================================
   FOOTER LOGO
================================================== */

.cc-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
    color: #ffffff;
}

.cc-footer-logo:hover {
    color: #ffffff;
}

.cc-footer-logo-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    background: #29d137;
    font-size: 20px;
}

.cc-footer-logo > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.cc-footer-logo strong {
    color: #ffffff;
    font-size: 19px;
    font-weight: 900;
}

.cc-footer-logo small {
    margin-top: 7px;
    color: #29d137;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cc-footer-about > p {
    max-width: 390px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.9;
}


/* ==================================================
   SOCIAL ICONS
================================================== */

.cc-footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cc-footer-socials a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 13px;
    transition: 0.35s ease;
}

.cc-footer-socials a:hover {
    color: #ffffff;
    background: #29d137;
    border-color: #29d137;
    transform: translateY(-5px);
}


/* ==================================================
   FOOTER COLUMNS
================================================== */

.cc-footer-column h3 {
    position: relative;
    margin-bottom: 29px;
    padding-bottom: 13px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.cc-footer-column h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 47px;
    height: 3px;
    background: #29d137;
}

.cc-footer-column ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cc-footer-column li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    transition: 0.3s ease;
}

.cc-footer-column li a::before {
    content: "";
    width: 7px;
    height: 2px;
    flex-shrink: 0;
    background: #29d137;
    transition: width 0.3s ease;
}

.cc-footer-column li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.cc-footer-column li a:hover::before {
    width: 14px;
}


/* ==================================================
   FOOTER CONTACT
================================================== */

.cc-footer-contact {
    display: grid;
    align-content: start;
}

.cc-footer-contact-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 13px;
    margin-bottom: 18px;
}

.cc-footer-contact-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #29d137;
    background: rgba(255, 255, 255, 0.08);
    font-size: 15px;
}

.cc-footer-contact-item > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cc-footer-contact-item small {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.cc-footer-contact-item a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    line-height: 1.65;
    overflow-wrap: anywhere;
    transition: 0.3s ease;
}

.cc-footer-contact-item a:hover {
    color: #29d137;
}


/* ==================================================
   BUSINESS HOURS BAR
================================================== */

.cc-footer-hours {
    position: relative;
    min-height: 105px;
    display: grid;
    grid-template-columns: 57px 1fr 1px 1fr auto;
    align-items: center;
    gap: 22px;
    margin-top: 65px;
    padding: 22px 25px;
    background: rgba(255, 255, 255, 0.08);
    border-left: 5px solid #29d137;
}

.cc-footer-hours-icon {
    width: 57px;
    height: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0542a5;
    background: #ffffff;
    font-size: 20px;
}

.cc-footer-hours > div:not(.cc-footer-hours-icon) {
    display: flex;
    flex-direction: column;
}

.cc-footer-hours small {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.47);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.cc-footer-hours strong {
    color: #ffffff;
    font-size: 13px;
}

.cc-footer-hours-divider {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.14);
}

.cc-footer-hours-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 24px;
    color: #ffffff;
    background: #29d137;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.35s ease;
}

.cc-footer-hours-button:hover {
    color: #0542a5;
    background: #ffffff;
    transform: translateY(-3px);
}


/* ==================================================
   GOOGLE MAP
================================================== */

.cc-footer-map {
    position: relative;
    height: 410px;
    background: #dfe5ed;
    overflow: hidden;
}

.cc-footer-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: grayscale(0.15) contrast(0.95);
}

.cc-footer-map::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 20px 35px rgba(1, 20, 47, 0.18);
}


/* ==================================================
   MAP ADDRESS CARD
================================================== */

.cc-footer-map-card {
    position: absolute;
    top: 50%;
    left: max(calc((100% - 1320px) / 2), 30px);
    z-index: 3;
    min-width: 330px;
    min-height: 120px;
    display: grid;
    grid-template-columns: 52px 1fr 36px;
    align-items: center;
    gap: 16px;
    padding: 23px;
    background: #ffffff;
    border-bottom: 5px solid #29d137;
    transform: translateY(-50%);
    box-shadow: 0 25px 60px rgba(7, 26, 53, 0.2);
}

.cc-footer-map-card-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #0542a5;
    font-size: 19px;
}

.cc-footer-map-card > div {
    display: flex;
    flex-direction: column;
}

.cc-footer-map-card small {
    margin-bottom: 5px;
    color: #8a929c;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.cc-footer-map-card strong {
    margin-bottom: 3px;
    color: #172132;
    font-size: 17px;
}

.cc-footer-map-card span {
    color: #6e7782;
    font-size: 11px;
}

.cc-footer-map-card > a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0542a5;
    background: #edf3fc;
    font-size: 11px;
    transition: 0.3s ease;
}

.cc-footer-map-card > a:hover {
    color: #ffffff;
    background: #29d137;
}


/* ==================================================
   FOOTER BOTTOM
================================================== */

.cc-footer-bottom {
    min-height: 75px;
    display: flex;
    align-items: center;
    background: #010f24;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cc-footer-bottom-inner {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.cc-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.57);
    font-size: 10px;
}

.cc-footer-legal {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cc-footer-legal a {
    color: rgba(255, 255, 255, 0.57);
    font-size: 10px;
    transition: 0.3s ease;
}

.cc-footer-legal a:hover {
    color: #29d137;
}

.cc-footer-legal span {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.17);
}


/* ==================================================
   RESPONSIVE — LAPTOP
================================================== */

@media (max-width: 1199.98px) {

    .cc-footer-hours {
        grid-template-columns: 57px 1fr 1fr auto;
    }

    .cc-footer-hours-divider {
        display: none;
    }

    .cc-footer-map-card {
        left: 30px;
    }

}


/* ==================================================
   RESPONSIVE — TABLET
================================================== */

@media (max-width: 991.98px) {

    .cc-footer-main {
        padding-top: 80px;
    }

    .cc-footer-hours {
        grid-template-columns: 57px 1fr 1fr;
    }

    .cc-footer-hours-button {
        grid-column: 1 / -1;
        width: 100%;
    }

}


/* ==================================================
   RESPONSIVE — MOBILE
================================================== */

@media (max-width: 767.98px) {

    .cc-footer-main {
        padding: 65px 0 45px;
    }

    .cc-footer-hours {
        grid-template-columns: 52px 1fr;
        gap: 16px;
        margin-top: 45px;
    }

    .cc-footer-hours-icon {
        width: 52px;
        height: 52px;
        grid-row: 1 / 3;
    }

    .cc-footer-hours-button {
        grid-column: 1 / -1;
    }

    .cc-footer-map {
        height: 500px;
    }

    .cc-footer-map-card {
        top: auto;
        right: 15px;
        bottom: 20px;
        left: 15px;
        min-width: 0;
        transform: none;
    }

    .cc-footer-bottom-inner {
        min-height: 95px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 11px;
        padding: 20px 0;
    }

}


/* ==================================================
   RESPONSIVE — SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .cc-footer-hours {
        padding: 19px;
    }

    .cc-footer-hours strong {
        font-size: 11px;
    }

    .cc-footer-map-card {
        grid-template-columns: 45px 1fr 32px;
        gap: 12px;
        padding: 18px;
    }

    .cc-footer-map-card-icon {
        width: 45px;
        height: 45px;
    }

    .cc-footer-map-card strong {
        font-size: 15px;
    }

    .cc-footer-legal {
        flex-wrap: wrap;
    }

}






/*Blog*/
.blogbox{text-align:justify;padding:20px;background-color:#FFF;box-sizing:border-box;clear:both;overflow:hidden;margin-bottom:15px;box-shadow:3px 3px 7px rgba(0,0,0,0.2)}
.blogbox .blogimg img {float: right; width: 35%; height: auto; margin: 15px;box-shadow: 0 0 3px rgba(0,0,0,0.8)}
.blogbox .read-more a{background-color:#ccc;color:#2D2D2D;padding:10px;border-radius:5px;border:1px solid #2D2D2D}
.blogbox .read-more a:hover {background-color:#2D2D2D;color:#FFF;letter-spacing: 2px;padding:10px 15px}
.blogpost {text-align: justify;padding:20px;background-color: #FFF;box-sizing: border-box}
.blogpost h1, .blogbox h1 {margin:0;font-size:28px;color:#222;}
.blogpost h2, .blogbox h2 {margin:0;font-size:24px;color:#222;}
.blogpost .blog_wrapper img {float: right; max-width: 35%; height: auto; margin: 15px;box-shadow: 0 0 3px rgba(0,0,0,0.8)}
.socialbox{overflow:hidden;position:relative;text-align:center;width:100%;}
.social-share-btns{display:inline-block;overflow:hidden}
.social-share-btns .share-btn{float:left;margin:0 5px;padding:8px 16px;border-radius:3px;color:#fff;font-size:14px;line-height:18px;vertical-align:middle;transition:background .2s ease-in-out;display:flex;align-items:center;}
.social-share-btns .share-btn svg {fill:currentColor;height:1rem;width:1rem;margin-right:10px;}
.share-btn{background-color:#95a5a6}
.share-btn:hover{background-color:#798d8f}
.share-btn-twitter{background-color:#00aced}
.share-btn-twitter:hover{background-color:#0087ba}
.share-btn-facebook{background-color:#3b5998}
.share-btn-facebook:hover{background-color:#2d4373}
.share-btn-linkedin{background-color:#007bb6}
.share-btn-linkedin:hover{background-color:#005983}
@media only screen and (max-width:700px){
.blogbox .blogimg img{max-width:90%;width:auto}
}


/* FORM WRAPPER */
form.CUS {
    max-width: 900px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: system-ui, sans-serif;
}

/* FLEX FIELDSET */
form.CUS fieldset {
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0;
    margin: 0;
}

/* BASE BLOCK STYLE */
form.CUS fieldset > p {
    width: 100%;
    padding: 10px;
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

/* Universal input/select styling */
form.CUS input,
form.CUS select,
form.CUS textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
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: City, State, Zip Code
=============================== */
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%;
}

/* ===============================
   SERVICE NEEDED TEXTAREA
=============================== */
form.CUS fieldset > p:nth-of-type(7) {
    width: 100%;
}

/* ===============================
   SERVICE DATE (Month, Day, Year)
   â†’ ALL 3 IN ONE ROW
=============================== */

/* Make the 8th <p> (Service Date block) a flex row */
form.CUS fieldset > p:nth-of-type(8) {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-start;
}

/* Month, Day, Year = 3 equal flex columns */
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;          /* flex handles width */
    margin-top: 6px;
}

/* ===============================
   SERVICE TIME (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(9) {
    width: 100%;
}

/* ===============================
   SUBMIT BUTTON (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(10) {
    width: 100%;
}

form.CUS input[type="submit"] {
    width: 100%;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

form.CUS input[type="submit"]:hover {
    background: #1d4ed8;
}

/* Hide honeypot */
form.CUS input.subject {
    display: none;
}

/* ===============================
   MOBILE RESPONSIVE (stack fields)
=============================== */
@media (max-width: 600px) {

    form.CUS fieldset > p {
        width: 100%;
        padding: 6px 0;
    }

    /* Month, Day, Year full width stacked on mobile */
    form.CUS fieldset > p:nth-of-type(8) {
        flex-direction: column;
        gap: 6px;
    }

    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% !important;
    }
/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
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: 100%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
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: 100%;
}
}