
        body {
            margin: 0;
            padding: 0;
        }

        /* =========================================================
           CASH 4 CAR BRISBANE HEADER
           UNIQUE PREFIX: cfc-
        ========================================================= */


        /* ================= RESET ================= */

        .cfc-header-wrapper,
        .cfc-header-wrapper * {
            box-sizing: border-box;
        }


        .cfc-header-wrapper {
            width: 100%;
            font-family: "Poppins", Arial, Helvetica, sans-serif;
        }


        /* =========================================================
           TOP BAR
        ========================================================= */

        .cfc-topbar {
            width: 100%;
            height: 58px;

            background: #08477f;

            color: #ffffff;

            display: flex;
            align-items: center;

            position: relative;

            z-index: 10000;

            transition:
                transform 0.35s ease,
                opacity 0.35s ease;
        }


        .cfc-topbar-container {
            width: 100%;
            max-width: 1750px;

            height: 100%;

            margin: 0 auto;

            padding: 0 45px;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }


        /* =========================================================
           TOP MESSAGE
        ========================================================= */

        .cfc-top-message {
            display: flex;
            align-items: center;

            color: #ffffff;

            font-size: 17px;
            font-weight: 400;

            white-space: nowrap;
        }


        .cfc-top-message strong {
            color: #ff491f;

            font-weight: 700;

            margin: 0 5px;
        }


        /* =========================================================
           TOP CONTACT
        ========================================================= */

        .cfc-top-contact {
            display: flex;
            align-items: center;

            gap: 18px;
        }


        .cfc-top-contact-item {
            min-height: 40px;

            padding: 0 26px;

            display: flex;
            align-items: center;
            justify-content: center;

            gap: 9px;

            color: #ffffff;

            text-decoration: none;

            border-radius: 6px;

            font-size: 13px;
            font-weight: 600;

            transition:
                transform 0.3s ease,
                background 0.3s ease,
                box-shadow 0.3s ease;
        }


        /* Email */

        .cfc-email-contact {
            background: #07588c;
        }


        /* Phone */

        .cfc-phone-contact {
            background: #ff491f;
        }


        .cfc-top-contact-item:hover {
            transform: translateY(-2px);

            box-shadow:
                0 6px 18px rgba(0, 0, 0, 0.18);
        }


        .cfc-email-contact:hover {
            background: #063f67;
        }


        .cfc-phone-contact:hover {
            background: #e63b18;
        }


        /* =========================================================
           MAIN HEADER
        ========================================================= */

        .cfc-main-header {
            width: 100%;

            height: 82px;

            background: #ffffff;

            position: relative;

            z-index: 9990;

            border-bottom: 1px solid #eeeeee;

            transition:
                box-shadow 0.35s ease,
                height 0.35s ease,
                transform 0.35s ease;
        }


        /* =========================================================
           FIXED HEADER AFTER SCROLL
        ========================================================= */

        .cfc-header-wrapper.cfc-is-scrolled {
            padding-bottom: 82px;
        }


        .cfc-header-wrapper.cfc-is-scrolled
        .cfc-main-header {

            position: fixed;

            top: 0;
            left: 0;

            width: 100%;

            z-index: 9990;

            box-shadow:
                0 8px 25px rgba(0, 0, 0, 0.14);

            animation:
                cfcHeaderSlideDown 0.35s ease forwards;
        }


        /* =========================================================
           FIXED HEADER ANIMATION
        ========================================================= */

        @keyframes cfcHeaderSlideDown {

            from {
                transform: translateY(-100%);
            }

            to {
                transform: translateY(0);
            }

        }


        /* =========================================================
           MAIN CONTAINER
        ========================================================= */

        .cfc-main-container {
            width: 100%;

            max-width: 1750px;

            height: 100%;

            margin: 0 auto;

            padding: 0 45px;

            display: flex;
            align-items: center;
        }


        /* =========================================================
           LOGO
        ========================================================= */

        .cfc-logo {
            width: 210px;

            flex-shrink: 0;

            display: flex;
            align-items: center;

            text-decoration: none;

            margin-right: auto;
        }


        .cfc-logo img {
            width: 210px;

            max-width: 100%;

            height: auto;

            display: block;

            transition:
                transform 0.35s ease,
                filter 0.35s ease;
        }


        .cfc-logo:hover img {
            transform: scale(1.035);

            filter: brightness(1.05);
        }


        /* =========================================================
           DESKTOP NAVIGATION
        ========================================================= */

        .cfc-desktop-nav {
            height: 100%;
        }


        .cfc-nav-list {
            height: 100%;

            margin: 0;
            padding: 0;

            display: flex;
            align-items: center;

            gap: 3px;

            list-style: none;
        }


        .cfc-nav-item {
            height: 100%;

            position: relative;

            display: flex;
            align-items: center;
        }


        .cfc-nav-link {
            height: 100%;

            padding: 0 19px;

            position: relative;

            display: inline-flex;
            align-items: center;

            gap: 9px;

            color: #333333;

            text-decoration: none;

            font-size: 16px;
            font-weight: 600;

            white-space: nowrap;

            transition:
                color 0.3s ease,
                transform 0.3s ease;
        }


        /* =========================================================
           NAV UNDERLINE
        ========================================================= */

        .cfc-nav-link::after {
            content: "";

            position: absolute;

            left: 50%;
            bottom: 8px;

            width: 0;
            height: 3px;

            background: #ff8b00;

            transform: translateX(-50%);

            transition:
                width 0.35s ease;
        }


        .cfc-nav-link:hover {
            color: #ff8b00;
        }


        .cfc-nav-link:hover::after,
        .cfc-nav-link.cfc-page-active::after {
            width: calc(100% - 34px);
        }


        .cfc-nav-link.cfc-page-active {
            color: #ff8b00;
        }


        /* =========================================================
           NAV ARROW
        ========================================================= */

        .cfc-dropdown-arrow {
            font-size: 11px;

            transition:
                transform 0.35s ease,
                color 0.3s ease;
        }


        .cfc-has-dropdown:hover
        .cfc-dropdown-arrow {
            transform: rotate(180deg);

            color: #ff8b00;
        }


        /* =========================================================
           DESKTOP DROPDOWN
        ========================================================= */

        .cfc-dropdown-menu {
            position: absolute;

            left: 50%;

            top: calc(100% - 1px);

            width: 300px;

            margin: 0;
            padding: 0;

            list-style: none;

            background: #ffffff;

            border-top: 4px solid #ff8b00;

            box-shadow:
                0 18px 40px rgba(0, 0, 0, 0.15);

            opacity: 0;

            visibility: hidden;

            transform:
                translate(-50%, 18px)
                scaleY(0.96);

            transform-origin: top center;

            transition:
                opacity 0.3s ease,
                visibility 0.3s ease,
                transform 0.3s ease;

            z-index: 1000;
        }


        /* Car Removals dropdown */

        .cfc-has-dropdown:nth-child(3)
        .cfc-dropdown-menu {
            width: 307px;
        }


        /* Services dropdown */

        .cfc-has-dropdown:nth-child(4)
        .cfc-dropdown-menu {
            width: 300px;
        }


        /* Dropdown open */

        .cfc-has-dropdown:hover
        .cfc-dropdown-menu {

            opacity: 1;

            visibility: visible;

            transform:
                translate(-50%, 0)
                scaleY(1);
        }


        /* =========================================================
           DROPDOWN LINKS
        ========================================================= */

        .cfc-dropdown-menu li {
            width: 100%;
        }


        .cfc-dropdown-menu li a {
            min-height: 52px;

            padding: 15px 20px;

            display: flex;
            align-items: center;

            color: #151515;

            background: #ffffff;

            text-decoration: none;

            font-size: 15px;
            font-weight: 600;

            border-bottom: 1px solid #eeeeee;

            transition:
                color 0.3s ease,
                background 0.3s ease,
                padding-left 0.3s ease;
        }


        .cfc-dropdown-menu li a:hover {
            color: #ffffff;

            background: #ff8b00;

            padding-left: 30px;
        }


        /* =========================================================
           MOBILE TOGGLE
        ========================================================= */

        .cfc-mobile-toggle {
            width: 48px;
            height: 42px;

            padding: 8px;

            display: none;

            flex-direction: column;
            justify-content: center;

            gap: 5px;

            border: 0;

            border-radius: 6px;

            background: #08477f;

            cursor: pointer;

            transition:
                background 0.3s ease,
                transform 0.3s ease;
        }


        .cfc-mobile-toggle:hover {
            background: #ff8b00;

            transform: scale(1.04);
        }


        .cfc-mobile-toggle span {
            width: 100%;

            height: 3px;

            display: block;

            background: #ffffff;

            border-radius: 5px;

            transition:
                transform 0.35s ease,
                opacity 0.3s ease;
        }


        /* Hamburger */

        .cfc-mobile-toggle.cfc-menu-open
        span:nth-child(1) {
            transform:
                translateY(8px)
                rotate(45deg);
        }


        .cfc-mobile-toggle.cfc-menu-open
        span:nth-child(2) {
            opacity: 0;
        }


        .cfc-mobile-toggle.cfc-menu-open
        span:nth-child(3) {
            transform:
                translateY(-8px)
                rotate(-45deg);
        }


        /* =========================================================
           MOBILE OVERLAY
        ========================================================= */

        .cfc-mobile-overlay {
            position: fixed;

            inset: 0;

            background:
                rgba(0, 0, 0, 0.62);

            opacity: 0;

            visibility: hidden;

            transition:
                opacity 0.35s ease,
                visibility 0.35s ease;

            z-index: 9998;
        }


        .cfc-mobile-overlay.cfc-overlay-active {
            opacity: 1;

            visibility: visible;
        }


        /* =========================================================
           MOBILE MENU
        ========================================================= */

        .cfc-mobile-menu {
            position: fixed;

            top: 0;
            right: 0;

            width: min(390px, 88%);

            height: 100vh;

            background: #ffffff;

            transform: translateX(105%);

            transition:
                transform 0.45s
                cubic-bezier(
                    0.77,
                    0,
                    0.175,
                    1
                );

            z-index: 9999;

            box-shadow:
                -15px 0 45px rgba(0, 0, 0, 0.2);

            display: flex;

            flex-direction: column;
        }


        .cfc-mobile-menu.cfc-mobile-active {
            transform: translateX(0);
        }


        .cfc-mobile-submenu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.cfc-mobile-submenu li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.cfc-mobile-submenu li::marker {
    content: "" !important;
}

        /* =========================================================
           MOBILE MENU HEADER
        ========================================================= */

        .cfc-mobile-menu-header {
            min-height: 82px;

            padding: 12px 18px;

            display: flex;
            align-items: center;
            justify-content: space-between;

            background: #08477f;

            flex-shrink: 0;
        }


        .cfc-mobile-logo {
            width: 175px;
        }


        .cfc-mobile-logo img {
            width: 100%;

            height: auto;

            display: block;
        }


        .cfc-mobile-close {
            width: 42px;
            height: 42px;

            display: flex;
            align-items: center;
            justify-content: center;

            border: 2px solid rgba(255, 255, 255, 0.5);

            border-radius: 50%;

            color: #ffffff;

            background: transparent;

            font-size: 20px;

            cursor: pointer;

            transition:
                background 0.3s ease,
                border-color 0.3s ease,
                transform 0.35s ease;
        }


        .cfc-mobile-close:hover {
            background: #ff8b00;

            border-color: #ff8b00;

            transform: rotate(90deg);
        }


        /* =========================================================
           MOBILE SCROLL
        ========================================================= */

        .cfc-mobile-menu-scroll {
            flex: 1;

            min-height: 0;

            overflow-y: auto;

            overflow-x: hidden;

            overscroll-behavior: contain;

            -webkit-overflow-scrolling: touch;

            scrollbar-width: thin;

            scrollbar-color:
                #ff8b00
                #eeeeee;
        }


        .cfc-mobile-menu-scroll::-webkit-scrollbar {
            width: 6px;
        }


        .cfc-mobile-menu-scroll::-webkit-scrollbar-track {
            background: #eeeeee;
        }


        .cfc-mobile-menu-scroll::-webkit-scrollbar-thumb {
            background: #ff8b00;

            border-radius: 10px;
        }


        /* =========================================================
           MOBILE NAVIGATION
        ========================================================= */

        .cfc-mobile-nav {
            width: 100%;
        }


        .cfc-mobile-nav > ul {
            margin: 0;

            padding: 0;

            list-style: none;
        }


        .cfc-mobile-nav > ul > li {
            width: 100%;

            border-bottom: 1px solid #eeeeee;
        }


        .cfc-mobile-nav > ul > li > a,
        .cfc-mobile-dropdown-btn {

            width: 100%;

            min-height: 62px;

            padding: 0 22px;

            display: flex;
            align-items: center;
            justify-content: space-between;

            border: 0;

            background: #ffffff;

            color: #222222;

            text-decoration: none;

            font-family: inherit;

            font-size: 17px;

            font-weight: 600;

            cursor: pointer;

            position: relative;

            transition:
                color 0.3s ease,
                background 0.3s ease,
                padding-left 0.3s ease;
        }


        /* Orange side animation */

        .cfc-mobile-nav > ul > li > a::before,
        .cfc-mobile-dropdown-btn::before {

            content: "";

            position: absolute;

            left: 0;

            top: 0;

            width: 4px;

            height: 100%;

            background: #ff8b00;

            transform: scaleY(0);

            transform-origin: bottom;

            transition:
                transform 0.3s ease;
        }


        .cfc-mobile-nav > ul > li > a:hover,
        .cfc-mobile-dropdown-btn:hover {

            color: #ff8b00;

            background: #fff8ef;

            padding-left: 28px;
        }


        .cfc-mobile-nav > ul > li > a:hover::before,
        .cfc-mobile-dropdown-btn:hover::before {

            transform: scaleY(1);
        }


        .cfc-mobile-nav > ul > li > a span,
        .cfc-mobile-dropdown-btn span {

            display: flex;

            align-items: center;

            gap: 14px;
        }


        .cfc-mobile-nav > ul > li > a span i,
        .cfc-mobile-dropdown-btn span i {

            width: 22px;

            color: #ff8b00;

            text-align: center;
        }


        /* =========================================================
           MOBILE DROPDOWN ARROW
        ========================================================= */

        .cfc-mobile-arrow {

            color: #08477f;

            transition:
                transform 0.35s ease,
                color 0.3s ease;
        }


        .cfc-mobile-has-dropdown.cfc-dropdown-open
        .cfc-mobile-arrow {

            color: #ff8b00;

            transform: rotate(180deg);
        }


        /* =========================================================
           MOBILE SUBMENU
        ========================================================= */

        .cfc-mobile-submenu {

            max-height: 0;

            overflow: hidden;

            background: #f7f9fb;

            transition:
                max-height 0.45s ease;
        }


        .cfc-mobile-has-dropdown.cfc-dropdown-open
        .cfc-mobile-submenu {

            max-height: 500px;

            overflow-y: auto;
        }


        /* =========================================================
           SUBMENU SCROLLBAR
        ========================================================= */

        .cfc-mobile-submenu::-webkit-scrollbar {
            width: 5px;
        }


        .cfc-mobile-submenu::-webkit-scrollbar-track {
            background: #eeeeee;
        }


        .cfc-mobile-submenu::-webkit-scrollbar-thumb {
            background: #ff8b00;

            border-radius: 10px;
        }


        /* =========================================================
           SUBMENU LINKS
        ========================================================= */

        .cfc-mobile-submenu li {
            border-top: 1px solid #e7e7e7;
        }


        .cfc-mobile-submenu li a {

            min-height: 52px;

            padding:
                12px
                20px
                12px
                58px;

            display: flex;

            align-items: center;

            position: relative;

            color: #333333;

            text-decoration: none;

            font-size: 15px;

            font-weight: 500;

            transition:
                color 0.3s ease,
                background 0.3s ease,
                padding-left 0.3s ease;
        }


        .cfc-mobile-submenu li a::before {

            content: "";

            position: absolute;

            left: 34px;

            width: 6px;

            height: 6px;

            border-radius: 50%;

            background: #ff8b00;

            transition:
                transform 0.3s ease;
        }


        .cfc-mobile-submenu li a:hover {

            color: #ff8b00;

            background: #ffffff;

            padding-left: 65px;
        }


        .cfc-mobile-submenu li a:hover::before {

            transform: scale(1.4);
        }


        /* =========================================================
           MOBILE CONTACT
        ========================================================= */

        .cfc-mobile-contact {

            padding: 18px 20px;

            background: #08477f;

            display: flex;

            flex-direction: column;

            gap: 12px;
        }


        .cfc-mobile-contact a {

            display: flex;

            align-items: center;

            gap: 12px;

            color: #ffffff;

            text-decoration: none;

            font-size: 14px;

            font-weight: 600;

            transition:
                color 0.3s ease,
                transform 0.3s ease;
        }


        .cfc-mobile-contact a i {

            width: 22px;

            color: #ffb000;

            text-align: center;
        }


        .cfc-mobile-contact a:hover {

            color: #ff8b00;

            transform: translateX(4px);
        }


        /* =========================================================
           MOBILE - 1024PX
        ========================================================= */

        @media (max-width: 1024px) {

            /* Hide top bar */

            .cfc-topbar {
                display: none;
            }


            /* Main header */

            .cfc-main-header {
                height: 76px;

                position: relative;
            }


            /* Fixed state */

            .cfc-header-wrapper.cfc-is-scrolled {
                padding-bottom: 76px;
            }


            .cfc-header-wrapper.cfc-is-scrolled
            .cfc-main-header {

                position: fixed;

                top: 0;

                left: 0;

                width: 100%;
            }


            /* Main container */

            .cfc-main-container {

                padding:
                    0 20px;
            }


            /* Logo */

            .cfc-logo {

                width: 180px;

                margin-right: 0;
            }


            .cfc-logo img {

                width: 180px;
            }


            /* Hide desktop nav */

            .cfc-desktop-nav {

                display: none;
            }


            /* Show mobile toggle */

            .cfc-mobile-toggle {

                display: flex;

                margin-left: auto;
            }

        }


        /* =========================================================
           TABLET
        ========================================================= */

        @media (max-width: 767px) {

            .cfc-main-header {

                height: 72px;
            }


            .cfc-header-wrapper.cfc-is-scrolled {

                padding-bottom: 72px;
            }


            .cfc-main-container {

                padding:
                    0 16px;
            }


            .cfc-logo {

                width: 165px;
            }


            .cfc-logo img {

                width: 165px;
            }


            .cfc-mobile-toggle {

                width: 46px;

                height: 41px;
            }

        }


        /* =========================================================
           MOBILE
        ========================================================= */

        @media (max-width: 575px) {

            .cfc-main-header {

                height: 68px;
            }


            .cfc-header-wrapper.cfc-is-scrolled {

                padding-bottom: 68px;
            }


            .cfc-main-container {

                padding:
                    0 13px;
            }


            .cfc-logo {

                width: 145px;
            }


            .cfc-logo img {

                width: 145px;
            }


            .cfc-mobile-toggle {

                width: 44px;

                height: 39px;
            }


            .cfc-mobile-menu {

                width: 90%;
            }


            .cfc-mobile-menu-header {

                min-height: 72px;

                padding:
                    10px 14px;
            }


            .cfc-mobile-logo {

                width: 145px;
            }


            .cfc-mobile-close {

                width: 38px;

                height: 38px;

                font-size: 18px;
            }

        }


        /* =========================================================
           EXTRA SMALL
        ========================================================= */

        @media (max-width: 380px) {

            .cfc-logo {

                width: 130px;
            }


            .cfc-logo img {

                width: 130px;
            }


            .cfc-mobile-logo {

                width: 135px;
            }


            .cfc-mobile-menu {

                width: 93%;
            }

        }

        /* =========================================================
   TABLET / SMALL DESKTOP FIX
   1025px - 1200px
========================================================= */

@media (min-width: 1025px) and (max-width: 1200px) {

    /* Main header */

    .cfc-main-header {
        height: 78px;
    }


    .cfc-header-wrapper.cfc-is-scrolled {
        padding-bottom: 78px;
    }


    /* Main container */

    .cfc-main-container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* Logo */

    .cfc-logo {
        width: 155px;
        margin-right: 10px;
    }


    .cfc-logo img {
        width: 155px;
        max-width: 155px;
    }


    /* Desktop navigation */

    .cfc-desktop-nav {
        flex: 1;
        min-width: 0;
    }


    .cfc-nav-list {
        width: 100%;

        gap: 0;

        justify-content: flex-end;

        padding: 0;
    }


    .cfc-nav-item {
        flex-shrink: 0;
    }


    .cfc-nav-link {
        padding-left: 10px;
        padding-right: 10px;

        font-size: 16px;

        gap: 6px;
    }


    .cfc-nav-link:hover::after,
    .cfc-nav-link.cfc-page-active::after {
        width: calc(100% - 20px);
    }


    .cfc-dropdown-arrow {
        font-size: 9px;
    }


    /* Dropdown */

    .cfc-dropdown-menu {
        top: 100%;
    }

}



















/* =========================================================
   SKY BLUE CASH FOR CARS HERO
   UNIQUE PREFIX: cfcsky-
========================================================= */

.cfcsky-hero {
    width: 100%;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #8dddf2;
}


/* =========================================================
   BACKGROUND CAROUSEL
========================================================= */

.cfcsky-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}


.cfcsky-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background-repeat: no-repeat;

    /*
       IMPORTANT:
       Cover keeps the image proportional.
       It will crop rather than stretch.
    */
    background-size: cover;

    background-position: center center;

    opacity: 0;

    transform: scale(1.01);

    transition:
        opacity 1.4s ease-in-out,
        transform 6s ease;
}


/* =========================================================
   SKY BLUE BACKGROUND IMAGES

   Use your sky/tow-truck images here.
========================================================= */

.cfcsky-bg-one {
    background-image:
        url("../images/cash-for-cars.jpg");
}


.cfcsky-bg-two {
    background-image:
        url("../images/cars-scrap.jpg");
}


.cfcsky-bg-three {
    background-image:
        url("../images/card-loading.jpg");
}


/* Active */

.cfcsky-bg-slide.cfcsky-active {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   BLUE OVERLAY
========================================================= */

.cfcsky-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(90deg, rgb(23 60 119 / 52%), rgb(50 92 115 / 40%));

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.cfcsky-container {
    width: 100%;
    max-width: 1093px;

    margin: 0 auto;

    padding:
        35px 25px;

    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    align-items: center;

    gap: 45px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.cfcsky-content {
    width: 100%;
    max-width: 720px;

    animation:
        cfcskyContentIn
        0.8s ease both;
}


@keyframes cfcskyContentIn {

    from {
        opacity: 0;
        transform: translateX(-25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================================
   TITLE
========================================================= */

.cfcsky-title {
    margin: 0 0 14px;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size:40px;

    line-height: 1.15;

    font-weight: 700;

    text-shadow:
        0 2px 4px rgba(255,255,255,0.2);
}


/* =========================================================
   SUBTITLE
========================================================= */

.cfcsky-subtitle {
    margin: 0 0 27px;

    color: #ff491f;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 32px;

    line-height: 1.15;

    font-weight: 700;
}


/* =========================================================
   FEATURES
========================================================= */

.cfcsky-features {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px 40px;

    margin-bottom: 25px;
}


.cfcsky-feature {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 600;

    text-shadow:
        0 2px 5px rgba(0,0,0,0.35);

    transition:
        transform 0.3s ease;
}


.cfcsky-feature:hover {
    transform: translateX(6px);
}


/* =========================================================
   FEATURE ICON
========================================================= */

.cfcsky-feature-icon {
    width: 26px;
    height: 26px;

    flex: 0 0 26px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ff491f;

    color: #ffffff;

    font-size: 10px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.cfcsky-feature:hover
.cfcsky-feature-icon {

    transform: rotate(360deg);

    background: #08477f;
}


/* =========================================================
   PHONE BUTTON
========================================================= */

.cfcsky-phone {
    min-width: 230px;
    min-height: 58px;

    padding:
        7px 23px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background: #ffffff;

    color: #ff491f;

    border-radius: 35px;

    text-decoration: none;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 20px;

    font-weight: 600;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.18);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.cfcsky-phone:hover {
    background: #ff491f;

    color: #ffffff;

    transform:
        translateY(-4px);
}


.cfcsky-phone-icon {
    font-size: 18px;
}


/* =========================================================
   SMALL FORM
========================================================= */

.cfcsky-form-wrap {
    width: 100%;

    animation:
        cfcskyFormIn
        0.8s 0.1s ease both;
}


@keyframes cfcskyFormIn {

    from {
        opacity: 0;
        transform: translateX(25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================================
   FORM CARD
========================================================= */

.cfcsky-form-card {
    width: 100%;

    padding:
        38px 25px 20px;

    position: relative;

    background: #08477f;

    border-radius: 8px;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.22);

    overflow: hidden;
}

@media (min-width:1025px) and (max-width:1208px) {
    .cfcsky-form-card {
        padding: 38px 10px 20px;
    }
}


/* =========================================================
   FREE RIBBON
========================================================= */

.cfcsky-free-ribbon {
    position: absolute;

    top: 0;
    left: 0;

    width: 55px;
    height: 55px;

    background: #ffd45a;

    clip-path:
        polygon(
            0 0,
            100% 0,
            0 100%
        );

    color: #111111;

    font-size: 11px;

    font-weight: 800;

    padding:
        7px 0 0 7px;
}

.turn-text {
    display: inline-block;
    transform: rotate(-45deg);
    transform-origin: center;
    position: relative;
    top: 7px;
}


/* =========================================================
   FORM TITLE
========================================================= */

.cfcsky-form-title {
    margin:
        3px 0 14px;

    padding-left: 18px;

    text-align: center;

    color: #ff8b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 16px;

    font-weight: 700;
}


/* =========================================================
   FORM ROW
========================================================= */

.cfcsky-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-bottom: 10px;
}


/* =========================================================
   INPUT
========================================================= */

.cfcsky-input {
    width: 100%;
    height: 34px;

    position: relative;
}


.cfcsky-input i {
    position: absolute;

    left: 9px;

    top: 50%;

    transform:
        translateY(-50%);

    color: #111111;

    font-size: 9px;

    z-index: 2;
}


.cfcsky-input input {
    width: 100%;
    height: 100%;

    /* padding: 0 7px 0 25px; */

    border:
        1px solid #dddddd;

    border-radius: 4px;

    outline: none;

    background: #ffffff;

    color: #222222;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 12px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.cfcsky-input input::placeholder {
    color: #333333;
    opacity: 1;
}


.cfcsky-input input:focus {
    border-color: #ff8b00;

    box-shadow:
        0 0 0 2px
        rgba(255,139,0,0.15);
}


/* =========================================================
   FULL INPUT
========================================================= */

.cfcsky-full-input {
    margin-bottom: 10px;
}


/* =========================================================
   TEXTAREA
========================================================= */

.cfcsky-textarea {
    width: 100%;
    height: 62px;

    position: relative;

    margin-bottom: 13px;
}


.cfcsky-textarea i {
    position: absolute;

    top: 10px;
    left: 9px;

    color: #111111;

    font-size: 9px;

    z-index: 2;
}


.cfcsky-textarea textarea {
    width: 100%;
    height: 100%;

    /* padding: 8px 7px 7px 25px; */

    resize: none;

    outline: none;

    border:
        1px solid #dddddd;

    border-radius: 4px;

    background: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 12px;

    color: #222222;
}


.cfcsky-textarea textarea::placeholder {
    color: #333333;
}


/* =========================================================
   SUBMIT
========================================================= */

.cfcsky-submit {
    min-width: 125px;
    height: 31px;

    margin: 0 auto;

    padding:
        0 12px;

    border: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    background: #ff8b00;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.cfcsky-submit:hover {
    background: #ff491f;

    transform:
        translateY(-3px);
}


/* =========================================================
   DOTS
========================================================= */

.cfcsky-dots {
    position: absolute;

    left: 50%;
    bottom: 10px;

    transform:
        translateX(-50%);

    z-index: 10;

    display: flex;

    gap: 6px;
}


.cfcsky-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.65);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.cfcsky-dot.cfcsky-dot-active {
    width: 22px;

    border-radius: 10px;

    background: #ff491f;
}


/* =========================================================
   1200PX
========================================================= */

@media (max-width: 1200px) {

    .cfcsky-container {
        max-width: 1100px;

        grid-template-columns:
            minmax(0, 1fr)
            310px;

        gap: 30px;
    }


    .cfcsky-feature {
        font-size: 15px;
    }


    .cfcsky-title {
        font-size: 35px;
    }


    .cfcsky-subtitle {
        font-size: 29px;
    }

}


/* =========================================================
   1024PX
========================================================= */

@media (max-width: 1024px) {

    .cfcsky-hero {
        min-height: 400px;
    }


    .cfcsky-container {
        max-width: 950px;

        grid-template-columns:
            minmax(0, 1fr)
            285px;

        gap: 25px;

        padding:
            30px 20px;
    }


    .cfcsky-title {
        font-size: 30px;
    }


    .cfcsky-subtitle {
        font-size: 25px;

        margin-bottom: 22px;
    }


    .cfcsky-feature {
        font-size: 14px;
    }


    .cfcsky-form-card {
        padding:
            16px 11px 17px;
    }

}


/* =========================================================
   992PX AND BELOW
   FORM HIDDEN
========================================================= */

@media (max-width: 991px) {

    .cfcsky-hero {
        min-height: 500px;
    }


    .cfcsky-container {
        width: 100%;

        max-width: 760px;

        display: block;

        padding:
            65px 25px;

        text-align: center;
    }


    /* Hide form */

    .cfcsky-form-wrap {
        display: none;
    }


    /* Content */

    .cfcsky-content {
        max-width: 700px;

        margin: 0 auto;
    }


    .cfcsky-title {
        font-size:
            clamp(
                30px,
                5vw,
                42px
            );

        margin-bottom: 15px;
    }


    .cfcsky-subtitle {
        font-size:
            clamp(
                25px,
                4vw,
                34px
            );

        margin-bottom: 28px;
    }


    .cfcsky-features {
        max-width: 650px;

        margin:
            0 auto 28px;

        text-align: left;
    }


    .cfcsky-phone-wrap {
        text-align: center;
    }


    /*
       Keep sky background visible.
    */

    .cfcsky-bg-slide {
        background-position:
            center center;
    }

}


/* =========================================================
   767PX
========================================================= */

@media (max-width: 767px) {

    .cfcsky-hero {
        min-height: 520px;
    }


    .cfcsky-container {
        padding:
            60px 20px;
    }


    .cfcsky-title {
        font-size: 30px;
    }


    .cfcsky-subtitle {
        font-size: 24px;
    }


    .cfcsky-features {
        grid-template-columns: 1fr;

        gap: 13px;

        max-width: 500px;
    }


    .cfcsky-feature {
        font-size: 16px;

        align-items: flex-start;
    }


    .cfcsky-feature-icon {
        margin-top: 2px;
    }


    .cfcsky-phone {
        min-width: 225px;

        min-height: 56px;

        font-size: 19px;
    }

}


/* =========================================================
   575PX
========================================================= */

@media (max-width: 575px) {

    .cfcsky-hero {
        min-height: 540px;
    }


    .cfcsky-container {
        padding:
            55px 16px;
    }


    .cfcsky-title {
        font-size: 26px;

        line-height: 1.2;
    }


    .cfcsky-subtitle {
        font-size: 21px;

        line-height: 1.3;

        margin-bottom: 25px;
    }


    .cfcsky-features {
        gap: 12px;

        margin-bottom: 27px;
    }


    .cfcsky-feature {
        font-size: 14px;

        line-height: 1.4;
    }


    .cfcsky-feature-icon {
        width: 24px;
        height: 24px;

        flex-basis: 24px;

        font-size: 9px;
    }


    .cfcsky-phone {
        min-width: 210px;

        min-height: 54px;

        font-size: 18px;
    }


    /*
       Position the sky/tow truck image nicely
       on narrow screens without stretching.
    */

    .cfcsky-bg-slide {
        background-position:
            60% center;
    }

}


/* =========================================================
   400PX
========================================================= */

@media (max-width: 400px) {

    .cfcsky-hero {
        min-height: 560px;
    }


    .cfcsky-container {
        padding:
            48px 14px;
    }


    .cfcsky-title {
        font-size: 24px;
    }


    .cfcsky-subtitle {
        font-size: 20px;
    }


    .cfcsky-feature {
        font-size: 13px;
    }


    .cfcsky-phone {
        min-width: 200px;

        font-size: 17px;
    }

}

 





 /* button */
.cfcbtn-demo-section{
    max-width:900px;
    margin:0 auto 50px;
    background:#ffffff;
    border-radius:12px;
    padding:30px;
    box-shadow:0 4px 14px rgba(0,0,0,0.06);
    container-type:inline-size;
  }
 
  .cfcbtn-demo-title{
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.5px;
    color:#888;
    margin-bottom:16px;
  }
 
  .cfcbtn-demo-narrow{
    max-width:240px;
    border:1px dashed #ccc;
    padding:16px;
    border-radius:8px;
    container-type:inline-size;
  }
 
  /* =================================================================
     UNIQUE, SELF-CONTAINED BUTTON COMPONENT
     Prefix: cfcbtn-  (won't clash with any other classes on your site)
     Drop this markup + CSS anywhere: headers, hero sections, cards,
     footers, forms, inline in text. It sizes to its own content and
     never forces a fixed width, so it adapts to any container.
     ================================================================= */
 
  .cfcbtn-estimate{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:clamp(8px, 1.5vw, 12px);
    background:#0d2c54;
    color:#ffffff;
    font-weight:800;
    font-size:clamp(13px, 1.6vw, 16px);
    text-decoration:none;
    letter-spacing:0.3px;
    padding:clamp(12px, 2vw, 16px) clamp(20px, 4vw, 32px);
    border:none;
    border-radius:50px;
    cursor:pointer;
    overflow:hidden;
    isolation:isolate;
    max-width:100%;
    line-height:1.2;
    transition:transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
               box-shadow 0.35s ease,
               color 0.35s ease;
    box-shadow:0 6px 16px rgba(13,44,84,0.28);
  }
 
  /* sliding orange fill from left on hover */
  .cfcbtn-estimate::before{
    content:"";
    position:absolute;
    inset:0;
    background:#f7941e;
    border-radius:50px;
    transform:translateX(-101%);
    transition:transform 0.45s cubic-bezier(0.65,0,0.35,1);
    z-index:-1;
  }
 
  /* icon badge circle */
  .cfcbtn-estimate-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:clamp(24px, 3vw, 30px);
    height:clamp(24px, 3vw, 30px);
    border-radius:50%;
    background:#f7941e;
    color:#0d2c54;
    font-size:clamp(11px, 1.6vw, 14px);
    flex-shrink:0;
    transition:background 0.35s ease, color 0.35s ease, transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  }
 
  .cfcbtn-estimate-text{
    position:relative;
    white-space:nowrap;
  }
 
  /* pulsing ring on click */
  .cfcbtn-estimate-ring{
    position:absolute;
    inset:0;
    border-radius:50px;
    border:2px solid #f7941e;
    opacity:0;
    transform:scale(1);
    pointer-events:none;
  }
 
  .cfcbtn-estimate:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 28px rgba(247,148,30,0.35);
    color:#0d2c54;
  }
 
  .cfcbtn-estimate:hover::before{
    transform:translateX(0);
  }
 
  .cfcbtn-estimate:hover .cfcbtn-estimate-icon{
    background:#0d2c54;
    color:#f7941e;
    transform:rotate(360deg);
  }
 
  .cfcbtn-estimate:active{
    transform:translateY(-1px) scale(0.97);
    box-shadow:0 6px 14px rgba(247,148,30,0.3);
  }
 
  .cfcbtn-estimate:active .cfcbtn-estimate-ring{
    animation:cfcbtn-pulse 0.6s ease-out;
  }
 
  @keyframes cfcbtn-pulse{
    0%{ opacity:0.6; transform:scale(1); }
    100%{ opacity:0; transform:scale(1.25); }
  }
 
  .cfcbtn-estimate:focus-visible{
    outline:3px solid #ffb35c;
    outline-offset:4px;
  }
 
  /* When the button sits in a very narrow container (mobile drawer,
     stacked card, footer column), it shrinks gracefully via a
     container query — no fixed width is ever applied. */
  @container (max-width: 260px){
    .cfcbtn-estimate{ font-size:13px; padding:12px 18px; }
  }
 
  /* Fallback for very small viewports on browsers without container
     query support — still no forced full width by default. */
  @media (max-width:360px){
    .cfcbtn-estimate{
      font-size:13px;
      padding:12px 18px;
      gap:8px;
    }
    .cfcbtn-estimate-icon{ width:22px; height:22px; font-size:11px; }
  }
 
  /* OPTIONAL modifier: add this class only where you specifically
     want the button to stretch full-width, e.g. inside a mobile menu
     or a form. Everywhere else it keeps its natural inline size. */
  .cfcbtn-estimate--block{
    display:flex;
    width:100%;
  }









  /* =========================================================
   CASH FOR CARS BOX SECTION
   UNIQUE PREFIX: cfcbox-
========================================================= */

.cfcbox-section {

    width: 100%;

    padding: 80px 20px;

    background: #eef5fa;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.cfcbox-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        330px
        minmax(0, 1fr);

    gap: 20px;

    box-sizing: border-box;
}


/* =========================================================
   WELCOME BOX
========================================================= */

.cfcbox-welcome {

    width: 100%;

    min-height: 570px;

    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background: #08477f;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 15px 35px
        rgba(8, 71, 127, 0.15);

    box-sizing: border-box;
}


/* Decorative shape */

.cfcbox-welcome-bg {

    position: absolute;

    width: 430px;

    height: 430px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.045);

    top: -180px;

    left: -180px;

    transition:
        transform 0.8s ease;
}


.cfcbox-welcome:hover
.cfcbox-welcome-bg {

    transform:
        scale(1.25);
}


/* =========================================================
   WELCOME CONTENT
========================================================= */

.cfcbox-welcome-content {

    position: relative;

    z-index: 2;

    width: 100%;

    padding: 30px;

    text-align: center;

    box-sizing: border-box;

    animation:
        cfcboxWelcomeAnimation
        0.8s ease both;
}


@keyframes cfcboxWelcomeAnimation {

    from {

        opacity: 0;

        transform:
            translateY(30px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   EYEBROW
========================================================= */

.cfcbox-eyebrow {

    display: block;

    margin-bottom: 14px;

    color: #ff8b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


/* =========================================================
   WELCOME TITLE
========================================================= */

.cfcbox-welcome-title {

    margin: 0;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 31px;

    line-height: 1.1;

    font-weight: 800;
}


/* =========================================================
   WELCOME TEXT
========================================================= */

.cfcbox-welcome-text {

    max-width: 250px;

    margin:
        20px auto 25px;

    color:
        rgba(255,255,255,0.78);

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   MAIN BUTTON
========================================================= */

.cfcbox-main-button {

    min-height: 46px;

    padding:
        0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: #ff8b00;

    color: #ffffff;

    text-decoration: none;

    border-radius: 7px;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 8px 20px
        rgba(0,0,0,0.18);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.cfcbox-main-button:hover {

    background: #ff491f;

    transform:
        translateY(-4px);

    box-shadow:
        0 14px 25px
        rgba(0,0,0,0.25);
}


.cfcbox-main-button i {

    transition:
        transform 0.3s ease;
}


.cfcbox-main-button:hover i {

    transform:
        rotate(15deg)
        scale(1.15);
}


/* =========================================================
   CARD GRID
========================================================= */

.cfcbox-grid {

    width: 100%;

    min-width: 0;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    grid-template-rows:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

    box-sizing: border-box;
}


/* =========================================================
   CARD
========================================================= */

.cfcbox-card {

    width: 100%;

    min-width: 0;

    min-height: 275px;

    padding: 25px;

    position: relative;

    overflow: hidden;

    border-radius: 12px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease;
}


/* =========================================================
   LIGHT CARD
========================================================= */

.cfcbox-card-light {

    background: #ffffff;

    color: #08477f;

    border:
        1px solid
        rgba(8,71,127,0.08);
}


.cfcbox-card-light:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 18px 35px
        rgba(8,71,127,0.15);
}


/* =========================================================
   BLUE CARD
========================================================= */

.cfcbox-card-blue {

    background: #08477f;

    color: #ffffff;

    border:
        1px solid
        rgba(255,255,255,0.05);
}


.cfcbox-card-blue:hover {

    transform:
        translateY(-8px);

    background: #063c6d;

    box-shadow:
        0 18px 35px
        rgba(8,71,127,0.28);
}


/* =========================================================
   TOP AREA
========================================================= */

.cfcbox-card-header {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 17px;
}


/* =========================================================
   ICON
========================================================= */

.cfcbox-icon {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    font-size: 25px;

    transition:
        transform 0.45s ease;
}


.cfcbox-card-light
.cfcbox-icon {

    color: #08477f;
}


.cfcbox-card-blue
.cfcbox-icon {

    color: #ffffff;
}


.cfcbox-card:hover
.cfcbox-icon {

    transform:
        translateY(-5px)
        rotate(-8deg)
        scale(1.12);
}


/* =========================================================
   NUMBER
========================================================= */

.cfcbox-number {

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    opacity: 0.35;
}


/* =========================================================
   TITLE
========================================================= */

.cfcbox-card-title {

    margin: 0;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 700;

    transition:
        transform 0.3s ease;
}


.cfcbox-card:hover
.cfcbox-card-title {

    transform:
        translateX(3px);
}


/* =========================================================
   ACCENT
========================================================= */

.cfcbox-accent {

    display: block;

    width: 42px;

    height: 2px;

    margin:
        10px 0 17px;

    background: #ff8b00;

    transition:
        width 0.4s ease;
}


.cfcbox-card:hover
.cfcbox-accent {

    width: 85px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.cfcbox-card-text {

    margin: 0;

    max-width: 100%;

    color: inherit;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 12.5px;

    line-height: 1.75;

    opacity: 0.78;
}


/* =========================================================
   TOP ACCENT EFFECT
========================================================= */

.cfcbox-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 3px;

    background: #ff8b00;

    transition:
        width 0.45s ease;
}


.cfcbox-card:hover::before {

    width: 100%;
}


/* =========================================================
   CARD REVEAL
========================================================= */

.cfcbox-card {

    opacity: 0;

    animation:
        cfcboxCardReveal
        0.7s ease forwards;
}


.cfcbox-card:nth-child(1) {
    animation-delay: 0.1s;
}

.cfcbox-card:nth-child(2) {
    animation-delay: 0.2s;
}

.cfcbox-card:nth-child(3) {
    animation-delay: 0.3s;
}

.cfcbox-card:nth-child(4) {
    animation-delay: 0.4s;
}

.cfcbox-card:nth-child(5) {
    animation-delay: 0.5s;
}

.cfcbox-card:nth-child(6) {
    animation-delay: 0.6s;
}


@keyframes cfcboxCardReveal {

    from {

        opacity: 0;

        transform:
            translateY(30px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   IMPORTANT
   PREVENT HORIZONTAL OVERFLOW
========================================================= */

.cfcbox-section,
.cfcbox-container,
.cfcbox-grid,
.cfcbox-card,
.cfcbox-welcome {

    max-width: 100%;

}


/* =========================================================
   1200PX
========================================================= */

@media (max-width: 1200px) {

    .cfcbox-container {

        max-width: 1100px;

        grid-template-columns:
            300px
            minmax(0, 1fr);

        gap: 16px;
    }


    .cfcbox-grid {

        gap: 16px;
    }


    .cfcbox-card {

        padding: 22px;

        min-height: 265px;
    }


    .cfcbox-welcome-title {

        font-size: 29px;
    }

}


/* =========================================================
   1050PX
========================================================= */

@media (max-width: 1050px) {

    .cfcbox-section {

        padding:
            65px 18px;
    }


    .cfcbox-container {

        max-width: 950px;

        grid-template-columns:
            280px
            minmax(0, 1fr);

        gap: 15px;
    }


    .cfcbox-grid {

        gap: 15px;
    }


    .cfcbox-card {

        padding: 20px;

        min-height: 250px;
    }


    .cfcbox-card-title {

        font-size: 15px;
    }


    .cfcbox-card-text {

        font-size: 12px;
    }


    .cfcbox-welcome {

        min-height: 520px;
    }


    .cfcbox-welcome-title {

        font-size: 27px;
    }

}


/* =========================================================
   900PX
   CHANGE TO FULL WIDTH STACK
========================================================= */

@media (max-width: 900px) {

    .cfcbox-container {

        max-width: 760px;

        display: flex;

        flex-direction: column;

        gap: 18px;
    }


    .cfcbox-welcome {

        width: 100%;

        min-height: 330px;

        border-radius: 16px;
    }


    .cfcbox-grid {

        width: 100%;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-template-rows: auto;

        gap: 18px;
    }


    .cfcbox-card {

        min-height: 240px;

        border-radius: 12px;
    }

}


/* =========================================================
   767PX
========================================================= */

@media (max-width: 767px) {

    .cfcbox-section {

        padding:
            50px 15px;
    }


    .cfcbox-container {

        max-width: 600px;

        gap: 15px;
    }


    .cfcbox-welcome {

        min-height: 310px;
    }


    .cfcbox-welcome-content {

        padding: 25px;
    }


    .cfcbox-welcome-title {

        font-size: 27px;
    }


    .cfcbox-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .cfcbox-card {

        min-height: auto;

        padding: 24px;

        border-radius: 11px;
    }


    .cfcbox-card-text {

        max-width: 100%;

        font-size: 13px;
    }

}


/* =========================================================
   575PX
========================================================= */

@media (max-width: 575px) {

    .cfcbox-section {

        padding:
            40px 12px;
    }


    .cfcbox-container {

        width: 100%;

        max-width: 100%;

        gap: 12px;
    }


    .cfcbox-welcome {

        min-height: 290px;

        border-radius: 13px;
    }


    .cfcbox-welcome-content {

        padding:
            22px 18px;
    }


    .cfcbox-welcome-title {

        font-size: 24px;

        line-height: 1.15;
    }


    .cfcbox-welcome-text {

        margin:
            15px auto 20px;

        font-size: 12px;
    }


    .cfcbox-main-button {

        min-height: 43px;

        padding:
            0 17px;

        font-size: 11px;
    }


    .cfcbox-card {

        min-height: 205px;

        padding:
            22px 19px;
    }


    .cfcbox-card-header {

        margin-bottom: 12px;
    }


    .cfcbox-icon {

        width: 40px;

        height: 40px;

        font-size: 22px;
    }


    .cfcbox-card-title {

        font-size: 16px;
    }


    .cfcbox-card-text {

        font-size: 12.5px;

        line-height: 1.7;
    }

}


/* =========================================================
   400PX
========================================================= */

@media (max-width: 400px) {

    .cfcbox-section {

        padding:
            35px 10px;
    }


    .cfcbox-welcome {

        min-height: 275px;
    }


    .cfcbox-welcome-title {

        font-size: 22px;
    }


    .cfcbox-card {

        padding:
            20px 17px;

        min-height: 195px;
    }


    .cfcbox-card-title {

        font-size: 15px;
    }


    .cfcbox-card-text {

        font-size: 12px;
    }

}



/* =========================================================
   CASH FOR CARS ABOUT SECTION
   UNIQUE PREFIX: cfcabout-
========================================================= */

.cfcabout-section {

    width: 100%;

    padding: 90px 20px;

    background: #f4f8fb;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.cfcabout-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 70px;

    box-sizing: border-box;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.cfcabout-image-wrap {

    width: 100%;

    position: relative;

    padding:
        0 15px 15px 0;

    box-sizing: border-box;

    animation:
        cfcaboutImageReveal
        0.9s ease both;
}


@keyframes cfcaboutImageReveal {

    from {

        opacity: 0;

        transform:
            translateX(-40px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


/* =========================================================
   IMAGE FRAME
========================================================= */

.cfcabout-image-frame {

    width: 100%;

    min-height: 510px;

    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background: #dceaf3;

    box-shadow:
        0 18px 40px
        rgba(8, 71, 127, 0.16);
}


.cfcabout-image {

    width: 100%;

    height: 100%;

    min-height: 510px;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.8s ease;
}


/* Image hover */

.cfcabout-image-wrap:hover
.cfcabout-image {

    transform:
        scale(1.06);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.cfcabout-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(8,71,127,0.02),
            rgba(8,71,127,0.30)
        );

    pointer-events: none;

    transition:
        background 0.5s ease;
}


.cfcabout-image-wrap:hover
.cfcabout-image-overlay {

    background:
        linear-gradient(
            180deg,
            rgba(8,71,127,0.05),
            rgba(8,71,127,0.42)
        );
}


/* =========================================================
   IMAGE DECORATION
========================================================= */

.cfcabout-image-decoration {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 110px;

    height: 110px;

    background: #ff8b00;

    border-radius:
        15px 0 15px 0;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    box-shadow:
        0 10px 25px
        rgba(255,139,0,0.22);

    transition:
        transform 0.5s ease;
}


.cfcabout-image-wrap:hover
.cfcabout-image-decoration {

    transform:
        rotate(-5deg)
        scale(1.04);
}


.cfcabout-image-decoration span {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #ffffff;
}


/* =========================================================
   CONTENT
========================================================= */

.cfcabout-content {

    width: 100%;

    min-width: 0;

    animation:
        cfcaboutContentReveal
        0.9s 0.15s ease both;
}


@keyframes cfcaboutContentReveal {

    from {

        opacity: 0;

        transform:
            translateX(40px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


/* =========================================================
   LABEL
========================================================= */

.cfcabout-label {

    display: inline-block;

    margin-bottom: 12px;

    color: #ff7b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   TITLE
========================================================= */

.cfcabout-title {

    width: 100%;

    max-width: 650px;

    margin: 0;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 25px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.4px;
}


/* =========================================================
   TITLE LINE
========================================================= */

.cfcabout-line {

    width: 70px;

    height: 4px;

    margin:
        20px 0 22px;

    border-radius: 10px;

    background: #ff7b00;

    transition:
        width 0.4s ease;
}


.cfcabout-content:hover
.cfcabout-line {

    width: 110px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.cfcabout-description {

    width: 100%;

    max-width: 680px;

    margin: 0;

    color: #606b75;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 16px;

    line-height: 2;

    font-weight: 400;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.cfcabout-highlights {

    width: 100%;

    margin-top: 28px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;
}


.cfcabout-highlight {

    min-width: 0;

    padding: 14px 12px;

    background: #ffffff;

    border:
        1px solid
        #e1ebf2;

    border-radius: 9px;

    display: flex;

    align-items: center;

    gap: 10px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.cfcabout-highlight:hover {

    transform:
        translateY(-5px);

    border-color: #ff8b00;

    box-shadow:
        0 10px 22px
        rgba(8,71,127,0.10);
}


/* =========================================================
   HIGHLIGHT ICON
========================================================= */

.cfcabout-highlight-icon {

    width: 36px;

    height: 36px;

    flex: 0 0 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background: #084f86;

    color: #ffffff;

    font-size: 14px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


.cfcabout-highlight:hover
.cfcabout-highlight-icon {

    transform:
        rotate(-8deg)
        scale(1.08);

    background: #ff7b00;
}


/* =========================================================
   HIGHLIGHT TEXT
========================================================= */

.cfcabout-highlight strong {

    display: block;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    line-height: 1.3;

    font-weight: 700;
}


.cfcabout-highlight span {

    display: block;

    margin-top: 3px;

    color: #7b858d;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 9px;

    line-height: 1.4;
}


/* =========================================================
   BUTTON
========================================================= */

.cfcabout-button {

    margin-top: 28px;

    min-height: 48px;

    padding:
        0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background: #ff7b00;

    color: #ffffff;

    text-decoration: none;

    border-radius: 7px;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 8px 20px
        rgba(255,123,0,0.18);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.cfcabout-button:hover {

    background: #084f86;

    transform:
        translateY(-4px);

    box-shadow:
        0 13px 25px
        rgba(8,71,127,0.20);
}


.cfcabout-button i {

    transition:
        transform 0.35s ease;
}


.cfcabout-button:hover i {

    transform:
        translateX(6px);
}


/* =========================================================
   1200PX
========================================================= */

@media (max-width: 1200px) {

    .cfcabout-container {

        max-width: 1080px;

        gap: 50px;
    }


    .cfcabout-image-frame,
    .cfcabout-image {

        min-height: 480px;
    }


    .cfcabout-description {

        font-size: 15px;

        line-height: 1.9;
    }

}


/* =========================================================
   1050PX
========================================================= */

@media (max-width: 1050px) {

    .cfcabout-section {

        padding:
            70px 20px;
    }


    .cfcabout-container {

        max-width: 950px;

        gap: 35px;
    }


    .cfcabout-title {

        font-size: 32px;
    }


    .cfcabout-description {

        font-size: 14px;

        line-height: 1.85;
    }


    .cfcabout-highlights {

        grid-template-columns: 1fr;

        gap: 9px;
    }


    .cfcabout-highlight {

        padding: 11px;
    }


    .cfcabout-image-frame,
    .cfcabout-image {

        min-height: 450px;
    }

}


/* =========================================================
   900PX
   TABLET STACK
========================================================= */

@media (max-width: 900px) {

    .cfcabout-section {

        padding:
            60px 20px;
    }


    .cfcabout-container {

        max-width: 760px;

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .cfcabout-image-wrap {

        max-width: 650px;

        margin: 0 auto;

        width: 100%;
    }


    .cfcabout-image-frame,
    .cfcabout-image {

        min-height: 420px;
    }


    .cfcabout-content {

        max-width: 700px;

        margin: 0 auto;
    }


    .cfcabout-title {

        max-width: 700px;

        font-size: 34px;
    }


    .cfcabout-description {

        max-width: 700px;

        font-size: 15px;

        line-height: 1.9;
    }


    .cfcabout-highlights {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   767PX
========================================================= */

@media (max-width: 767px) {

    .cfcabout-section {

        padding:
            50px 15px;
    }


    .cfcabout-container {

        max-width: 600px;

        gap: 32px;
    }


    .cfcabout-image-wrap {

        padding:
            0 10px 10px 0;
    }


    .cfcabout-image-frame,
    .cfcabout-image {

        min-height: 360px;
    }


    .cfcabout-image-frame {

        border-radius: 14px;
    }


    .cfcabout-image-decoration {

        width: 80px;

        height: 80px;

        border-radius:
            12px 0 12px 0;
    }


    .cfcabout-label {

        font-size: 10px;
    }


    .cfcabout-title {

        font-size: 28px;

        line-height: 1.3;
    }


    .cfcabout-description {

        font-size: 14px;

        line-height: 1.85;
    }


    .cfcabout-highlights {

        grid-template-columns: 1fr;

        gap: 10px;
    }


    .cfcabout-highlight {

        padding: 13px;
    }

}


/* =========================================================
   575PX
========================================================= */

@media (max-width: 575px) {

    .cfcabout-section {

        padding:
            42px 12px;
    }


    .cfcabout-container {

        max-width: 100%;

        gap: 27px;
    }


    .cfcabout-image-wrap {

        padding:
            0 7px 7px 0;
    }


    .cfcabout-image-frame,
    .cfcabout-image {

        min-height: 300px;
    }


    .cfcabout-title {

        font-size: 25px;

        line-height: 1.3;
    }


    .cfcabout-line {

        margin:
            15px 0 18px;
    }


    .cfcabout-description {

        font-size: 13px;

        line-height: 1.8;
    }


    .cfcabout-button {

        width: 100%;

        max-width: 220px;
    }

}


/* =========================================================
   400PX
========================================================= */

@media (max-width: 400px) {

    .cfcabout-section {

        padding:
            35px 10px;
    }


    .cfcabout-image-frame,
    .cfcabout-image {

        min-height: 260px;
    }


    .cfcabout-title {

        font-size: 22px;
    }


    .cfcabout-description {

        font-size: 12.5px;

        line-height: 1.75;
    }


    .cfcabout-highlight strong {

        font-size: 10px;
    }


    .cfcabout-highlight span {

        font-size: 8.5px;
    }

}









/* =========================================================
   RECENT PURCHASES
   UNIQUE PREFIX: cfcpurchase-
========================================================= */

.cfcpurchase-section {

    width: 100%;

    padding: 80px 20px;

    background: #ffffff;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.cfcpurchase-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    box-sizing: border-box;
}


/* =========================================================
   HEADING
========================================================= */

.cfcpurchase-heading {

    width: 100%;

    margin-bottom: 35px;

    text-align: center;
}


.cfcpurchase-small-title {

    display: block;

    margin-bottom: 8px;

    color: #ff8b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.cfcpurchase-title {

    width: 100%;

    max-width: 950px;

    margin: 0 auto;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size:25px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================================
   HEADING LINE
========================================================= */

.cfcpurchase-heading-line {

    display: block;

    width: 65px;

    height: 4px;

    margin: 15px auto 0;

    border-radius: 10px;

    background: #ff8b00;

    transition:
        width 0.4s ease;
}


.cfcpurchase-heading:hover
.cfcpurchase-heading-line {

    width: 110px;
}


/* =========================================================
   CAROUSEL
========================================================= */

.cfcpurchase-carousel {

    width: 100%;

    position: relative;

    box-sizing: border-box;
}


/* =========================================================
   TRACK
========================================================= */

.cfcpurchase-track {

    width: 100%;

    display: flex;

    align-items: stretch;

    gap: 28px;

    overflow-x: auto;

    overflow-y: hidden;

    scroll-behavior: auto;

    scrollbar-width: none;

    cursor: grab;

    user-select: none;

    -webkit-overflow-scrolling: touch;

    box-sizing: border-box;

    padding:
        8px 2px 15px;
}


.cfcpurchase-track::-webkit-scrollbar {

    display: none;
}


.cfcpurchase-track.cfcpurchase-dragging {

    cursor: grabbing;

    scroll-behavior: auto;
}


/* =========================================================
   CARD
========================================================= */

.cfcpurchase-card {

    flex:
        0 0
        calc(
            (100% - 84px) / 4
        );

    min-width: 0;

    position: relative;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid #aeb8c0;

    border-radius: 12px;

    box-sizing: border-box;

    box-shadow:
        0 5px 15px
        rgba(0,0,0,0.07);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.cfcpurchase-card:hover {

    transform:
        translateY(-9px);

    border-color: #084f86;

    box-shadow:
        0 18px 35px
        rgba(8,79,134,0.18);

    z-index: 5;
}


/* =========================================================
   IMAGE
========================================================= */

.cfcpurchase-image-box {

    width: 100%;

    height: 133px;

    position: relative;

    overflow: hidden;

    background: #e9eef2;
}


.cfcpurchase-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


.cfcpurchase-card:hover
.cfcpurchase-image {

    transform:
        scale(1.1);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.cfcpurchase-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(8,79,134,0),
            rgba(8,79,134,0.25)
        );

    opacity: 0;

    transition:
        opacity 0.4s ease;
}


.cfcpurchase-card:hover
.cfcpurchase-image-overlay {

    opacity: 1;
}


/* =========================================================
   CONDITION BADGE
========================================================= */

.cfcpurchase-condition {

    position: absolute;

    right: -1px;

    bottom: 0;

    min-width: 62px;

    height: 30px;

    padding:
        0 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ff8b00;

    color: #111111;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    font-style: italic;

    clip-path:
        polygon(
            20% 0,
            100% 0,
            100% 100%,
            0 100%
        );

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.cfcpurchase-card:hover
.cfcpurchase-condition {

    background: #ff491f;

    color: #ffffff;

    transform:
        translateX(-3px);
}


/* =========================================================
   CONTENT
========================================================= */

.cfcpurchase-content {

    width: 100%;

    padding:
        10px 11px 7px;

    box-sizing: border-box;
}


/* =========================================================
   CAR NAME
========================================================= */

.cfcpurchase-car-name {

    margin: 0 0 8px;

    color: #ff8b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 18px;

    line-height: 1.25;

    font-weight: 700;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.cfcpurchase-card:hover
.cfcpurchase-car-name {

    color: #084f86;

    transform:
        translateX(3px);
}


/* =========================================================
   INFO
========================================================= */

.cfcpurchase-info {

    display: flex;

    flex-direction: column;

    gap: 6px;
}


.cfcpurchase-info-item {

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 7px;

    color: #222222;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10px;

    line-height: 1.4;

    font-weight: 600;
}


.cfcpurchase-info-item > span:last-child {

    min-width: 0;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
}


/* =========================================================
   INFO ICON
========================================================= */

.cfcpurchase-info-icon {

    width: 20px;

    height: 20px;

    flex:
        0 0 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #084f86;

    color: #ffffff;

    font-size: 9px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.cfcpurchase-card:hover
.cfcpurchase-info-icon {

    background: #ff8b00;

    transform:
        scale(1.12);
}


/* =========================================================
   BOTTOM AREA
========================================================= */

.cfcpurchase-bottom {

    width: 100%;

    min-height: 42px;

    display: flex;

    align-items: stretch;

    border-top:
        1px solid #e4e4e4;

    box-sizing: border-box;
}


/* =========================================================
   PRICE
========================================================= */

.cfcpurchase-price {

    min-width: 108px;

    padding:
        0 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ff8b00;

    color: #111111;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 700;

    border-radius:
        0 25px 0 0;

    transition:
        background 0.3s ease;
}


.cfcpurchase-card:hover
.cfcpurchase-price {

    background: #ff491f;

    color: #ffffff;
}


/* =========================================================
   VEHICLE TYPE
========================================================= */

.cfcpurchase-type {

    flex: 1;

    min-width: 0;

    padding:
        0 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #333333;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* =========================================================
   MANUAL CONTROLS
========================================================= */

.cfcpurchase-control {

    position: absolute;

    top: 50%;

    width: 40px;

    height: 40px;

    margin-top: -20px;

    border: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #084f86;

    color: #ffffff;

    font-size: 12px;

    cursor: pointer;

    opacity: 0;

    box-shadow:
        0 6px 15px
        rgba(0,0,0,0.18);

    z-index: 10;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}


.cfcpurchase-carousel:hover
.cfcpurchase-control {

    opacity: 1;
}


.cfcpurchase-control:hover {

    background: #ff8b00;

    transform:
        scale(1.1);
}


.cfcpurchase-prev {

    left: -20px;
}


.cfcpurchase-next {

    right: -20px;
}


/* =========================================================
   PROGRESS
========================================================= */

.cfcpurchase-progress {

    width: 100%;

    max-width: 200px;

    height: 3px;

    margin:
        18px auto 0;

    overflow: hidden;

    border-radius: 10px;

    background: #e2e9ee;
}


.cfcpurchase-progress-bar {

    display: block;

    width: 30%;

    height: 100%;

    border-radius: 10px;

    background: #ff8b00;

    transition:
        width 0.2s ease;
}


/* =========================================================
   1100PX
========================================================= */

@media (max-width: 1100px) {

    .cfcpurchase-container {

        max-width: 1000px;
    }


    .cfcpurchase-track {

        gap: 20px;
    }


    .cfcpurchase-card {

        flex-basis:
            calc(
                (100% - 60px) / 4
            );
    }


    .cfcpurchase-image-box {

        height: 125px;
    }


    .cfcpurchase-car-name {

        font-size: 16px;
    }

}


/* =========================================================
   992PX
========================================================= */

@media (max-width: 991px) {

    .cfcpurchase-section {

        padding:
            65px 18px;
    }


    .cfcpurchase-container {

        max-width: 900px;
    }


    .cfcpurchase-card {

        flex-basis:
            calc(
                (100% - 40px) / 3
            );
    }


    .cfcpurchase-image-box {

        height: 140px;
    }


    .cfcpurchase-info-item {

        font-size: 9px;
    }


    .cfcpurchase-price {

        min-width: 95px;

        font-size: 12px;
    }


    .cfcpurchase-type {

        font-size: 11px;
    }

}


/* =========================================================
   767PX
========================================================= */

@media (max-width: 767px) {

    .cfcpurchase-section {

        padding:
            55px 15px;
    }


    .cfcpurchase-container {

        max-width: 650px;
    }


    .cfcpurchase-heading {

        margin-bottom: 25px;
    }


    .cfcpurchase-title {

        font-size: 24px;
    }


    .cfcpurchase-card {

        flex-basis:
            calc(
                (100% - 20px) / 2
            );
    }


    .cfcpurchase-image-box {

        height: 155px;
    }


    .cfcpurchase-car-name {

        font-size: 17px;
    }


    .cfcpurchase-info-item {

        font-size: 10px;
    }


    .cfcpurchase-control {

        opacity: 1;

        width: 36px;

        height: 36px;

        margin-top: -18px;
    }


    .cfcpurchase-prev {

        left: -8px;
    }


    .cfcpurchase-next {

        right: -8px;
    }

}


/* =========================================================
   575PX
========================================================= */

@media (max-width: 575px) {

    .cfcpurchase-section {

        padding:
            45px 12px;
    }


    .cfcpurchase-container {

        max-width: 100%;
    }


    .cfcpurchase-small-title {

        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .cfcpurchase-title {

        font-size: 21px;

        line-height: 1.35;
    }


    .cfcpurchase-track {

        gap: 14px;

        padding:
            5px 3px 12px;
    }


    .cfcpurchase-card {

        flex-basis:
            calc(
                100% - 20px
            );

        max-width: 360px;
    }


    .cfcpurchase-image-box {

        height: 180px;
    }


    .cfcpurchase-car-name {

        font-size: 18px;
    }


    .cfcpurchase-info-item {

        font-size: 10px;
    }


    .cfcpurchase-price {

        min-width: 110px;

        font-size: 13px;
    }


    .cfcpurchase-type {

        font-size: 12px;
    }


    .cfcpurchase-control {

        width: 34px;

        height: 34px;

        margin-top: -17px;

        font-size: 10px;
    }


    .cfcpurchase-prev {

        left: -5px;
    }


    .cfcpurchase-next {

        right: -5px;
    }

}


/* =========================================================
   400PX
========================================================= */

@media (max-width: 400px) {

    .cfcpurchase-section {

        padding:
            38px 10px;
    }


    .cfcpurchase-title {

        font-size: 19px;
    }


    .cfcpurchase-track {

        gap: 12px;
    }


    .cfcpurchase-card {

        flex-basis:
            calc(
                100% - 15px
            );
    }


    .cfcpurchase-image-box {

        height: 165px;
    }


    .cfcpurchase-content {

        padding:
            10px;
    }


    .cfcpurchase-car-name {

        font-size: 17px;
    }


    .cfcpurchase-price {

        min-width: 100px;

        font-size: 12px;
    }

}










/* =========================================================
   CAR BRANDS SECTION
   UNIQUE PREFIX: cfcbrands-
========================================================= */

.cfcbrands-section {

    width: 100%;

    padding: 75px 20px;

    background: #ffffff;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.cfcbrands-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    box-sizing: border-box;
}


/* =========================================================
   HEADING
========================================================= */

.cfcbrands-heading {

    width: 100%;

    max-width: 1000px;

    margin:
        0 auto 32px;

    text-align: center;

    box-sizing: border-box;
}


/* =========================================================
   EYEBROW
========================================================= */

.cfcbrands-eyebrow {

    display: block;

    margin-bottom: 8px;

    color: #ff8b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    opacity: 0;

    transform:
        translateY(20px);
}


/* =========================================================
   TITLE
========================================================= */

.cfcbrands-title {

    width: 100%;

    margin: 0;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size:
        clamp(24px, 3vw, 32px);

    line-height: 1.3;

    font-weight: 700;

    opacity: 0;

    transform:
        translateY(30px);
}


/* =========================================================
   HEADING LINE
========================================================= */

.cfcbrands-heading-line {

    display: block;

    width: 0;

    height: 4px;

    margin:
        15px auto 0;

    border-radius: 10px;

    background: #ff8b00;

    transition:
        width 0.7s ease;
}


/* =========================================================
   WHEN SECTION IS VISIBLE
========================================================= */

.cfcbrands-section.cfcbrands-visible
.cfcbrands-eyebrow {

    animation:
        cfcBrandsHeadingFade
        0.7s ease forwards;
}


.cfcbrands-section.cfcbrands-visible
.cfcbrands-title {

    animation:
        cfcBrandsHeadingFade
        0.8s 0.15s ease forwards;
}


.cfcbrands-section.cfcbrands-visible
.cfcbrands-heading-line {

    width: 75px;

    transition-delay:
        0.5s;
}


@keyframes cfcBrandsHeadingFade {

    from {

        opacity: 0;

        transform:
            translateY(30px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   BRAND GRID
========================================================= */

.cfcbrands-grid {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 16px;

    box-sizing: border-box;
}


/* =========================================================
   BRAND CARD
========================================================= */

.cfcbrands-card {

    width: 100%;

    min-width: 0;

    height: 96px;

    padding: 8px;

    box-sizing: border-box;

    opacity: 0;

    transform:
        translateY(35px)
        scale(0.92);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

    transition-delay: 0s;

    background: #ffffff;

    border:
        1px solid #e5e9ed;

    border-radius: 4px;

    position: relative;

    overflow: hidden;

    cursor: pointer;
}


/* =========================================================
   CARD REVEAL
========================================================= */

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card {

    animation:
        cfcBrandsCardReveal
        0.65s ease forwards;
}


/* Stagger */

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(1) {
    animation-delay: 0.10s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(2) {
    animation-delay: 0.15s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(3) {
    animation-delay: 0.20s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(4) {
    animation-delay: 0.25s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(5) {
    animation-delay: 0.30s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(6) {
    animation-delay: 0.35s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(7) {
    animation-delay: 0.40s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(8) {
    animation-delay: 0.45s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(9) {
    animation-delay: 0.50s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(10) {
    animation-delay: 0.55s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(11) {
    animation-delay: 0.60s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(12) {
    animation-delay: 0.65s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(13) {
    animation-delay: 0.70s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(14) {
    animation-delay: 0.75s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(15) {
    animation-delay: 0.80s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(16) {
    animation-delay: 0.85s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(17) {
    animation-delay: 0.90s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(18) {
    animation-delay: 0.95s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(19) {
    animation-delay: 1s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(20) {
    animation-delay: 1.05s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(21) {
    animation-delay: 1.10s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(22) {
    animation-delay: 1.15s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(23) {
    animation-delay: 1.20s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(24) {
    animation-delay: 1.25s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(25) {
    animation-delay: 1.30s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(26) {
    animation-delay: 1.35s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(27) {
    animation-delay: 1.40s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(28) {
    animation-delay: 1.45s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(29) {
    animation-delay: 1.50s;
}

.cfcbrands-section.cfcbrands-visible
.cfcbrands-card:nth-child(30) {
    animation-delay: 1.55s;
}


@keyframes cfcBrandsCardReveal {

    from {

        opacity: 0;

        transform:
            translateY(35px)
            scale(0.92);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


/* =========================================================
   CARD INNER
========================================================= */

.cfcbrands-card-inner {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    box-sizing: border-box;
}


/* =========================================================
   LOGO
========================================================= */

.cfcbrands-logo {

    width: 100%;

    max-width: 120px;

    height: 70px;

    object-fit: contain;

    display: block;

    filter:
        grayscale(15%);

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}


/* =========================================================
   BRAND NAME
   Hidden until hover
========================================================= */

.cfcbrands-brand-name {

    position: absolute;

    left: 50%;

    bottom: 4px;

    transform:
        translateX(-50%)
        translateY(15px);

    padding:
        3px 9px;

    border-radius: 20px;

    background: #084f86;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 8px;

    font-weight: 600;

    white-space: nowrap;

    opacity: 0;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.cfcbrands-card:hover {

    transform:
        translateY(-7px)
        scale(1.02);

    border-color: #ff8b00;

    box-shadow:
        0 12px 25px
        rgba(8,79,134,0.14);
}


.cfcbrands-card:hover
.cfcbrands-logo {

    transform:
        scale(1.12);

    filter:
        grayscale(0%);
}


.cfcbrands-card:hover
.cfcbrands-brand-name {

    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0);
}


/* =========================================================
   TOP HIGHLIGHT
========================================================= */

.cfcbrands-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 3px;

    background: #f35336;

    z-index: 3;

    transition:
        width 0.4s ease;
}


.cfcbrands-card:hover::before {

    width: 100%;
}


/* =========================================================
   1200PX
========================================================= */

@media (max-width: 1200px) {

    .cfcbrands-container {

        max-width: 1100px;
    }


    .cfcbrands-grid {

        gap: 14px;
    }


    .cfcbrands-card {

        height: 92px;
    }


    .cfcbrands-logo {

        max-width: 110px;

        height: 65px;
    }

}


/* =========================================================
   992PX
========================================================= */

@media (max-width: 991px) {

    .cfcbrands-section {

        padding:
            65px 18px;
    }


    .cfcbrands-container {

        max-width: 900px;
    }


    .cfcbrands-grid {

        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        gap: 14px;
    }


    .cfcbrands-card {

        height: 95px;
    }


    .cfcbrands-title {

        font-size: 27px;
    }

}


/* =========================================================
   767PX
========================================================= */

@media (max-width: 767px) {

    .cfcbrands-section {

        padding:
            55px 15px;
    }


    .cfcbrands-container {

        max-width: 650px;
    }


    .cfcbrands-heading {

        margin-bottom: 25px;
    }


    .cfcbrands-title {

        font-size: 24px;

        line-height: 1.35;
    }


    .cfcbrands-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 12px;
    }


    .cfcbrands-card {

        height: 90px;

        padding: 6px;
    }


    .cfcbrands-logo {

        max-width: 95px;

        height: 62px;
    }


    .cfcbrands-brand-name {

        display: none;
    }

}


/* =========================================================
   575PX
========================================================= */

@media (max-width: 575px) {

    .cfcbrands-section {

        padding:
            45px 12px;
    }


    .cfcbrands-container {

        max-width: 100%;
    }


    .cfcbrands-eyebrow {

        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .cfcbrands-title {

        font-size: 21px;
    }


    .cfcbrands-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 11px;
    }


    .cfcbrands-card {

        height: 88px;

        border-radius: 5px;
    }


    .cfcbrands-logo {

        max-width: 105px;

        height: 62px;
    }


    /* Keep hover animation usable on touch */

    .cfcbrands-card:hover {

        transform:
            translateY(-4px)
            scale(1.01);
    }

}


/* =========================================================
   400PX
========================================================= */

@media (max-width: 400px) {

    .cfcbrands-section {

        padding:
            38px 10px;
    }


    .cfcbrands-title {

        font-size: 19px;
    }


    .cfcbrands-grid {

        gap: 9px;
    }


    .cfcbrands-card {

        height: 80px;
    }


    .cfcbrands-logo {

        max-width: 90px;

        height: 55px;
    }

}









/* =========================================================
   CAR SELLING PROCESS
   UNIQUE PREFIX: cfcprocess-
========================================================= */

.cfcprocess-section {

    width: 100%;

    position: relative;

    padding: 100px 20px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f4f9fc 0%,
            #ffffff 48%,
            #eef6fb 100%
        );

    box-sizing: border-box;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.cfcprocess-bg-shape {

    position: absolute;

    pointer-events: none;

    border-radius: 50%;

    opacity: 0.45;

    filter: blur(1px);

}


.cfcprocess-bg-one {

    width: 400px;

    height: 400px;

    top: -220px;

    left: -180px;

    background:
        radial-gradient(
            circle,
            rgba(8,79,134,0.12),
            transparent 70%
        );
}


.cfcprocess-bg-two {

    width: 500px;

    height: 500px;

    right: -250px;

    bottom: -280px;

    background:
        radial-gradient(
            circle,
            rgba(255,139,0,0.10),
            transparent 70%
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.cfcprocess-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    position: relative;

    z-index: 2;

    box-sizing: border-box;
}


/* =========================================================
   HEADING
========================================================= */

.cfcprocess-heading {

    width: 100%;

    max-width: 850px;

    margin:
        0 auto 75px;

    text-align: center;
}


.cfcprocess-eyebrow {

    display: block;

    margin-bottom: 10px;

    color: #ff7b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

    opacity: 0;

    transform:
        translateY(25px);
}


.cfcprocess-title {

    margin: 0;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size:
        clamp(
            28px,
            4vw,
            43px
        );

    line-height: 1.2;

    font-weight: 700;

    opacity: 0;

    transform:
        translateY(30px);
}


.cfcprocess-heading-line {

    display: block;

    width: 0;

    height: 4px;

    margin:
        18px auto 20px;

    border-radius: 10px;

    background: #ff7b00;

    transition:
        width 0.7s ease;
}


.cfcprocess-intro {

    max-width: 680px;

    margin:
        0 auto;

    color: #687682;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 16px;

    line-height: 1.8;

    opacity: 0;

    transform:
        translateY(25px);
}


/* =========================================================
   HEADING ANIMATION
========================================================= */

.cfcprocess-section.cfcprocess-visible
.cfcprocess-eyebrow {

    animation:
        cfcProcessFadeUp
        0.7s ease forwards;
}


.cfcprocess-section.cfcprocess-visible
.cfcprocess-title {

    animation:
        cfcProcessFadeUp
        0.8s 0.1s ease forwards;
}


.cfcprocess-section.cfcprocess-visible
.cfcprocess-intro {

    animation:
        cfcProcessFadeUp
        0.8s 0.25s ease forwards;
}


.cfcprocess-section.cfcprocess-visible
.cfcprocess-heading-line {

    width: 75px;

    transition-delay:
        0.35s;
}


@keyframes cfcProcessFadeUp {

    from {

        opacity: 0;

        transform:
            translateY(30px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   TIMELINE
========================================================= */

.cfcprocess-timeline {

    width: 100%;

    position: relative;

    box-sizing: border-box;
}


/* Central line */

.cfcprocess-timeline::before {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    left: 50%;

    width: 2px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            180deg,
            transparent,
            #ff7b00 8%,
            #084f86 50%,
            #ff7b00 92%,
            transparent
        );

    opacity: 0.35;
}


/* =========================================================
   TIMELINE ITEM
========================================================= */

.cfcprocess-item {

    width: 100%;

    min-height: 190px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        90px
        minmax(0, 1fr);

    align-items: center;

    position: relative;

    box-sizing: border-box;
}


/* =========================================================
   CONTENT BOX
========================================================= */

.cfcprocess-content {

    width: 100%;

    max-width: 430px;

    padding: 28px;

    position: relative;

    background: #ffffff;

    border:
        1px solid #e1eaf0;

    border-radius: 14px;

    box-shadow:
        0 8px 28px
        rgba(8,79,134,0.07);

    box-sizing: border-box;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

    opacity: 0;
}


/* Left content */

.cfcprocess-left
.cfcprocess-content {

    justify-self: end;

    transform:
        translateX(-55px);
}


/* Right content */

.cfcprocess-right
.cfcprocess-content {

    justify-self: start;

    transform:
        translateX(55px);
}


/* =========================================================
   ITEM VISIBLE
========================================================= */

.cfcprocess-section.cfcprocess-visible
.cfcprocess-item:nth-child(1)
.cfcprocess-content {

    animation:
        cfcProcessLeftReveal
        0.75s 0.4s ease forwards;
}


.cfcprocess-section.cfcprocess-visible
.cfcprocess-item:nth-child(2)
.cfcprocess-content {

    animation:
        cfcProcessRightReveal
        0.75s 0.55s ease forwards;
}


.cfcprocess-section.cfcprocess-visible
.cfcprocess-item:nth-child(3)
.cfcprocess-content {

    animation:
        cfcProcessLeftReveal
        0.75s 0.7s ease forwards;
}


.cfcprocess-section.cfcprocess-visible
.cfcprocess-item:nth-child(4)
.cfcprocess-content {

    animation:
        cfcProcessRightReveal
        0.75s 0.85s ease forwards;
}


.cfcprocess-section.cfcprocess-visible
.cfcprocess-item:nth-child(5)
.cfcprocess-content {

    animation:
        cfcProcessLeftReveal
        0.75s 1s ease forwards;
}


@keyframes cfcProcessLeftReveal {

    from {

        opacity: 0;

        transform:
            translateX(-55px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


@keyframes cfcProcessRightReveal {

    from {

        opacity: 0;

        transform:
            translateX(55px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


/* =========================================================
   CONTENT HOVER
========================================================= */

.cfcprocess-content:hover {

    transform:
        translateY(-7px) !important;

    border-color:
        rgba(255,123,0,0.5);

    box-shadow:
        0 18px 40px
        rgba(8,79,134,0.14);
}


/* =========================================================
   SMALL ARROW
========================================================= */

.cfcprocess-left
.cfcprocess-content::after {

    content: "";

    position: absolute;

    right: -9px;

    top: 50%;

    width: 17px;

    height: 17px;

    background: #ffffff;

    border-top:
        1px solid #e1eaf0;

    border-right:
        1px solid #e1eaf0;

    transform:
        translateY(-50%)
        rotate(45deg);

    transition:
        border-color 0.3s ease;
}


.cfcprocess-right
.cfcprocess-content::after {

    content: "";

    position: absolute;

    left: -9px;

    top: 50%;

    width: 17px;

    height: 17px;

    background: #ffffff;

    border-left:
        1px solid #e1eaf0;

    border-bottom:
        1px solid #e1eaf0;

    transform:
        translateY(-50%)
        rotate(45deg);
}


/* =========================================================
   ICON
========================================================= */

.cfcprocess-icon {

    width: 48px;

    height: 48px;

    margin-bottom: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #084f86;

    color: #ffffff;

    font-size: 18px;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}


.cfcprocess-content:hover
.cfcprocess-icon {

    background: #ff7b00;

    transform:
        rotate(-7deg)
        scale(1.1);

    box-shadow:
        0 8px 18px
        rgba(255,123,0,0.25);
}


/* =========================================================
   LABEL
========================================================= */

.cfcprocess-step-label {

    display: block;

    margin-bottom: 5px;

    color: #ff7b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   STEP TITLE
========================================================= */

.cfcprocess-step-title {

    margin: 0 0 9px;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 21px;

    line-height: 1.3;

    font-weight: 700;

    transition:
        color 0.3s ease;
}


.cfcprocess-content:hover
.cfcprocess-step-title {

    color: #ff7b00;
}


/* =========================================================
   STEP TEXT
========================================================= */

.cfcprocess-step-text {

    margin: 0;

    color: #697781;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   NUMBER
========================================================= */

.cfcprocess-number {

    width: 68px;

    height: 68px;

    margin: 0 auto;

    position: relative;

    z-index: 5;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        5px solid #ffffff;

    border-radius: 50%;

    background: #084f86;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 15px;

    font-weight: 700;

    box-shadow:
        0 5px 20px
        rgba(8,79,134,0.20);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}


.cfcprocess-item:hover
.cfcprocess-number {

    background: #ff7b00;

    transform:
        scale(1.13);

    box-shadow:
        0 10px 28px
        rgba(255,123,0,0.30);
}


/* =========================================================
   EMPTY SIDE
========================================================= */

.cfcprocess-empty {

    width: 100%;

    height: 1px;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.cfcprocess-bottom {

    width: 100%;

    margin-top: 65px;

    padding:
        25px 30px;

    display: flex;

    align-items: center;

    gap: 20px;

    background:
        linear-gradient(
            110deg,
            #084f86,
            #063f6c
        );

    border-radius: 15px;

    box-shadow:
        0 15px 35px
        rgba(8,79,134,0.15);

    box-sizing: border-box;

    opacity: 0;

    transform:
        translateY(30px);
}


.cfcprocess-section.cfcprocess-visible
.cfcprocess-bottom {

    animation:
        cfcProcessFadeUp
        0.8s 1.25s ease forwards;
}


/* =========================================================
   CTA ICON
========================================================= */

.cfcprocess-bottom-icon {

    width: 55px;

    height: 55px;

    flex:
        0 0 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ff7b00;

    color: #ffffff;

    font-size: 20px;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.cfcprocess-bottom-content {

    flex: 1;

    min-width: 0;
}


.cfcprocess-bottom-content h3 {

    margin: 0 0 3px;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 20px;

    font-weight: 700;
}


.cfcprocess-bottom-content p {

    margin: 0;

    color: rgba(255,255,255,0.75);

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 12px;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.cfcprocess-button {

    min-height: 48px;

    padding:
        0 21px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    flex-shrink: 0;

    background: #ff7b00;

    color: #ffffff;

    border-radius: 7px;

    text-decoration: none;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.cfcprocess-button:hover {

    background: #ffffff;

    color: #084f86;

    transform:
        translateY(-4px);

    box-shadow:
        0 10px 25px
        rgba(0,0,0,0.18);
}


.cfcprocess-button i {

    transition:
        transform 0.35s ease;
}


.cfcprocess-button:hover i {

    transform:
        translateX(5px);
}


/* =========================================================
   1100PX
========================================================= */

@media (max-width: 1100px) {

    .cfcprocess-container {

        max-width: 1000px;
    }


    .cfcprocess-item {

        grid-template-columns:
            minmax(0, 1fr)
            80px
            minmax(0, 1fr);
    }


    .cfcprocess-content {

        max-width: 390px;

        padding: 24px;
    }

}


/* =========================================================
   991PX
========================================================= */

@media (max-width: 991px) {

    .cfcprocess-section {

        padding:
            75px 18px;
    }


    .cfcprocess-heading {

        margin-bottom: 60px;
    }


    .cfcprocess-title {

        font-size: 34px;
    }


    .cfcprocess-intro {

        font-size: 14px;
    }


    .cfcprocess-content {

        padding: 22px;
    }


    .cfcprocess-step-title {

        font-size: 19px;
    }

}


/* =========================================================
   767PX
========================================================= */

@media (max-width: 767px) {

    .cfcprocess-section {

        padding:
            60px 15px;
    }


    .cfcprocess-container {

        max-width: 620px;
    }


    .cfcprocess-heading {

        margin-bottom: 50px;
    }


    .cfcprocess-title {

        font-size: 29px;
    }


    .cfcprocess-intro {

        font-size: 13px;

        line-height: 1.75;
    }


    /* Timeline moves to left */

    .cfcprocess-timeline::before {

        left: 27px;

        transform: none;
    }


    .cfcprocess-item {

        min-height: auto;

        margin-bottom: 22px;

        display: grid;

        grid-template-columns:
            55px
            minmax(0, 1fr);

        gap: 15px;

        align-items: start;
    }


    /* Number */

    .cfcprocess-number {

        grid-column: 1;

        grid-row: 1;

        width: 55px;

        height: 55px;

        border-width: 4px;

        font-size: 12px;
    }


    /* Content */

    .cfcprocess-content,
    .cfcprocess-left .cfcprocess-content,
    .cfcprocess-right .cfcprocess-content {

        grid-column: 2;

        grid-row: 1;

        justify-self: stretch;

        max-width: none;

        padding: 21px;

        transform:
            translateX(35px);

    }


    .cfcprocess-section.cfcprocess-visible
    .cfcprocess-item
    .cfcprocess-content {

        animation:
            cfcProcessMobileReveal
            0.7s ease forwards;
    }


    @keyframes cfcProcessMobileReveal {

        from {

            opacity: 0;

            transform:
                translateX(35px);

        }

        to {

            opacity: 1;

            transform:
                translateX(0);

        }

    }


    /* Remove arrows */

    .cfcprocess-left
    .cfcprocess-content::after,

    .cfcprocess-right
    .cfcprocess-content::after {

        display: none;
    }


    .cfcprocess-empty {

        display: none;
    }


    .cfcprocess-icon {

        width: 42px;

        height: 42px;

        font-size: 15px;

        margin-bottom: 12px;
    }


    .cfcprocess-step-title {

        font-size: 18px;
    }


    .cfcprocess-step-text {

        font-size: 12px;

        line-height: 1.7;
    }


    /* CTA */

    .cfcprocess-bottom {

        margin-top: 40px;

        padding: 22px;

        flex-wrap: wrap;
    }


    .cfcprocess-bottom-content {

        flex:
            1 1
            calc(100% - 75px);
    }


    .cfcprocess-button {

        width: 100%;
    }

}


/* =========================================================
   575PX
========================================================= */

@media (max-width: 575px) {

    .cfcprocess-section {

        padding:
            48px 12px;
    }


    .cfcprocess-container {

        max-width: 100%;
    }


    .cfcprocess-title {

        font-size: 25px;
    }


    .cfcprocess-intro {

        font-size: 12px;
    }


    .cfcprocess-timeline::before {

        left: 24px;
    }


    .cfcprocess-item {

        grid-template-columns:
            48px
            minmax(0, 1fr);

        gap: 12px;

        margin-bottom: 18px;
    }


    .cfcprocess-number {

        width: 48px;

        height: 48px;

        font-size: 10px;

        border-width: 3px;
    }


    .cfcprocess-content,
    .cfcprocess-left .cfcprocess-content,
    .cfcprocess-right .cfcprocess-content {

        padding: 18px;

    }


    .cfcprocess-step-title {

        font-size: 17px;
    }


    .cfcprocess-step-text {

        font-size: 11.5px;

        line-height: 1.7;
    }


    .cfcprocess-bottom {

        padding: 20px;

        border-radius: 12px;
    }


    .cfcprocess-bottom-icon {

        width: 48px;

        height: 48px;

        flex-basis: 48px;

        font-size: 17px;
    }


    .cfcprocess-bottom-content h3 {

        font-size: 17px;
    }


    .cfcprocess-bottom-content p {

        font-size: 10px;

        line-height: 1.5;
    }

}


/* =========================================================
   400PX
========================================================= */

@media (max-width: 400px) {

    .cfcprocess-section {

        padding:
            40px 10px;
    }


    .cfcprocess-title {

        font-size: 22px;
    }


    .cfcprocess-item {

        grid-template-columns:
            42px
            minmax(0, 1fr);

        gap: 10px;
    }


    .cfcprocess-timeline::before {

        left: 21px;
    }


    .cfcprocess-number {

        width: 42px;

        height: 42px;
    }


    .cfcprocess-content,
    .cfcprocess-left .cfcprocess-content,
    .cfcprocess-right .cfcprocess-content {

        padding: 15px;
    }


    .cfcprocess-icon {

        width: 38px;

        height: 38px;

        font-size: 14px;
    }


    .cfcprocess-step-title {

        font-size: 16px;
    }


    .cfcprocess-step-text {

        font-size: 11px;
    }

}






/* =========================================================
   SUNSHINE COAST SERVICE SECTION
   UNIQUE PREFIX: cfcsun-
========================================================= */

.cfcsun-section {

    width: 100%;

    position: relative;

    padding: 100px 20px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f4f9fc 0%,
            #ffffff 50%,
            #eef6fb 100%
        );

    box-sizing: border-box;
}


/* =========================================================
   BACKGROUND ORBS
========================================================= */

.cfcsun-bg-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    opacity: 0.5;
}


.cfcsun-bg-orb-one {

    width: 430px;

    height: 430px;

    top: -220px;

    right: -180px;

    background:
        radial-gradient(
            circle,
            rgba(8,79,134,0.10),
            transparent 70%
        );
}


.cfcsun-bg-orb-two {

    width: 380px;

    height: 380px;

    bottom: -180px;

    left: -170px;

    background:
        radial-gradient(
            circle,
            rgba(255,123,0,0.10),
            transparent 70%
        );
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.cfcsun-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    position: relative;

    z-index: 2;

    box-sizing: border-box;
}


/* =========================================================
   INTRO LAYOUT
========================================================= */

.cfcsun-intro-layout {

    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 70px;

    margin-bottom: 100px;
}


/* =========================================================
   VISUAL
========================================================= */

.cfcsun-visual {

    width: 100%;

    position: relative;

    padding:
        0 18px 18px 0;

    box-sizing: border-box;

    opacity: 0;

    transform:
        translateX(-45px);
}


/* =========================================================
   VISUAL REVEAL
========================================================= */

.cfcsun-section.cfcsun-visible
.cfcsun-visual {

    animation:
        cfcSunVisualReveal
        0.9s ease forwards;
}


@keyframes cfcSunVisualReveal {

    from {

        opacity: 0;

        transform:
            translateX(-45px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


/* =========================================================
   VISUAL MAIN
========================================================= */

.cfcsun-visual-main {

    width: 100%;

    min-height: 480px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: flex-end;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #084f86,
            #062f52
        );

    box-shadow:
        0 25px 50px
        rgba(8,79,134,0.20);

    box-sizing: border-box;

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}


.cfcsun-visual-main::before {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    top: -100px;

    right: -100px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.07);
}


.cfcsun-visual-main::after {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    bottom: -100px;

    left: -70px;

    border-radius: 50%;

    border:
        35px solid
        rgba(255,139,0,0.18);
}


.cfcsun-visual:hover
.cfcsun-visual-main {

    transform:
        translateY(-7px);

    box-shadow:
        0 32px 60px
        rgba(8,79,134,0.25);
}


/* =========================================================
   VISUAL OVERLAY
========================================================= */

.cfcsun-visual-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            145deg,
            rgba(8,79,134,0.05),
            rgba(0,0,0,0.22)
        );
}


/* =========================================================
   VISUAL CONTENT
========================================================= */

.cfcsun-visual-content {

    position: relative;

    z-index: 2;

    width: 100%;

    padding: 40px;

    box-sizing: border-box;
}


.cfcsun-visual-label {

    display: inline-block;

    margin-bottom: 12px;

    color: #ff8b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.cfcsun-visual-content h3 {

    max-width: 330px;

    margin: 0 0 12px;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size:
        clamp(
            30px,
            4vw,
            43px
        );

    line-height: 1.15;

    font-weight: 700;
}


.cfcsun-visual-content p {

    max-width: 330px;

    margin: 0;

    color:
        rgba(255,255,255,0.78);

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   VISUAL ICON
========================================================= */

.cfcsun-visual-icon {

    width: 72px;

    height: 72px;

    margin-top: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: #ff8b00;

    color: #ffffff;

    font-size: 28px;

    box-shadow:
        0 15px 30px
        rgba(255,139,0,0.25);

    transition:
        transform 0.5s ease;
}


.cfcsun-visual:hover
.cfcsun-visual-icon {

    transform:
        rotate(-8deg)
        scale(1.08);
}


/* =========================================================
   FLOATING BADGE
========================================================= */

.cfcsun-floating-badge {

    position: absolute;

    right: -5px;

    bottom: 0;

    z-index: 5;

    min-width: 190px;

    padding:
        14px 16px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 15px 35px
        rgba(0,0,0,0.16);

    animation:
        cfcSunFloat
        3s ease-in-out infinite;
}


@keyframes cfcSunFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-8px);

    }

}


.cfcsun-badge-icon {

    width: 38px;

    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: #084f86;

    color: #ffffff;

    font-size: 14px;
}


.cfcsun-floating-badge strong {

    display: block;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 12px;
}


.cfcsun-floating-badge span {

    display: block;

    margin-top: 2px;

    color: #7a858e;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 9px;
}


/* =========================================================
   CIRCLES
========================================================= */

.cfcsun-circle {

    position: absolute;

    border-radius: 50%;

    border:
        2px solid
        rgba(255,123,0,0.35);

    pointer-events: none;

    animation:
        cfcSunCirclePulse
        3s ease-in-out infinite;
}


.cfcsun-circle-one {

    width: 70px;

    height: 70px;

    top: 35px;

    right: -5px;
}


.cfcsun-circle-two {

    width: 38px;

    height: 38px;

    top: 90px;

    right: 35px;

    animation-delay:
        0.5s;
}


@keyframes cfcSunCirclePulse {

    0%,
    100% {

        transform:
            scale(1);

        opacity: 0.5;

    }

    50% {

        transform:
            scale(1.15);

        opacity: 1;

    }

}


/* =========================================================
   INTRO CONTENT
========================================================= */

.cfcsun-intro-content {

    width: 100%;

    min-width: 0;

    opacity: 0;

    transform:
        translateX(45px);
}


.cfcsun-section.cfcsun-visible
.cfcsun-intro-content {

    animation:
        cfcSunContentReveal
        0.9s 0.15s ease forwards;
}


@keyframes cfcSunContentReveal {

    from {

        opacity: 0;

        transform:
            translateX(45px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


/* =========================================================
   EYEBROW
========================================================= */

.cfcsun-eyebrow {

    display: inline-block;

    margin-bottom: 10px;

    color: #ff7b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.cfcsun-main-title {

    max-width: 600px;

    margin: 0;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size:25px;

    line-height: 1.25;

    font-weight: 700;
}


/* =========================================================
   TITLE LINE
========================================================= */

.cfcsun-title-line {

    display: block;

    width: 70px;

    height: 4px;

    margin:
        18px 0 22px;

    border-radius: 10px;

    background: #ff7b00;

    transition:
        width 0.4s ease;
}


.cfcsun-intro-content:hover
.cfcsun-title-line {

    width: 110px;
}


/* =========================================================
   INTRO TEXT
========================================================= */

.cfcsun-intro-text {

    max-width: 650px;

    margin:
        0 0 14px;

    color: #697781;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.9;
}


.cfcsun-intro-text strong {

    color: #084f86;

    font-weight: 700;
}


/* =========================================================
   HIGHLIGHT
========================================================= */

.cfcsun-intro-highlight {

    max-width: 600px;

    margin-top: 24px;

    padding: 15px;

    display: flex;

    align-items: center;

    gap: 13px;

    background: #ffffff;

    border-left:
        4px solid #ff8b00;

    border-radius: 8px;

    box-shadow:
        0 8px 22px
        rgba(8,79,134,0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.cfcsun-intro-highlight:hover {

    transform:
        translateX(7px);

    box-shadow:
        0 12px 28px
        rgba(8,79,134,0.12);
}


.cfcsun-highlight-icon {

    width: 38px;

    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #084f86;

    color: #ffffff;

    font-size: 15px;
}


.cfcsun-intro-highlight strong {

    display: block;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 12px;
}


.cfcsun-intro-highlight span {

    display: block;

    margin-top: 3px;

    color: #7c8790;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   WHY CHOOSE HEADING
========================================================= */

.cfcsun-why-heading {

    max-width: 800px;

    margin:
        0 auto 45px;

    text-align: center;

    opacity: 0;

    transform:
        translateY(35px);
}


.cfcsun-section.cfcsun-visible
.cfcsun-why-heading {

    animation:
        cfcSunFadeUp
        0.8s 0.35s ease forwards;
}


@keyframes cfcSunFadeUp {

    from {

        opacity: 0;

        transform:
            translateY(35px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


.cfcsun-why-title {

    margin: 0;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size:
        clamp(
            25px,
            3vw,
            34px
        );

    line-height: 1.3;

    font-weight: 700;
}


.cfcsun-why-description {

    max-width: 680px;

    margin:
        14px auto 0;

    color: #6b7780;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   FEATURES GRID
========================================================= */

.cfcsun-features {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(
            5,
            minmax(0, 1fr)
        );

    gap: 16px;
}


/* =========================================================
   FEATURE CARD
========================================================= */

.cfcsun-feature-card {

    width: 100%;

    min-width: 0;

    min-height: 295px;

    padding: 27px 20px 22px;

    position: relative;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid #e2eaf0;

    border-radius: 13px;

    box-sizing: border-box;

    box-shadow:
        0 7px 22px
        rgba(8,79,134,0.06);

    opacity: 0;

    transform:
        translateY(40px);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}


/* =========================================================
   CARD ANIMATION
========================================================= */

.cfcsun-section.cfcsun-visible
.cfcsun-feature-card {

    animation:
        cfcSunCardReveal
        0.7s ease forwards;
}


.cfcsun-section.cfcsun-visible
.cfcsun-feature-card:nth-child(1) {

    animation-delay:
        0.45s;
}


.cfcsun-section.cfcsun-visible
.cfcsun-feature-card:nth-child(2) {

    animation-delay:
        0.55s;
}


.cfcsun-section.cfcsun-visible
.cfcsun-feature-card:nth-child(3) {

    animation-delay:
        0.65s;
}


.cfcsun-section.cfcsun-visible
.cfcsun-feature-card:nth-child(4) {

    animation-delay:
        0.75s;
}


.cfcsun-section.cfcsun-visible
.cfcsun-feature-card:nth-child(5) {

    animation-delay:
        0.85s;
}


@keyframes cfcSunCardReveal {

    from {

        opacity: 0;

        transform:
            translateY(40px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   CARD TOP ACCENT
========================================================= */

.cfcsun-feature-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 4px;

    background: #ff7b00;

    transition:
        width 0.45s ease;
}


.cfcsun-feature-card:hover::before {

    width: 100%;
}


/* =========================================================
   CARD HOVER
========================================================= */

.cfcsun-feature-card:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(255,123,0,0.45);

    box-shadow:
        0 20px 40px
        rgba(8,79,134,0.13);
}


/* =========================================================
   CARD NUMBER
========================================================= */

.cfcsun-card-number {

    position: absolute;

    top: 13px;

    right: 15px;

    color:
        rgba(8,79,134,0.07);

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 38px;

    font-weight: 800;

    line-height: 1;

    transition:
        color 0.4s ease,
        transform 0.4s ease;
}


.cfcsun-feature-card:hover
.cfcsun-card-number {

    color:
        rgba(255,123,0,0.13);

    transform:
        scale(1.1);
}


/* =========================================================
   FEATURE ICON
========================================================= */

.cfcsun-feature-icon {

    width: 50px;

    height: 50px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #084f86;

    color: #ffffff;

    font-size: 18px;

    transition:
        background 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.cfcsun-feature-card:hover
.cfcsun-feature-icon {

    background: #ff7b00;

    transform:
        rotate(-8deg)
        scale(1.08);

    box-shadow:
        0 10px 20px
        rgba(255,123,0,0.22);
}


/* =========================================================
   CARD TITLE
========================================================= */

.cfcsun-feature-card h3 {

    max-width: 220px;

    margin:
        0 0 11px;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 700;

    transition:
        color 0.3s ease;
}


.cfcsun-feature-card:hover h3 {

    color: #ff7b00;
}


/* =========================================================
   CARD TEXT
========================================================= */

.cfcsun-feature-card p {

    margin: 0;

    color: #707c85;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   CARD ARROW
========================================================= */

.cfcsun-card-arrow {

    position: absolute;

    right: 17px;

    bottom: 17px;

    width: 29px;

    height: 29px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf4f8;

    color: #084f86;

    font-size: 9px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


.cfcsun-feature-card:hover
.cfcsun-card-arrow {

    background: #ff7b00;

    color: #ffffff;

    transform:
        translateX(5px);
}


/* =========================================================
   BOTTOM STRIP
========================================================= */

.cfcsun-bottom-strip {

    width: 100%;

    margin-top: 45px;

    padding:
        20px 25px;

    display: flex;

    align-items: center;

    gap: 15px;

    background: #084f86;

    border-radius: 13px;

    box-shadow:
        0 15px 30px
        rgba(8,79,134,0.14);

    box-sizing: border-box;

    opacity: 0;

    transform:
        translateY(30px);
}


.cfcsun-section.cfcsun-visible
.cfcsun-bottom-strip {

    animation:
        cfcSunFadeUp
        0.8s 1.1s ease forwards;
}


.cfcsun-bottom-icon {

    width: 48px;

    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #ff7b00;

    color: #ffffff;

    font-size: 17px;
}


.cfcsun-bottom-text {

    flex: 1;

    min-width: 0;
}


.cfcsun-bottom-text strong {

    display: block;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 14px;
}


.cfcsun-bottom-text span {

    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,0.72);

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10px;
}


/* =========================================================
   BOTTOM BUTTON
========================================================= */

.cfcsun-bottom-button {

    min-height: 45px;

    padding:
        0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    flex-shrink: 0;

    border-radius: 7px;

    background: #ff7b00;

    color: #ffffff;

    text-decoration: none;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.cfcsun-bottom-button:hover {

    background: #ffffff;

    color: #084f86;

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 20px
        rgba(0,0,0,0.18);
}


.cfcsun-bottom-button i {

    transition:
        transform 0.35s ease;
}


.cfcsun-bottom-button:hover i {

    transform:
        translateX(5px);
}


/* =========================================================
   1100PX
========================================================= */

@media (max-width: 1100px) {

    .cfcsun-container {

        max-width: 1000px;
    }


    .cfcsun-intro-layout {

        gap: 45px;
    }


    .cfcsun-features {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    .cfcsun-feature-card {

        min-height: 275px;
    }

}


/* =========================================================
   991PX
========================================================= */

@media (max-width: 991px) {

    .cfcsun-section {

        padding:
            75px 18px;
    }


    .cfcsun-container {

        max-width: 900px;
    }


    .cfcsun-intro-layout {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 35px;

        margin-bottom: 75px;
    }


    .cfcsun-visual-main {

        min-height: 430px;
    }


    .cfcsun-visual-content {

        padding: 30px;
    }


    .cfcsun-main-title {

        font-size: 32px;
    }


    .cfcsun-intro-text {

        font-size: 13px;

        line-height: 1.8;
    }


    .cfcsun-features {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 13px;
    }


    .cfcsun-feature-card {

        padding:
            23px 17px 20px;
    }

}


/* =========================================================
   767PX
========================================================= */

@media (max-width: 767px) {

    .cfcsun-section {

        padding:
            60px 15px;
    }


    .cfcsun-container {

        max-width: 650px;
    }


    .cfcsun-intro-layout {

        grid-template-columns: 1fr;

        gap: 40px;

        margin-bottom: 60px;
    }


    .cfcsun-visual {

        max-width: 600px;

        margin: 0 auto;

        width: 100%;
    }


    .cfcsun-visual-main {

        min-height: 390px;
    }


    .cfcsun-intro-content {

        max-width: 620px;

        margin: 0 auto;
    }


    .cfcsun-main-title {

        font-size: 29px;
    }


    .cfcsun-why-title {

        font-size: 27px;
    }


    .cfcsun-features {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 13px;
    }


    .cfcsun-feature-card {

        min-height: 270px;
    }


    .cfcsun-bottom-strip {

        flex-wrap: wrap;
    }


    .cfcsun-bottom-text {

        flex:
            1 1
            calc(100% - 70px);
    }


    .cfcsun-bottom-button {

        width: 100%;
    }

}


/* =========================================================
   575PX
========================================================= */

@media (max-width: 575px) {

    .cfcsun-section {

        padding:
            48px 12px;
    }


    .cfcsun-container {

        max-width: 100%;
    }


    .cfcsun-intro-layout {

        gap: 32px;
    }


    .cfcsun-visual {

        padding:
            0 9px 9px 0;
    }


    .cfcsun-visual-main {

        min-height: 350px;

        border-radius: 16px;
    }


    .cfcsun-visual-content {

        padding: 25px;
    }


    .cfcsun-visual-content h3 {

        font-size: 30px;
    }


    .cfcsun-floating-badge {

        min-width: 160px;

        padding:
            11px 12px;
    }


    .cfcsun-badge-icon {

        width: 32px;

        height: 32px;

        flex-basis: 32px;
    }


    .cfcsun-main-title {

        font-size: 25px;
    }


    .cfcsun-intro-text {

        font-size: 12px;

        line-height: 1.8;
    }


    .cfcsun-why-title {

        font-size: 23px;
    }


    .cfcsun-why-description {

        font-size: 11px;

        line-height: 1.7;
    }


    .cfcsun-features {

        grid-template-columns: 1fr;

        gap: 12px;
    }


    .cfcsun-feature-card {

        min-height: auto;

        padding: 22px 20px 45px;
    }


    .cfcsun-feature-card h3 {

        font-size: 17px;
    }


    .cfcsun-feature-card p {

        font-size: 11px;

        line-height: 1.75;
    }


    .cfcsun-bottom-strip {

        padding: 18px;

        border-radius: 10px;
    }


    .cfcsun-bottom-text strong {

        font-size: 12px;
    }


    .cfcsun-bottom-text span {

        font-size: 9px;
    }

}


/* =========================================================
   400PX
========================================================= */

@media (max-width: 400px) {

    .cfcsun-section {

        padding:
            40px 10px;
    }


    .cfcsun-visual-main {

        min-height: 310px;
    }


    .cfcsun-visual-content {

        padding: 20px;
    }


    .cfcsun-visual-content h3 {

        font-size: 26px;
    }


    .cfcsun-main-title {

        font-size: 22px;
    }


    .cfcsun-intro-text {

        font-size: 11px;
    }


    .cfcsun-feature-card {

        padding:
            20px 17px 43px;
    }


    .cfcsun-feature-icon {

        width: 45px;

        height: 45px;
    }

}










/* =========================================================
   TESTIMONIAL SECTION
   UNIQUE PREFIX: cfctest-
========================================================= */

.cfctest-section {

    width: 100%;

    position: relative;

    padding: 95px 20px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f3f8fc 0%,
            #ffffff 50%,
            #edf5fa 100%
        );

    box-sizing: border-box;
}


/* Background */

.cfctest-bg-circle {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    opacity: 0.5;
}


.cfctest-bg-circle-one {

    width: 430px;

    height: 430px;

    top: -250px;

    left: -180px;

    background:
        radial-gradient(
            circle,
            rgba(8,79,134,0.12),
            transparent 70%
        );
}


.cfctest-bg-circle-two {

    width: 400px;

    height: 400px;

    right: -180px;

    bottom: -220px;

    background:
        radial-gradient(
            circle,
            rgba(255,123,0,0.10),
            transparent 70%
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.cfctest-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    position: relative;

    z-index: 2;

    box-sizing: border-box;
}


/* =========================================================
   HEADING
========================================================= */

.cfctest-heading {

    max-width: 760px;

    margin:
        0 auto 50px;

    text-align: center;

    opacity: 0;

    transform:
        translateY(35px);
}


.cfctest-section.cfctest-visible
.cfctest-heading {

    animation:
        cfcTestFadeUp
        0.8s ease forwards;
}


.cfctest-eyebrow {

    display: block;

    margin-bottom: 9px;

    color: #ff7b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


.cfctest-title {

    margin: 0;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size:
        clamp(
            28px,
            4vw,
            40px
        );

    line-height: 1.25;

    font-weight: 700;
}


.cfctest-heading-line {

    display: block;

    width: 70px;

    height: 4px;

    margin:
        17px auto 18px;

    border-radius: 10px;

    background: #ff7b00;
}


.cfctest-description {

    max-width: 650px;

    margin: 0 auto;

    color: #6c7982;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   CAROUSEL WRAPPER
========================================================= */

.cfctest-carousel-wrapper {

    width: 100%;

    display: grid;

    grid-template-columns:
        52px
        minmax(0, 1fr)
        52px;

    align-items: center;

    gap: 18px;

    box-sizing: border-box;

    opacity: 0;

    transform:
        translateY(35px);
}


.cfctest-section.cfctest-visible
.cfctest-carousel-wrapper {

    animation:
        cfcTestFadeUp
        0.8s 0.2s ease forwards;
}


/* =========================================================
   VIEWPORT
========================================================= */

.cfctest-viewport {

    width: 100%;

    min-width: 0;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   TRACK
========================================================= */

.cfctest-track {

    display: flex;

    width: 100%;

    transition:
        transform 0.65s
        cubic-bezier(
            0.22,
            0.61,
            0.36,
            1
        );

    will-change:
        transform;
}


/* =========================================================
   CARD
========================================================= */

.cfctest-card {

    flex:
        0 0
        calc(
            (100% - 24px) / 2
        );

    margin-right: 24px;

    min-width: 0;

    padding: 28px;

    position: relative;

    background: #ffffff;

    border:
        1px solid #e1eaf0;

    border-radius: 16px;

    /* box-shadow:
        0 8px 25px
        rgba(8,79,134,0.07); */

    box-sizing: border-box;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


.cfctest-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255,123,0,0.45);

    box-shadow:
        0 20px 42px
        rgba(8,79,134,0.14);
}


/* =========================================================
   CARD TOP
========================================================= */

.cfctest-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 20px;
}


/* =========================================================
   QUOTE ICON
========================================================= */

.cfctest-quote-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #084f86;

    color: #ffffff;

    font-size: 17px;

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}


.cfctest-card:hover
.cfctest-quote-icon {

    background: #ff7b00;

    transform:
        rotate(-8deg)
        scale(1.08);
}


/* =========================================================
   STARS
========================================================= */

.cfctest-stars {

    display: flex;

    gap: 3px;

    color: #ff9a00;

    font-size: 12px;
}


/* =========================================================
   REVIEW
========================================================= */

.cfctest-review {

    min-height: 105px;

    margin: 0 0 25px;

    color: #687781;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   CUSTOMER
========================================================= */

.cfctest-customer {

    padding-top: 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    border-top:
        1px solid #edf1f4;
}


.cfctest-avatar {

    width: 48px;

    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #084f86,
            #0b669d
        );

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform 0.4s ease;
}


.cfctest-card:hover
.cfctest-avatar {

    transform:
        scale(1.1);
}


.cfctest-customer-info {

    min-width: 0;
}


.cfctest-customer-info h3 {

    margin: 0;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 700;
}


.cfctest-customer-info span {

    display: block;

    margin-top: 3px;

    color: #89939a;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10px;
}


/* =========================================================
   CONTROLS
========================================================= */

.cfctest-control {

    width: 52px;

    height: 52px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    background: #084f86;

    color: #ffffff;

    font-size: 14px;

    box-shadow:
        0 8px 20px
        rgba(8,79,134,0.18);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.cfctest-control:hover {

    background: #ff7b00;

    transform:
        scale(1.1);

    box-shadow:
        0 10px 25px
        rgba(255,123,0,0.25);
}


.cfctest-control:active {

    transform:
        scale(0.95);
}


/* =========================================================
   DOTS
========================================================= */

.cfctest-dots {

    margin-top: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;
}


.cfctest-dot {

    width: 8px;

    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #c7d6df;

    cursor: pointer;

    transition:
        width 0.35s ease,
        background 0.35s ease;
}


.cfctest-dot-active {

    width: 25px;

    border-radius: 10px;

    background: #ff7b00;
}


/* =========================================================
   BOTTOM RATING
========================================================= */

.cfctest-rating {

    margin-top: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;
}


.cfctest-rating-stars {

    display: flex;

    gap: 3px;

    color: #ff9a00;

    font-size: 11px;
}


.cfctest-rating span {

    color: #78848c;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10px;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes cfcTestFadeUp {

    from {

        opacity: 0;

        transform:
            translateY(35px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   991PX
========================================================= */

@media (max-width: 991px) {

    .cfctest-section {

        padding:
            75px 18px;
    }


    .cfctest-container {

        max-width: 900px;
    }


    .cfctest-carousel-wrapper {

        grid-template-columns:
            45px
            minmax(0, 1fr)
            45px;

        gap: 12px;
    }


    .cfctest-control {

        width: 45px;

        height: 45px;

        font-size: 12px;
    }


    .cfctest-card {

        padding: 24px;

        flex-basis:
            calc(
                (100% - 18px) / 2
            );

        margin-right: 18px;
    }

}


/* =========================================================
   767PX
========================================================= */

@media (max-width: 767px) {

    .cfctest-section {

        padding:
            60px 15px;
    }


    .cfctest-container {

        max-width: 650px;
    }


    .cfctest-title {

        font-size: 29px;
    }


    .cfctest-description {

        font-size: 12px;
    }


    .cfctest-carousel-wrapper {

        grid-template-columns:
            42px
            minmax(0, 1fr)
            42px;

        gap: 8px;
    }


    .cfctest-control {

        width: 42px;

        height: 42px;

        font-size: 11px;
    }


    /* ONE CARD ON MOBILE */

    .cfctest-card {

        flex-basis: 100%;

        margin-right: 0;

        padding: 22px;

        border-radius: 13px;
    }


    .cfctest-review {

        min-height: auto;

        font-size: 12px;

        line-height: 1.8;
    }


    .cfctest-rating {

        flex-direction: column;

        gap: 7px;
    }

}


/* =========================================================
   575PX
========================================================= */

@media (max-width: 575px) {

    .cfctest-section {

        padding:
            48px 12px;
    }


    .cfctest-title {

        font-size: 25px;
    }


    .cfctest-eyebrow {

        font-size: 10px;
    }


    .cfctest-description {

        font-size: 11px;

        line-height: 1.75;
    }


    .cfctest-carousel-wrapper {

        grid-template-columns:
            38px
            minmax(0, 1fr)
            38px;

        gap: 6px;
    }


    .cfctest-control {

        width: 38px;

        height: 38px;

        font-size: 10px;
    }


    .cfctest-card {

        padding: 20px;
    }


    .cfctest-card-top {

        margin-bottom: 17px;
    }


    .cfctest-quote-icon {

        width: 40px;

        height: 40px;

        font-size: 14px;
    }


    .cfctest-stars {

        font-size: 10px;
    }


    .cfctest-review {

        font-size: 11px;

        line-height: 1.75;
    }


    .cfctest-avatar {

        width: 43px;

        height: 43px;

        flex-basis: 43px;
    }


    .cfctest-customer-info h3 {

        font-size: 13px;
    }


    .cfctest-customer-info span {

        font-size: 9px;
    }

}


/* =========================================================
   400PX
========================================================= */

@media (max-width: 400px) {

    .cfctest-section {

        padding:
            40px 9px;
    }


    .cfctest-carousel-wrapper {

        grid-template-columns:
            34px
            minmax(0, 1fr)
            34px;

        gap: 5px;
    }


    .cfctest-control {

        width: 34px;

        height: 34px;

        font-size: 9px;
    }


    .cfctest-card {

        padding: 17px;
    }


    .cfctest-review {

        font-size: 10.5px;
    }

}





/* =========================================================
   FULL WIDTH FAQ SECTION
   UNIQUE PREFIX: cfcfaq-
========================================================= */

.cfcfaq-section {

    width: 100%;

    position: relative;

    padding: 95px 20px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f3f8fc 0%,
            #ffffff 52%,
            #edf5fa 100%
        );

    box-sizing: border-box;
}


/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.cfcfaq-bg-shape {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.cfcfaq-bg-shape-one {

    width: 430px;

    height: 430px;

    top: -250px;

    left: -180px;

    background:
        radial-gradient(
            circle,
            rgba(8,79,134,0.10),
            transparent 70%
        );
}


.cfcfaq-bg-shape-two {

    width: 400px;

    height: 400px;

    right: -180px;

    bottom: -240px;

    background:
        radial-gradient(
            circle,
            rgba(255,123,0,0.09),
            transparent 70%
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.cfcfaq-container {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    position: relative;

    z-index: 2;

    box-sizing: border-box;
}


/* =========================================================
   HEADING
========================================================= */

.cfcfaq-heading {

    max-width: 820px;

    margin:
        0 auto 48px;

    text-align: center;

    opacity: 0;

    transform:
        translateY(35px);
}


.cfcfaq-section.cfcfaq-visible
.cfcfaq-heading {

    animation:
        cfcFaqHeadingReveal
        0.8s ease forwards;
}


@keyframes cfcFaqHeadingReveal {

    from {

        opacity: 0;

        transform:
            translateY(35px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   EYEBROW
========================================================= */

.cfcfaq-eyebrow {

    display: inline-block;

    margin-bottom: 10px;

    color: #ff7b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


/* =========================================================
   TITLE
========================================================= */

.cfcfaq-title {

    margin: 0;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size:
        clamp(
            28px,
            4vw,
            40px
        );

    line-height: 1.25;

    font-weight: 700;
}


/* =========================================================
   TITLE LINE
========================================================= */

.cfcfaq-title-line {

    display: block;

    width: 70px;

    height: 4px;

    margin:
        18px auto 20px;

    border-radius: 10px;

    background: #ff7b00;

    transition:
        width 0.4s ease;
}


.cfcfaq-heading:hover
.cfcfaq-title-line {

    width: 110px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.cfcfaq-description {

    max-width: 700px;

    margin: 0 auto;

    color: #6c7982;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   ACCORDION
========================================================= */

.cfcfaq-accordion {

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 13px;

    opacity: 0;

    transform:
        translateY(35px);
}


.cfcfaq-section.cfcfaq-visible
.cfcfaq-accordion {

    animation:
        cfcFaqAccordionReveal
        0.8s 0.15s ease forwards;
}


@keyframes cfcFaqAccordionReveal {

    from {

        opacity: 0;

        transform:
            translateY(35px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   FAQ ITEM
========================================================= */

.cfcfaq-item {

    width: 100%;

    background: #ffffff;

    border:
        1px solid #e1e9ef;

    border-radius: 11px;

    overflow: hidden;

    box-sizing: border-box;

    box-shadow:
        0 6px 20px
        rgba(8,79,134,0.055);

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


.cfcfaq-item:hover {

    border-color:
        rgba(8,79,134,0.22);

    box-shadow:
        0 10px 28px
        rgba(8,79,134,0.09);
}


/* =========================================================
   QUESTION
========================================================= */

.cfcfaq-question {

    width: 100%;

    min-height: 76px;

    padding:
        14px 20px;

    display: grid;

    grid-template-columns:
        42px
        minmax(0, 1fr)
        38px;

    align-items: center;

    gap: 15px;

    border: 0;

    outline: none;

    background: #ffffff;

    color: #084f86;

    text-align: left;

    cursor: pointer;

    box-sizing: border-box;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    transition:
        background 0.35s ease,
        color 0.35s ease;
}


/* =========================================================
   QUESTION HOVER
========================================================= */

.cfcfaq-question:hover {

    background: #f4f8fb;
}


/* =========================================================
   ACTIVE QUESTION
========================================================= */

.cfcfaq-item.cfcfaq-active
.cfcfaq-question {

    background: #084f86;

    color: #ffffff;
}


/* =========================================================
   NUMBER
========================================================= */

.cfcfaq-question-number {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: #edf4f8;

    color: #084f86;

    font-size: 10px;

    font-weight: 700;

    transition:
        background 0.35s ease,
        color 0.35s ease;
}


.cfcfaq-item.cfcfaq-active
.cfcfaq-question-number {

    background: #ff7b00;

    color: #ffffff;
}


/* =========================================================
   QUESTION TEXT
========================================================= */

.cfcfaq-question-text {

    min-width: 0;

    font-size: 14px;

    line-height: 1.5;

    font-weight: 600;
}


/* =========================================================
   PLUS / MINUS
========================================================= */

.cfcfaq-icon {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf4f8;

    color: #084f86;

    font-size: 11px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.4s ease;
}


.cfcfaq-item.cfcfaq-active
.cfcfaq-icon {

    background: #ff7b00;

    color: #ffffff;

    transform:
        rotate(180deg);
}


/* =========================================================
   ANSWER ANIMATION
========================================================= */

.cfcfaq-answer {

    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows
        0.45s
        cubic-bezier(
            0.4,
            0,
            0.2,
            1
        );
}


.cfcfaq-item.cfcfaq-active
.cfcfaq-answer {

    grid-template-rows: 1fr;
}


/* =========================================================
   ANSWER INNER
========================================================= */

.cfcfaq-answer-inner {

    min-height: 0;

    overflow: hidden;
}


/* =========================================================
   ANSWER CONTENT
   IMPORTANT: TOP PADDING ADDED
========================================================= */

.cfcfaq-answer-inner p {

    margin: 0;

    padding:
        22px 25px 24px 77px;

    color: #697781;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.9;

    border-top:
        1px solid #edf1f4;

    opacity: 0;

    transform:
        translateY(-8px);

    transition:
        opacity 0.35s ease 0.08s,
        transform 0.35s ease 0.08s;
}


.cfcfaq-item.cfcfaq-active
.cfcfaq-answer-inner p {

    opacity: 1;

    transform:
        translateY(0);
}


.cfcfaq-answer-inner strong {

    color: #084f86;

    font-weight: 700;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cfcfaq-section {

        padding:
            75px 18px;
    }


    .cfcfaq-container {

        max-width: 900px;
    }


    .cfcfaq-title {

        font-size: 32px;
    }


    .cfcfaq-question {

        min-height: 70px;

        grid-template-columns:
            38px
            minmax(0, 1fr)
            35px;

        gap: 12px;

        padding:
            13px 17px;
    }


    .cfcfaq-question-text {

        font-size: 13px;
    }


    .cfcfaq-answer-inner p {

        padding:
            20px 22px 22px 67px;

        font-size: 12px;
    }

}


/* =========================================================
   MOBILE TABLET
========================================================= */

@media (max-width: 767px) {

    .cfcfaq-section {

        padding:
            60px 15px;
    }


    .cfcfaq-container {

        max-width: 650px;
    }


    .cfcfaq-heading {

        margin-bottom: 38px;
    }


    .cfcfaq-title {

        font-size: 28px;
    }


    .cfcfaq-description {

        font-size: 12px;

        line-height: 1.75;
    }


    .cfcfaq-question {

        min-height: 66px;

        grid-template-columns:
            34px
            minmax(0, 1fr)
            32px;

        gap: 10px;

        padding:
            11px 13px;
    }


    .cfcfaq-question-number {

        width: 32px;

        height: 32px;
    }


    .cfcfaq-question-text {

        font-size: 12px;
    }


    .cfcfaq-icon {

        width: 32px;

        height: 32px;
    }


    .cfcfaq-answer-inner p {

        padding:
            20px 16px 20px 56px;

        font-size: 11px;

        line-height: 1.8;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .cfcfaq-section {

        padding:
            48px 12px;
    }


    .cfcfaq-title {

        font-size: 24px;
    }


    .cfcfaq-eyebrow {

        font-size: 10px;
    }


    .cfcfaq-description {

        font-size: 11px;
    }


    .cfcfaq-accordion {

        gap: 9px;
    }


    .cfcfaq-question {

        min-height: 64px;

        grid-template-columns:
            29px
            minmax(0, 1fr)
            29px;

        gap: 8px;

        padding:
            10px 10px;
    }


    .cfcfaq-question-number {

        width: 29px;

        height: 29px;

        border-radius: 7px;

        font-size: 9px;
    }


    .cfcfaq-question-text {

        font-size: 11px;

        line-height: 1.45;
    }


    .cfcfaq-icon {

        width: 29px;

        height: 29px;

        font-size: 9px;
    }


    /* MORE TOP SPACE FOR MOBILE ANSWERS */

    .cfcfaq-answer-inner p {

        padding:
            19px 13px 18px 47px;

        font-size: 10px;

        line-height: 1.8;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .cfcfaq-section {

        padding:
            40px 9px;
    }


    .cfcfaq-title {

        font-size: 22px;
    }


    .cfcfaq-question {

        grid-template-columns:
            27px
            minmax(0, 1fr)
            27px;

        gap: 7px;
    }


    .cfcfaq-question-number {

        width: 27px;

        height: 27px;

        font-size: 8px;
    }


    .cfcfaq-icon {

        width: 27px;

        height: 27px;
    }


    .cfcfaq-question-text {

        font-size: 10px;
    }


    .cfcfaq-answer-inner p {

        padding:
            17px 11px 17px 41px;

        font-size: 9.5px;
    }

}












/* footer */


/* =========================================================
   MAIN FOOTER
========================================================= */

.cfcfooter-main {

    width: 100%;

    position: relative;

    overflow: hidden;

    padding-top: 75px;

    background:
        linear-gradient(
            135deg,
            #063f6d 0%,
            #084f86 48%,
            #063c68 100%
        );

    color: #ffffff;

    opacity: 0;

    transform:
        translateY(45px);

    transition:
        opacity .9s ease,
        transform .9s ease;

    box-sizing: border-box;

}


/* Footer visible animation */

.cfcfooter-main.cfcfooter-visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   ORANGE TOP LINE
========================================================= */

.cfcfooter-main::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: #ff7b00;

    z-index: 10;

}


/* =========================================================
   DECORATIVE ROUND SHAPES
========================================================= */

.cfcfooter-round {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 0;

}


/* Large left circle */

.cfcfooter-round-one {

    width: 430px;

    height: 430px;

    left: -260px;

    top: -130px;

    border:
        70px solid
        rgba(255,255,255,.045);

    box-sizing: border-box;

}


/* Large right circle */

.cfcfooter-round-two {

    width: 500px;

    height: 500px;

    right: -300px;

    bottom: -280px;

    border:
        75px solid
        rgba(255,255,255,.04);

}


/* Small center circle */

.cfcfooter-round-three {

    width: 210px;

    height: 210px;

    right: 28%;

    top: -145px;

    background:
        rgba(255,255,255,.025);

}


/* =========================================================
   CONTAINER
========================================================= */

.cfcfooter-container {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    padding:
        0 20px;

    position: relative;

    z-index: 2;

    box-sizing: border-box;

}


/* =========================================================
   MAIN FOOTER CONTENT
========================================================= */

.cfcfooter-content {

    display: grid;

    grid-template-columns:
        1.15fr
        .75fr
        1.15fr
        1.05fr;

    gap: 42px;

    padding-bottom: 55px;

}


/* =========================================================
   BRAND
========================================================= */

.cfcfooter-brand {

    min-width: 0;

}


.cfcfooter-logo-wrap {

    width: 185px;

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    padding: 8px 12px;

    border-radius: 9px;

    /* background: #ffffff; */

    box-sizing: border-box;

    margin-bottom: 20px;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.cfcfooter-logo-wrap:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 12px 25px
        rgba(0,0,0,.16);

}


.cfcfooter-logo {

    display: block;

    /* width: 100%; */

    max-width: 198px;

    height: auto;

    object-fit: contain;

}


/* =========================================================
   BRAND TEXT
========================================================= */

.cfcfooter-brand-text {

    max-width: 300px;

    margin:
        0 0 22px;

    color:
        rgba(255,255,255,.72);

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    line-height: 1.8;

}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.cfcfooter-social {

    display: flex;

    align-items: center;

    gap: 9px;

}


.cfcfooter-social-link {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 8px;

    background:
        rgba(255,255,255,.07);

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;

}


.cfcfooter-social-link:hover {

    transform:
        translateY(-5px);

    background: #ff7b00;

    border-color: #ff7b00;

    color: #ffffff;

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.cfcfooter-column {

    min-width: 0;

}


/* =========================================================
   COLUMN TITLE
========================================================= */

.cfcfooter-title-wrap {

    display: flex;

    align-items: center;

    gap: 10px;

}


.cfcfooter-title-icon {

    width: 32px;

    height: 32px;

    flex: 0 0 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background:
        rgba(255,123,0,.15);

    color: #ff7b00;

    font-size: 12px;

    transition:
        transform .35s ease,
        background .35s ease;

}


.cfcfooter-column:hover
.cfcfooter-title-icon {

    transform:
        rotate(-7deg)
        scale(1.08);

    background: #ff7b00;

    color: #ffffff;

}


.cfcfooter-title-wrap h3 {

    margin: 0;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 17px;

    font-weight: 600;

}


/* =========================================================
   TITLE LINE
========================================================= */

.cfcfooter-title-line {

    width: 42px;

    height: 3px;

    margin:
        13px 0 19px;

    border-radius: 5px;

    background: #ff7b00;

    transition:
        width .35s ease;

}


.cfcfooter-column:hover
.cfcfooter-title-line {

    width: 70px;

}


/* =========================================================
   USEFUL LINKS
========================================================= */

.cfcfooter-link-list {

    list-style: none;

    margin: 0;

    padding: 0;

}


.cfcfooter-link-list li {

    margin-bottom: 11px;

}


.cfcfooter-link-list a {

    display: flex;

    align-items: center;

    gap: 9px;

    color:
        rgba(255,255,255,.72);

    text-decoration: none;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 12.5px;
    font-weight: 600;

    line-height: 1.5;

    transition:
        color .3s ease,
        transform .3s ease;

}


.cfcfooter-link-list a i {

    color: #ff7b00;

    font-size: 8px;

    transition:
        transform .3s ease;

}


.cfcfooter-link-list a:hover {

    color: #f35336;

    transform:
        translateX(5px);

}


.cfcfooter-link-list a:hover i {

    transform:
        translateX(3px);

}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.cfcfooter-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 17px;

}


.cfcfooter-contact-icon {

    width: 32px;

    height: 32px;

    flex: 0 0 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background:
        rgba(255,255,255,.08);

    color: #ff7b00;

    font-size: 11px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.cfcfooter-contact-item:hover
.cfcfooter-contact-icon {

    background: #ff7b00;

    color: #ffffff;

    transform:
        translateY(-3px);

}


.cfcfooter-contact-item span {

    display: block;

    margin-bottom: 2px;

    color:
        rgba(255,255,255,.48);

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .8px;

}


.cfcfooter-contact-item p {

    max-width: 220px;

    margin: 0;

    color:
        rgba(255,255,255,.78);

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 12.5px;
    font-weight:600;

    line-height: 1.55;

    word-break: break-word;

}


.cfcfooter-contact-item:hover p {

    color: #ffffff;

}


.cfcfooter-email {

    word-break: break-all;

}


/* =========================================================
   BOTTOM FOOTER
========================================================= */

.cfcfooter-bottom {

    min-height: 68px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    border-top:
        1px solid
        rgba(255,255,255,.12);

}


/* =========================================================
   COPYRIGHT
========================================================= */

.cfcfooter-copyright p {

    margin: 0;

    color:
        rgba(255,255,255,.58);

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10.5px;

}


#cfcfooter-year {

    color:
        rgba(255,255,255,.78);

}


/* =========================================================
   DESIGNED BY
========================================================= */

.cfcfooter-designed {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 8px;

}


.cfcfooter-designed > span {

    color:
        rgba(255,255,255,.5);

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10.5px;

}


.cfcfooter-designer {

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 4px 8px;

    border-radius: 5px;

    /* background: rgba(255,255,255,.08); */

    transition:
        background .3s ease,
        transform .3s ease;

}


.cfcfooter-designer:hover {

    /* background:
        rgba(255,255,255,.16); */

    transform:
        translateY(-2px);

}


.cfcfooter-designer img {

    display: block;

    width: auto;

    max-width: 115px;

    max-height: 25px;

    object-fit: contain;
    position: relative;
    bottom: 6px;
    right: 9px;

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .cfcfooter-content {

        /* grid-template-columns:
            1fr 1fr; */

        gap:
            42px 35px;

    }


    .cfcfooter-brand {

        grid-column:
            span 2;

    }


    .cfcfooter-brand-text {

        max-width: 500px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .cfcfooter-main {

        padding-top: 60px;

    }


    .cfcfooter-container {

        padding:
            0 18px;

    }


    .cfcfooter-content {

        grid-template-columns:
            1fr 1fr;

        gap:
            35px 25px;

        padding-bottom: 40px;

    }


    .cfcfooter-brand {

        grid-column:
            span 2;

    }


    .cfcfooter-logo-wrap {

        width: 165px;

        min-height: 68px;

    }


    .cfcfooter-brand-text {

        font-size: 10px;

    }


    .cfcfooter-title-wrap h3 {

        font-size: 15px;

    }


    .cfcfooter-link-list a {

        font-size: 12px;

    }


    .cfcfooter-contact-item p {

        font-size: 11.5px;

    }


    .cfcfooter-bottom {

        min-height: 62px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .cfcfooter-main {

        padding-top: 48px;

    }


    .cfcfooter-container {

        padding:
            0 15px;

    }


    .cfcfooter-content {

        grid-template-columns: 1fr;

        gap: 30px;

        padding-bottom: 35px;

    }


    .cfcfooter-brand {

        grid-column:
            auto;

        text-align: center;

    }


    .cfcfooter-logo-wrap {

        width: 160px;

        min-height: 65px;

        margin:
            0 auto 18px;

        justify-content: center;

    }


    .cfcfooter-logo {

        max-width: 140px;

    }


    .cfcfooter-brand-text {

        max-width: 360px;

        margin:
            0 auto 18px;

        font-size: 9.5px;

        line-height: 1.7;

    }


    .cfcfooter-social {

        justify-content: center;

    }


    .cfcfooter-column {

        width: 100%;

    }


    .cfcfooter-title-wrap {

        justify-content: flex-start;

    }


    .cfcfooter-title-wrap h3 {

        font-size: 15px;

    }


    .cfcfooter-title-line {

        margin-bottom: 16px;

    }


    .cfcfooter-link-list li {

        margin-bottom: 10px;

    }


    .cfcfooter-link-list a {

        font-size: 12px;

    }


    .cfcfooter-contact-item {

        margin-bottom: 14px;

    }


    .cfcfooter-contact-item p {

        font-size: 11.5px;

    }


    .cfcfooter-bottom {

        min-height: auto;

        padding:
            18px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 12px;

    }


    .cfcfooter-designed {

        justify-content: center;

    }


    .cfcfooter-round-one {

        width: 300px;

        height: 300px;

        left: -220px;

        top: -80px;

    }


    .cfcfooter-round-two {

        width: 330px;

        height: 330px;

        right: -220px;

        bottom: -190px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .cfcfooter-main {

        padding-top: 42px;

    }


    .cfcfooter-container {

        padding:
            0 12px;

    }


    .cfcfooter-title-wrap h3 {

        font-size: 14px;

    }


    .cfcfooter-link-list a {

        font-size: 11.5px;

    }


    .cfcfooter-contact-item p {

        font-size: 11px;

    }


    .cfcfooter-social-link {

        width: 33px;

        height: 33px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .cfcfooter-main,
    .cfcfooter-main *,
    .cfcfooter-main *::before,
    .cfcfooter-main *::after {

        animation: none !important;

        transition: none !important;

    }

}












/* =========================================================
   AREAS + FORM SECTION
   UNIQUE PREFIX: cfcareaform-
========================================================= */

.cfcareaform-section {

    width: 100%;

    position: relative;

    overflow: hidden;

    padding: 85px 20px;

    background:
        linear-gradient(
            135deg,
            #f5f9fc 0%,
            #ffffff 50%,
            #eef5f9 100%
        );

    box-sizing: border-box;
}


/* =========================================================
   BACKGROUND CIRCLES
========================================================= */

.cfcareaform-bg-circle {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    opacity: .55;
}


.cfcareaform-bg-circle-one {

    width: 500px;

    height: 500px;

    left: -300px;

    top: -250px;

    border:
        80px solid
        rgba(8,79,134,.045);
}


.cfcareaform-bg-circle-two {

    width: 450px;

    height: 450px;

    right: -260px;

    bottom: -250px;

    border:
        70px solid
        rgba(255,123,0,.045);
}


/* =========================================================
   CONTAINER
========================================================= */

.cfcareaform-container {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    position: relative;

    z-index: 2;

    box-sizing: border-box;
}


/* =========================================================
   MAIN GRID
========================================================= */

.cfcareaform-main-grid {

    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(330px,.72fr)
        minmax(0,1.28fr);

    gap: 45px;

    align-items: center;

    opacity: 0;

    transform:
        translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}


.cfcareaform-section.cfcareaform-visible
.cfcareaform-main-grid {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   ESTIMATE FORM
========================================================= */

.cfcareaform-estimate-box {

    width: 100%;

    position: relative;

    padding:
        50px 32px 30px;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #084f86,
            #063f6d
        );

    box-shadow:
        0 20px 45px
        rgba(5,54,92,.20);

    box-sizing: border-box;

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.cfcareaform-estimate-box:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 28px 55px
        rgba(5,54,92,.25);
}


/* =========================================================
   FREE RIBBON
========================================================= */

.cfcareaform-free-ribbon {

    position: absolute;

    top: -41px;

    left: 0;

    width: 105px;

    height: 105px;

    overflow: hidden;

    pointer-events: none;
}


.cfcareaform-free-ribbon::before {

    content: "";

    position: absolute;

    width: 145px;

    height: 38px;

    top: 24px;

    left: -40px;

    transform:
        rotate(-45deg);

    background: #ffd45b;
}


.cfcareaform-free-ribbon span {

    position: absolute;

    top: 59px;

    left: 5px;

    z-index: 2;

    color: #111111;

    font-family:
        Georgia,
        serif;

    font-size: 13px;

    font-weight: 700;

    transform:
        rotate(-45deg);
}


/* =========================================================
   FORM HEADING
========================================================= */

.cfcareaform-form-heading {

    text-align: center;

    margin-bottom: 23px;
}


.cfcareaform-form-heading h3 {

    margin: 0;

    color: #ff7b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: .2px;
}


/* =========================================================
   FORM
========================================================= */

.cfcareaform-form {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 11px;

}


/* =========================================================
   INPUT WRAPPER
========================================================= */

.cfcareaform-input-wrap {

    width: 100%;

    height: 48px;

    position: relative;

    display: flex;

    align-items: center;

    border-radius: 6px;

    background: #ffffff;

    box-sizing: border-box;

    overflow: hidden;

    border:
        2px solid
        transparent;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}


.cfcareaform-input-wrap:hover {

    border-color:
        rgba(255,123,0,.65);

    transform:
        translateY(-1px);
}


.cfcareaform-input-wrap:focus-within {

    border-color: #ff7b00;

    box-shadow:
        0 0 0 3px
        rgba(255,123,0,.13);
}


.cfcareaform-input-wrap i {

    width: 37px;

    flex: 0 0 37px;

    text-align: center;

    color: #084f86;

    font-size: 11px;

}


.cfcareaform-input-wrap input {

    width: 100%;

    height: 100%;

    min-width: 0;

    padding:
        0 9px 0 0;

    border: 0;

    outline: 0;

    background: transparent;

    color: #222222;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    box-sizing: border-box;
}


.cfcareaform-input-wrap input::placeholder {

    color: #555555;

    opacity: 1;
}


/* =========================================================
   FULL WIDTH INPUT
========================================================= */

.cfcareaform-full-input {

    grid-column:
        1 / -1;
}


/* =========================================================
   TEXTAREA
========================================================= */

.cfcareaform-textarea-wrap {

    grid-column:
        1 / -1;

    width: 100%;

    min-height: 100px;

    position: relative;

    display: flex;

    align-items: flex-start;

    border-radius: 6px;

    background: #ffffff;

    overflow: hidden;

    border:
        2px solid
        transparent;

    box-sizing: border-box;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}


.cfcareaform-textarea-wrap:hover {

    border-color:
        rgba(255,123,0,.65);
}


.cfcareaform-textarea-wrap:focus-within {

    border-color: #ff7b00;

    box-shadow:
        0 0 0 3px
        rgba(255,123,0,.13);
}


.cfcareaform-textarea-wrap i {

    width: 37px;

    flex: 0 0 37px;

    padding-top: 14px;

    text-align: center;

    color: #084f86;

    font-size: 11px;
}


.cfcareaform-textarea-wrap textarea {

    width: 100%;

    min-width: 0;

    min-height: 96px;

    padding:
        12px 9px 10px 0;

    resize: vertical;

    border: 0;

    outline: 0;

    background: transparent;

    color: #222222;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    line-height: 1.5;

    box-sizing: border-box;
}


.cfcareaform-textarea-wrap textarea::placeholder {

    color: #555555;

    opacity: 1;
}


/* =========================================================
   BUTTON
========================================================= */

.cfcareaform-button-wrap {

    grid-column:
        1 / -1;

    display: flex;

    justify-content: flex-start;

    padding-top: 2px;
}


.cfcareaform-submit-btn {

    min-height: 48px;

    padding:
        0 18px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: 0;

    border-radius: 25px;

    background:
        #073b67;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}


.cfcareaform-submit-btn:hover {

    background: #ff7b00;

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(255,123,0,.28);
}


.cfcareaform-submit-btn i {

    transition:
        transform .3s ease;
}


.cfcareaform-submit-btn:hover i {

    transform:
        translateX(4px);
}


/* =========================================================
   RIGHT AREA CONTENT
========================================================= */

.cfcareaform-area-content {

    min-width: 0;

    opacity: 0;

    transform:
        translateX(35px);

    transition:
        opacity .8s .15s ease,
        transform .8s .15s ease;
}


.cfcareaform-section.cfcareaform-visible
.cfcareaform-area-content {

    opacity: 1;

    transform:
        translateX(0);
}


/* =========================================================
   AREA HEADING
========================================================= */

.cfcareaform-section-heading {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 17px;
}


.cfcareaform-heading-icon {

    width: 54px;

    height: 54px;

    flex: 0 0 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #084f86;

    color: #ffffff;

    font-size: 20px;

    transition:
        transform .35s ease,
        background .35s ease;
}


.cfcareaform-section-heading:hover
.cfcareaform-heading-icon {

    background: #ff7b00;

    transform:
        rotate(-6deg)
        scale(1.05);
}


.cfcareaform-section-heading span {

    display: block;

    margin-bottom: 2px;

    color: #ff7b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.4px;
}


.cfcareaform-section-heading h2 {

    margin: 0;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 700;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.cfcareaform-area-description {

    max-width: 700px;

    margin:
        0 0 25px;

    color: #6d7a84;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   LOCATION GRID
========================================================= */

.cfcareaform-location-grid {

    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 12px;

}


/* =========================================================
   LOCATION CARD
========================================================= */

.cfcareaform-location-card {

    min-width: 0;

    min-height: 57px;

    padding:
        9px 12px;

    display: flex;

    align-items: center;

    gap: 11px;

    border:
        1px solid
        #dce6ed;

    border-radius: 11px;

    background: #ffffff;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 600;

    box-sizing: border-box;

    box-shadow:
        0 5px 18px
        rgba(8,79,134,.035);

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.cfcareaform-location-card i {

    width: 30px;

    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: #edf4f8;

    color: #084f86;

    font-size: 10px;

    transition:
        background .3s ease,
        color .3s ease;
}


.cfcareaform-location-card:hover {

    transform:
        translateY(-5px);

    background: #084f86;

    border-color: #084f86;

    color: #ffffff;

    box-shadow:
        0 12px 25px
        rgba(8,79,134,.14);
}


.cfcareaform-location-card:hover i {

    background: #ff7b00;

    color: #ffffff;
}


/* =========================================================
   CITY GRID
========================================================= */

.cfcareaform-cities-grid {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 25px;

    margin-top: 35px;

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s .3s ease,
        transform .8s .3s ease;
}


.cfcareaform-section.cfcareaform-visible
.cfcareaform-cities-grid {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   CITY CARD
========================================================= */

.cfcareaform-city-card {

    min-width: 0;

    padding: 27px;

    border:
        1px solid
        #dce6ed;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 8px 25px
        rgba(8,79,134,.055);

    box-sizing: border-box;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.cfcareaform-city-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(8,79,134,.25);

    box-shadow:
        0 17px 35px
        rgba(8,79,134,.11);
}


/* =========================================================
   CITY HEADING
========================================================= */

.cfcareaform-city-heading {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 13px;
}


.cfcareaform-city-icon {

    width: 45px;

    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #084f86;

    color: #ffffff;

    font-size: 16px;

    transition:
        transform .3s ease,
        background .3s ease;
}


.cfcareaform-city-card:hover
.cfcareaform-city-icon {

    background: #ff7b00;

    transform:
        scale(1.08)
        rotate(5deg);
}


.cfcareaform-city-heading span {

    display: block;

    color: #ff7b00;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.3px;
}


.cfcareaform-city-heading h3 {

    margin: 2px 0 0;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 20px;

    font-weight: 700;
}


/* =========================================================
   CITY DESCRIPTION
========================================================= */

.cfcareaform-city-card > p {

    margin:
        0 0 17px;

    color: #6d7a84;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   SUBURBS
========================================================= */

.cfcareaform-suburb-list {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}


.cfcareaform-suburb {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding:
        7px 10px;

    border:
        1px solid
        #e0e8ee;

    border-radius: 7px;

    background: #f8fafb;

    color: #084f86;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        border-color .3s ease;
}


.cfcareaform-suburb i {

    color: #ff7b00;

    font-size: 7px;

    transition:
        transform .3s ease;
}


.cfcareaform-suburb:hover {

    background: #084f86;

    border-color: #084f86;

    color: #ffffff;

    transform:
        translateY(-3px);
}


.cfcareaform-suburb:hover i {

    color: #ffffff;

    transform:
        translateX(3px);
}


/* =========================================================
   992px
========================================================= */

@media (max-width: 991px) {

    .cfcareaform-section {

        padding:
            70px 18px;
    }


    .cfcareaform-main-grid {

        grid-template-columns:
            minmax(300px,.8fr)
            minmax(0,1.2fr);

        gap: 30px;
    }


    .cfcareaform-estimate-box {

        padding:
            47px 24px 26px;
    }


    .cfcareaform-form-heading h3 {

        font-size: 18px;
    }


    .cfcareaform-location-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


    .cfcareaform-section-heading h2 {

        font-size: 25px;
    }

}


/* =========================================================
   767px
========================================================= */

@media (max-width: 767px) {

    .cfcareaform-section {

        padding:
            58px 15px;
    }


    .cfcareaform-main-grid {

        grid-template-columns: 1fr;

        gap: 35px;

        align-items: stretch;
    }


    .cfcareaform-estimate-box {

        max-width: 600px;

        margin: 0 auto;

        width: 100%;
    }


    .cfcareaform-area-content {

        transform:
            translateY(30px);
    }


    .cfcareaform-section.cfcareaform-visible
    .cfcareaform-area-content {

        transform:
            translateY(0);
    }


    .cfcareaform-location-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


    .cfcareaform-cities-grid {

        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 28px;
    }

}


/* =========================================================
   575px
========================================================= */

@media (max-width: 575px) {

    .cfcareaform-section {

        padding:
            48px 12px;
    }


    .cfcareaform-estimate-box {

        padding:
            47px 18px 22px;

        border-radius: 12px;
    }


    .cfcareaform-form {

        gap: 9px;
    }


    .cfcareaform-input-wrap {

        height: 45px;
    }


    .cfcareaform-input-wrap i {

        width: 32px;

        flex-basis: 32px;
    }


    .cfcareaform-input-wrap input {

        font-size: 10px;
    }


    .cfcareaform-textarea-wrap {

        min-height: 90px;
    }


    .cfcareaform-textarea-wrap textarea {

        min-height: 86px;

        font-size: 10px;
    }


    .cfcareaform-submit-btn {

        min-height: 44px;

        padding:
            0 16px;

        font-size: 10px;
    }


    .cfcareaform-section-heading {

        gap: 10px;
    }


    .cfcareaform-heading-icon {

        width: 45px;

        height: 45px;

        flex-basis: 45px;

        font-size: 17px;
    }


    .cfcareaform-section-heading h2 {

        font-size: 22px;
    }


    .cfcareaform-area-description {

        font-size: 10px;

        line-height: 1.75;
    }


    .cfcareaform-location-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 8px;
    }


    .cfcareaform-location-card {

        min-height: 48px;

        padding:
            8px;

        gap: 7px;

        font-size: 9px;
    }


    .cfcareaform-location-card i {

        width: 25px;

        height: 25px;

        flex-basis: 25px;

        font-size: 8px;
    }


    .cfcareaform-city-card {

        padding: 20px;
    }


    .cfcareaform-city-heading h3 {

        font-size: 18px;
    }


    .cfcareaform-suburb {

        font-size: 8.5px;

        padding:
            6px 8px;
    }

}


/* =========================================================
   390px
========================================================= */

@media (max-width: 390px) {

    .cfcareaform-section {

        padding:
            42px 9px;
    }


    .cfcareaform-form {

        grid-template-columns: 1fr;
    }


    .cfcareaform-full-input,
    .cfcareaform-textarea-wrap,
    .cfcareaform-button-wrap {

        grid-column: auto;
    }


    .cfcareaform-location-grid {

        grid-template-columns: 1fr;
    }


    .cfcareaform-estimate-box {

        padding:
            45px 14px 20px;
    }


    .cfcareaform-form-heading h3 {

        font-size: 17px;
    }


    .cfcareaform-section-heading h2 {

        font-size: 20px;
    }


    .cfcareaform-city-card {

        padding: 17px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .cfcareaform-section *,
    .cfcareaform-section *::before,
    .cfcareaform-section *::after {

        transition: none !important;

        animation: none !important;
    }

}












/* =========================================================
   SCROLL TO TOP BUTTON
   UNIQUE PREFIX: cfcscroll-
========================================================= */

.cfcscroll-top {

    position: fixed;

    right: 25px;

    bottom: 53px;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    outline: none;

    border-radius: 50%;

    background: #173c77;

    color: #ffffff;

    font-size: 15px;

    cursor: pointer;

    z-index: 9999;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(20px)
        scale(.8);

    box-shadow:
        0 8px 22px
        rgba(0,0,0,.20);

    transition:
        opacity .35s ease,
        visibility .35s ease,
        transform .35s ease,
        background .3s ease,
        box-shadow .3s ease;

}


/* =========================================================
   SHOW BUTTON
========================================================= */

.cfcscroll-top.cfcscroll-show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);

}


/* =========================================================
   HOVER
========================================================= */

.cfcscroll-top:hover {

    background: #f35336;

    transform:
        translateY(-5px)
        scale(1.05);

    box-shadow:
        0 12px 28px
        rgba(8,79,134,.30);

}


/* =========================================================
   ICON ANIMATION
========================================================= */

.cfcscroll-top i {

    transition:
        transform .3s ease;
}


.cfcscroll-top:hover i {

    transform:
        translateY(-3px);

}


/* =========================================================
   PULSE RING
========================================================= */

.cfcscroll-top::before {

    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,123,0,.35);

    opacity: 0;

    transform: scale(.8);

    transition:
        opacity .3s ease,
        transform .3s ease;

}


.cfcscroll-top:hover::before {

    opacity: 1;

    transform: scale(1.15);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .cfcscroll-top {

        right: 18px;

        bottom: 18px;

        width: 44px;

        height: 44px;

        font-size: 14px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .cfcscroll-top {

        right: 14px;

        bottom: 14px;

        width: 42px;

        height: 42px;

        font-size: 13px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .cfcscroll-top {

        right: 14px;

        bottom: 11px;

        width: 39px;

        height: 39px;

        font-size: 12px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .cfcscroll-top,
    .cfcscroll-top::before,
    .cfcscroll-top i {

        transition: none !important;

    }

}