/* ==================================================
   TOPBAR
================================================== */

.interior-topbar {
    background: #171717;
    color: #d4d4d4;
    font-size: 13px;
}

.interior-topbar-inner {
    padding: 7px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-left span,
.topbar-left a {
    color: #d4d4d4;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all .3s ease;
}

.topbar-left a:hover {
    color: #e2c38b;
}

.topbar-left i {
    color: #c6a15b;
    font-size: 12px;
}

.topbar-time {
    color: #c2c2c2;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 7px;
}

.topbar-social a {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfcfcf;
    border: 1px solid #464646;
    border-radius: 50%;
    text-decoration: none;
    font-size: 11px;
    transition: all .3s ease;
}

.topbar-social a:hover {
    color: #fff;
    background: #b9965a;
    border-color: #b9965a;
    transform: translateY(-2px);
}

/* ==================================================
   NAVBAR
================================================== */

.interior-header {
    position: relative;
    z-index: 9999;
    background: #fff;
    border-bottom: 1px solid #e9e5df;
}

.interior-header .navbar {
    padding: 2px 0;
}


/* ==================================================
   LOGO
================================================== */

.interior-logo {
    margin-right: 45px;
    display: flex;
    align-items: center;
}

.interior-logo img {
    width: 204px;
    /* height: 66px ; */
    object-fit: contain;
    display: block;
}


/* ==================================================
   NAVIGATION
================================================== */

.interior-header .navbar-nav {
    gap: 3px;
}

.interior-header .nav-link {
    position: relative;
    color: #252525;
    font-size: 14px;
    font-weight: 500;
    padding: 16px 10px !important;
    transition: all .3s ease;
}

.interior-header .nav-link:hover,
.interior-header .nav-link.active {
    color: #a98248;
}

.interior-header .nav-link::before {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 7px;
    height: 2px;
    background: #b9965a;
    transform: scaleX(0);
    transition: transform .3s ease;
}

.interior-header .nav-link:hover::before,
.interior-header .nav-link.active::before {
    transform: scaleX(1);
}


/* =========================================
   STICKY HEADER
========================================= */

.interior-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
}


/* =========================================
   TOPBAR
========================================= */

.interior-topbar {
    background: #171717;
    color: #b9b9b9;
    position: relative;
    z-index: 10000;
}


/* =========================================
   NAVBAR
========================================= */

.interior-navbar {
    background: #ffffff;
    position: relative;
    z-index: 9999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* ==================================================
   ABOUT DROPDOWN
================================================== */

.interior-about-menu {
    width: 280px;
    min-width: 280px;
    margin: 0 !important;
    padding: 10px !important;
    border: 0 !important;
    border-top: 2px solid #b9965a !important;
    border-radius: 0 !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .13);
}

.about-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 11px 12px !important;
    border-radius: 5px;
}

.about-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5eee3;
    color: #b9965a;
    border-radius: 50%;
    font-size: 14px;
    transition: all .3s ease;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-content strong {
    color: #222;
    font-size: 13px;
    font-weight: 600;
}

.about-content small {
    color: #999;
    font-size: 11px;
}

.about-item {
    transition: all 0.4s ease;
}

.about-item:hover {
    background: #fbf8f3;
    transform: translateX(12px);
}

.about-item:hover .about-icon {
    background: #b9965a;
    color: #fff;
}

.about-item:hover .about-content strong {
    color: #a98248;
}


/* ==================================================
   SERVICES DROPDOWN
================================================== */

.interior-services-menu {
    width: 390px;
    min-width: 390px;
    margin: 0 !important;
    padding: 10px !important;
    border: 0 !important;
    border-top: 2px solid #b9965a !important;
    border-radius: 0 !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .13);
}

.service-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 11px 12px !important;
    border-radius: 5px;
}

.service-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5eee3;
    color: #b9965a;
    border-radius: 50%;
    font-size: 14px;
    transition: all .3s ease;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-content strong {
    color: #222;
    font-size: 13px;
    font-weight: 600;
}

.service-content small {
    color: #999;
    font-size: 11px;
}

.service-item:hover {
    background: #fbf8f3;
}

.service-item:hover .service-icon {
    background: #b9965a;
    color: #fff;
    margin-left: 12px;
}

.service-item:hover .service-content strong {
    color: #a98248;
}


/* ==================================================
   DESKTOP HOVER DROPDOWN
================================================== */

@media (min-width: 992px) {

    .interior-header .dropdown:hover>.dropdown-menu {
        display: block;
    }

}


/* ==================================================
   CTA BUTTON
================================================== */

.interior-cta {
    margin-left: 13px;
}

.interior-cta a {
    min-height: 44px;
    padding: 0 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    background: #171717;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px;
    transition: all .3s ease;
}

.interior-cta a i {
    color: #d8b477;
    transition: transform .3s ease;
}

.interior-cta a:hover {
    background: #b9965a;
    color: #fff;
}

.interior-cta a:hover i {
    color: #fff;
    transform: translateX(4px);
}


/* ==================================================
   MOBILE TOGGLE
================================================== */

.interior-toggler {
    width: 45px;
    height: 42px;
    padding: 7px !important;
    border: 1px solid #ddd !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.interior-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: #222;
}


/* ==================================================
   1199px
================================================== */

@media (max-width: 1199px) {

    .interior-logo {
        margin-right: 20px;
    }

    .interior-logo img {
        width: 155px;
    }

    .interior-header .nav-link {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .interior-header .nav-link::before {
        left: 10px;
        right: 10px;
    }

    .interior-cta {
        margin-left: 5px;
    }

    .interior-cta a {
        padding: 0 13px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 991px) {

    .interior-topbar-inner {
        padding: 8px 0;
        justify-content: center;
    }

    .topbar-right {
        display: none;
    }

    .interior-topbar {
        font-size: 12px;
    }

    .interior-header .navbar {
        padding: 13px 0;
    }

    .interior-logo img {
        width: 145px;
    }

    .interior-header .navbar-collapse {
        margin-top: 12px;
        padding-top: 8px;
        border-top: 1px solid #eee;
    }

    .interior-header .navbar-nav {
        gap: 0;
    }

    .interior-header .nav-link {
        padding: 13px 5px !important;
        border-bottom: 1px solid #eee;
    }

    .interior-header .nav-link::before {
        display: none;
    }

    .interior-about-menu,
    .interior-services-menu {
        position: static !important;
        width: 100% !important;
        min-width: 100% !important;
        margin: 0 !important;
        border: 0 !important;
        border-left: 2px solid #b9965a !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: #fbf8f3;
    }

    .interior-cta {
        margin: 15px 0 5px;
    }

    .interior-cta a {
        width: 100%;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

    .interior-topbar-left span {
        display: none;
    }

    .interior-topbar-left {
        gap: 15px;
    }

    .interior-logo img {
        width: 180px;
    }

    .interior-header .navbar {
        padding: 4px 0;
    }

}












/* ==================================================
   INTERIOR FOOTER
================================================== */

.interior-footer {
    background: #111111;
    color: #d2d2d2;
    border-top: 1px solid #2b2b2b;
}


/* ==================================================
   MAIN FOOTER
================================================== */

.interior-footer-main {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr 1.2fr;
    gap: 55px;
    padding: 50px 0 40px;
}


/* ==================================================
   ABOUT
================================================== */

.footer-about {
    max-width: 340px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 240px;
    height: auto;
    display: block;
}

.footer-about>p {
    margin: 0;
    color: #d0d0d0;
    font-size: 13px;
    line-height: 1.8;
}


/* ==================================================
   SOCIAL
================================================== */

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eeeeee;
    border: 1px solid #414141;
    border-radius: 50%;
    text-decoration: none;
    font-size: 13px;
    transition: all .3s ease;
}

.footer-social a:hover {
    color: #fff;
    background: #b9965a;
    border-color: #b9965a;
    transform: translateY(-3px);
}


/* ==================================================
   FOOTER HEADING
================================================== */

.footer-column h3 {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 12px;
    color: #e0c477;
    font-size: 18px;
    font-weight: 600;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 2px;
    background: #c5a35e;
}


/* ==================================================
   LINKS
================================================== */

.footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 13px;
}

.footer-column ul li a {
    position: relative;
    display: inline-block;
    color: #d0d0d0;
    text-decoration: none;
    font-size: 13px;
    transition: all .3s ease;
}

.footer-column ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #d0b66f;
    transition: width .3s ease;
}

.footer-column ul li a:hover {
    color: #e0c477;
    transform: translateX(4px);
}

.footer-column ul li a:hover::before {
    width: 100%;
}


/* ==================================================
   CONTACT
================================================== */

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
}

.footer-contact-item>i {
    width: 19px;
    min-width: 19px;
    margin-top: 3px;
    color: #d8b866;
    font-size: 14px;
    text-align: center;
}

.footer-contact-item p {
    margin: 0;
    color: #d0d0d0;
    font-size: 13px;
    line-height: 1.65;
}

.footer-contact-item a {
    display: block;
    margin-bottom: 4px;
    color: #d0d0d0;
    text-decoration: none;
    font-size: 13px;
    transition: color .3s ease;
}

.footer-contact-item a:hover {
    color: #e0c477;
}


/* ==================================================
   FOOTER BOTTOM
================================================== */

.footer-bottom {
    border-top: 1px solid #2d2d2d;
    background: #0d0d0d;
}

.footer-bottom-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color .3s ease;
}

.footer-bottom-links a:hover {
    color: #e0c477;
}

.footer-bottom-links span {
    width: 3px;
    height: 3px;
    background: #777;
    border-radius: 50%;
}


/* ==================================================
   1199px
================================================== */

@media (max-width: 1199px) {

    .interior-footer-main {
        grid-template-columns: 1.2fr .8fr 1fr 1.1fr;
        gap: 35px;
    }

}


/* ==================================================
   991px
================================================== */

@media (max-width: 991px) {

    .interior-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 35px;
        padding: 50px 0 45px;
    }

    .footer-about {
        max-width: 400px;
    }

}


/* ==================================================
   767px
================================================== */

@media (max-width: 767px) {

    .interior-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px;
    }

    .footer-logo img {
        width: 160px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
        text-align: center;
    }

}


/* ==================================================
   575px
================================================== */

@media (max-width: 575px) {

    .interior-footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 42px 0;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-column h3 {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-bottom-inner {
        align-items: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 14px;
    }

}

.footer-bottom p a {
    color: #d2b15f;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.footer-bottom p a:hover {
    color: #ffffff;
    text-decoration: underline;
}




























/* ==================================================
   INTERIOR HERO
================================================== */

.interior-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #151515;
}


/* ==================================================
   SLIDER
================================================== */

.interior-hero .carousel,
.interior-hero .carousel-inner,
.interior-hero .carousel-item {
    position: relative;
    width: 100%;
    height: 580px;
}

.interior-hero .carousel-item {
    overflow: hidden;
}


/* ==================================================
   HERO IMAGE
================================================== */

.interior-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 6s ease;
}

.interior-hero .carousel-item.active .interior-hero-img {
    transform: scale(1.08);
}


/* ==================================================
   OVERLAY
================================================== */

.interior-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(10, 10, 10, .82) 0%,
            rgba(10, 10, 10, .62) 38%,
            rgba(10, 10, 10, .18) 72%,
            rgba(10, 10, 10, .08) 100%);
}


/* ==================================================
   CONTENT
================================================== */

.interior-hero-content {
    position: relative;
    z-index: 2;
    width: 650px;
    max-width: 100%;
    padding-top: 150px;
    color: #fff;
}


.interior-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: #dfc17c;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}


.interior-hero-eyebrow i {
    font-size: 11px;
}


.interior-hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.08;
}


.interior-hero-content h1 span {
    display: block;
    color: #dfc17c;
}


.interior-hero-content p {
    max-width: 560px;
    margin: 25px 0 32px;
    color: #e1e1e1;
    font-size: 15px;
    line-height: 1.8;
}


/* ==================================================
   BUTTONS
================================================== */

.interior-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}


.interior-hero-btn,
.interior-hero-btn-outline {
    min-height: 40px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    transition: all .3s ease;
}


.interior-hero-btn {
    background: #c09d5a;
    color: #fff;
}


.interior-hero-btn i {
    transition: transform .3s ease;
}


.interior-hero-btn:hover {
    background: #fff;
    color: #1b1b1b;
}


.interior-hero-btn:hover i {
    transform: translateX(4px);
}


.interior-hero-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .04);
}


.interior-hero-btn-outline:hover {
    color: #1b1b1b;
    background: #fff;
    border-color: #fff;
}


/* ==================================================
   ARROWS
================================================== */

.interior-hero-control {
    width: auto;
    height: auto;
    top: auto;
    bottom: 48px;
    opacity: 1;
}


.interior-hero-control.carousel-control-prev {
    left: auto;
    right: 145px;
}


.interior-hero-control.carousel-control-next {
    right: 80px;
}


.interior-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(0, 0, 0, .2);
    font-size: 13px;
    transition: all .3s ease;
}


.interior-hero-control:hover .interior-arrow {
    color: #1b1b1b;
    background: #fff;
    border-color: #fff;
}


/* ==================================================
   COUNTER
================================================== */

.interior-hero-counter {
    position: absolute;
    z-index: 5;
    right: 80px;
    bottom: 115px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .6);
    font-size: 11px;
    letter-spacing: 1px;
}


.hero-current {
    color: #dfc17c;
    font-weight: 600;
}


.hero-line {
    width: 45px;
    height: 1px;
    background: rgba(255, 255, 255, .45);
}


/* ==================================================
   INDICATORS
================================================== */

.interior-hero .carousel-indicators {
    z-index: 5;
    left: 0;
    right: auto;
    bottom: 50px;
    width: auto;
    margin: 0;
    padding-left: 0;
    gap: 7px;
}


.interior-hero .carousel-indicators button {
    width: 28px;
    height: 2px;
    margin: 0;
    border: 0;
    opacity: .45;
    background: #fff;
    transition: all .3s ease;
}


.interior-hero .carousel-indicators button.active {
    width: 55px;
    opacity: 1;
    background: #dfc17c;
}


/* ==================================================
   1199px
================================================== */

@media (max-width: 1199px) {

    .interior-hero .carousel,
    .interior-hero .carousel-inner,
    .interior-hero .carousel-item {
        height: 620px;
    }

    .interior-hero-content {
        width: 590px;
        padding-top: 150px;
    }

    .interior-hero-control.carousel-control-prev {
        right: 125px;
    }

    .interior-hero-control.carousel-control-next {
        right: 60px;
    }

    .interior-hero-counter {
        right: 60px;
    }

}


/* ==================================================
   991px
================================================== */

@media (max-width: 991px) {

    .interior-hero .carousel,
    .interior-hero .carousel-inner,
    .interior-hero .carousel-item {
        height: 600px;
    }

    .interior-hero-content {
        width: 600px;
        padding-top: 145px;
    }

    .interior-hero-content h1 {
        font-size: 50px;
    }

    .interior-hero-control {
        bottom: 35px;
    }

    .interior-hero-control.carousel-control-prev {
        right: 105px;
    }

    .interior-hero-control.carousel-control-next {
        right: 50px;
    }

    .interior-hero-counter {
        display: none;
    }

}


/* ==================================================
   767px
================================================== */

@media (max-width: 767px) {

    .interior-hero .carousel,
    .interior-hero .carousel-inner,
    .interior-hero .carousel-item {
        height: 600px;
    }

    .interior-hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(10, 10, 10, .78),
                rgba(10, 10, 10, .48));
    }

    .interior-hero-content {
        width: 100%;
        padding: 135px 20px 0;
    }

    .interior-hero-content h1 {
        font-size: 44px;
        letter-spacing: -1px;
    }

    .interior-hero-content p {
        max-width: 500px;
        font-size: 14px;
        margin: 20px 0 27px;
    }

    .interior-hero-buttons {
        flex-wrap: wrap;
    }

    .interior-hero-btn,
    .interior-hero-btn-outline {
        min-height: 48px;
        padding: 0 19px;
    }

    .interior-hero .carousel-indicators {
        left: 20px;
        bottom: 28px;
    }

    .interior-hero-control {
        display: none;
    }

}


/* ==================================================
   575px
================================================== */

@media (max-width: 575px) {

    .interior-hero .carousel,
    .interior-hero .carousel-inner,
    .interior-hero .carousel-item {
        height: 590px;
    }

    .interior-hero-content {
        padding: 120px 15px 0;
    }

    .interior-hero-eyebrow {
        margin-bottom: 15px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .interior-hero-content h1 {
        font-size: 38px;
        line-height: 1.12;
    }

    .interior-hero-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .interior-hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .interior-hero-btn,
    .interior-hero-btn-outline {
        width: 100%;
    }

}
















/* ==================================================
   COMMON SECTION
================================================== */

.section-padding {
    padding: 60px 0;
}

.interior-section-content {
    max-width: 590px;
}


/* ==================================================
   MODERN PREMIUM SECTION BADGE
================================================== */

.interior-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 9px 15px;
    color: #9a743f;
    background: #f8f5ef;
    border: 1px solid #e8dfd1;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(80, 60, 30, .04);
}


/* LEFT ACCENT */

.interior-section-badge::before {
    content: "";
    width: 20px;
    height: 1px;
    background: #b9965a;
}


/* ICON */

.interior-section-badge i {
    color: #b9965a;
    font-size: 10px;
}


/* PREMIUM DOT */

.interior-section-badge::after {
    content: "";
    width: 4px;
    height: 4px;
    background: #b9965a;
    border-radius: 50%;
}


/* HOVER */

.interior-section-badge {
    transition: all .3s ease;
}

.interior-section-badge:hover {
    background: #f4eee4;
    border-color: #d9c6a8;
    transform: translateY(-1px);
}


/* ==================================================
   COMMON SECTION TITLE
================================================== */

.interior-section-title {
    margin: 0 0 22px;
    color: #202020;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -1px;
}

.interior-section-title span {
    color: #b9965a;
}


/* ==================================================
   COMMON SECTION TEXT
================================================== */

.interior-section-text {
    margin: 0 0 15px;
    color: #737373;
    font-size: 14px;
    line-height: 1.9;
}


/* ==================================================
   ABOUT IMAGE
================================================== */

.about-image-wrap {
    position: relative;
    width: 100%;
    max-width: 540px;
    padding: 0 25px 25px 0;
}

.about-image-main {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 540px;
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

.about-image-wrap:hover .about-image-main img {
    transform: scale(1.04);
}


/* ==================================================
   IMAGE OUTLINE
================================================== */

.about-image-outline {
    position: absolute;
    z-index: 1;
    top: 25px;
    right: 0;
    width: 100%;
    height: calc(100% - 25px);
    border: 1px solid #d8c4a0;
}


/* ==================================================
   EXPERIENCE CARD
================================================== */

.about-image-card {
    position: absolute;
    z-index: 4;
    left: -20px;
    bottom: 55px;
    width: 155px;
    min-height: 135px;
    padding: 23px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #171717;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
}

.about-image-card strong {
    display: block;
    margin-bottom: 5px;
    color: #d8b477;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1;
}

.about-image-card span {
    color: #d4d4d4;
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: .4px;
}


/* ==================================================
   FEATURES
================================================== */

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 27px 0 30px;
    padding-top: 5px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b9965a;
    background: #f7f2e9;
    border: 1px solid #eee2cf;
    font-size: 14px;
}

.about-feature strong {
    display: block;
    margin-bottom: 4px;
    color: #292929;
    font-size: 13px;
    font-weight: 600;
}

.about-feature small {
    display: block;
    color: #8a8a8a;
    font-size: 11px;
    line-height: 1.5;
}


/* ==================================================
   COMMON PRIMARY BUTTON
================================================== */

.interior-primary-btn {
    min-height: 45px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #171717;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s ease;
}

.interior-primary-btn i {
    color: #d8b477;
    transition: transform .3s ease;
}

.interior-primary-btn:hover {
    background: #b9965a;
    color: #fff;
}

.interior-primary-btn:hover i {
    color: #fff;
    transform: translateX(4px);
}


/* ==================================================
   991px
================================================== */

@media (max-width: 991px) {

    .section-padding {
        padding: 80px 0;
    }

    .interior-section-content {
        max-width: 100%;
    }

    .about-image-wrap {
        margin: 0 auto;
    }

    .about-image-main {
        height: 500px;
    }

}


/* ==================================================
   767px
================================================== */

@media (max-width: 767px) {

    .section-padding {
        padding: 65px 0;
    }

    .about-image-wrap {
        padding: 0 15px 15px 0;
    }

    .about-image-main {
        height: 430px;
    }

    .about-image-card {
        left: 0;
        bottom: 35px;
        width: 140px;
        min-height: 120px;
        padding: 18px;
    }

    .about-image-card strong {
        font-size: 32px;
    }

    .interior-section-title {
        font-size: 38px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}


/* ==================================================
   575px
================================================== */

@media (max-width: 575px) {

    .section-padding {
        padding: 55px 0;
    }

    .about-image-main {
        height: 360px;
    }

    .about-image-card {
        width: 130px;
        min-height: 110px;
    }

    .about-image-card strong {
        font-size: 29px;
    }

    .about-image-card span {
        font-size: 10px;
    }

    .interior-section-badge {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .interior-section-title {
        font-size: 34px;
    }

    .interior-section-text {
        font-size: 13px;
    }

    .interior-primary-btn {
        width: 100%;
    }

}





















/* ==================================================
   SERVICES SECTION
================================================== */

.interior-services {
    background: #f8f7f4;
}


/* ==================================================
   SERVICES HEADING
================================================== */

.services-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.services-heading .interior-section-title {
    margin-bottom: 0;
}

.services-heading-right {
    max-width: 430px;
    padding-bottom: 3px;
}

.services-heading-right .interior-section-text {
    margin-bottom: 18px;
}


/* ==================================================
   VIEW ALL
================================================== */

.services-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #252525;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: all .3s ease;
}

.services-view-all i {
    color: #b9965a;
    transition: transform .3s ease;
}

.services-view-all:hover {
    color: #b9965a;
}

.services-view-all:hover i {
    transform: translateX(5px);
}


/* ==================================================
   SERVICES GRID
================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* ==================================================
   SERVICE CARD
================================================== */

.service-card {
    display: block;
    background: #fff;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid #ebe7df;
    transition: all .4s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: #d9c6a8;
    box-shadow: 0 20px 45px rgba(34, 29, 21, .10);
}


/* ==================================================
   CARD IMAGE
================================================== */

.service-card-image {
    position: relative;
    height: 265px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.06);
}


/* ==================================================
   IMAGE OVERLAY
================================================== */

.service-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .42),
            transparent 55%);
}


/* ==================================================
   NUMBER
================================================== */

.service-number {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}


/* ==================================================
   CARD ARROW
================================================== */

.service-card-arrow {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(185, 150, 90, .92);
    font-size: 12px;
    transition: all .3s ease;
}

.service-card:hover .service-card-arrow {
    background: #171717;
    transform: rotate(45deg);
}


/* ==================================================
   CARD CONTENT
================================================== */

.service-card-content {
    padding: 25px 25px 27px;
}

.service-card-label {
    display: block;
    margin-bottom: 8px;
    color: #b9965a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.service-card-content h3 {
    margin: 0 0 10px;
    color: #242424;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

.service-card-content p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.75;
}


/* ==================================================
   1199px
================================================== */

@media (max-width: 1199px) {

    .services-grid {
        gap: 20px;
    }

    .service-card-image {
        height: 235px;
    }

    .service-card-content {
        padding: 22px;
    }

}


/* ==================================================
   991px
================================================== */

@media (max-width: 991px) {

    .services-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .services-heading-right {
        max-width: 600px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ==================================================
   767px
================================================== */

@media (max-width: 767px) {

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-image {
        height: 270px;
    }

}


/* ==================================================
   575px
================================================== */

@media (max-width: 575px) {

    .services-heading {
        margin-bottom: 32px;
    }

    .service-card-image {
        height: 245px;
    }

    .service-card-content {
        padding: 21px;
    }

    .service-card-content h3 {
        font-size: 22px;
    }

}

















/* ==================================================
   INTERIOR DESIGN PROCESS
================================================== */

.interior-process {
    background: #fff;
}


/* ==================================================
   HEADER
================================================== */

.process-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 55px;
}

.process-title-wrap {
    max-width: 650px;
}

.process-title-wrap .interior-section-title {
    margin-bottom: 0;
}

.process-header>.interior-section-text {
    max-width: 430px;
    margin: 0;
}


/* ==================================================
   PROCESS GRID
================================================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #e8e2d8;
    border-bottom: 1px solid #e8e2d8;
}


/* ==================================================
   PROCESS ITEM
================================================== */

.process-item {
    position: relative;
    min-height: 300px;
    padding: 20px 28px 22px;
    border-right: 1px solid #e8e2d8;
    transition: all .35s ease;
}

.process-item:first-child {
    border-left: 1px solid #e8e2d8;
}

.process-item:hover {
    background: #faf8f4;
    transform: translateY(-5px);
}


/* ==================================================
   TOP
================================================== */

.process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.process-number {
    color: #b9965a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: 600;
}


/* ==================================================
   ICON
================================================== */

.process-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a98248;
    background: #f8f4ec;
    border: 1px solid #e8dcc8;
    border-radius: 50%;
    font-size: 15px;
    transition: all .35s ease;
}

.process-item:hover .process-icon {
    color: #fff;
    background: #b9965a;
    border-color: #b9965a;
    transform: rotate(-8deg);
}


/* ==================================================
   TITLE
================================================== */

.process-item h3 {
    margin: 0 0 13px;
    color: #252525;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.25;
}


/* ==================================================
   TEXT
================================================== */

.process-item p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}


/* ==================================================
   HOVER LINE
================================================== */

.process-item::after {
    content: "";
    position: absolute;
    left: 28px;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #b9965a;
    transition: width .35s ease;
}

.process-item:hover::after {
    width: calc(100% - 56px);
}


/* ==================================================
   1199px
================================================== */

@media (max-width: 1199px) {

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-item:nth-child(4) {
        border-left: 1px solid #e8e2d8;
        border-top: 1px solid #e8e2d8;
    }

    .process-item:nth-child(5) {
        border-top: 1px solid #e8e2d8;
    }

}


/* ==================================================
   991px
================================================== */

@media (max-width: 991px) {

    .process-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 40px;
    }

    .process-header>.interior-section-text {
        max-width: 650px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-item:nth-child(3) {
        border-left: 1px solid #e8e2d8;
        border-top: 1px solid #e8e2d8;
    }

    .process-item:nth-child(4) {
        border-left: 0;
    }

    .process-item:nth-child(5) {
        border-left: 1px solid #e8e2d8;
    }

}


/* ==================================================
   767px
================================================== */

@media (max-width: 767px) {

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item,
    .process-item:nth-child(3),
    .process-item:nth-child(4),
    .process-item:nth-child(5) {
        min-height: auto;
        border-left: 1px solid #e8e2d8;
        border-right: 1px solid #e8e2d8;
        border-top: 0;
        border-bottom: 1px solid #e8e2d8;
    }

    .process-item:last-child {
        border-bottom: 0;
    }

    .process-top {
        margin-bottom: 30px;
    }

}


/* ==================================================
   575px
================================================== */

@media (max-width: 575px) {

    .process-header {
        margin-bottom: 32px;
    }

    .process-item {
        padding: 25px 22px 30px;
    }

    .process-item::after {
        left: 22px;
    }

    .process-item:hover::after {
        width: calc(100% - 44px);
    }

    .process-item h3 {
        font-size: 20px;
    }

}

















/* ==================================================
   FEATURED PROJECTS
================================================== */

.interior-projects {
    background: #f8f6f1;
}


/* ==================================================
   PROJECT HEADER
================================================== */

.projects-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px;
}

.projects-heading-left {
    max-width: 570px;
}

.projects-heading-right {
    max-width: 390px;
}

.projects-heading-right .interior-section-text {
    margin-bottom: 20px;
}


/* ==================================================
   VIEW BUTTON
================================================== */

.projects-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #9a743f;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.projects-view-btn i {
    transition: transform .3s ease;
}

.projects-view-btn:hover {
    color: #76552c;
}

.projects-view-btn:hover i {
    transform: translateX(5px);
}


/* ==================================================
   PROJECT CARD
================================================== */

.project-card {
    position: relative;
    display: block;
    height: 430px;
    overflow: hidden;
    text-decoration: none;
    background: #222;
}

.project-card-large {
    height: 520px;
}

.project-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}


/* ==================================================
   OVERLAY
================================================== */

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(42, 41, 41, 0.88) 0%,
            rgba(37, 37, 37, 0.3) 48%,
            rgba(75, 74, 74, 0.05) 100%);
    transition: all .4s ease;
}


/* ==================================================
   NUMBER
================================================== */

.project-number {
    position: absolute;
    top: 22px;
    left: 22px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: .9;
}


/* ==================================================
   ARROW
================================================== */

.project-arrow {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .35);

    backdrop-filter: blur(8px);

    transition: all .4s ease;
}

.project-arrow i {
    font-size: 13px;
}


/* ==================================================
   PROJECT INFO
================================================== */

.project-info {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 27px;
}

.project-info>span {
    display: block;
    margin-bottom: 8px;
    color: #d8b477;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.project-info h3 {
    margin: 0 0 8px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.2;
}

.project-info p {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.7;
}


/* ==================================================
   HOVER
================================================== */

.project-card:hover .project-image img {
    transform: scale(1.06);
}

.project-card:hover .project-overlay {
    background:
        linear-gradient(to top,
            rgba(15, 15, 15, .93) 0%,
            rgba(15, 15, 15, .38) 55%,
            rgba(15, 15, 15, .08) 100%);
}

.project-card:hover .project-arrow {
    color: #fff;
    background: #b9965a;
    border-color: #b9965a;
    transform: translateY(-3px);
}


/* ==================================================
   991px
================================================== */

@media (max-width: 991px) {

    .projects-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 35px;
    }

    .projects-heading-right {
        max-width: 600px;
    }

    .project-card,
    .project-card-large {
        height: 440px;
    }

}


/* ==================================================
   767px
================================================== */

@media (max-width: 767px) {

    .projects-heading {
        margin-bottom: 30px;
    }

    .project-card,
    .project-card-large {
        height: 400px;
    }

    .project-info {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .project-info h3 {
        font-size: 23px;
    }

}


/* ==================================================
   575px
================================================== */

@media (max-width: 575px) {

    .project-card,
    .project-card-large {
        height: 360px;
    }

    .project-number {
        top: 17px;
        left: 17px;
    }

    .project-arrow {
        top: 15px;
        right: 15px;
        width: 39px;
        height: 39px;
    }

    .project-info {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .project-info h3 {
        font-size: 21px;
    }

    .project-info p {
        font-size: 12px;
    }

}













/* ==================================================
   WHY CHOOSE US
================================================== */

.interior-why-us {
    background: #f8f5ef;
}


/* ==================================================
   WHY US LIST
================================================== */

.why-us-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
    margin: 30px 0;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.why-us-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b9965a;
    background: #fff;
    border: 1px solid #e8dfd0;
    font-size: 14px;
    transition: all .3s ease;
}

.why-us-item:hover .why-us-icon {
    color: #fff;
    background: #b9965a;
    border-color: #b9965a;
    transform: translateY(-3px);
}

.why-us-item h3 {
    margin: 2px 0 6px;
    color: #292929;
    font-size: 15px;
    font-weight: 600;
}

.why-us-item p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.7;
}


/* ==================================================
   VISUAL
================================================== */

.why-us-visual {
    position: relative;
    padding: 0 0 35px 35px;
}

.why-us-image {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.why-us-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 15, 15, .55),
            rgba(15, 15, 15, .05));
}

.why-us-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.why-us-visual:hover .why-us-image img {
    transform: scale(1.04);
}


/* ==================================================
   STATS
================================================== */

.why-us-stats {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: calc(100% - 35px);
    background: #fff;
    border: 1px solid #e9e1d5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.why-stat {
    padding: 20px 15px;
    text-align: center;
    border-right: 1px solid #eee7dc;
}

.why-stat:last-child {
    border-right: 0;
}

.why-stat strong {
    display: block;
    margin-bottom: 5px;
    color: #b9965a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 500;
}

.why-stat span {
    display: block;
    color: #777;
    font-size: 10px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .8px;
}


/* ==================================================
   FLOATING BADGE
================================================== */

.why-us-badge {
    position: absolute;
    top: 35px;
    right: -15px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border-left: 3px solid #b9965a;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .10);
}

.why-us-badge>i {
    color: #b9965a;
    font-size: 18px;
}

.why-us-badge strong {
    display: block;
    margin-bottom: 3px;
    color: #292929;
    font-size: 13px;
}

.why-us-badge span {
    display: block;
    color: #888;
    font-size: 10px;
    letter-spacing: .5px;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {

    .why-us-visual {
        margin-top: 20px;
    }

    .why-us-image {
        height: 460px;
    }

}


@media (max-width: 767px) {

    .why-us-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-us-visual {
        padding-left: 20px;
        padding-bottom: 25px;
    }

    .why-us-image {
        height: 400px;
    }

    .why-us-stats {
        width: calc(100% - 20px);
    }

    .why-us-badge {
        right: 0;
        top: 20px;
    }

}


@media (max-width: 575px) {

    .why-us-image {
        height: 350px;
    }

    .why-us-stats {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: -1px;
    }

    .why-stat {
        padding: 15px 8px;
    }

    .why-stat strong {
        font-size: 21px;
    }

    .why-stat span {
        font-size: 9px;
    }

    .why-us-badge {
        top: 15px;
        right: 10px;
        padding: 11px 13px;
    }

}



























/* ==================================================
   TESTIMONIALS
================================================== */

.interior-testimonials {
    background: #f4efe7;
    overflow: hidden;
}


/* ==================================================
   HEADER
================================================== */

.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.testimonials-title-wrap {
    max-width: 650px;
}


/* ==================================================
   PREMIUM CONTROLS
================================================== */

.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.testimonial-btn {
    width: 52px;
    height: 52px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #ddd4c5;
    background: #fff;
    color: #80663f;

    font-size: 14px;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.testimonial-btn:hover {
    background: #b9965a;
    color: #fff;
    border-color: #b9965a;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(45, 35, 20, .12);
}

.testimonial-btn:active {
    transform: translateY(-1px);
}


/* ==================================================
   SLIDER WRAPPER
================================================== */

.testimonial-slider-wrap {
    width: 100%;
    overflow: hidden;
}


/* ==================================================
   SLIDER TRACK
================================================== */

.testimonial-slider {
    width: 100%;

    display: flex;
    align-items: stretch;

    gap: 25px;

    margin: 0;
    padding: 0;

    will-change: transform;

    transform: translate3d(0, 0, 0);
}


/* ==================================================
   SLIDE
   DESKTOP = 3 CARDS
================================================== */

.testimonial-slide {
    flex: 0 0 calc((100% - 50px) / 3);

    width: calc((100% - 50px) / 3);

    min-width: 0;
}


/* ==================================================
   CARD
================================================== */

.testimonial-card {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 310px;

    padding: 20px 32px;

    display: flex;
    flex-direction: column;

    background: #fff;

    border: 1px solid #e9e3d9;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);

    border-color: #d8c5a5;

    box-shadow:
        0 18px 45px rgba(45, 35, 20, .08);
}


/* ==================================================
   TOP
================================================== */

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}


/* ==================================================
   QUOTE
================================================== */

.testimonial-quote {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f8f3ea;
    color: #b9965a;

    font-size: 15px;
}


/* ==================================================
   STARS
================================================== */

.testimonial-stars {
    display: flex;
    align-items: center;

    gap: 4px;

    color: #b9965a;

    font-size: 11px;
}


/* ==================================================
   TEXT
================================================== */

.testimonial-card>p {
    margin: 0 0 15px;

    color: #666;

    font-size: 14px;
    line-height: 1.85;
}


/* ==================================================
   CLIENT
================================================== */

.testimonial-client {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: auto;
    padding-top: 10px;

    border-top: 1px solid #eee9e1;
}


/* ==================================================
   CLIENT ICON
================================================== */

.testimonial-client-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f5f1e9;
    color: #9a743f;

    font-size: 13px;
}


/* ==================================================
   CLIENT NAME
================================================== */

.testimonial-client strong {
    display: block;

    margin-bottom: 3px;

    color: #252525;

    font-size: 13px;
    font-weight: 600;
}


/* ==================================================
   CLIENT ROLE
================================================== */

.testimonial-client span {
    display: block;

    color: #999;

    font-size: 11px;
}


/* ==================================================
   TABLET
   2 CARDS
================================================== */

@media (max-width: 991px) {

    .testimonials-header {
        align-items: center;
    }

    .testimonial-slide {
        flex: 0 0 calc((100% - 25px) / 2);

        width: calc((100% - 25px) / 2);
    }

}


/* ==================================================
   MOBILE
   1 CARD
================================================== */

@media (max-width: 767px) {

    .testimonials-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 0px;

        margin-bottom: 15px;
    }

    .testimonial-controls {
        margin-top: 0;
    }

    .testimonial-btn {
        width: 46px;
        height: 46px;
    }

    .testimonial-slide {
        flex: 0 0 100%;

        width: 100%;
    }

    .testimonial-card {
        min-height: 290px;

        padding: 25px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

    .testimonial-slider {
        gap: 18px;
    }

    .testimonial-slide {
        flex: 0 0 100%;

        width: 100%;
    }

    .testimonial-card {
        padding: 23px;
    }

    .testimonial-card>p {
        font-size: 13px;

        line-height: 1.8;
    }

}
















/* ==================================================
   PREMIUM MINI CTA
================================================== */

.interior-mini-cta {
    padding: 25px 0 40px;

    background: #f4efe7;
}


/* ==================================================
   CTA BOX
================================================== */

.mini-cta-box {

    min-height: 105px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 25px 30px;

    background: #1c1c1c;

    border-radius: 20px;

    box-shadow:
        0 18px 45px rgba(30, 25, 18, .10);
}


/* ==================================================
   CONTENT
================================================== */

.mini-cta-content {
    min-width: 0;
}


/* ==================================================
   LABEL
================================================== */

.mini-cta-label {

    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 7px;

    color: #c39a58;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.mini-cta-label i {
    font-size: 9px;
}


/* ==================================================
   TITLE
================================================== */

.mini-cta-content h2 {

    margin: 0;

    color: #fff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    font-weight: 400;

    line-height: 1.25;
}

.mini-cta-content h2 span {
    color: #c39a58;
}


/* ==================================================
   ACTIONS
================================================== */

.mini-cta-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


/* ==================================================
   PRIMARY BUTTON
================================================== */

.mini-cta-primary {

    min-width: 165px;

    height: 46px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 20px;

    background: #b9965a;

    color: #fff;

    border-radius: 25px;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.mini-cta-primary i {
    font-size: 10px;

    transition:
        transform .3s ease;
}

.mini-cta-primary:hover {

    background: #caa86d;

    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(185, 150, 90, .22);
}

.mini-cta-primary:hover i {
    transform: translateX(4px);
}


/* ==================================================
   CALL BUTTON
================================================== */

.mini-cta-call {

    min-width: 130px;

    height: 46px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 20px;

    background: #fff;

    color: #b42323;

    border: 1px solid #c49a52;

    border-radius: 25px;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.mini-cta-call i {
    font-size: 12px;
}

.mini-cta-call:hover {

    background: #b9965a;

    color: #fff;

    transform: translateY(-2px);
}


/* ==================================================
   991px
================================================== */

@media (max-width: 991px) {

    .mini-cta-box {

        padding: 25px;

    }

    .mini-cta-content h2 {

        font-size: 22px;

    }

    .mini-cta-actions {

        gap: 8px;

    }

}


/* ==================================================
   767px
================================================== */

@media (max-width: 767px) {

    .interior-mini-cta {

        padding: 20px 0 55px;

    }

    .mini-cta-box {

        flex-direction: column;

        align-items: flex-start;

        gap: 22px;

        padding: 28px 24px;

        border-radius: 16px;

    }

    .mini-cta-content h2 {

        font-size: 24px;

    }

    .mini-cta-actions {

        width: 100%;

        display: flex;

    }

    .mini-cta-primary,
    .mini-cta-call {

        flex: 1;

        min-width: 0;

    }

}


/* ==================================================
   575px
================================================== */

@media (max-width: 575px) {

    .mini-cta-box {

        padding: 25px 20px;

    }

    .mini-cta-content h2 {

        font-size: 21px;

    }

    .mini-cta-label {

        font-size: 10px;

    }

    .mini-cta-actions {

        flex-direction: column;

        width: 100%;

    }

    .mini-cta-primary,
    .mini-cta-call {

        width: 100%;

        flex: unset;

    }

}














/* ==================================================
   FAQ + CONTACT
================================================== */

.interior-faq-contact {
    background: #fff;
}


/* ==================================================
   FAQ
================================================== */

.faq-content {
    padding-right: 25px;
}

.faq-content .interior-section-title {
    margin-bottom: 18px;
}

.faq-content .interior-section-text {
    max-width: 580px;
    margin-bottom: 15px;
}


/* ==================================================
   ACCORDION
================================================== */

.interior-faq {
    border-top: 1px solid #ddd7cc;
}

.interior-faq .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ddd7cc;
}

.interior-faq .accordion-button {
    position: relative;

    padding: 21px 45px 21px 0;

    background: transparent !important;

    color: #252525;

    font-size: 15px;
    font-weight: 600;

    box-shadow: none !important;
}

.interior-faq .accordion-button::after {
    width: 13px;
    height: 13px;

    background-size: 13px;

    filter: grayscale(1);
}

.interior-faq .accordion-button:not(.collapsed) {
    color: #a17b45;
}

.interior-faq .accordion-body {
    padding: 0 35px 22px 0;

    color: #6c6c6c;

    font-size: 13px;
    line-height: 1.8;
}


/* ==================================================
   CONTACT CARD
================================================== */

.interior-contact-card {
    position: relative;

    padding: 38px;

    background: #ffffff;

    border: 1px solid #ded8ce;

    box-shadow:
        0 18px 50px rgba(45, 35, 20, .09);
}


/* ==================================================
   CARD HEADING
================================================== */

.contact-card-heading {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 16px;
}

.contact-card-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5eee3;

    color: #a17b45;

    font-size: 16px;
}

.contact-card-heading>div>span {
    display: block;

    margin-bottom: 5px;

    color: #a17b45;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.contact-card-heading h3 {
    margin: 0;

    color: #242424;

    font-size: 24px;
    font-weight: 600;
}


/* ==================================================
   TEXT
================================================== */

.contact-card-text {
    margin: 0 0 15px;

    color: #6b6b6b;

    font-size: 13px;
    line-height: 1.8;
}


/* ==================================================
   FORM
================================================== */

.interior-contact-form label {
    display: block;

    margin-bottom: 7px;

    color: #3c3c3c;

    font-size: 12px;
    font-weight: 600;
}


/* ==================================================
   INPUT WRAP
================================================== */

.form-input-wrap {
    position: relative;

    display: flex;
    align-items: center;
}

.form-input-wrap>i {
    position: absolute;

    left: 15px;

    color: #a17b45;

    font-size: 13px;

    pointer-events: none;

    z-index: 2;
}

.form-input-wrap input,
.form-input-wrap select,
.form-input-wrap textarea {

    width: 100%;

    border: 1px solid #d9d4cb;

    background: #faf9f7;

    color: #333;

    border-radius: 0;

    outline: none;

    font-size: 13px;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.form-input-wrap input,
.form-input-wrap select {

    height: 40px;

    padding: 0 15px 0 42px;
}

.form-input-wrap textarea {

    min-height: 70px;

    padding: 10px 15px 10px 42px;

    resize: vertical;
}

.form-input-wrap input::placeholder,
.form-input-wrap textarea::placeholder {
    color: #aaa;
}

.form-input-wrap select {
    appearance: none;

    cursor: pointer;
}


/* ==================================================
   FOCUS
================================================== */

.form-input-wrap input:focus,
.form-input-wrap select:focus,
.form-input-wrap textarea:focus {

    background: #fff;

    border-color: #b9965a;

    box-shadow:
        0 0 0 3px rgba(185, 150, 90, .10);
}


/* ==================================================
   TEXTAREA ICON
================================================== */

.textarea-wrap {
    align-items: flex-start;
}

.textarea-wrap>i {
    top: 17px;
}


/* ==================================================
   BUTTON
================================================== */

.interior-form-btn {

    width: 100%;

    min-height: 42px;

    margin-top: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 1px solid #a17b45;

    background: #a17b45;

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.interior-form-btn:hover {

    background: #80613a;

    border-color: #80613a;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(80, 60, 30, .16);
}

.interior-form-btn i {
    transition: transform .3s ease;
}

.interior-form-btn:hover i {
    transform: translateX(4px);
}


/* ==================================================
   BOTTOM NOTE
================================================== */

.contact-card-bottom {

    display: flex;
    align-items: center;

    gap: 9px;

    margin-top: 18px;
    padding-top: 17px;

    border-top: 1px solid #eeeae3;

    color: #999;

    font-size: 10px;
    line-height: 1.6;
}

.contact-card-bottom i {
    color: #a17b45;

    font-size: 12px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .faq-content {
        padding-right: 0;
    }

    .interior-contact-card {
        padding: 30px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 575px) {

    .interior-contact-card {
        padding: 23px;
    }

    .contact-card-heading h3 {
        font-size: 20px;
    }

    .contact-card-icon {
        width: 43px;
        height: 43px;
        min-width: 43px;
    }

    .interior-faq .accordion-button {
        font-size: 14px;
    }

}

























/* ==================================================
   BLOG SECTION
================================================== */

.interior-blog {
    background: #f8f6f1;
    overflow: hidden;
}


/* ==================================================
   BLOG HEADER
================================================== */

.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.blog-title-wrap {
    max-width: 650px;
}

.blog-header-right {
    max-width: 480px;
}


/* ==================================================
   BLOG CONTROLS
================================================== */

.blog-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.blog-btn {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #ddd4c5;
    background: #fff;
    color: #8c6a3e;

    font-size: 14px;

    cursor: pointer;

    transition: all .3s ease;
}

.blog-btn:hover {
    background: #b9965a;
    border-color: #b9965a;
    color: #fff;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(45, 35, 20, .12);
}


/* ==================================================
   SLIDER WRAPPER
================================================== */

.blog-slider-wrap {
    width: 100%;
    max-width: 100%;

    overflow: hidden;
}


/* ==================================================
   SLIDER TRACK
================================================== */

.blog-slider {
    display: flex;
    align-items: stretch;

    gap: 25px;

    width: max-content;

    margin: 0;
    padding: 0;

    will-change: transform;
}


/* ==================================================
   SLIDE

   JS automatically sets exact width.
================================================== */

.blog-slide {
    flex: 0 0 auto;

    min-width: 0;
}


/* ==================================================
   BLOG CARD
================================================== */

.blog-card {
    width: 100%;
    height: 100%;

    background: #fff;

    border: 1px solid #e6e0d5;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.blog-card:hover {
    transform: translateY(-6px);

    border-color: #d7c3a3;

    box-shadow:
        0 18px 45px rgba(45, 35, 20, .10);
}


/* ==================================================
   IMAGE
================================================== */

.blog-card-image {
    position: relative;

    width: 100%;
    height: 260px;

    overflow: hidden;

    background: #eee9df;
}

.blog-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}


/* ==================================================
   DATE
================================================== */

.blog-date {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 52px;
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #292929;
    color: #fff;

    text-align: center;

    font-size: 11px;
    line-height: 1.3;
}

.blog-date strong {
    font-size: 14px;
    font-weight: 600;
}

.blog-date span {
    font-size: 10px;
    text-transform: uppercase;
}


/* ==================================================
   CONTENT
================================================== */

.blog-card-content {
    padding: 15px 28px 20px;
}


/* ==================================================
   META
================================================== */

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 10px;

    color: #999;

    font-size: 11px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: #b9965a;
}


/* ==================================================
   CATEGORY
================================================== */

.blog-category {
    display: block;

    margin-bottom: 2px;

    color: #a47c45;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* ==================================================
   TITLE
================================================== */

.blog-card-content h3 {
    margin: 0 0 8px;

    color: #292929;

    font-size: 20px;
    line-height: 1.4;

    font-weight: 600;
}

.blog-card-content p {
    margin: 0 0 15px;

    color: #777;

    font-size: 13px;
    line-height: 1.8;
}


/* ==================================================
   READ MORE
================================================== */

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #8c6a3e;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;
}

.blog-read-more i {
    transition: transform .3s ease;
}

.blog-read-more:hover {
    color: #b9965a;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .blog-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-header-right {
        max-width: 600px;
    }

    .blog-controls {
        margin-top: 20px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .blog-header {
        margin-bottom: 35px;
    }

    .blog-slider {
        gap: 18px;
    }

    .blog-card-image {
        height: 240px;
    }

    .blog-card-content {
        padding: 22px;
    }

    .blog-card-content h3 {
        font-size: 18px;
    }

    .blog-btn {
        width: 46px;
        height: 46px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

    .blog-card-image {
        height: 220px;
    }

    .blog-card-content {
        padding: 20px;
    }

}












/* ==================================================
INTERIOR INQUIRY MODAL
================================================== */

.interior-modal-dialog {
    max-width: 860px;
    width: calc(100% - 30px);
    margin: 1.75rem auto;
    position: relative;
    z-index: 100001 !important;
}

.interior-modal {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 0;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .30);
    z-index: 100002 !important;
}


/* ==================================================
MODAL Z-INDEX
================================================== */

.modal-backdrop {
    z-index: 99990 !important;
}

.modal {
    z-index: 100000 !important;
}

.navbar,
header,
.site-header,
.interior-header,
.interior-navbar {
    z-index: 1000 !important;
}


/* ==================================================
LEFT IMAGE
================================================== */

.interior-modal-left {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 510px;
    overflow: hidden;
    background: #eee;
}

.interior-modal-left img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 510px;
    object-fit: cover;
    transition: transform .7s ease;
}

.interior-modal:hover .interior-modal-left img {
    transform: scale(1.025);
}

.interior-modal-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 15, 15, .42) 0%,
            rgba(15, 15, 15, .12) 50%,
            rgba(15, 15, 15, 0) 100%);
    pointer-events: none;
}


/* ==================================================
CLOSE BUTTON
================================================== */

.interior-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 100010 !important;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(20, 20, 20, .72);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition:
        background .3s ease,
        transform .3s ease,
        border-color .3s ease;
}

.interior-modal-close:hover {
    background: #b9965a;
    border-color: #b9965a;
    transform: rotate(90deg);
}


/* ==================================================
RIGHT FORM
================================================== */

.interior-modal-form-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 25px 40px 20px;
    background: #fff;
}


/* ==================================================
FORM HEADING
================================================== */

.interior-modal-form-heading {
    padding-right: 35px;
    margin-bottom: 15px;
}

.interior-modal-form-heading>span {
    display: inline-block;
    margin-bottom: 9px;
    color: #b9965a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.interior-modal-form-heading h3 {
    margin: 0 0 7px;
    color: #171717;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
}

.interior-modal-form-heading p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}


/* ==================================================
FORM GROUP
================================================== */

.interior-form-group {
    margin-bottom: 10px;
}


/* ==================================================
FLOATING FIELD
================================================== */

.interior-floating-field {
    position: relative;
    width: 100%;
}


/* ==================================================
INPUT / SELECT / TEXTAREA
================================================== */

.interior-floating-field input,
.interior-floating-field select,
.interior-floating-field textarea {
    width: 100%;
    height: 46px;
    padding: 10px 42px 10px 46px;
    border: 1px solid #d9d3c8;
    border-radius: 3px;
    outline: none;
    background: #faf9f6;
    color: #292929;
    font-family: inherit;
    font-size: 13px;
    transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


/* ==================================================
REMOVE NORMAL PLACEHOLDER
================================================== */

.interior-floating-field input::placeholder,
.interior-floating-field textarea::placeholder {
    color: transparent;
}


/* ==================================================
TEXTAREA
================================================== */

.interior-floating-field textarea {
    height: 90px;
    padding: 10px 15px 10px 46px;
    resize: none;
    line-height: 1.6;
}


/* ==================================================
FIELD ICON
================================================== */

.interior-floating-field>i:first-child {
    position: absolute;
    left: 16px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    color: #a3875b;
    font-size: 14px;
    pointer-events: none;
    transition: color .3s ease;
}


/* ==================================================
TEXTAREA ICON
================================================== */

.interior-floating-textarea>i:first-child {
    top: 25px;
    transform: none;
}


/* ==================================================
FLOATING LABEL
================================================== */

.interior-floating-field label {
    position: absolute;
    left: 43px;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    padding: 0 5px;
    background: #faf9f6;
    color: #999;
    font-size: 13px;
    line-height: 1;
    pointer-events: none;
    transition:
        top .25s ease,
        left .25s ease,
        font-size .25s ease,
        color .25s ease,
        transform .25s ease,
        background .25s ease;
}


/* ==================================================
TEXTAREA LABEL
================================================== */

.interior-floating-textarea label {
    top: 27px;
    transform: none;
}


/* ==================================================
FOCUS
================================================== */

.interior-floating-field input:focus,
.interior-floating-field select:focus,
.interior-floating-field textarea:focus {
    border-color: #b9965a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(185, 150, 90, .08);
}


/* ==================================================
FLOAT LABEL ON FOCUS
================================================== */

.interior-floating-field input:focus+label,
.interior-floating-field select:focus+label,
.interior-floating-field textarea:focus+label {
    top: 0;
    left: 12px;
    transform: translateY(-50%);
    background: #fff;
    color: #a17d48;
    font-size: 10px;
    font-weight: 600;
}


/* ==================================================
INPUT LABEL AFTER VALUE
================================================== */

.interior-floating-field input:not(:placeholder-shown)+label {
    top: 0;
    left: 12px;
    transform: translateY(-50%);
    background: #fff;
    color: #80663f;
    font-size: 10px;
    font-weight: 600;
}


/* ==================================================
TEXTAREA LABEL AFTER VALUE
================================================== */

.interior-floating-field textarea:not(:placeholder-shown)+label {
    top: 0;
    left: 12px;
    transform: translateY(-50%);
    background: #fff;
    color: #80663f;
    font-size: 10px;
    font-weight: 600;
}


/* ICON FOCUS*/

.interior-floating-field:focus-within>i:first-child {
    color: #9a743f;
}


/* SELECT */

.interior-floating-field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-top: 6px;
}


/* ==================================================
SELECT PLACEHOLDER
================================================== */

.interior-floating-field select:required:invalid {
    color: #999;
}

.interior-floating-field select:valid {
    color: #292929;
}

.interior-floating-field select option {
    color: #292929;
}

.interior-floating-field select option[value=""] {
    color: #999;
}


/* ==================================================
SELECT LABEL
================================================== */

.interior-floating-field select:valid+label {
    top: 0;
    left: 12px;
    transform: translateY(-50%);
    background: #fff;
    color: #80663f;
    font-size: 10px;
    font-weight: 600;
}


/* SELECT ARROW */

.interior-floating-field .select-arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    left: auto;
    z-index: 4;
    transform: translateY(-50%);
    color: #999;
    font-size: 10px;
    pointer-events: none;
}


/* ==================================================
SUBMIT BUTTON
================================================== */

.interior-modal-submit {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
    padding: 13px 20px;
    border: 1px solid #171717;
    background: #171717;
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .35px;
    cursor: pointer;
    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.interior-modal-submit i {
    color: #d2ad6e;
    transition:
        color .3s ease,
        transform .3s ease;
}

.interior-modal-submit:hover {
    background: #b9965a;
    border-color: #b9965a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(185, 150, 90, .18);
}

.interior-modal-submit:hover i {
    color: #fff;
    transform: translateX(4px);
}


/* ==================================================
TABLET
================================================== */

@media (max-width: 991px) {

    .interior-modal-dialog {
        max-width: 720px;
    }

    .interior-modal-left {
        min-height: 300px;
        height: 300px;
    }

    .interior-modal-left img {
        min-height: 300px;
    }

    .interior-modal-form-wrap {
        padding: 35px 32px 30px;
    }
}


/* ==================================================
MOBILE
================================================== */

@media (max-width: 575px) {

    .interior-modal-dialog {
        width: calc(100% - 20px);
        margin: 10px auto;
    }

    .interior-modal-left {
        min-height: 210px;
        height: 210px;
    }

    .interior-modal-left img {
        min-height: 210px;
    }

    .interior-modal-form-wrap {
        padding: 30px 22px 25px;
    }

    .interior-modal-form-heading {
        padding-right: 28px;
        margin-bottom: 22px;
    }

    .interior-modal-form-heading h3 {
        font-size: 25px;
    }

    .interior-modal-form-heading p {
        font-size: 12px;
    }

    .interior-form-group {
        margin-bottom: 14px;
    }

    .interior-floating-field input,
    .interior-floating-field select {
        height: 52px;
        font-size: 12px;
    }

    .interior-floating-field textarea {
        height: 95px;
        font-size: 12px;
    }

    .interior-modal-close {
        top: 9px;
        right: 9px;
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .interior-modal-submit {
        min-height: 48px;
        font-size: 11px;
    }
}


/* ==================================================
SMALL MOBILE
================================================== */

@media (max-width: 400px) {

    .interior-modal-left {
        min-height: 180px;
        height: 180px;
    }

    .interior-modal-left img {
        min-height: 180px;
    }

    .interior-modal-form-wrap {
        padding: 25px 18px 22px;
    }

    .interior-modal-form-heading h3 {
        font-size: 23px;
    }
}















/* ==================================================
GALLERY
================================================== */

.interior-gallery {
    background: #f5f2ec;
    overflow: hidden;
}


/* ==================================================
GALLERY HEADER
================================================== */

.interior-gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.interior-gallery-title-wrap {
    max-width: 620px;
}

.interior-gallery-intro {
    max-width: 460px;
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.9;
}


/* ==================================================
GALLERY GRID
================================================== */

.interior-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* ==================================================
GALLERY ITEM
================================================== */

.interior-gallery-item {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #ddd;
}


/* ==================================================
GALLERY IMAGE
================================================== */

.interior-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .7s cubic-bezier(.22, .61, .36, 1);
}


/* ==================================================
OVERLAY
================================================== */

.interior-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            rgba(15, 15, 15, .78) 0%,
            rgba(15, 15, 15, .28) 48%,
            rgba(15, 15, 15, 0) 100%);
    pointer-events: none;
}


/* ==================================================
IMAGE HOVER
================================================== */

.interior-gallery-item:hover img {
    transform: scale(1.06);
}


/* ==================================================
VIEW BUTTON
================================================== */

.interior-gallery-view {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .5);

    background: rgba(20, 20, 20, .4);

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    backdrop-filter: blur(6px);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.interior-gallery-view:hover {
    background: #b9965a;
    border-color: #b9965a;
    color: #fff;
    transform: translateY(-3px);
}


/* ==================================================
GALLERY CONTENT
================================================== */

.interior-gallery-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 3;

    transition: transform .4s ease;
}

.interior-gallery-item:hover .interior-gallery-content {
    transform: translateY(-4px);
}

.interior-gallery-content span {
    display: block;
    margin-bottom: 6px;

    color: #d4b273;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}

.interior-gallery-content h3 {
    margin: 0;

    color: #fff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;
    font-weight: 400;

    line-height: 1.3;
}


/* ==================================================
LIGHTBOX
================================================== */

.interior-lightbox {
    position: fixed;
    inset: 0;

    z-index: 999999 !important;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 80px;

    background: rgba(10, 10, 10, .94);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.interior-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ==================================================
LIGHTBOX CONTENT
================================================== */

.interior-lightbox-content {
    position: relative;

    width: min(100%, 1050px);
    height: min(100%, 750px);

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==================================================
LIGHTBOX IMAGE
================================================== */

.interior-lightbox-content img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;

    user-select: none;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .45);

    opacity: 1;

    transition: opacity .2s ease;
}


/* ==================================================
LIGHTBOX CLOSE
================================================== */

.interior-lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    z-index: 10;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, .3);

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    color: #fff;

    font-size: 17px;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.interior-lightbox-close:hover {
    background: #b9965a;
    border-color: #b9965a;
    transform: rotate(90deg);
}


/* ==================================================
PREVIOUS / NEXT
================================================== */

.interior-lightbox-prev,
.interior-lightbox-next {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, .3);

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    color: #fff;

    font-size: 14px;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transform: translateY(-50%);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.interior-lightbox-prev {
    left: 25px;
}

.interior-lightbox-next {
    right: 25px;
}

.interior-lightbox-prev:hover,
.interior-lightbox-next:hover {
    background: #b9965a;
    border-color: #b9965a;
}

.interior-lightbox-prev:hover {
    transform: translateY(-50%) translateX(-3px);
}

.interior-lightbox-next:hover {
    transform: translateY(-50%) translateX(3px);
}


/* ==================================================
BODY LOCK
================================================== */

body.interior-lightbox-open {
    overflow: hidden;
}


/* ==================================================
1199px
================================================== */

@media (max-width: 1199px) {

    .interior-gallery-item {
        height: 330px;
    }

}


/* ==================================================
991px
================================================== */

@media (max-width: 991px) {

    .interior-gallery-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .interior-gallery-intro {
        max-width: 650px;
    }

    .interior-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .interior-gallery-item {
        height: 320px;
    }

    .interior-lightbox {
        padding: 35px 70px;
    }

    .interior-lightbox-prev {
        left: 15px;
    }

    .interior-lightbox-next {
        right: 15px;
    }

}


/* ==================================================
767px
================================================== */

@media (max-width: 767px) {

    .interior-gallery-header {
        margin-bottom: 35px;
    }

    .interior-gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .interior-gallery-item {
        height: 310px;
    }

}


/* ==================================================
575px
================================================== */

@media (max-width: 575px) {

    .interior-gallery-item {
        height: 280px;
    }

    .interior-gallery-content {
        left: 20px;
        right: 20px;
        bottom: 19px;
    }

    .interior-gallery-content h3 {
        font-size: 20px;
    }

    .interior-gallery-view {
        top: 15px;
        right: 15px;

        width: 40px;
        height: 40px;
    }

    .interior-lightbox {
        padding: 60px 20px;
    }

    .interior-lightbox-content {
        width: 100%;
        height: 100%;
    }

    .interior-lightbox-content img {
        max-width: 100%;
        max-height: 80vh;
    }

    .interior-lightbox-close {
        top: 15px;
        right: 15px;

        width: 42px;
        height: 42px;

        font-size: 14px;
    }

    .interior-lightbox-prev,
    .interior-lightbox-next {
        top: auto;
        bottom: 20px;

        width: 44px;
        height: 44px;

        transform: none;
    }

    .interior-lightbox-prev {
        left: calc(50% - 52px);
    }

    .interior-lightbox-next {
        right: calc(50% - 52px);
    }

    .interior-lightbox-prev:hover,
    .interior-lightbox-next:hover {
        transform: translateY(-3px);
    }

}






/* ==================================================
   CLICK TO TOP
================================================== */

.interior-scroll-top {
    position: fixed;
    right: 25px;
    bottom: 18px;
    z-index: 999;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #b9965a;
    border-radius: 0;

    background: #1c1c1c;
    color: #c6a36b;

    font-size: 13px;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        box-shadow .3s ease;
}

.interior-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.interior-scroll-top:hover {
    background: #b9965a;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(185, 150, 90, .25);
}

.interior-scroll-top i {
    transition: transform .3s ease;
}

.interior-scroll-top:hover i {
    transform: translateY(-3px);
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 575px) {

    .interior-scroll-top {
        right: 16px;
        bottom: 10px;
        width: 42px;
        height: 42px;
        font-size: 12px;
    }

}

























/* =========================================
   HOME PRODUCTS
========================================= */

.interior-products {
    background: #faf9f6;
}


/* =========================================
   HEADING
========================================= */

.products-heading {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}

.products-heading .interior-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
}

.products-heading .interior-section-title {
    margin: 0;
    text-align: center;
}

.products-heading .interior-section-title span {
    display: inline;
}


/* =========================================
   CATEGORY FILTER
========================================= */

.product-category-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.product-category-btn {
    min-width: 100px;
    padding: 10px 18px;
    border: 1px solid #ddd5c8;
    background: #fff;
    color: #777;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.product-category-btn:hover {
    border-color: #b9965a;
    color: #9a783f;
}

.product-category-btn.active {
    border-color: #b9965a;
    background: #b9965a;
    color: #fff;
}


/* =========================================
   PRODUCT CARD
========================================= */

.home-product-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7e0d5;
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.home-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(35, 28, 18, .10);
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.home-product-image {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: #eee;
}

.home-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.home-product-card:hover .home-product-image img {
    transform: scale(1.06);
}


/* =========================================
   CATEGORY BADGE
========================================= */

.home-product-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, .95);
    color: #876b40;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}


/* =========================================
   PRODUCT ARROW
========================================= */

.home-product-arrow {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1c1c1c;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    transition:
        background .3s ease,
        transform .3s ease;
}

.home-product-arrow:hover {
    background: #b9965a;
    color: #fff;
    transform: translateY(-3px);
}


/* =========================================
   PRODUCT CONTENT
========================================= */

.home-product-content {
    padding: 20px 20px 22px;
}

.home-product-content > span {
    display: block;
    margin-bottom: 7px;
    color: #b9965a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.home-product-content h3 {
    margin: 0 0 8px;
    color: #222;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.3;
}

.home-product-content p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================
   VIEW ALL BUTTON
========================================= */

.products-view-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .home-product-image {
        height: 230px;
    }

}


@media (max-width: 767px) {

    .products-heading {
        margin-bottom: 25px;
    }

    .product-category-nav {
        margin-bottom: 28px;
    }

    .product-category-btn {
        min-width: auto;
        padding: 9px 13px;
        font-size: 9px;
    }

    .home-product-image {
        height: 240px;
    }

}


@media (max-width: 575px) {

    .products-heading .interior-section-title {
        font-size: 30px;
        line-height: 1.25;
    }

    .product-category-nav {
        gap: 6px;
    }

    .product-category-btn {
        padding: 8px 11px;
        font-size: 8px;
        letter-spacing: .8px;
    }

    .home-product-image {
        height: 250px;
    }

    .home-product-content {
        padding: 18px;
    }

    .home-product-content h3 {
        font-size: 20px;
    }

}












/* =====================================================
   MSS CONTACT FORM
   UNIQUE FLOATING LABEL STYLE
===================================================== */

.mss-contact-form {
    width: 100%;
}


/* =========================================
   ROW SPACING
========================================= */

.mss-contact-form .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 10px;
}


/* =========================================
   FIELD WRAPPER
========================================= */

.mss-contact-form .floating-input-wrap {
    position: relative;
    width: 100%;
}


/* =========================================
   INPUT / SELECT
========================================= */

.mss-contact-form .floating-input-wrap input,
.mss-contact-form .floating-input-wrap select {
    width: 100%;
    height: 45px;
    padding: 10px 12px 8px 35px;
    border: 1px solid #ded9d0;
    border-radius: 0;
    outline: none;

    background: #fff;
    color: #252525;

    font-size: 13px;
    line-height: 1.4;

    box-shadow: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}


/* =========================================
   TEXTAREA
========================================= */

.mss-contact-form .floating-input-wrap textarea {
    width: 100%;

    height: 90px;
    min-height: 90px;

    padding: 20px 12px 8px 42px;

    border: 1px solid #ded9d0;
    border-radius: 0;

    outline: none;

    background: #fff;
    color: #252525;

    font-size: 12px;
    line-height: 1.5;

    resize: none;

    box-shadow: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}


/* =========================================
   HIDE PLACEHOLDER
========================================= */

.mss-contact-form input::placeholder,
.mss-contact-form textarea::placeholder {
    color: transparent;
}


/* =========================================
   SELECT
========================================= */

.mss-contact-form .floating-input-wrap select {
    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;

    padding-right: 35px;
}


/* =========================================
   ICON
========================================= */

.mss-contact-form .floating-input-wrap > i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 3;

    color: #a9824b;

    font-size: 13px;

    pointer-events: none;

    transition: color .25s ease;
}


/* =========================================
   TEXTAREA ICON
========================================= */

.mss-contact-form .textarea-wrap > i {
    top: 19px;
    transform: none;
}


/* =========================================
   FLOATING LABEL
========================================= */

.mss-contact-form .floating-input-wrap label {
    position: absolute;

    left: 42px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    margin: 0;
    padding: 0 4px;

    background: #fff;

    color: #85817a;

    font-size: 12px;
    font-weight: 400;

    line-height: 1;

    pointer-events: none;

    transition:
        top .2s ease,
        transform .2s ease,
        font-size .2s ease,
        color .2s ease;
}


/* =========================================
   TEXTAREA LABEL
========================================= */

.mss-contact-form .textarea-wrap label {
    top: 20px;
    transform: none;
}


/* =========================================
   INPUT FLOAT
========================================= */

.mss-contact-form
.floating-input-wrap
input:focus + label,

.mss-contact-form
.floating-input-wrap
input:not(:placeholder-shown) + label {

    top: 0;

    transform: translateY(-50%);

    color: #9b763f;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .3px;
}


/* =========================================
   TEXTAREA FLOAT
========================================= */

.mss-contact-form
.floating-input-wrap
textarea:focus + label,

.mss-contact-form
.floating-input-wrap
textarea:not(:placeholder-shown) + label {

    top: 0;

    transform: translateY(-50%);

    color: #9b763f;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .3px;
}


/* =========================================
   SELECT FLOAT
========================================= */

.mss-contact-form
.floating-input-wrap
select:focus + label,

.mss-contact-form
.floating-input-wrap
select:valid + label {

    top: 0;

    transform: translateY(-50%);

    color: #9b763f;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .3px;
}


/* =========================================
   FOCUS BORDER
========================================= */

.mss-contact-form
.floating-input-wrap
input:focus,

.mss-contact-form
.floating-input-wrap
select:focus,

.mss-contact-form
.floating-input-wrap
textarea:focus {

    border-color: #b08a50;

    box-shadow:
        0 0 0 2px rgba(176, 138, 80, .07);
}


/* =========================================
   FOCUS ICON
========================================= */

.mss-contact-form
.floating-input-wrap:focus-within > i {

    color: #8b6738;
}


/* =========================================
   BUTTON
========================================= */

.mss-contact-form .interior-form-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    height: 45px;

    padding: 0 21px;

    border: 0;
    border-radius: 0;

    background: #1d1d1d;

    color: #fff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease;
}


/* =========================================
   BUTTON ICON
========================================= */

.mss-contact-form
.interior-form-btn i {

    font-size: 11px;

    transition: transform .3s ease;
}


/* =========================================
   BUTTON HOVER
========================================= */

.mss-contact-form
.interior-form-btn:hover {

    background: #a9824b;

    color: #fff;
}


.mss-contact-form
.interior-form-btn:hover i {

    transform: translateX(4px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .mss-contact-form .row {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 8px;
    }


    .mss-contact-form
    .floating-input-wrap
    input,

    .mss-contact-form
    .floating-input-wrap
    select {

        height: 48px;

        padding-left: 40px;
    }


    .mss-contact-form
    .floating-input-wrap
    textarea {

        height: 82px;
        min-height: 82px;

        padding-left: 40px;
    }


    .mss-contact-form
    .floating-input-wrap
    > i {

        left: 14px;
    }


    .mss-contact-form
    .floating-input-wrap
    label {

        left: 40px;
    }


    .mss-contact-form
    .interior-form-btn {

        width: 100%;

        height: 44px;
    }

}

















/* ==================================================
MSS MOBILE ENQUIRY FORM
================================================== */

.mss-mobile-enquiry-section {
    display: none;
    position: relative;
    padding: 22px 0 28px;
    background:
        linear-gradient(
            180deg,
            #f8f6f2 0%,
            #ffffff 100%
        );
}


/* ==================================================
CARD
================================================== */

.mss-mobile-enquiry-card {
    position: relative;
    overflow: hidden;
    padding: 25px 18px 20px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(30, 30, 30, 0.08);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);
}


.mss-mobile-enquiry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            #1b1b1b,
            #b89455,
            #1b1b1b
        );
}


/* ==================================================
HEADING
================================================== */

.mss-mobile-enquiry-head {
    margin-bottom: 20px;
}


.mss-mobile-enquiry-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 50px;
    background: #f5f1e9;
    color: #8d6b35;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.1px;
}


.mss-mobile-enquiry-badge i {
    font-size: 9px;
}


.mss-mobile-enquiry-head h2 {
    margin: 0;
    color: #1d1d1d;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}


.mss-mobile-enquiry-head h2 span {
    display: block;
    color: #9b783e;
}


.mss-mobile-enquiry-head p {
    margin: 9px 0 0;
    max-width: 440px;
    color: #777;
    font-size: 13px;
    line-height: 1.65;
}


/* ==================================================
FORM GROUP
================================================== */

.mss-mobile-enquiry-section
.interior-form-group {
    margin-bottom: 11px;
}


/* ==================================================
FLOATING FIELD
================================================== */

.mss-mobile-enquiry-section
.interior-floating-field {
    position: relative;
    min-height: 48px;
}


/* ==================================================
FIELD ICON
================================================== */

.mss-mobile-enquiry-section
.interior-floating-field
> i:first-child {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 2;
    transform: translateY(-50%);
    color: #9b783e;
    font-size: 13px;
    pointer-events: none;
}


/* ==================================================
COMMON FIELDS
================================================== */

.mss-mobile-enquiry-section
.interior-floating-field
input,

.mss-mobile-enquiry-section
.interior-floating-field
select,

.mss-mobile-enquiry-section
.interior-floating-field
textarea {
    width: 100%;
    border: 1px solid #e5e1da;
    border-radius: 12px;
    background: #fbfaf8;
    color: #222;
    font-size: 13px;
    outline: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


/* ==================================================
INPUT
================================================== */

.mss-mobile-enquiry-section
.interior-floating-field
input {
    height: 48px;
    padding:
        9px 12px 9px 42px;
}


/* ==================================================
SELECT
================================================== */

.mss-mobile-enquiry-section
.interior-floating-field
select {
    height: 48px;
    padding:
        4px 38px 5px 42px;

    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}


/* ==================================================
TEXTAREA
================================================== */

.mss-mobile-enquiry-section
.interior-floating-textarea {
    min-height: 90px;
}


.mss-mobile-enquiry-section
.interior-floating-field
textarea {
    min-height: 90px;
    padding:
        21px 12px 8px 42px;

    resize: vertical;
}


/* ==================================================
TEXTAREA ICON
================================================== */

.mss-mobile-enquiry-section
.interior-floating-textarea
> i:first-child {
    top: 22px;
    transform: none;
}


/* ==================================================
FLOATING LABEL
================================================== */

.mss-mobile-enquiry-section
.interior-floating-field
label {
    position: absolute;
    top: 50%;
    left: 42px;
    z-index: 2;

    padding: 0 4px;

    transform: translateY(-50%);

    color: #8b8b8b;
    background: transparent;

    font-size: 12px;
    line-height: 1;

    pointer-events: none;

    transition:
        top .2s ease,
        left .2s ease,
        font-size .2s ease,
        color .2s ease,
        background .2s ease;
}


/* ==================================================
FLOATING STATE
================================================== */

.mss-mobile-enquiry-section
.interior-floating-field
input:focus + label,

.mss-mobile-enquiry-section
.interior-floating-field
input:not(:placeholder-shown) + label {
    top: 0;
    left: 38px;

    color: #9b783e;
    background: #ffffff;

    font-size: 9px;
    font-weight: 600;
}


/* ==================================================
SELECT
================================================== */

.mss-mobile-enquiry-section
.interior-floating-field
select:focus {
    border-color: #b39461;

    box-shadow:
        0 0 0 3px rgba(179, 148, 97, 0.10);

    background: #ffffff;
}


/* ==================================================
SELECT ARROW
================================================== */

.mss-mobile-enquiry-section
.select-arrow {
    position: absolute;
    top: 50%;
    right: 14px;

    transform: translateY(-50%);

    color: #8d8d8d;
    font-size: 10px;

    pointer-events: none;
}


/* ==================================================
TEXTAREA LABEL
================================================== */

.mss-mobile-enquiry-section
.interior-floating-textarea
label {
    top: 22px;
}


.mss-mobile-enquiry-section
.interior-floating-textarea
textarea:focus + label,

.mss-mobile-enquiry-section
.interior-floating-textarea
textarea:not(:placeholder-shown) + label {
    top: 0;
    left: 38px;

    color: #9b783e;
    background: #ffffff;

    font-size: 9px;
    font-weight: 600;
}


/* ==================================================
FOCUS
================================================== */

.mss-mobile-enquiry-section
.interior-floating-field
input:focus,

.mss-mobile-enquiry-section
.interior-floating-field
textarea:focus {
    border-color: #b39461;
    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(179, 148, 97, 0.10);
}


/* ==================================================
SUBMIT BUTTON
================================================== */

.mss-mobile-submit {
    width: 100%;
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;
    margin-top: 5px;

    border: 0;
    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #1c1c1c,
            #303030
        );

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .16);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.mss-mobile-submit i {
    font-size: 11px;

    transition:
        transform .25s ease;
}


.mss-mobile-submit:active {
    transform: scale(.98);
}


.mss-mobile-submit:hover i {
    transform: translateX(4px);
}


/* ==================================================
TRUST
================================================== */

.mss-mobile-enquiry-trust {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
    margin-top: 12px;
    padding-top: 11px;

    border-top: 1px solid #eeeae3;
}


.mss-mobile-enquiry-trust span {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: #858585;
    font-size: 9px;
    line-height: 1.3;
}


.mss-mobile-enquiry-trust i {
    color: #9b783e;
    font-size: 10px;
}


/* ==================================================
MOBILE ONLY
================================================== */

@media (max-width: 767.98px) {

    .mss-mobile-enquiry-section {
        display: block;
    }

}


/* ==================================================
TABLET + DESKTOP HIDE
================================================== */

@media (min-width: 768px) {

    .mss-mobile-enquiry-section {
        display: none !important;
    }

}


/* ==================================================
SMALL MOBILE
================================================== */

@media (max-width: 380px) {

    .mss-mobile-enquiry-card {
        padding:
            22px 14px 18px;

        border-radius: 19px;
    }


    .mss-mobile-enquiry-head h2 {
        font-size: 23px;
    }


    .mss-mobile-enquiry-head p {
        font-size: 12px;
    }


    .mss-mobile-enquiry-trust span {
        font-size: 8px;
    }

}








/* ==================================================
   MOBILE FOOTER
   QUICK LINKS + SERVICES SAME ROW
================================================== */

@media (max-width: 767.98px) {

    .interior-footer-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px 18px;
    }

    /* ABOUT FULL WIDTH */
    .interior-footer-main .footer-about {
        grid-column: 1 / -1;
    }

    /* QUICK LINKS */
    .interior-footer-main .footer-column:nth-child(2) {
        grid-column: 1;
        width: 100%;
    }

    /* SERVICES */
    .interior-footer-main .footer-column:nth-child(3) {
        grid-column: 2;
        width: 100%;
    }

    /* CONTACT FULL WIDTH */
    .interior-footer-main .footer-contact {
        grid-column: 1 / -1;
        width: 100%;
    }

    /* FOOTER HEADING */
    .interior-footer-main .footer-column h3 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    /* LINKS */
    .interior-footer-main .footer-column ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .interior-footer-main .footer-column ul li {
        margin-bottom: 9px;
    }

    .interior-footer-main .footer-column ul li a {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        font-size: 12px;
        line-height: 1.45;
    }

    .interior-footer-main .footer-column ul li a i {
        flex-shrink: 0;
        margin-top: 3px;
        font-size: 9px;
    }

}







