/* Modish premium header */
.mkhx-header {
    position: relative;
    z-index: 99999;
    background: #fff
}

.mkhx-topbar {
    background: #24501f;
    color: #fff
}

.mkhx-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.mkhx-top-left,.mkhx-top-right {
    display: flex;
    align-items: center;
    gap: 18px
}

.mkhx-top-left span,.mkhx-top-right a {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none
}

.mkhx-topbar i {
    margin-right: 7px;
    color: #f9f9f9;
}

.mkhx-top-divider {
    width: 1px;
    height: 13px;
    background: rgba(255,255,255,.25)
}

.mkhx-main-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 30px rgba(20,40,55,.06)
}

.mkhx-header-inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    gap: 25px
}

.mkhx-brand-link {
    display: flex;
    align-items: center
}

.mkhx-brand-image {
    display: block;
    width: auto;
    max-width: 205px;
    max-height: 72px;
    object-fit: contain
}

.mkhx-navigation {
    margin-left: auto
}

.mkhx-menu {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0;
    padding: 0;
    list-style: none
}

.mkhx-menu-item {
    position: relative;
    list-style: none
}

.mkhx-menu-item>a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 94px;
    padding: 0 16px;
    color: #252525;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s
}

.mkhx-menu-item>a:before {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 20px;
    left: 16px;
    height: 2px;
    background: #c49a58;
    transform: scaleX(0);
    transition: transform .3s
}

.mkhx-menu-item>a:hover {
    color: #153f5b
}

.mkhx-menu-item>a:hover:before {
    transform: scaleX(1)
}

.mkhx-dropdown-link {
    gap: 9px
}

.mkhx-arrow {
    width: 7px;
    height: 7px;
    margin-top: -4px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(45deg);
    transition: .3s
}

.mkhx-dropdown:hover .mkhx-arrow {
    border-color: #c49a58;
    transform: rotate(225deg)
}

.mkhx-dropdown-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    z-index: 100000;
    width: 590px;
    padding-top: 12px;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%,15px);
    transition: opacity .3s,visibility .3s,transform .3s
}

.mkhx-dropdown:hover .mkhx-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%,0)
}

.mkhx-dropdown-inner {
    display: flex;
    overflow: hidden;
    border-top: 3px solid #c49a58;
    border-radius: 0 0 10px 10px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(20,40,55,.15)
}

.mkhx-dropdown-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 190px;
    padding: 28px 22px;
    background: #24501f;
    color: #fff
}

.mkhx-dropdown-title span {
    margin-bottom: 7px;
    color: #d5b77a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.mkhx-dropdown-title strong {
    font-size: 19px;
    line-height: 1.35;
    font-weight: 600
}

.mkhx-dropdown-links {
    flex: 1;
    padding: 13px
}

.mkhx-dropdown-links>a {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 78px;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    color: #252525;
    text-decoration: none;
    transition: background .3s,padding-left .3s
}

.mkhx-dropdown-links>a:last-child {
    border: 0
}

.mkhx-dropdown-links>a:hover {
    padding-left: 18px;
    background: #f8fafb
}

.mkhx-dropdown-icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f1f6f8;
    color: #24501f;
}

.mkhx-dropdown-links>a:hover .mkhx-dropdown-icon {
    background: #24501f;
    color: #fff
}

.mkhx-dropdown-links>a>span:last-child {
    display: flex;
    flex-direction: column
}

.mkhx-dropdown-links strong {
    margin-bottom: 4px;
    color: #222;
    font-size: 16px;
}

.mkhx-dropdown-links small {
    color: #888;
    font-size: 12px;
    line-height: 1.4
}

.mkhx-header-action,.mkhx-action-contact {
    display: flex;
    align-items: center
}

.mkhx-header-action {
    gap: 20px;
    margin-left: 15px
}

.mkhx-action-contact {
    gap: 10px
}

.mkhx-call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f2f6f8;
    color: #153f5b
}

.mkhx-call-content {
    display: flex;
    flex-direction: column
}

.mkhx-call-content small {
    margin-bottom: 2px;
    color: #999;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase
}

.mkhx-call-content a {
    color: #153f5b;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap
}

.mkhx-consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 47px;
    padding: 0 17px;
    border-radius: 4px;
    background: #8a5830;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 7px 18px rgba(196,154,88,.22);
    transition: .3s
}

.mkhx-consult-btn:hover {
    background: #153f5b;
    color: #fff;
    transform: translateY(-2px)
}

.mkhx-mobile-toggle,.mkhx-mobile-nav-head,.mkhx-mobile-cta,.mkhx-overlay {
    display: none
}

@media(max-width: 1399px) {
    .mkhx-menu-item>a {
        padding-right:12px;
        padding-left: 12px
    }

    .mkhx-menu-item>a:before {
        right: 12px;
        left: 12px
    }

    .mkhx-header-action {
        gap: 12px;
        margin-left: 8px
    }

    .mkhx-call-content {
        display: none
    }
}

@media(max-width: 1199px) {
    .mkhx-header-inner {
        min-height:82px
    }

    .mkhx-brand-image {
        max-width: 180px;
        max-height: 65px
    }

    .mkhx-menu-item>a {
        min-height: 82px;
        padding-right: 9px;
        padding-left: 9px;
        font-size: 13px
    }

    .mkhx-menu-item>a:before {
        right: 9px;
        bottom: 16px;
        left: 9px
    }

    .mkhx-header-action {
        margin-left: 5px
    }

    .mkhx-action-contact {
        display: none
    }

    .mkhx-consult-btn {
        padding: 0 13px
    }
}

@media(max-width: 991px) {
    .mkhx-topbar,.mkhx-header-action {
        display:none
    }

    .mkhx-header-inner {
        min-height: 78px;
        justify-content: space-between
    }

    .mkhx-brand-image {
        max-width: 175px;
        max-height: 62px
    }

    .mkhx-mobile-toggle {
        display: flex;
        z-index: 100003;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 46px;
        height: 46px;
        padding: 0;
        border: 0;
        border-radius: 5px;
        background: #295424;
        cursor: pointer
    }

    .mkhx-mobile-toggle span {
        width: 21px;
        height: 2px;
        border-radius: 3px;
        background: #fff
    }

    .mkhx-navigation {
        position: fixed;
        top: 0;
        right: -380px;
        z-index: 100002;
        overflow: auto;
        width: 350px;
        max-width: 88vw;
        height: 100vh;
        margin: 0;
        background: #fff;
        box-shadow: -15px 0 45px rgba(0,0,0,.15);
        transition: right .4s
    }

    .mkhx-navigation.mkhx-nav-open {
        right: 0
    }

    .mkhx-mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 78px;
        padding: 0 20px;
        border-bottom: 1px solid #eee
    }

    .mkhx-mobile-logo img {
        display: block;
        max-width: 150px;
        max-height: 55px;
        object-fit: contain
    }

    .mkhx-mobile-close {
        position: relative;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 0;
        border-radius: 4px;
        background: #234f1e;
        cursor: pointer
    }

    .mkhx-mobile-close span {
        position: absolute;
        top: 19px;
        left: 9px;
        width: 22px;
        height: 2px;
        background: #fff
    }

    .mkhx-mobile-close span:first-child {
        transform: rotate(45deg)
    }

    .mkhx-mobile-close span:last-child {
        transform: rotate(-45deg)
    }

    .mkhx-menu {
        display: block;
        padding: 12px 22px 10px
    }

    .mkhx-menu-item {
        border-bottom: 1px solid #eee
    }

    .mkhx-menu-item>a {
        justify-content: space-between;
        min-height: 58px;
        padding: 0 4px;
        color: #222;
        font-size: 15px
    }

    .mkhx-menu-item>a:before {
        display: none
    }

    .mkhx-dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        padding: 0;
        visibility: visible;
        opacity: 1;
        transform: none
    }

    .mkhx-dropdown.mkhx-mobile-dropdown-open .mkhx-dropdown-menu {
        display: block;
        left: auto;
        right: auto;
        transform: none
    }

    .mkhx-dropdown-inner {
        display: block;
        border: 0;
        border-radius: 0;
        background: #f7f9fa;
        box-shadow: none
    }

    .mkhx-dropdown-title {
        display: none
    }

    .mkhx-dropdown-links {
        padding: 5px 8px 8px
    }

    .mkhx-dropdown-links>a {
        min-height: 62px;
        padding: 8px
    }

    .mkhx-dropdown-links strong {
        font-size: 13px
    }

    .mkhx-dropdown-links small {
        font-size: 10px
    }

    .mkhx-mobile-cta {
        display: block;
        padding: 15px 22px 30px
    }

    .mkhx-mobile-cta a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 48px;
        padding: 0 16px;
        border-radius: 4px;
        background: #c49a58;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none
    }

    .mkhx-overlay {
        position: fixed;
        inset: 0;
        z-index: 100001;
        display: block;
        visibility: hidden;
        opacity: 0;
        background: rgba(12,28,39,.55);
        transition: opacity .4s,visibility .4s
    }

    .mkhx-overlay.mkhx-overlay-show {
        visibility: visible;
        opacity: 1
    }
}

@media(max-width: 767px) {
    .mkhx-header-inner {
        min-height:72px
    }

    .mkhx-brand-image {
        max-width: 155px;
        max-height: 58px
    }

    .mkhx-mobile-toggle {
        width: 43px;
        height: 43px
    }
}

@media(max-width: 480px) {
    .mkhx-header-inner {
        min-height:68px
    }

    .mkhx-brand-image {
        max-width: 140px;
        max-height: 53px
    }

    .mkhx-mobile-toggle {
        width: 41px;
        height: 41px
    }

    .mkhx-navigation {
        width: 320px;
        max-width: 90vw
    }

    .mkhx-menu {
        padding-right: 18px;
        padding-left: 18px
    }
}

@media (max-width: 991px) {
    .mkhx-header.mkhx-menu-open .mkhx-mobile-toggle, .mkhx-header:has(.mkhx-navigation.mkhx-nav-open) .mkhx-mobile-toggle {
        display: none;
    }
}
/* =========================================================
   MODISH MODULAR KITCHEN
   FULL FOOTER BACKGROUND IMAGE
========================================================= */

.mkm-footer {
    position: relative;
    width: 100%;
    overflow: hidden;

    color: #ffffff;

    background-image: url("/assets/images/footer-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


/* =========================================================
   FULL FOOTER OVERLAY
========================================================= */

.mkm-footer-bg-overlay {
    position: absolute;
    inset: 0;

    background: rgba(7, 14, 23, 0.78);

    z-index: 1;

    pointer-events: none;
}


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

.mkm-footer-main {
    position: relative;
    z-index: 2;
}


/* =========================================================
   CONTAINER
========================================================= */

.mkm-footer-container {
    position: relative;
    z-index: 2;
}


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

.mkm-footer-contact-panel {
    position: relative;

    padding: 32px 38px;

    text-align: center;

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

    border-radius: 0 0 12px 12px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.18);
}


.mkm-contact-panel-text {
    flex: 1;
}


.mkm-contact-panel-text > span {
    display: block;

    margin-bottom: 7px;

    color: #7f8996;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}


.mkm-contact-panel-text h3 {
    margin: 0 0 7px;

    color: #172033;

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

    line-height: 1.3;
}


.mkm-contact-panel-text p {
    margin: 0;

    color: #788291;

    font-size: 12px;

    line-height: 1.7;
}


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

.mkm-footer-content {
    display: grid;
    grid-template-columns:
        1.35fr
        0.75fr
        0.85fr
        1.2fr;
    gap: 55px;
    padding: 45px 0 45px;
}


/* =========================================================
   BRAND
========================================================= */

.mkm-footer-brand {
    padding-right: 25px;
}


.mkm-footer-brand-logo {
    display: inline-block;

    margin-bottom: 22px;

    padding: 10px;

    background: #ffffff;

    border-radius: 10px;
}


.mkm-footer-brand-logo img {
    display: block;

    width: auto;
    max-width: 205px;
    height: auto;
}


.mkm-footer-brand > p {
    max-width: 370px;

    margin: 0;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.mkm-social-links {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;
}


.mkm-social-links a {
    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.30);

    border-radius: 50%;

    color: #ffffff;

    font-size: 13px;

    text-decoration: none;

    transition: all 0.3s ease;
}


.mkm-social-links a:hover {
    background: #ffffff;

    border-color: #ffffff;

    color: #172033;

    transform: translateY(-4px);
}


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

.mkm-footer-block {
    min-width: 0;
}


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

.mkm-footer-heading {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;
}


.mkm-footer-heading span {
    display: block;

    width: 28px;
    height: 2px;

    background: #ffffff;
}


.mkm-footer-heading h6 {
    margin: 0;

    color: #ffffff;

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

    line-height: 1.4;
}


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

.mkm-footer-block ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.mkm-footer-block ul li {
    margin-bottom: 12px;
}


.mkm-footer-block ul li:last-child {
    margin-bottom: 0;
}


.mkm-footer-block ul li a {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.6;

    text-decoration: none;

    transition: all 0.3s ease;
}


.mkm-footer-block ul li a i {
    color: #ffffff;

    font-size: 12px;

    transition: transform 0.3s ease;
}


.mkm-footer-block ul li a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


.mkm-footer-block ul li a:hover i {
    transform: translateX(3px);
}


/* =========================================================
   ADDRESS
========================================================= */

.mkm-address-row {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 21px;
}


.mkm-address-row:last-child {
    margin-bottom: 0;
}


.mkm-address-icon {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    color: #ffffff;

    font-size: 12px;
}


.mkm-address-row p {
    margin: 0;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.8;
}


.mkm-address-label {
    display: block;

    margin-bottom: 3px;

    color: #c1c7d0;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.mkm-address-row a {
    color: #ffffff;

    font-size: 15px;

    text-decoration: none;

    line-height: 1.6;

    word-break: break-word;

    transition: opacity 0.3s ease;
}


.mkm-address-row a:hover {
    opacity: 0.75;
}


/* =========================================================
   SERVICE LOCATION SECTION
========================================================= */

.mkm-location-section {
    position: relative;
    padding: 32px 0;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


.mkm-location-top {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-bottom: 15px;
}


.mkm-location-top > div:first-child {
    flex-shrink: 0;
}


.mkm-location-top span {
    display: block;

    margin-bottom: 5px;

    color: #c0c7d1;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.mkm-location-top h6 {
    margin: 0;

    color: #ffffff;

    font-size: 18px;

    font-weight: 600;
}


.mkm-location-line {
    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, 0.40);
}


.mkm-location-text {
    margin: 0;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.9;

    text-align: justify;
}


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

.mkm-footer-bottom {
    position: relative;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}


.mkm-bottom-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


.mkm-bottom-inner > p {
    margin: 0;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.7;
}


.mkm-bottom-inner > p strong {
    color: #ffffff;

    font-weight: 500;
}


.mkm-bottom-inner > p span {
    margin: 0 6px;

    color: rgba(255, 255, 255, 0.35);
}


.mkm-bottom-inner > p a {
    color: #ffffff;

    text-decoration: none;

    transition: opacity 0.3s ease;
}


.mkm-bottom-inner > p a:hover {
    opacity: 0.75;
}


/* =========================================================
   SEO CREDIT
========================================================= */

.mkm-seo-credit {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 7px;

    color: #ffffff;

    font-size: 15px;

    white-space: nowrap;
}


.mkm-seo-credit a {
    display: inline-flex;

    align-items: center;
}


.mkm-seo-credit img {
    display: block;

    width: 20px;
    height: 20px;

    object-fit: contain;
}


/* =========================================================
   1199px
========================================================= */

@media (max-width: 1199px) {

    .mkm-footer-content {
        gap: 35px;
    }

}


/* =========================================================
   991px
========================================================= */

@media (max-width: 991px) {

    .mkm-footer-contact-panel {
        padding: 30px 30px;
    }


    .mkm-footer-content {
        grid-template-columns: 1fr 1fr;

        gap: 45px 35px;

        padding: 60px 0 55px;
    }


    .mkm-footer-brand {
        padding-right: 15px;
    }


    .mkm-bottom-inner {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 10px;
    }


    .mkm-seo-credit {
        justify-content: center;

        white-space: normal;
    }

}


/* =========================================================
   767px
========================================================= */

@media (max-width: 767px) {

    .mkm-footer {
        background-attachment: scroll;

        background-position: center center;
    }


    .mkm-footer-contact-panel {
        padding: 27px 25px;
    }


    .mkm-contact-panel-text h3 {
        font-size: 21px;
    }


    .mkm-footer-content {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px 0;
    }


    .mkm-footer-brand {
        padding-right: 0;
    }


    .mkm-footer-brand > p {
        max-width: 100%;
    }


    .mkm-location-section {
        padding: 27px 0;
    }


    .mkm-location-top {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }


    .mkm-location-line {
        width: 100%;
    }


    .mkm-location-text {
        text-align: left;

        font-size: 10.5px;
    }

}


/* =========================================================
   575px
========================================================= */

@media (max-width: 575px) {

    .mkm-footer-contact-panel {
        padding: 25px 20px;
    }


    .mkm-contact-panel-text > span {
        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .mkm-contact-panel-text h3 {
        font-size: 19px;
    }


    .mkm-contact-panel-text p {
        font-size: 11px;
    }


    .mkm-footer-content {
        padding: 38px 0;

        gap: 30px;
    }


    .mkm-footer-brand-logo img {
        max-width: 180px;
    }


    .mkm-footer-heading h6 {
        font-size: 15px;
    }


    .mkm-footer-block ul li a {
        font-size: 12px;
    }


    .mkm-address-row p,
    .mkm-address-row a {
        font-size: 11px;
    }


    .mkm-location-top h6 {
        font-size: 14px;
    }


    .mkm-location-text {
        font-size: 10px;
    }


    .mkm-bottom-inner > p {
        font-size: 10px;
    }


    .mkm-seo-credit {
        font-size: 10px;
    }


    .mkm-seo-credit img {
        width: 20px;
        height: 20px;
    }

}


/* =========================================================
   400px
========================================================= */

@media (max-width: 400px) {

    .mkm-footer-contact-panel {
        padding: 22px 17px;
    }


    .mkm-contact-panel-text h3 {
        font-size: 18px;
    }


    .mkm-footer-content {
        padding: 32px 0;
    }


    .mkm-social-links a {
        width: 36px;
        height: 36px;
    }

}
/* =========================================================
   MODISH MODULAR KITCHEN
   FLOATING CALL + WHATSAPP
   ========================================================= */

.mk-contact-widget {
    position: fixed;

    right: 0;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;

    gap: 8px;

    z-index: 999999;

    font-family: inherit;
}


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

.mk-contact-btn {
    position: relative;

    width: 58px;
    height: 58px;

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

    text-decoration: none !important;

    border-radius: 12px 0 0 12px;

    overflow: hidden;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.18);

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


/* =========================================================
   ICON
   ========================================================= */

.mk-contact-icon {
    width: 100%;
    height: 100%;

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

.mk-contact-icon i {
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    transition:
        transform 0.3s ease,
        font-size 0.3s ease;
}


/* =========================================================
   HIDDEN TEXT ON DESKTOP
   ========================================================= */

.mk-contact-text {
    position: absolute;

    opacity: 0;
    visibility: hidden;

    width: 0;

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        opacity 0.25s ease,
        width 0.3s ease;
}


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

.mk-call-btn {
    background: #0878dc;
}


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

.mk-whatsapp-btn {
    background: #20c968;
}


/* =========================================================
   DESKTOP HOVER
   ========================================================= */

.mk-contact-btn:hover {
    width: 68px;

    transform: translateX(-3px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25);
}

.mk-contact-btn:hover .mk-contact-icon i {
    transform: scale(1.08);
}


/* =========================================================
   SHINE EFFECT
   ========================================================= */

.mk-contact-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

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

    transform: skewX(-20deg);

    transition: left 0.55s ease;
}

.mk-contact-btn:hover::before {
    left: 140%;
}


/* =========================================================
   DESKTOP - ICON ONLY
   ========================================================= */

@media (min-width: 768px) {

    .mk-contact-btn {
        width: 50px;
        height: 50px;
    }

    .mk-contact-text {
        display: none !important;
    }

}


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

@media (max-width: 767px) {

    /* Prevent content from going behind fixed bar */
    body {
        padding-bottom: 78px !important;
    }


    /* Bottom Floating Bar */

    .mk-contact-widget {
        position: fixed;

        left: 10px;
        right: 10px;

        bottom: 10px;
        top: auto;

        width: auto;
        height: 62px;

        transform: none;

        display: flex;
        flex-direction: row;

        gap: 6px;

        padding: 5px;

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

        border: 1px solid rgba(0, 0, 0, 0.08);

        border-radius: 16px;

        box-shadow:
            0 6px 30px rgba(0, 0, 0, 0.20);

        backdrop-filter: blur(12px);
    }


    /* Mobile Button */

    .mk-contact-btn {
        width: 50% !important;
        height: 52px;

        flex: 1;

        border-radius: 11px;

        transform: none !important;

        box-shadow: none;

        gap: 8px;
    }


    /* Mobile Icon */

    .mk-contact-icon {
        width: auto;
        height: auto;
    }

    .mk-contact-icon i {
        font-size: 18px;
    }


    /* Mobile Text */

    .mk-contact-text {
        position: static;

        width: auto;

        opacity: 1;
        visibility: visible;

        color: #ffffff;

        font-size: 11px;
        font-weight: 700;

        line-height: 1;

        text-transform: uppercase;

        letter-spacing: 0.5px;
    }


    /* Remove shine movement */

    .mk-contact-btn::before {
        display: none;
    }


    /* Hover */

    .mk-contact-btn:hover {
        width: 50% !important;

        transform: none !important;

        box-shadow: none;
    }

}


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

@media (max-width: 420px) {

    body {
        padding-bottom: 76px !important;
    }

    .mk-contact-widget {
        left: 7px;
        right: 7px;

        bottom: 7px;

        height: 60px;

        padding: 4px;

        border-radius: 14px;
    }

    .mk-contact-btn {
        height: 50px;

        border-radius: 10px;
    }

    .mk-contact-icon i {
        font-size: 17px;
    }

    .mk-contact-text {
        font-size: 10px;
    }

}


/* =========================================================
   VERY SMALL SCREEN
   ========================================================= */

@media (max-width: 350px) {

    .mk-contact-text {
        font-size: 9px;
    }

    .mk-contact-icon i {
        font-size: 16px;
    }

}

/* Inner-page banner styles shared by all content pages. */
.inner-banner {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: clamp(460px, 42vw, 650px);
    margin: 21px;
    padding: clamp(100px, 13vw, 170px) 0 clamp(66px, 9vw, 120px);
    border-radius: 20px;
    background-position: center 48% !important;
}
.inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(18, 20, 18, 0.62), rgba(18, 20, 18, 0.22)), rgba(18, 20, 18, 0.16);
}
.inner-banner .cm-title {
    max-width: 980px;
    margin: 0 0 15px;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
}
.inner-banner .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 15px;
}
.inner-banner .breadcrumb-item,
.inner-banner .breadcrumb-item a,
.inner-banner .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.88);
}
.inner-banner .breadcrumb-item + .breadcrumb-item::before {
    color: #d7b676;
}
.inner-banner .mmk-space-eyebrow {
    margin-bottom: 12px;
    color: #f0d5a4;
}
@media (max-width: 991px) {
    .inner-banner {
        min-height: 420px;
        margin: 10px;
        padding: 122px 0 70px;
        border-radius: 16px;
    }
    .inner-banner .cm-title {
        font-size: clamp(36px, 7vw, 52px);
    }
}
@media (max-width: 767px) {
    .inner-banner {
        min-height: 380px;
        padding: 112px 0 58px;
    }
    .inner-banner .cm-title {
        font-size: clamp(28px, 8vw, 38px);
    }
    .inner-banner .breadcrumb {
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .inner-banner {
        min-height: 370px;
        padding: 112px 0 58px;
    }
    .inner-banner .breadcrumb {
        font-size: 12px;
    }
}
