
    /* =========================================================
       Profile Image
    ========================================================= */
    .rc-profile-image {
        display: block;
        width: 35px;
        height: 35px;
        flex: 0 0 35px;
        margin: 0;
        border: 2px solid #172840;
        border-radius: 50%;
        background: #fff;
        object-fit: cover;
        object-position: center;
    }

    /* =========================================================
       Header Base
    ========================================================= */
    .rc-site-header {
        position: fixed !important;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1035;
        width: 100%;
        border-top: 3px solid #ff5c45;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 8px 28px rgba(18, 38, 70, .08);
        isolation: isolate;
        transition:
            background-color .22s ease,
            box-shadow .22s ease;
    }

    body.rc-has-fixed-header {
        padding-top: var(--rc-site-header-height, 71px) !important;
    }

    .rc-site-header.is-scrolled {
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 10px 30px rgba(18, 38, 70, .16);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .rc-site-header .container,
    .rc-site-header .row,
    .rc-site-header .col {
        height: 68px;
    }

    .rc-site-header .row {
        align-items: center;
    }

    .rc-site-header .menu {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between;
        width: 100%;
        height: 68px;
        min-height: 68px;
        gap: 20px;
        animation: rcHeaderDrop .55s cubic-bezier(.2, .8, .2, 1) both;
    }

    /* =========================================================
       Brand Logo
    ========================================================= */
    .rc-site-header .rc-brand-logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 100%;
        flex: 0 0 auto;
    }

    .rc-site-header .rc-brand-logo > a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 260px;
        height: 68px;
        padding: 0;
        margin: 0;
        overflow: hidden;
        transition:
            transform .25s ease,
            filter .25s ease;
    }

    .rc-site-header .rc-primary-logo {
        display: block;
        width: auto !important;
        height: 55px !important;
        max-width: 245px !important;
        max-height: 55px !important;
        margin: 0 !important;
        object-fit: contain;
        object-position: center;
        transform: scale(1.65);
        transform-origin: center;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .08));
        transition: transform .25s ease;
    }

    .rc-site-header .rc-brand-logo > a:hover {
        transform: translateY(-1px);
        filter: drop-shadow(0 5px 8px rgba(21, 39, 67, .13));
    }

    .rc-site-header .rc-brand-logo > a:hover .rc-primary-logo {
        transform: scale(1.68);
    }

    /* =========================================================
       Navigation
    ========================================================= */
    .rc-site-header nav {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        flex: 1 1 auto;
    }

    .rc-site-header .main-navbar,
    .rc-site-header #mainnav {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .rc-site-header .nav-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 6px;
        margin: 0 !important;
        padding: 0 !important;
    }

    .rc-site-header .nav-menu > li {
        display: flex;
        align-items: center;
        height: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }

    .rc-site-header .nav-menu > li > .nav-link {
        position: relative;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center;
        height: 68px;
        gap: 6px;
        margin: 0 !important;
        padding: 0 11px !important;
        color: #4c5665 !important;
        font-size: 12px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: .3px;
    }

    .rc-site-header .nav-link i {
        color: #a2aab6;
        font-size: 12px;
        transition: .25s ease;
    }

    .rc-site-header .nav-link::before {
        position: absolute;
        right: 11px;
        bottom: 9px;
        left: 11px;
        height: 2px;
        content: '';
        border-radius: 2px;
        background: #ff5c45;
        transform: scaleX(0);
        transition: transform .25s ease;
    }

    .rc-site-header .nav-link:hover,
    .rc-site-header .nav-link.active {
        color: #ff543f !important;
    }

    .rc-site-header .nav-link:hover i,
    .rc-site-header .nav-link.active i {
        color: #ff543f;
    }

    .rc-site-header .nav-link:hover::before,
    .rc-site-header .nav-link.active::before {
        transform: scaleX(1);
    }

    /* =========================================================
       Header Right Section
    ========================================================= */
    .rc-site-header .header-right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end;
        height: 100%;
        flex: 0 0 auto;
        gap: 13px;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
    }

    .rc-site-header .header-right > li {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* =========================================================
       Post Property Button
    ========================================================= */
    .rc-site-header .header-post-property > a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center;
        width: auto !important;
        height: 38px !important;
        gap: 7px;
        margin: 0 !important;
        padding: 0 14px !important;
        border: 1px solid #ffd2ca;
        border-radius: 9px;
        background: #fff3f0;
        color: #e84531 !important;
        font-size: 11px;
        font-weight: 800;
        line-height: 1 !important;
        white-space: nowrap;
        transition: .25s ease;
    }

    .rc-site-header .header-post-property > a:hover {
        color: #fff !important;
        border-color: #ff5c45;
        background: #ff5c45;
        box-shadow: 0 8px 20px rgba(255, 82, 61, .22);
        transform: translateY(-1px);
    }

    .rc-site-header .header-post-property > a::after {
        display: none !important;
    }

    .rc-site-header .header-post-property small {
        padding: 3px 5px;
        border-radius: 4px;
        background: #ff5c41;
        color: #fff;
        font-size: 8px;
        line-height: 1;
    }

    .rc-site-header .header-post-property > a:hover small {
        background: #fff;
        color: #ff5c45;
    }

    /* =========================================================
       Profile Menu
    ========================================================= */
    .rc-site-header .rc-profile-menu {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        margin: 0 !important;
    }

    .rc-site-header .rc-profile-trigger {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center;
        min-width: 50px;
        height: 42px;
        gap: 7px;
        margin: 0 !important;
        padding: 0 4px !important;
        border: 0;
        border-radius: 22px;
        background: transparent;
        line-height: 1;
        cursor: pointer;
    }

    .rc-site-header .rc-profile-trigger > i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 12px;
        height: 12px;
        margin: 0;
        color: #7d8795;
        font-size: 10px;
        line-height: 1;
        transition: transform .2s ease;
    }

    .rc-site-header .rc-profile-menu.open .rc-profile-trigger > i {
        transform: rotate(180deg);
    }

    /* =========================================================
       Profile Dropdown
    ========================================================= */
    .rc-site-header .rc-profile-dropdown {
        position: absolute;
        top: calc(100% - 6px);
        right: 0;
        z-index: 1000;
        width: 220px;
        padding: 9px;
        border: 1px solid #e8ebf0;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 15px 40px rgba(19, 35, 58, .16);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-7px);
        transition:
            opacity .2s ease,
            visibility .2s ease,
            transform .2s ease;
    }

    .rc-site-header .rc-profile-menu.open .rc-profile-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .rc-site-header .rc-profile-summary {
        display: flex;
        flex-direction: column;
        padding: 9px 10px;
        border-bottom: 1px solid #eee;
    }

    .rc-site-header .rc-profile-summary strong {
        color: #172840;
        font-size: 13px;
    }

    .rc-site-header .rc-profile-summary small {
        color: #8a94a3;
        font-size: 10px;
    }

    .rc-site-header .rc-profile-dropdown a,
    .rc-site-header .rc-profile-dropdown button {
        display: flex !important;
        align-items: center;
        width: 100% !important;
        gap: 9px;
        padding: 10px !important;
        border: 0 !important;
        border-radius: 8px;
        background: transparent !important;
        color: #455166 !important;
        font-size: 12px !important;
        text-align: left;
        text-decoration: none;
        cursor: pointer;
    }

    .rc-site-header .rc-profile-dropdown a:hover,
    .rc-site-header .rc-profile-dropdown button:hover {
        color: #ff543f !important;
        background: #fff3f0 !important;
    }

    .rc-site-header .rc-profile-dropdown form {
        margin: 0;
    }

    /* =========================================================
       Animation
    ========================================================= */
    @keyframes rcHeaderDrop {
        from {
            opacity: 0;
            transform: translateY(-12px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* =========================================================
       Responsive - Laptop
    ========================================================= */
    @media (max-width: 1199px) {
        .rc-site-header .menu {
            gap: 12px;
        }

        .rc-site-header .rc-brand-logo > a {
            width: 220px;
        }

        .rc-site-header .rc-primary-logo {
            max-width: 210px !important;
            transform: scale(1.5);
        }

        .rc-site-header .rc-brand-logo > a:hover .rc-primary-logo {
            transform: scale(1.53);
        }

        .rc-site-header .nav-menu {
            gap: 2px;
        }

        .rc-site-header .nav-menu > li > .nav-link {
            padding-right: 8px !important;
            padding-left: 8px !important;
        }
    }

    /* =========================================================
       Responsive - Tablet / Mobile
    ========================================================= */
    @media (max-width: 991px) {
        html,
        body {
            overflow-x: hidden;
        }

        .rc-site-header .container,
        .rc-site-header .row,
        .rc-site-header .col,
        .rc-site-header .menu {
            height: 62px;
            min-height: 62px;
        }

        .rc-site-header .rc-brand-logo > a {
            width: 185px;
            height: 62px;
        }

        .rc-site-header .rc-primary-logo {
            width: auto !important;
            height: 48px !important;
            max-width: 175px !important;
            max-height: 48px !important;
            transform: scale(1.4);
        }

        .rc-site-header .rc-brand-logo > a:hover .rc-primary-logo {
            transform: scale(1.42);
        }

        .rc-site-header .header-post-property {
            display: none;
        }

        .rc-site-header .toggle-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: #fff2ef;
            color: #ff543f;
        }

        .rc-site-header .nav-menu > li > .nav-link {
            height: auto;
            padding: 13px 18px !important;
        }

        .rc-site-header .nav-link::before {
            display: none;
        }

        .rc-site-header .rc-profile-dropdown {
            top: calc(100% - 2px);
        }
    }

    /* =========================================================
       Responsive - Small Mobile
    ========================================================= */
    @media (max-width: 420px) {
        .rc-site-header .rc-brand-logo > a {
            width: 160px;
        }

        .rc-site-header .rc-primary-logo {
            height: 44px !important;
            max-width: 150px !important;
            transform: scale(1.32);
        }

        .rc-site-header .rc-brand-logo > a:hover .rc-primary-logo {
            transform: scale(1.34);
        }

        .rc-site-header .rc-profile-trigger {
            min-width: 44px;
            gap: 4px;
        }

        .rc-site-header .rc-profile-image {
            width: 33px;
            height: 33px;
            flex-basis: 33px;
        }

        .rc-site-header .rc-profile-dropdown {
            right: -4px;
            width: 210px;
        }
    }

    /* =========================================================
       Reduced Motion
    ========================================================= */
    @media (prefers-reduced-motion: reduce) {
        .rc-site-header .menu {
            animation: none;
        }

        .rc-site-header .rc-primary-logo,
        .rc-site-header .header-post-property > a,
        .rc-site-header .rc-profile-trigger > i {
            transition: none;
        }
    }
