.elementor-29 .elementor-element.elementor-element-8973c92{--display:flex;}/* Start custom CSS for html, class: .elementor-element-9c8e0b0 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

.header-call{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.header-call i{
    color:#C89B5E;
    font-size:15px;
}

.header-call:hover{
    color:#C89B5E;
}

.btn-appointment{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.btn-appointment i{
    color:#fff;
    font-size:15px;
}

.interio-header.sticky .header-call{
    color:#222;
}

.interio-header.sticky .header-call i{
    color:#C89B5E;
}

.header-separator {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.25);
    transition: background-color 0.35s ease;
}

.interio-header.sticky .header-separator {
    background-color: rgba(0, 0, 0, 0.15);
}

@media(max-width:991px){
    .desktop-call{
        display:none !important;
    }

    .mobile-btn{
        justify-content:center;
        gap:10px;
    }

    .mobile-btn i{
        color:#fff;
        font-size:18px;
    }
}

.interio-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 22px 0;
    background: transparent; 
    border-bottom: none; 
    transition: all .35s ease;
}

.header-container {
    max-width: 1440px;
    margin: auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: #C89B5E;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: .35s;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
    transition: .35s;
}

.brand-subtext {
    margin-top: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    color: #C89B5E;
    font-weight: 500;
    transition: .35s;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu-item a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    position: relative;
    transition: .3s;
    white-space: nowrap;
}

.menu-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #C89B5E;
    transition: .3s;
}

.menu-item:hover a,
.menu-item.active a {
    color: #C89B5E;
}

.menu-item:hover a::after,
.menu-item.active a::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: #C89B5E;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
    white-space: nowrap;
}

.btn-appointment:hover {
    background: #B88A48;
    color: #fff;
}

.mobile-toggle-btn, .menu-close-btn, .mobile-menu-footer {
    display: none;
}

.interio-header.sticky {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    border-bottom: none;
    padding: 16px 0;
}

.interio-header.sticky .brand-name { color: #222; }
.interio-header.sticky .brand-subtext { color: #C89B5E; }
.interio-header.sticky .menu-item a { color: #222; }
.interio-header.sticky .menu-item:hover a,
.interio-header.sticky .menu-item.active a { color: #C89B5E; }
.interio-header.sticky .mobile-toggle-btn .bar { background-color: #222; }

@media(max-width: 991px) {
    .desktop-btn {
        display: none !important;
    }

    .main-navigation {
        padding-left: 20px !important;
    }

    .main-navigation {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #141414; 
        padding: 70px 30px 40px 30px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.35);
        z-index: 10000;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .main-navigation.open {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-top: 20px;
        width: 100%;
    }

    .menu-item {
        width: 100%;
    }

    .menu-item a {
        font-size: 17px;
        color: #fff !important;
        display: block;
        width: 100%;
    }

    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: auto;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-btn {
        display: flex !important;
        width: 100%; 
        text-align: center;
        padding: 14px 20px;
    }

    .mobile-call-btn {
        background: transparent;
        border: 1px solid #C89B5E;
        color: #C89B5E;
    }

    .mobile-call-btn i {
        color: #C89B5E;
    }

    .mobile-call-btn:hover {
        background: #C89B5E;
        color: #fff;
    }

    .mobile-call-btn:hover i {
        color: #fff;
    }

    .mobile-toggle-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 999;
    }

    .mobile-toggle-btn .bar {
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
        transition: 0.3s ease;
    }

    .menu-close-btn {
        display: block;
        position: absolute;
        top: 22px;
        right: 25px;
        width: 24px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .menu-close-btn .close-bar {
        position: absolute;
        left: 0;
        top: 11px;
        width: 100%;
        height: 2px;
        background-color: #C89B5E; 
        border-radius: 2px;
        transition: transform 0.3s ease;
    }

    .menu-close-btn .close-bar:nth-child(1) { transform: rotate(45deg); }
    .menu-close-btn .close-bar:nth-child(2) { transform: rotate(-45deg); }

    .header-container {
        padding: 0 18px;
    }

    .brand-name {
        font-size: 28px;
    }
}

@media(max-width: 576px) {
    .brand-name {
        font-size: 22px;
    }

    .brand-subtext {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .logo-icon svg {
        width: 34px;
        height: 34px;
    }
}/* End custom CSS */