/* =========================================================
   KMC SOFA REPAIR - PREMIUM HEADER
   Unique prefix: kmc-
========================================================= */

:root {
    --kmc-burgundy: #7A1F2B;
    --kmc-burgundy-dark: #4A111A;
    --kmc-gold: #C9A24D;
    --kmc-gold-light: #E4C875;
    --kmc-ivory: #F8F4EC;
    --kmc-white: #FFFFFF;
    --kmc-text: #292929;
    --kmc-border: #E6D9C4;
}

/* RESET */
.kmc-header,
.kmc-header * {
    box-sizing: border-box;
}

.kmc-header a {
    text-decoration: none;
}

/* HEADER */
.kmc-header {
    width: 100%;
    background: var(--kmc-white);
    border-bottom: 1px solid var(--kmc-border);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(74, 17, 26, 0.08);
}

/* CONTAINER */
.kmc-header-container {
    width: min(1380px, calc(100% - 50px));
    min-height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* LOGO */
.kmc-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.kmc-logo img {
    width: 245px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* NAVIGATION */
.kmc-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.kmc-nav-link,
.kmc-dropdown-btn {
    position: relative;
    border: 0;
    background: transparent;
    color: var(--kmc-text);
    padding: 12px 15px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.kmc-nav-link::after,
.kmc-dropdown-btn::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    left: 50%;
    bottom: 3px;
    background: var(--kmc-gold);
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.kmc-nav-link:hover,
.kmc-dropdown-btn:hover,
.kmc-nav-link.active {
    color: var(--kmc-burgundy);
}

.kmc-nav-link:hover::after,
.kmc-nav-link.active::after,
.kmc-dropdown-btn:hover::after {
    width: 65%;
}

/* DROPDOWN */
.kmc-nav-dropdown {
    position: relative;
}

.kmc-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.kmc-dropdown-btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.kmc-nav-dropdown:hover .kmc-dropdown-btn svg {
    transform: rotate(180deg);
}

.kmc-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 245px;
    padding: 10px;
    background: var(--kmc-white);
    border: 1px solid var(--kmc-border);
    border-top: 3px solid var(--kmc-burgundy);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 15px 35px rgba(74, 17, 26, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
}

.kmc-nav-dropdown:hover .kmc-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.kmc-dropdown-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: 7px;
    color: var(--kmc-text);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
}

.kmc-dropdown-menu a:hover {
    background: var(--kmc-ivory);
    color: var(--kmc-burgundy);
    padding-left: 18px;
}

/* HEADER ACTIONS */
.kmc-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* CALL BOX */
.kmc-call-box {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--kmc-burgundy);
    padding: 7px 12px;
    border: 1px solid var(--kmc-border);
    border-radius: 10px;
    background: var(--kmc-ivory);
    transition: 0.3s ease;
}

.kmc-call-box:hover {
    border-color: var(--kmc-gold);
    transform: translateY(-2px);
}

.kmc-call-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--kmc-burgundy);
    color: var(--kmc-gold-light);
    display: grid;
    place-items: center;
}

.kmc-call-icon svg {
    width: 19px;
    height: 19px;
}

.kmc-call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.kmc-call-text small {
    color: #777;
    font-size: 10px;
    font-weight: 600;
}

.kmc-call-text strong {
    color: var(--kmc-burgundy-dark);
    font-size: 14px;
    font-weight: 800;
}

/* WHATSAPP */
.kmc-whatsapp-btn {
    min-height: 52px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 9px;
    background: var(--kmc-burgundy);
    color: var(--kmc-white);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--kmc-burgundy);
    transition: 0.3s ease;
}

.kmc-whatsapp-btn svg {
    width: 21px;
    height: 21px;
}

.kmc-whatsapp-btn:hover {
    background: var(--kmc-burgundy-dark);
    border-color: var(--kmc-gold);
    color: var(--kmc-gold-light);
    transform: translateY(-2px);
}

/* MOBILE MENU BUTTON */
.kmc-menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid var(--kmc-border);
    border-radius: 9px;
    background: var(--kmc-ivory);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.kmc-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--kmc-burgundy);
    border-radius: 10px;
    transition: 0.3s ease;
}

/* MOBILE MENU */
.kmc-mobile-menu {
    display: none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1150px) {

    .kmc-header-container {
        width: min(100% - 30px, 1100px);
        gap: 15px;
    }

    .kmc-logo img {
        width: 210px;
    }

    .kmc-nav-link,
    .kmc-dropdown-btn {
        padding: 10px 9px;
        font-size: 14px;
    }

    .kmc-call-text {
        display: none;
    }

    .kmc-call-box {
        padding: 6px;
    }

    .kmc-whatsapp-btn {
        padding: 0 13px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .kmc-header-container {
        min-height: 72px;
        width: calc(100% - 28px);
        justify-content: space-between;
    }

    .kmc-logo img {
        width: 190px;
    }

    .kmc-nav,
    .kmc-header-actions {
        display: none;
    }

    .kmc-menu-toggle {
        display: flex;
    }

    .kmc-mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        background: var(--kmc-white);
        border-top: 1px solid transparent;
        transition:
            max-height 0.4s ease,
            border-color 0.3s ease,
            padding 0.3s ease;
    }

    .kmc-mobile-menu.kmc-open {
        max-height: 700px;
        border-top-color: var(--kmc-border);
        padding: 8px 14px 18px;
    }

    .kmc-mobile-menu > a,
    .kmc-mobile-service-btn {
        width: 100%;
        min-height: 49px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
        color: var(--kmc-text);
        background: transparent;
        border: 0;
        border-bottom: 1px solid #eee6da;
        font-family: Arial, sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-align: left;
    }

    .kmc-mobile-menu > a:hover,
    .kmc-mobile-service-btn:hover {
        color: var(--kmc-burgundy);
    }

    .kmc-mobile-service-btn svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
    }

    .kmc-mobile-service-btn.kmc-sub-open svg {
        transform: rotate(180deg);
    }

    /* MOBILE SUBMENU */
    .kmc-mobile-submenu {
        max-height: 0;
        overflow: hidden;
        background: var(--kmc-ivory);
        border-radius: 8px;
        transition: max-height 0.35s ease;
    }

    .kmc-mobile-submenu.kmc-sub-open {
        max-height: 400px;
        margin: 5px 0;
    }

    .kmc-mobile-submenu a {
        display: block;
        padding: 11px 16px;
        color: #444;
        border-bottom: 1px solid #e8dfd1;
        font-size: 14px;
        font-weight: 600;
    }

    .kmc-mobile-submenu a:last-child {
        border-bottom: 0;
    }

    .kmc-mobile-submenu a:hover {
        color: var(--kmc-burgundy);
        background: #fff;
    }

    /* MOBILE BUTTONS */
    .kmc-mobile-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding-top: 16px;
    }

    .kmc-mobile-call,
    .kmc-mobile-whatsapp {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border-radius: 8px;
        font-family: Arial, sans-serif;
        font-size: 14px;
        font-weight: 700;
    }

    .kmc-mobile-call {
        color: var(--kmc-white);
        background: var(--kmc-burgundy);
    }

    .kmc-mobile-whatsapp {
        color: var(--kmc-white);
        background: #25D366;
    }

    .kmc-mobile-call svg,
    .kmc-mobile-whatsapp svg {
        width: 19px;
        height: 19px;
    }

}

/* SMALL MOBILE */
@media (max-width: 430px) {

    .kmc-header-container {
        width: calc(100% - 20px);
    }

    .kmc-logo img {
        width: 165px;
    }

    .kmc-menu-toggle {
        width: 43px;
        height: 43px;
    }

    .kmc-mobile-actions {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   KMC SOFA REPAIR - HERO SECTION
   Unique prefix: kmc-hero
========================================================= */

.kmc-hero,
.kmc-hero * {
    box-sizing: border-box;
}

.kmc-hero {
    position: relative;
    width: 100%;
    min-height: 680px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #4A111A 0%,
            #651924 45%,
            #7A1F2B 100%
        );
    isolation: isolate;
}

/* SOFT BACKGROUND SHAPE */

.kmc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .16;
    background:
        radial-gradient(
            circle at 75% 40%,
            #E4C875 0,
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 85%,
            #C9A24D 0,
            transparent 25%
        );
}

/* CONTAINER */

.kmc-hero-container {
    width: min(1380px, calc(100% - 60px));
    min-height: 680px;
    margin: auto;
    padding: 70px 0 80px;

    display: grid;
    grid-template-columns:
        minmax(0, 1.03fr)
        minmax(450px, .97fr);

    align-items: center;
    gap: 70px;
}

/* CONTENT */

.kmc-hero-content {
    position: relative;
    z-index: 2;
}

/* BADGE */

.kmc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;
    margin-bottom: 20px;

    border: 1px solid rgba(228, 200, 117, .65);
    border-radius: 100px;

    color: #F7E6B0;
    background: rgba(255,255,255,.07);

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
}

.kmc-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E4C875;
    box-shadow: 0 0 0 5px rgba(228,200,117,.12);
}

/* HEADING */

.kmc-hero h1 {
    max-width: 720px;
    margin: 0;

    color: #FFFFFF;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: clamp(43px, 5vw, 70px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -2px;
}

.kmc-hero h1 span {
    display: inline-block;
    color: #E4C875;
    position: relative;
}

.kmc-hero h1 span::after {
    content: "";
    position: absolute;
    height: 4px;
    width: 72%;
    left: 0;
    bottom: -7px;
    background: #C9A24D;
    border-radius: 20px;
}

/* SUBTITLE */

.kmc-hero-subtitle {
    max-width: 680px;
    margin: 27px 0 24px;

    color: rgba(255,255,255,.84);

    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.75;
}

/* SERVICE PILLS */

.kmc-hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 30px;
}

.kmc-service-pill {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 8px 12px;

    border: 1px solid rgba(228,200,117,.35);
    border-radius: 6px;

    background: rgba(255,255,255,.07);
    color: #FFFFFF;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.kmc-service-pill span {
    color: #E4C875;
    font-weight: 900;
}

/* BUTTONS */

.kmc-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.kmc-hero-call,
.kmc-hero-whatsapp {
    min-height: 54px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 8px;

    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.kmc-hero-call svg,
.kmc-hero-whatsapp svg {
    width: 21px;
    height: 21px;
}

/* CALL */

.kmc-hero-call {
    color: #4A111A;
    background: #E4C875;
    border: 1px solid #E4C875;
}

.kmc-hero-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,.22);
    background: #F0D78F;
}

/* WHATSAPP */

.kmc-hero-whatsapp {
    color: #FFFFFF;
    background: transparent;
    border: 1px solid rgba(255,255,255,.55);
}

.kmc-hero-whatsapp:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.1);
    border-color: #E4C875;
    color: #E4C875;
}

/* TRUST ROW */

.kmc-hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 31px;
}

.kmc-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255,255,255,.88);

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.kmc-trust-item strong {
    display: grid;
    place-items: center;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    color: #4A111A;
    background: #E4C875;

    font-size: 11px;
}

.kmc-trust-line {
    width: 1px;
    height: 20px;
    background: rgba(228,200,117,.35);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.kmc-hero-visual {
    position: relative;
    min-width: 0;
    padding: 15px;
}

/* IMAGE FRAME */

.kmc-image-frame {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / .88;

    overflow: hidden;

    border-radius: 20px;

    border: 7px solid rgba(255,255,255,.95);

    background: #FFFFFF;

    box-shadow:
        0 25px 70px rgba(0,0,0,.32);
}

.kmc-image-frame::before {
    content: "";
    position: absolute;
    inset: 0;

    z-index: 2;

    border: 1px solid rgba(201,162,77,.65);
    border-radius: 13px;

    pointer-events: none;
}

.kmc-image-frame img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .6s ease;
}

.kmc-image-frame:hover img {
    transform: scale(1.04);
}

.kmc-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(74,17,26,.28)
        );

    pointer-events: none;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.kmc-hero-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 11px;

    min-width: 210px;

    padding: 12px 15px;

    border: 1px solid rgba(201,162,77,.45);
    border-radius: 11px;

    background: rgba(255,255,255,.96);

    box-shadow:
        0 14px 35px rgba(0,0,0,.20);

    z-index: 4;

    font-family: Arial, sans-serif;
}

.kmc-card-top {
    top: 40px;
    left: -10px;
}

.kmc-card-bottom {
    right: -8px;
    bottom: 35px;
}

.kmc-card-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #7A1F2B;
    color: #E4C875;

    font-size: 18px;
    font-weight: 900;
}

.kmc-hero-card strong {
    display: block;

    color: #4A111A;

    font-size: 12px;
    font-weight: 800;
}

.kmc-hero-card small {
    display: block;

    margin-top: 3px;

    color: #777;

    font-size: 10px;
}


/* =========================================================
   DECORATIVE BOTTOM
========================================================= */

.kmc-hero-wave {
    position: absolute;
    bottom: -45px;
    left: -2%;
    width: 104%;
    height: 90px;

    background: #F8F4EC;

    border-radius: 50% 50% 0 0 / 45% 45% 0 0;

    z-index: 5;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .kmc-hero-container {
        width: min(100% - 40px, 1000px);
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .kmc-hero h1 {
        font-size: clamp(40px, 5vw, 56px);
    }

    .kmc-hero-subtitle {
        font-size: 15px;
        line-height: 1.65;
    }

    .kmc-card-top {
        left: -5px;
    }

    .kmc-card-bottom {
        right: -5px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .kmc-hero {
        min-height: auto;
    }

    .kmc-hero-container {
        width: calc(100% - 28px);

        display: flex;
        flex-direction: column;

        gap: 40px;

        padding: 45px 0 85px;
    }

    .kmc-hero-content {
        width: 100%;
        text-align: center;
    }

    .kmc-hero-badge {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .kmc-hero h1 {
        max-width: 650px;
        margin: auto;

        font-size: clamp(37px, 10vw, 52px);
        line-height: 1.08;
        letter-spacing: -1.5px;
    }

    .kmc-hero h1 span::after {
        height: 3px;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
    }

    .kmc-hero-subtitle {
        max-width: 620px;
        margin: 22px auto;

        font-size: 14px;
        line-height: 1.7;
    }

    .kmc-hero-services {
        justify-content: center;
    }

    .kmc-hero-buttons {
        justify-content: center;
    }

    .kmc-hero-trust {
        justify-content: center;
    }

    .kmc-hero-visual {
        width: min(100%, 650px);
        margin: auto;
        padding: 10px;
    }

    .kmc-image-frame {
        aspect-ratio: 1 / .78;
    }

    .kmc-card-top {
        top: 25px;
        left: -3px;
    }

    .kmc-card-bottom {
        right: -3px;
        bottom: 22px;
    }

    .kmc-hero-wave {
        bottom: -35px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .kmc-hero-container {
        width: calc(100% - 20px);
        padding-top: 35px;
    }

    .kmc-hero-badge {
        padding: 8px 11px;
        font-size: 10px;
    }

    .kmc-hero h1 {
        font-size: 35px;
    }

    .kmc-hero-subtitle {
        font-size: 13px;
    }

    .kmc-service-pill {
        padding: 7px 9px;
        font-size: 10px;
    }

    .kmc-hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .kmc-hero-call,
    .kmc-hero-whatsapp {
        width: 100%;
        min-height: 52px;
    }

    .kmc-hero-trust {
        gap: 9px;
    }

    .kmc-trust-line {
        display: none;
    }

    .kmc-trust-item {
        font-size: 9px;
    }

    .kmc-hero-visual {
        width: 100%;
        padding: 7px;
    }

    .kmc-image-frame {
        aspect-ratio: 1 / .9;
        border-width: 5px;
        border-radius: 15px;
    }

    .kmc-hero-card {
        min-width: 0;
        padding: 8px 9px;
        gap: 7px;
    }

    .kmc-card-top {
        top: 15px;
        left: -2px;
    }

    .kmc-card-bottom {
        right: -2px;
        bottom: 15px;
    }

    .kmc-card-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .kmc-hero-card strong {
        font-size: 9px;
    }

    .kmc-hero-card small {
        font-size: 8px;
    }
}

/* =========================================================
   KMC SERVICES SECTION
   Unique Prefix: kmc-services
========================================================= */

.kmc-services,
.kmc-services * {
    box-sizing: border-box;
}

.kmc-services {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    background: #F8F4EC;
    overflow: hidden;
}

/* DECORATIVE BACKGROUND */

.kmc-services::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(122,31,43,.055);
    top: -170px;
    right: -120px;
}

.kmc-services::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(228,200,117,.10);
    bottom: -150px;
    left: -100px;
}

.kmc-services-container {
    position: relative;
    z-index: 2;
    width: min(1250px, 100%);
    margin: auto;
}


/* =========================================================
   HEADING
========================================================= */

.kmc-services-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.kmc-services-tag {
    display: inline-block;

    padding: 7px 15px;
    margin-bottom: 14px;

    border: 1px solid rgba(122,31,43,.25);
    border-radius: 50px;

    color: #7A1F2B;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.kmc-services-heading h2 {
    margin: 0;

    color: #321017;

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 900;
}

.kmc-services-heading h2 span {
    color: #9A2837;
}

.kmc-services-heading p {
    max-width: 650px;
    margin: 18px auto 0;

    color: #6E5D5D;

    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   GRID
========================================================= */

.kmc-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.kmc-service-card {
    position: relative;

    min-height: 330px;
    padding: 30px 25px 27px;

    overflow: hidden;

    background: #FFFFFF;

    border: 1px solid rgba(122,31,43,.12);
    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(55,20,25,.055);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.kmc-service-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #9A2837;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .3s ease;
}

.kmc-service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(201,162,77,.55);

    box-shadow:
        0 20px 45px rgba(55,20,25,.12);
}

.kmc-service-card:hover::before {
    transform: scaleX(1);
}


/* NUMBER */

.kmc-service-number {
    position: absolute;
    top: 17px;
    right: 19px;

    color: rgba(122,31,43,.10);

    font-family: Arial, sans-serif;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}


/* ICON */

.kmc-service-icon {
    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 12px;

    background: #F7EFD8;
    color: #7A1F2B;

    transition:
        background .3s ease,
        color .3s ease;
}

.kmc-service-card:hover .kmc-service-icon {
    background: #7A1F2B;
    color: #E4C875;
}

.kmc-service-icon svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* TITLE */

.kmc-service-card h3 {
    margin: 0 0 11px;

    color: #3C171D;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 800;
}


/* DESCRIPTION */

.kmc-service-card p {
    margin: 0;

    color: #706464;

    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.7;
}


/* LINK */

.kmc-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 20px;

    color: #8A2635;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;

    text-decoration: none;

    transition: gap .25s ease;
}

.kmc-service-card a span {
    color: #C49A3A;
    font-size: 18px;
    line-height: 10px;
}

.kmc-service-card a:hover {
    gap: 13px;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.kmc-services-cta {
    margin-top: 35px;

    padding: 25px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    border-radius: 14px;

    background:
        linear-gradient(
            110deg,
            #581521,
            #7A1F2B
        );

    box-shadow:
        0 15px 35px rgba(74,17,26,.16);
}

.kmc-services-cta-text span {
    display: block;

    margin-bottom: 5px;

    color: #E4C875;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.kmc-services-cta-text strong {
    display: block;

    color: #FFFFFF;

    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.kmc-services-cta-btn {
    flex-shrink: 0;

    min-height: 48px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 7px;

    background: #E4C875;
    color: #4A111A;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease;
}

.kmc-services-cta-btn:hover {
    transform: translateY(-2px);
    background: #F0D78F;
}

.kmc-services-cta-btn svg {
    width: 18px;
    height: 18px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .kmc-services {
        padding: 80px 20px;
    }

    .kmc-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kmc-service-card {
        min-height: 300px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .kmc-services {
        padding: 70px 14px;
    }

    .kmc-services-heading {
        margin-bottom: 38px;
    }

    .kmc-services-heading h2 {
        font-size: 37px;
    }

    .kmc-services-heading p {
        font-size: 13px;
        line-height: 1.7;
    }

    .kmc-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .kmc-service-card {
        min-height: auto;
        padding: 25px 21px 23px;
    }

    .kmc-service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
    }

    .kmc-service-icon svg {
        width: 30px;
        height: 30px;
    }

    .kmc-service-card h3 {
        font-size: 18px;
    }

    .kmc-service-card p {
        font-size: 12px;
    }

    .kmc-services-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 24px 18px;
    }

    .kmc-services-cta-btn {
        width: 100%;
    }
}

/* =====================================================
   KMC GALLERY
   Unique Prefix: kmc-gallery-
===================================================== */

.kmc-gallery,
.kmc-gallery *,
.kmc-gallery-lightbox,
.kmc-gallery-lightbox * {
    box-sizing: border-box;
}


/* =====================================================
   MAIN SECTION
===================================================== */

.kmc-gallery {
    width: 100%;
    padding: 95px 20px;

    background: #F8F4EC;

    position: relative;
    overflow: hidden;
}


/* Decorative background */

.kmc-gallery::before {
    content: "";
    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background: rgba(122, 31, 43, 0.045);

    top: -180px;
    left: -130px;

    pointer-events: none;
}

.kmc-gallery::after {
    content: "";
    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: rgba(228, 200, 117, 0.09);

    bottom: -150px;
    right: -100px;

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.kmc-gallery-container {
    width: min(1280px, 100%);
    margin: auto;

    position: relative;
    z-index: 2;
}


/* =====================================================
   HEADING
===================================================== */

.kmc-gallery-heading {
    text-align: center;
    margin-bottom: 48px;
}

.kmc-gallery-heading span {
    display: inline-block;

    margin-bottom: 8px;

    color: #9A2837;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.kmc-gallery-heading h2 {
    margin: 0;

    color: #35151B;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 700;
}

.kmc-gallery-heading h2 strong {
    color: #9A2837;
    font-weight: 700;
}


/* =====================================================
   GALLERY GRID
===================================================== */

.kmc-gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* =====================================================
   IMAGE ITEM
===================================================== */

.kmc-gallery-item {
    position: relative;

    display: block;

    width: 100%;
    padding: 0;

    border: 2px solid rgba(201, 162, 77, .55);
    border-radius: 13px;

    overflow: hidden;

    background: #FFFFFF;

    cursor: pointer;

    aspect-ratio: 1.38 / 1;

    box-shadow:
        0 7px 22px rgba(53, 21, 27, .07);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* Image */

.kmc-gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .55s ease;
}


/* Hover */

.kmc-gallery-item:hover {
    transform: translateY(-5px);

    border-color: #C9A24D;

    box-shadow:
        0 17px 35px rgba(53, 21, 27, .15);
}

.kmc-gallery-item:hover img {
    transform: scale(1.06);
}


/* =====================================================
   LIGHTBOX
===================================================== */

.kmc-gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 55px 80px;

    background:
        rgba(20, 12, 14, .94);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.kmc-gallery-lightbox.kmc-gallery-active {
    opacity: 1;
    visibility: visible;
}


/* =====================================================
   SLIDER IMAGE WRAPPER
===================================================== */

.kmc-gallery-slider {
    position: relative;

    width: min(1100px, 88vw);
    height: min(78vh, 760px);

    display: flex;
    align-items: center;
    justify-content: center;

    animation: kmcGalleryZoom .3s ease;
}

@keyframes kmcGalleryZoom {

    from {
        opacity: 0;
        transform: scale(.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


/* MAIN IMAGE */

.kmc-gallery-slider img {
    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    display: block;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
        0 20px 70px rgba(0,0,0,.45);
}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.kmc-gallery-close {
    position: absolute;

    top: 20px;
    right: 28px;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #FFFFFF;

    font-size: 35px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;
}

.kmc-gallery-close:hover {
    background: #9A2837;
    transform: rotate(90deg);
}


/* =====================================================
   PREVIOUS / NEXT
===================================================== */

.kmc-gallery-prev,
.kmc-gallery-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #FFFFFF;

    font-size: 24px;

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.kmc-gallery-prev {
    left: 25px;
}

.kmc-gallery-next {
    right: 25px;
}

.kmc-gallery-prev:hover,
.kmc-gallery-next:hover {
    background: #9A2837;
    border-color: #E4C875;
}

.kmc-gallery-prev:hover {
    transform: translateY(-50%) translateX(-3px);
}

.kmc-gallery-next:hover {
    transform: translateY(-50%) translateX(3px);
}


/* =====================================================
   COUNTER
===================================================== */

.kmc-gallery-counter {
    position: absolute;

    left: 50%;
    bottom: -38px;

    transform: translateX(-50%);

    padding: 7px 13px;

    border-radius: 30px;

    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);

    color: rgba(255,255,255,.9);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .kmc-gallery {
        padding: 80px 18px;
    }

    .kmc-gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 17px;
    }

    .kmc-gallery-slider {
        width: 82vw;
        height: 72vh;
    }

    .kmc-gallery-prev {
        left: 15px;
    }

    .kmc-gallery-next {
        right: 15px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .kmc-gallery {
        padding: 65px 12px;
    }

    .kmc-gallery-heading {
        margin-bottom: 32px;
    }

    .kmc-gallery-heading h2 {
        font-size: 39px;
    }

    .kmc-gallery-heading span {
        font-size: 9px;
        letter-spacing: 2px;
    }


    /* 2 images per row */

    .kmc-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 11px;
    }

    .kmc-gallery-item {
        border-radius: 9px;
        border-width: 1.5px;
        aspect-ratio: 1.15 / 1;
    }

    .kmc-gallery-item:hover {
        transform: none;
    }


    /* LIGHTBOX */

    .kmc-gallery-lightbox {
        padding: 60px 12px;
    }

    .kmc-gallery-slider {
        width: 100%;
        height: 70vh;
    }

    .kmc-gallery-slider img {
        max-width: 100%;
        max-height: 100%;

        border-radius: 5px;
    }


    /* BUTTONS */

    .kmc-gallery-prev,
    .kmc-gallery-next {
        width: 43px;
        height: 43px;

        font-size: 19px;

        background: rgba(0,0,0,.35);
    }

    .kmc-gallery-prev {
        left: 8px;
    }

    .kmc-gallery-next {
        right: 8px;
    }


    /* CLOSE */

    .kmc-gallery-close {
        top: 12px;
        right: 14px;

        width: 42px;
        height: 42px;

        font-size: 29px;
    }


    .kmc-gallery-counter {
        bottom: -34px;
        font-size: 10px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .kmc-gallery-grid {
        gap: 8px;
    }

    .kmc-gallery-heading h2 {
        font-size: 34px;
    }

}

/* =====================================================
   KMC PREMIUM CTA
   Unique Prefix: kmc-cta
===================================================== */

.kmc-cta,
.kmc-cta * {
    box-sizing: border-box;
}

.kmc-cta {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 90px 20px;

    background:
        linear-gradient(
            125deg,
            #481019 0%,
            #671A26 48%,
            #7D2432 100%
        );
}


/* BACKGROUND DECORATION */

.kmc-cta::before {
    content: "";
    position: absolute;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    border: 1px solid rgba(228,200,117,.16);

    right: -230px;
    top: -250px;
}

.kmc-cta::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(228,200,117,.035);

    left: -180px;
    bottom: -190px;
}


/* CONTAINER */

.kmc-cta-container {
    position: relative;
    z-index: 2;

    width: min(1200px, 100%);
    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, .85fr);

    align-items: center;

    gap: 70px;
}


/* =====================================================
   CONTENT
===================================================== */

.kmc-cta-content {
    max-width: 700px;
}

.kmc-cta-eyebrow {
    display: inline-block;

    margin-bottom: 17px;

    color: #E4C875;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;
}


.kmc-cta h2 {
    margin: 0;

    color: #FFFFFF;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1px;
}


.kmc-cta h2 span {
    display: block;

    color: #E4C875;

    font-style: italic;
}


.kmc-cta-content > p {
    max-width: 650px;

    margin: 23px 0 25px;

    color: rgba(255,255,255,.78);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.75;
}


/* =====================================================
   POINTS
===================================================== */

.kmc-cta-points {
    display: flex;
    flex-wrap: wrap;

    gap: 22px;

    margin-bottom: 30px;
}

.kmc-cta-points div {
    display: flex;
    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,.92);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
    font-weight: 700;
}

.kmc-cta-points span {
    display: grid;
    place-items: center;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    color: #4A111A;
    background: #E4C875;

    font-size: 11px;
    font-weight: 900;
}


/* =====================================================
   BUTTONS
===================================================== */

.kmc-cta-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.kmc-cta-call,
.kmc-cta-whatsapp {
    min-height: 54px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 7px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.kmc-cta-call svg,
.kmc-cta-whatsapp svg {
    width: 20px;
    height: 20px;
}


/* CALL */

.kmc-cta-call {
    color: #4A111A;

    background: #E4C875;

    border: 1px solid #E4C875;
}

.kmc-cta-call:hover {
    transform: translateY(-3px);

    background: #F0D78F;

    box-shadow:
        0 12px 30px rgba(0,0,0,.22);
}


/* WHATSAPP */

.kmc-cta-whatsapp {
    color: #FFFFFF;

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.42);
}

.kmc-cta-whatsapp:hover {
    transform: translateY(-3px);

    color: #E4C875;

    border-color: #E4C875;

    background: rgba(255,255,255,.1);
}


/* =====================================================
   RIGHT VISUAL
===================================================== */

.kmc-cta-visual {
    position: relative;

    min-height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* BIG CIRCLE */

.kmc-cta-circle {
    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(228,200,117,.18),
            rgba(228,200,117,.025) 68%,
            transparent 70%
        );

    border: 1px solid rgba(228,200,117,.3);
}


/* GOLD RING */

.kmc-cta-gold-ring {
    position: absolute;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    border: 1px solid rgba(228,200,117,.18);

    transform: rotate(-15deg);
}


/* SOFA CARD */

.kmc-cta-sofa-card {
    position: relative;
    z-index: 3;

    width: 285px;

    padding: 38px 25px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    border: 1px solid rgba(228,200,117,.45);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.035)
        );

    backdrop-filter: blur(8px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.25);
}


.kmc-cta-sofa-icon {
    width: 88px;
    height: 88px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: #E4C875;

    color: #581521;

    box-shadow:
        0 10px 30px rgba(0,0,0,.2);
}


.kmc-cta-sofa-icon svg {
    width: 53px;
    height: 53px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.kmc-cta-sofa-card strong {
    color: #FFFFFF;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 22px;

    font-weight: 900;

    letter-spacing: 1px;
}


.kmc-cta-sofa-card small {
    margin-top: 7px;

    color: #E4C875;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 700;
}


/* =====================================================
   SMALL FLOATING CARD
===================================================== */

.kmc-cta-small-card {
    position: absolute;

    right: 0;
    bottom: 38px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 11px 15px;

    border-radius: 9px;

    background: #FFFFFF;

    box-shadow:
        0 15px 35px rgba(0,0,0,.25);
}


.kmc-cta-small-card > span {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #F7EFD8;

    color: #9A2837;

    font-size: 16px;
}


.kmc-cta-small-card strong {
    display: block;

    color: #42151C;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
}


.kmc-cta-small-card small {
    display: block;

    margin-top: 3px;

    color: #8A7777;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .kmc-cta {
        padding: 75px 20px;
    }

    .kmc-cta-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .kmc-cta-content {
        max-width: 750px;
        margin: auto;
        text-align: center;
    }

    .kmc-cta-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .kmc-cta-points,
    .kmc-cta-buttons {
        justify-content: center;
    }

    .kmc-cta-visual {
        width: 100%;
        max-width: 500px;
        margin: auto;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .kmc-cta {
        padding: 65px 15px;
    }

    .kmc-cta-eyebrow {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .kmc-cta h2 {
        font-size: 38px;
    }

    .kmc-cta-content > p {
        font-size: 13px;
        line-height: 1.7;
    }

    .kmc-cta-points {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .kmc-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .kmc-cta-call,
    .kmc-cta-whatsapp {
        width: 100%;
    }

    .kmc-cta-visual {
        min-height: 320px;
    }

    .kmc-cta-circle {
        width: 270px;
        height: 270px;
    }

    .kmc-cta-gold-ring {
        width: 315px;
        height: 315px;
    }

    .kmc-cta-sofa-card {
        width: 235px;
        padding: 28px 18px;
    }

    .kmc-cta-sofa-icon {
        width: 68px;
        height: 68px;
    }

    .kmc-cta-sofa-icon svg {
        width: 42px;
        height: 42px;
    }

    .kmc-cta-sofa-card strong {
        font-size: 18px;
    }

    .kmc-cta-small-card {
        right: 0;
        bottom: 15px;

        padding: 8px 10px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .kmc-cta h2 {
        font-size: 34px;
    }

    .kmc-cta-visual {
        min-height: 285px;
    }

    .kmc-cta-circle {
        width: 235px;
        height: 235px;
    }

    .kmc-cta-gold-ring {
        width: 275px;
        height: 275px;
    }

    .kmc-cta-sofa-card {
        width: 210px;
    }

    .kmc-cta-small-card {
        transform: scale(.88);
        transform-origin: right bottom;
    }

}

/* =====================================================
   KMC SOFA REPAIR - PREMIUM FOOTER
   Unique Prefix: kmc-footer-
===================================================== */

.kmc-footer,
.kmc-footer *,
.kmc-footer-sticky,
.kmc-footer-sticky * {
    box-sizing: border-box;
}


/* =====================================================
   TOP CTA
===================================================== */

.kmc-footer-cta {
    width: 100%;

    padding: 30px 20px;

    background: #E4C875;

    border-bottom: 1px solid rgba(70,15,25,.15);
}


.kmc-footer-cta-inner {
    width: min(1200px, 100%);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.kmc-footer-cta-text span {
    display: block;

    margin-bottom: 6px;

    color: #6B1825;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}


.kmc-footer-cta-text h2 {
    margin: 0;

    color: #351017;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;

    line-height: 1.15;
}


/* CTA BUTTONS */

.kmc-footer-cta-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}


.kmc-footer-call,
.kmc-footer-whatsapp {
    min-height: 47px;

    padding: 0 21px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 5px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;

    transition: .25s ease;
}


.kmc-footer-call svg {
    width: 18px;
    height: 18px;
}


.kmc-footer-call {
    color: #FFFFFF;

    background: #631927;

    border: 1px solid #631927;
}


.kmc-footer-call:hover {
    background: #421019;
    transform: translateY(-2px);
}


.kmc-footer-whatsapp {
    color: #631927;

    background: transparent;

    border: 1px solid #631927;
}


.kmc-footer-whatsapp:hover {
    color: #FFFFFF;

    background: #631927;

    transform: translateY(-2px);
}


/* =====================================================
   MAIN FOOTER
===================================================== */

.kmc-footer-main {
    position: relative;

    overflow: hidden;

    padding: 75px 20px 65px;

    background:
        linear-gradient(
            135deg,
            #351017 0%,
            #4C121C 50%,
            #5F1825 100%
        );
}


.kmc-footer-main::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(228,200,117,.1);

    right: -260px;
    top: -270px;
}


.kmc-footer-main::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(228,200,117,.025);

    left: -160px;
    bottom: -170px;
}


.kmc-footer-container {
    position: relative;
    z-index: 2;

    width: min(1200px, 100%);
    margin: auto;

    display: grid;

    grid-template-columns:
        1.45fr
        .75fr
        1fr
        1.2fr;

    gap: 50px;
}


/* =====================================================
   BRAND
===================================================== */

.kmc-footer-brand {
    max-width: 360px;
}


.kmc-footer-logo {
    display: inline-block;

    color: #FFFFFF;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    font-weight: 800;

    line-height: 1.05;

    text-decoration: none;

    letter-spacing: 1px;
}


.kmc-footer-logo span {
    display: block;

    margin-bottom: 3px;

    color: #E4C875;

    font-size: 38px;

    line-height: .85;

    letter-spacing: 2px;
}


.kmc-footer-brand p {
    margin: 23px 0 19px;

    color: rgba(255,255,255,.67);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    line-height: 1.8;
}


.kmc-footer-tagline {
    display: inline-block;

    padding: 7px 11px;

    border-left: 2px solid #E4C875;

    color: #E4C875;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =====================================================
   COLUMNS
===================================================== */

.kmc-footer-column h3 {
    position: relative;

    margin: 0 0 22px;

    padding-bottom: 11px;

    color: #FFFFFF;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;
}


.kmc-footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 34px;
    height: 2px;

    background: #E4C875;
}


.kmc-footer-column ul {
    list-style: none;

    padding: 0;
    margin: 0;
}


.kmc-footer-column li {
    margin-bottom: 11px;
}


.kmc-footer-column li a {
    position: relative;

    color: rgba(255,255,255,.62);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    text-decoration: none;

    transition: .2s ease;
}


.kmc-footer-column li a::before {
    content: "›";

    margin-right: 7px;

    color: #E4C875;

    font-size: 14px;
}


.kmc-footer-column li a:hover {
    color: #E4C875;

    padding-left: 3px;
}


/* =====================================================
   CONTACT
===================================================== */

.kmc-footer-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 20px;

    color: inherit;

    text-decoration: none;
}


.kmc-footer-icon {
    flex: 0 0 35px;

    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(228,200,117,.38);

    border-radius: 50%;

    color: #E4C875;

    background: rgba(228,200,117,.05);
}


.kmc-footer-icon svg {
    width: 17px;
    height: 17px;
}


.kmc-footer-contact-item small {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,.4);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.kmc-footer-contact-item strong {
    display: block;

    color: rgba(255,255,255,.84);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    line-height: 1.55;

    font-weight: 600;
}


.kmc-footer-contact-item:hover strong {
    color: #E4C875;
}


/* =====================================================
   BOTTOM BAR
===================================================== */

.kmc-footer-bottom {
    padding: 18px 20px;

    background: #280B11;

    border-top: 1px solid rgba(228,200,117,.12);
}


.kmc-footer-bottom-inner {
    width: min(1200px, 100%);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.kmc-footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,.42);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;
}


.kmc-footer-bottom strong {
    color: rgba(255,255,255,.7);
}


/* =====================================================
   STICKY MOBILE CTA
===================================================== */

.kmc-footer-sticky {
    display: none;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .kmc-footer-container {
        grid-template-columns:
            1fr 1fr;

        gap: 45px 35px;
    }

    .kmc-footer-brand {
        max-width: 500px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .kmc-footer-cta {
        padding: 28px 16px;
    }


    .kmc-footer-cta-inner {
        flex-direction: column;

        text-align: center;

        gap: 18px;
    }


    .kmc-footer-cta-text h2 {
        font-size: 25px;
    }


    .kmc-footer-cta-buttons {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;
    }


    .kmc-footer-call,
    .kmc-footer-whatsapp {
        width: 100%;

        padding: 0 10px;
    }


    .kmc-footer-main {
        padding: 60px 18px 85px;
    }


    .kmc-footer-container {
        grid-template-columns: 1fr;

        gap: 38px;
    }


    .kmc-footer-brand {
        max-width: none;
    }


    .kmc-footer-brand p {
        max-width: 500px;
    }


    .kmc-footer-column h3 {
        margin-bottom: 18px;
    }


    .kmc-footer-bottom {
        padding: 17px 18px 75px;
    }


    .kmc-footer-bottom-inner {
        flex-direction: column;

        text-align: center;

        gap: 6px;
    }


    /* STICKY BAR */

    .kmc-footer-sticky {
        position: fixed;

        display: grid;

        grid-template-columns: 1fr 1fr;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 9999;

        height: 58px;

        background: #351017;

        box-shadow:
            0 -5px 20px rgba(0,0,0,.18);
    }


    .kmc-footer-sticky a {
        display: flex;

        align-items: center;
        justify-content: center;

        gap: 7px;

        color: #FFFFFF;

        font-family: Arial, Helvetica, sans-serif;

        font-size: 12px;
        font-weight: 800;

        text-decoration: none;
    }


    .kmc-footer-sticky a:first-child {
        background: #631927;

        border-right: 1px solid
            rgba(228,200,117,.25);
    }


    .kmc-footer-sticky a:last-child {
        color: #351017;

        background: #E4C875;
    }


    .kmc-footer-sticky svg {
        width: 18px;
        height: 18px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .kmc-footer-cta-buttons {
        grid-template-columns: 1fr;
    }

    .kmc-footer-logo span {
        font-size: 34px;
    }

}

/* =====================================================
   KMC PREMIUM ABOUT SECTION
   Unique Prefix: kmc-about-
===================================================== */

.kmc-about,
.kmc-about *,
.kmc-about *::before,
.kmc-about *::after {
    box-sizing: border-box;
}


/* =====================================================
   MAIN SECTION
===================================================== */

.kmc-about {
    position: relative;

    width: 100%;

    padding: 110px 20px 75px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #FBF7EF 0%,
            #F5EEE1 100%
        );

    color: #351017;
}


/* =====================================================
   BACKGROUND DECORATIONS
===================================================== */

.kmc-about::before {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    border-radius: 50%;

    border: 1px solid rgba(126, 36, 50, .08);

    left: -300px;
    top: -210px;

    pointer-events: none;
}


.kmc-about::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(228, 200, 117, .16),
            transparent 68%
        );

    right: -190px;
    bottom: -220px;

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.kmc-about-container {
    position: relative;

    z-index: 2;

    width: min(1240px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, .92fr)
        minmax(0, 1.08fr);

    align-items: center;

    gap: 85px;
}


/* =====================================================
   VISUAL AREA
===================================================== */

.kmc-about-visual {
    position: relative;

    min-width: 0;

    padding: 25px 30px 55px 15px;
}


/* Large background number */

.kmc-about-number {
    position: absolute;

    top: -5px;
    left: -5px;

    color: rgba(126, 36, 50, .055);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 150px;

    font-weight: 900;

    line-height: 1;

    z-index: 0;

    user-select: none;
}


/* =====================================================
   IMAGE
===================================================== */

.kmc-about-image-wrap {
    position: relative;

    z-index: 2;

    width: 100%;

    overflow: hidden;

    border-radius: 4px 55px 4px 55px;

    border: 7px solid #FFFFFF;

    box-shadow:
        0 25px 65px rgba(53, 16, 23, .17);

    background: #DDD;
}


.kmc-about-image-wrap img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 4 / 4.7;

    object-fit: cover;

    transition:
        transform .7s ease;
}


.kmc-about-image-wrap:hover img {
    transform: scale(1.04);
}


/* Image shine */

.kmc-about-image-shine {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            125deg,
            transparent 25%,
            rgba(255,255,255,.18) 48%,
            transparent 65%
        );

    transform:
        translateX(-120%);

    transition:
        transform .8s ease;

    pointer-events: none;
}


.kmc-about-image-wrap:hover
.kmc-about-image-shine {
    transform:
        translateX(120%);
}


/* =====================================================
   GOLD BADGE
===================================================== */

.kmc-about-badge {
    position: absolute;

    z-index: 5;

    left: -25px;
    bottom: 8px;

    width: 145px;
    height: 145px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #EFD58A,
            #C49A3D
        );

    box-shadow:
        0 16px 35px rgba(53,16,23,.2);
}


.kmc-about-badge::before {
    content: "";

    position: absolute;

    inset: 8px;

    border: 1px dashed #5B1721;

    border-radius: 50%;
}


.kmc-about-badge-inner {
    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    z-index: 2;
}


.kmc-about-badge-inner strong {
    color: #4B111A;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;

    line-height: 1;
}


.kmc-about-badge-inner span {
    margin-top: 5px;

    color: #4B111A;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.3px;
}


/* =====================================================
   FLOATING CARD
===================================================== */

.kmc-about-float {
    position: absolute;

    z-index: 6;

    right: -28px;
    top: 48%;

    transform:
        translateY(-50%);

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 17px 13px 12px;

    background: #FFFFFF;

    border: 1px solid rgba(126,36,50,.12);

    border-radius: 9px;

    box-shadow:
        0 15px 35px rgba(53,16,23,.13);

    animation:
        kmcAboutFloat 4s ease-in-out infinite;
}


@keyframes kmcAboutFloat {

    0%,
    100% {
        transform:
            translateY(-50%);
    }

    50% {
        transform:
            translateY(calc(-50% - 7px));
    }

}


.kmc-about-float-icon {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #571520;

    background: #F1DFAB;
}


.kmc-about-float-icon svg {
    width: 26px;
    height: 26px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.kmc-about-float strong {
    display: block;

    color: #351017;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 900;
}


.kmc-about-float span {
    display: block;

    margin-top: 3px;

    color: #907D7D;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 8px;
}


/* =====================================================
   CONTENT
===================================================== */

.kmc-about-content {
    min-width: 0;
}


.kmc-about-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #8B2737;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2.5px;
}


.kmc-about-eyebrow span {
    width: 35px;
    height: 2px;

    background: #C49A3D;
}


/* =====================================================
   HEADING
===================================================== */

.kmc-about-content h2 {
    max-width: 650px;

    margin: 0;

    color: #351017;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(45px, 5vw, 70px);

    line-height: 1.03;

    letter-spacing: -2px;

    font-weight: 700;
}


.kmc-about-content h2 em {
    color: #8B2737;

    font-style: italic;

    font-weight: 500;
}


/* =====================================================
   HIGHLIGHT LINE
===================================================== */

.kmc-about-highlight {
    display: flex;

    align-items: center;

    gap: 13px;

    margin: 25px 0 22px;

    color: #8B2737;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    font-style: italic;
}


.kmc-about-highlight span {
    width: 45px;
    height: 1px;

    flex: 0 0 45px;

    background: #C49A3D;
}


/* =====================================================
   PARAGRAPHS
===================================================== */

.kmc-about-content > p {
    max-width: 670px;

    margin: 0 0 16px;

    color: #6D5B5D;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    line-height: 1.85;
}


.kmc-about-content > p strong {
    color: #571520;

    font-weight: 800;
}


/* =====================================================
   FEATURES
===================================================== */

.kmc-about-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px 15px;

    margin-top: 27px;

    max-width: 680px;
}


.kmc-about-feature {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 12px;

    border: 1px solid rgba(126,36,50,.09);

    background:
        rgba(255,255,255,.55);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.kmc-about-feature:hover {
    transform: translateY(-3px);

    background: #FFFFFF;

    box-shadow:
        0 10px 25px rgba(53,16,23,.08);
}


.kmc-about-feature-icon {
    flex: 0 0 31px;

    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #E4C875;

    color: #4C111A;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    font-weight: 900;
}


.kmc-about-feature strong {
    display: block;

    color: #351017;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    font-weight: 900;
}


.kmc-about-feature span {
    display: block;

    margin-top: 3px;

    color: #968587;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 8px;
}


/* =====================================================
   BOTTOM AREA
===================================================== */

.kmc-about-bottom {
    display: flex;

    align-items: center;

    gap: 28px;

    margin-top: 30px;
}


/* Button */

.kmc-about-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    min-height: 48px;

    padding: 0 18px 0 21px;

    color: #FFFFFF;

    background: #671B28;

    border: 1px solid #671B28;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;

    letter-spacing: .4px;

    transition: .25s ease;
}


.kmc-about-btn span {
    display: grid;
    place-items: center;

    width: 25px;
    height: 25px;

    border-radius: 50%;

    color: #4D111A;

    background: #E4C875;

    font-size: 14px;

    transition: transform .25s ease;
}


.kmc-about-btn:hover {
    background: #4C111A;

    box-shadow:
        0 10px 25px rgba(53,16,23,.17);

    transform: translateY(-2px);
}


.kmc-about-btn:hover span {
    transform: rotate(45deg);
}


/* Location */

.kmc-about-location {
    display: flex;

    align-items: center;

    gap: 9px;
}


.kmc-about-location svg {
    width: 25px;
    height: 25px;

    color: #9A2837;
}


.kmc-about-location small {
    display: block;

    color: #A08E8F;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}


.kmc-about-location strong {
    display: block;

    margin-top: 2px;

    color: #4C2A30;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;
}


/* =====================================================
   BOTTOM STATEMENT
===================================================== */

.kmc-about-statement {
    position: relative;

    z-index: 2;

    width: min(1240px, 100%);

    margin: 75px auto 0;

    padding-top: 25px;

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 14px;

    border-top: 1px solid rgba(126,36,50,.12);

    color: rgba(91,23,33,.42);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 3px;
}


.kmc-about-statement i {
    color: #C49A3D;

    font-style: normal;

    font-size: 10px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .kmc-about {
        padding: 85px 20px 65px;
    }

    .kmc-about-container {
        grid-template-columns: 1fr;

        gap: 65px;

        max-width: 760px;
    }

    .kmc-about-visual {
        width: min(600px, 100%);

        margin: auto;
    }

    .kmc-about-content {
        text-align: center;
    }

    .kmc-about-eyebrow,
    .kmc-about-highlight,
    .kmc-about-bottom {
        justify-content: center;
    }

    .kmc-about-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .kmc-about-features {
        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .kmc-about {
        padding: 70px 15px 55px;
    }


    .kmc-about-container {
        gap: 50px;
    }


    /* VISUAL */

    .kmc-about-visual {
        padding: 18px 18px 48px 5px;
    }


    .kmc-about-number {
        font-size: 95px;

        top: -5px;
        left: 0;
    }


    .kmc-about-image-wrap {
        border-width: 5px;

        border-radius: 3px 35px 3px 35px;
    }


    .kmc-about-image-wrap img {
        aspect-ratio: 1 / 1.15;
    }


    /* BADGE */

    .kmc-about-badge {
        width: 105px;
        height: 105px;

        left: -2px;
        bottom: 2px;
    }


    .kmc-about-badge::before {
        inset: 6px;
    }


    .kmc-about-badge-inner strong {
        font-size: 23px;
    }


    .kmc-about-badge-inner span {
        font-size: 6px;
    }


    /* FLOAT CARD */

    .kmc-about-float {
        right: -2px;

        padding: 9px 11px 9px 8px;

        gap: 8px;
    }


    .kmc-about-float-icon {
        width: 35px;
        height: 35px;

        flex-basis: 35px;
    }


    .kmc-about-float-icon svg {
        width: 21px;
        height: 21px;
    }


    .kmc-about-float strong {
        font-size: 9px;
    }


    .kmc-about-float span {
        font-size: 6px;
    }


    /* CONTENT */

    .kmc-about-eyebrow {
        font-size: 8px;

        letter-spacing: 1.7px;
    }


    .kmc-about-eyebrow span {
        width: 25px;
    }


    .kmc-about-content h2 {
        font-size: 42px;

        letter-spacing: -1px;
    }


    .kmc-about-highlight {
        font-size: 14px;

        line-height: 1.4;
    }


    .kmc-about-content > p {
        font-size: 12px;

        line-height: 1.8;
    }


    /* FEATURES */

    .kmc-about-features {
        grid-template-columns: 1fr;

        gap: 8px;

        margin-top: 22px;
    }


    .kmc-about-feature {
        padding: 10px;

        text-align: left;
    }


    /* BOTTOM */

    .kmc-about-bottom {
        flex-direction: column;

        gap: 20px;

        margin-top: 25px;
    }


    .kmc-about-btn {
        width: 100%;
    }


    /* STATEMENT */

    .kmc-about-statement {
        margin-top: 55px;

        gap: 8px;

        font-size: 6px;

        letter-spacing: 1.7px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .kmc-about-content h2 {
        font-size: 37px;
    }

    .kmc-about-highlight {
        font-size: 13px;
    }

    .kmc-about-badge {
        width: 92px;
        height: 92px;
    }

}

/* ==========================================
   KMC FLOATING ACTION BUTTONS
   Unique Prefix: kmc-float-
========================================== */

.kmc-float-actions,
.kmc-float-actions * {
    box-sizing: border-box;
}


.kmc-float-actions {
    position: fixed;

    right: 20px;
    bottom: 25px;

    z-index: 99999;

    display: flex;
    flex-direction: column;

    gap: 12px;
}


/* ==========================================
   BUTTON
========================================== */

.kmc-float-btn {
    position: relative;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0,0,0,.22);

    transition:
        transform .3s ease,
        width .3s ease,
        border-radius .3s ease,
        box-shadow .3s ease;
}


/* ICON */

.kmc-float-icon {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #FFFFFF;
}


.kmc-float-icon svg {
    width: 100%;
    height: 100%;

    display: block;
}


/* ==========================================
   CALL BUTTON
========================================== */

.kmc-float-call {
    background:
        linear-gradient(
            145deg,
            #7B1E2B,
            #4A1019
        );

    border: 2px solid #E4C875;
}


.kmc-float-call .kmc-float-icon svg {
    color: #FFFFFF;
}


/* ==========================================
   WHATSAPP BUTTON
========================================== */

.kmc-float-whatsapp {
    background: #25D366;

    border: 2px solid #FFFFFF;
}


.kmc-float-whatsapp .kmc-float-icon {
    color: #FFFFFF;
}


/* ==========================================
   HOVER
========================================== */

.kmc-float-btn:hover {
    width: 145px;

    border-radius: 30px;

    transform: translateX(-3px);

    box-shadow:
        0 12px 32px rgba(0,0,0,.28);
}


.kmc-float-label {
    position: absolute;

    left: 48px;

    white-space: nowrap;

    color: #FFFFFF;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;

    font-weight: 800;

    opacity: 0;

    transform: translateX(8px);

    pointer-events: none;

    transition:
        opacity .2s ease,
        transform .2s ease;
}


.kmc-float-btn:hover .kmc-float-label {
    opacity: 1;

    transform: translateX(0);
}


/* ==========================================
   PULSE EFFECT
========================================== */

.kmc-float-whatsapp::before,
.kmc-float-call::before {
    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.4);

    animation:
        kmcFloatPulse 2.2s infinite;
}


@keyframes kmcFloatPulse {

    0% {
        transform: scale(.9);

        opacity: .8;
    }

    70% {
        transform: scale(1.22);

        opacity: 0;
    }

    100% {
        transform: scale(1.22);

        opacity: 0;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .kmc-float-actions {
        right: 13px;
        bottom: 75px;

        gap: 10px;
    }


    .kmc-float-btn {
        width: 51px;
        height: 51px;
    }


    .kmc-float-icon {
        width: 23px;
        height: 23px;
    }


    /* Disable expanding hover on touch devices */

    .kmc-float-btn:hover {
        width: 51px;

        border-radius: 50%;

        transform: none;
    }


    .kmc-float-label {
        display: none;
    }

}


/* ==========================================
   VERY SMALL MOBILE
========================================== */

@media (max-width: 380px) {

    .kmc-float-actions {
        right: 10px;
        bottom: 68px;
    }


    .kmc-float-btn {
        width: 47px;
        height: 47px;
    }


    .kmc-float-icon {
        width: 21px;
        height: 21px;
    }

}

/* ==========================================
   KMC QUICK CONTACT
   Unique Prefix: kmc-qcontact-
========================================== */

.kmc-qcontact,
.kmc-qcontact *,
.kmc-qcontact *::before,
.kmc-qcontact *::after {
    box-sizing: border-box;
}


/* SECTION */

.kmc-qcontact {
    position: relative;

    padding: 85px 20px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #FFFDF8 0%,
            #F5EDE0 100%
        );

    color: #351017;
}


/* Decorative circle */

.kmc-qcontact::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    border: 1px solid rgba(126,36,50,.07);

    left: -220px;
    top: -180px;
}


/* CONTAINER */

.kmc-qcontact-container {
    position: relative;

    z-index: 2;

    width: min(1200px, 100%);

    margin: auto;
}


/* HEADING */

.kmc-qcontact-heading {
    text-align: center;

    margin-bottom: 45px;
}


.kmc-qcontact-heading > span {
    display: inline-block;

    margin-bottom: 10px;

    color: #A47725;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 3px;
}


.kmc-qcontact-heading h2 {
    margin: 0;

    color: #4D111A;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 5vw, 55px);

    line-height: 1.05;

    font-weight: 700;
}


.kmc-qcontact-heading p {
    max-width: 580px;

    margin: 15px auto 0;

    color: #756265;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    line-height: 1.7;
}


/* GRID */

.kmc-qcontact-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;
}


/* CARD */

.kmc-qcontact-card {
    position: relative;

    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding: 25px 20px;

    min-height: 190px;

    overflow: hidden;

    text-decoration: none;

    background: #FFFFFF;

    border: 1px solid rgba(126,36,50,.10);

    box-shadow:
        0 12px 35px rgba(53,16,23,.07);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* Top gold line */

.kmc-qcontact-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: #C49A3D;

    transition: width .4s ease;
}


.kmc-qcontact-card:hover {
    transform: translateY(-7px);

    border-color: rgba(126,36,50,.18);

    box-shadow:
        0 22px 45px rgba(53,16,23,.12);
}


.kmc-qcontact-card:hover::before {
    width: 100%;
}


/* ICON */

.kmc-qcontact-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    color: #5B1721;

    background:
        linear-gradient(
            145deg,
            #F3E3B4,
            #E7C970
        );

    border-radius: 50%;
}


.kmc-qcontact-icon svg {
    width: 24px;
    height: 24px;
}


/* INFO */

.kmc-qcontact-info {
    min-width: 0;
}


.kmc-qcontact-info small {
    display: block;

    margin-bottom: 7px;

    color: #A47725;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.7px;
}


.kmc-qcontact-info h3 {
    margin: 0;

    color: #3D151B;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 800;

    line-height: 1.25;

    overflow-wrap: anywhere;
}


.kmc-qcontact-info p {
    margin: 7px 0 0;

    color: #877476;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    line-height: 1.5;

    overflow-wrap: anywhere;
}


/* ARROW */

.kmc-qcontact-arrow {
    position: absolute;

    right: 16px;
    bottom: 14px;

    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #5B1721;

    background: #F8F1E3;

    font-size: 15px;

    transition:
        transform .3s ease,
        background .3s ease;
}


.kmc-qcontact-card:hover
.kmc-qcontact-arrow {
    transform: rotate(45deg);

    background: #E4C875;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 950px) {

    .kmc-qcontact-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .kmc-qcontact {
        padding: 65px 15px;
    }


    .kmc-qcontact-heading {
        margin-bottom: 30px;
    }


    .kmc-qcontact-heading h2 {
        font-size: 39px;
    }


    .kmc-qcontact-heading p {
        font-size: 12px;
    }


    .kmc-qcontact-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .kmc-qcontact-card {
        min-height: 145px;

        padding: 19px;

        flex-direction: row;

        align-items: center;

        gap: 14px;
    }


    .kmc-qcontact-icon {
        flex: 0 0 45px;

        width: 45px;
        height: 45px;

        margin-bottom: 0;
    }


    .kmc-qcontact-icon svg {
        width: 22px;
        height: 22px;
    }


    .kmc-qcontact-info {
        padding-right: 28px;
    }


    .kmc-qcontact-info small {
        margin-bottom: 5px;

        font-size: 7px;
    }


    .kmc-qcontact-info h3 {
        font-size: 14px;
    }


    .kmc-qcontact-info p {
        font-size: 9px;
    }


    .kmc-qcontact-arrow {
        right: 13px;
        bottom: 13px;

        width: 25px;
        height: 25px;
    }

}


/* SMALL MOBILE */

@media (max-width: 380px) {

    .kmc-qcontact-heading h2 {
        font-size: 35px;
    }

    .kmc-qcontact-card {
        padding: 16px;
    }

}