/* ============================= */
/* MODAL */
/* ============================= */
.sitevisit-modal__content {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
    position: relative;
}

.sitevisit-modal__close {
    position: absolute;
    top: 8px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
    z-index: 9;
}

.sitevisit-modal__close::before {
    content: "✕";
    font-size: 18px;
    font-weight: bold;
}

/* ============================= */
/* FORM PANEL */
/* ============================= */
.sitevisit-form {
    background: #ffffff;
    padding: 15px;
}

.sitevisit-form__title {
    font-weight: 700;
    color: #16180c;
    margin-bottom: 20px;
}

.sitevisit-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: .2s;
}

.sitevisit-input:focus {
    border-color: #16180c;
    box-shadow: 0 0 0 3px rgba(25, 135, 84, .15);
    outline: none;
}

/* ============================= */
/* CAPTCHA */
/* ============================= */
.sitevisit-captcha__box {
    display: flex;
    gap: 8px;
}

.sitevisit-captcha__box img {
    height: 42px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.sitevisit-captcha__box input {
    flex: 1;
    padding: 8px;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.sitevisit-captcha__refresh a {
    color: #929979;
    font-weight: 600;
}

/* ============================= */
/* CONSENT */
/* ============================= */
.sitevisit-consent {
    display: flex;
    gap: 10px;
    font-size: 12px;
    margin: 15px 0;
}

.sitevisit-consent a {
    color: #16180c;
}

/* ============================= */
/* INFO PANELS */
/* ============================= */
.sitevisit-promise ul,
.sitevisit-highlights ul {
    padding: 0;
    list-style: none;
}

.sitevisit-promise ul li,
.sitevisit-highlights ul li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    list-style: none;
}

.sitevisit-promise ul li i,
.sitevisit-highlights ul li i {
    margin-right: 10px;
    color: #ffffff;
}

.sitevisit-promise h5,
.sitevisit-highlights h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: beige;
}

.sitevisit-promise li,
.sitevisit-highlights li {
    margin-bottom: 10px;
    font-size: 14px;
}

/* ============================= */
/* BUTTONS */
/* ============================= */
.sitevisit-btn {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    background: linear-gradient(179deg, #8d985a, #2b330d);
    color: #fff;
    transition: .3s;
}

.sitevisit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 135, 25, 0.4);
}

/* ============================= */
/* INFO PANEL BACKGROUND */
/* ============================= */
.sitevisit-info {
    height: 100%;
    padding: 35px 25px;
    color: #fff;
    background: linear-gradient(0deg, #8d985a, #2b330d);
}

/* ============================= */
/* MOBILE STYLES */
/* ============================= */
@media (max-width: 767px) {
    .sitevisit-form {
        padding: 25px 20px;
    }

    .sitevisit-info {
        text-align: center;
        padding: 25px;
    }
}

/* ============================= */
/* MOBILE FIX (FINAL) */
/* ============================= */
@media (max-width: 575px) {
    .modal-dialog {
        margin: 0;
        height: 100dvh;
        max-width: 100%;
    }

    .modal-body,
    .modal-content {
        overflow: hidden !important;
        zoom: 85%;
    }

    .sitevisit-info {
        display: flex;
    }

    .sitevisit-form {
        padding: 16px;
    }

    .sitevisit-form__title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .sitevisit-input {
        font-size: 14px;
        padding: 10px;
        margin-bottom: 10px;
    }

    .sitevisit-btn {
        font-size: 15px;
        padding: 12px;
        border-radius: 8px;
    }

    .sitevisit-promise li {
        font-size: 14px;
    }

    .sitevisit-highlights span {
        font-size: 13px;
    }

    .sitevisit-modal__close {
        top: 10px;
        right: 12px;
        width: 34px;
        height: 34px;
    }
}

/* ============================= */
/* SLIDING CONTACT FORM */
/* ============================= */
.sidebar-contact {
    position: fixed;
    top: 65%;
    right: -350px;
    transform: translateY(-50%);
    width: 350px;
    height: auto;
    padding: 12px 34px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    box-sizing: border-box;
    transition: 0.5s;
    z-index: 1000;
}

.sidebar-contact.active {
    right: 0;
}

.sidebar-contact input,
.sidebar-contact textarea {
    width: 100%;
    height: 36px;
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, .5);
    outline: none;
}

.sidebar-contact h2 {
    margin: 0 0 20px;
    padding: 0;
    font-size: 30px;
}

.sidebar-contact textarea {
    height: 60px;
    resize: none;
}

.sidebar-contact input[type="submit"] {
    background: #02254b;
    color: #fff;
    cursor: pointer;
    font-weight: bolder !important;
    border: none;
    font-size: 18px !important;
}

/* Toggle buttons */
.rotate-text {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.toggle {
    position: absolute;
    height: 48px;
    width: 48px;
    text-align: center;
    cursor: pointer;
    background: #8d985a;
    top: 0;
    right: 350px;
    line-height: 48px;
    color: white;
}

.toggle-text {
    position: absolute;
    height: 47px;
    width: 200px;
    color: #fff;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    background: #2b330d;
    top: 124px;
    right: 274px;
    font-weight: bold;
    font-size: 22px;
}

/* ============================= */
/* MOBILE RESPONSIVE FOR SIDEBAR */
/* ============================= */
@media(max-width:768px) {
    .sidebar-contact {
        width: 100%;
        height: 100%;
        left: -100%;
    }

    .sidebar-contact .toggle {
        top: 50%;
        transform: translateY(-50%);
        transition: 0.5s;
    }

    .sidebar-contact.active .toggle {
        top: 0;
        right: 0;
        transform: translateY(0);
    }

    .scroll {
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }

    .content {
        padding: 50px 50px;
    }
}

/* ============================= */
/* FOOTER BAR */
/* ============================= */
.footer_bar {
    display: none;
}

.footer_col {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s all;
}

.footer_col a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.footer_col i {
    font-size: 16px;
}

/* Different backgrounds */
.footer_col.call {
    background-color: #687820;
}

.footer_col.enquire {
    background-color: #30351b;
}

.footer_col.whatsapp {
    background-color: #687820;
}

.footer_col:hover {
    opacity: 0.9;
}

/* MOBILE & TABLET */
@media only screen and (max-width: 991px) {
    .footer_bar {
        display: flex;
        position: fixed;
        bottom: -2px;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
        border-top: 1px solid #ccc;
    }

    .footer_col {
        font-size: 14px;
        padding: 12px 0;
    }

    .footer_col i {
        font-size: 16px;
    }
}

/* SMALLER MOBILES */
@media only screen and (max-width: 480px) {
    .footer_col {
        font-size: 12px;
        padding: 10px 0;
    }

    .footer_col i {
        font-size: 14px;
    }
}

/* ============================= */
/* VIDEO BANNER */
/* ============================= */
.video-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* STACK FORM ABOVE VIDEO FOR TABLETS */
@media (max-width: 1024px) {
    .video-element {
        height: auto;
        min-height: 250px;
    }
}

/* ============================= */
/* PROJECTS SLIDER */
/* ============================= */
.swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ============================= */
/* STEPS CARD */
/* ============================= */
.step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-card .icon {
    transition: color 0.3s ease;
}

.step-card .icon:hover {
    color: #1e8a00;
}

/* ============================= */
/* INTERIOR DESIGN LINKS */
/* ============================= */
.twm-achi-bx a {
    color: #63605f;
}

.twm-achi-bx a:hover {
    color: #fcf9f8;
}

/* ============================= */
/* SERVICES SECTION */
/* ============================= */
.section-full .service-icon-box-two .service-media {
    height: 355px;
}

/* ============================= */
/* CONTACT INPUTS */
/* ============================= */
input#phonepd {
    width: 500px;
    color: #000;
}

.contact-sec input#phonesd {
    width: 390px;
}

/* RESPONSIVE CONTACT INPUTS */
@media (max-width: 991px) {
    input#phonepd {
        width: 467px;
    }
}

@media (max-width: 1030px) and (min-width:992px) {
    .contact-sec input#phonesd {
        width: 304px;
    }
}

@media (max-width: 991px) and (min-width:577px) {
    .contact-sec input#phonesd {
        width: 624px;
    }
}

@media (max-width: 576px) and (min-width:381px) {
    .contact-sec input#phonesd {
        width: 329px;
    }
}

@media (max-width: 380px) {
    input#phonepd {
        width: 406px;
    }

    .contact-sec input#phonesd {
        width: 280px;
    }
}

@media (max-width: 330px) {
    .contact-sec input#phonesd {
        width: 224px;
    }
}

input#phonefd {
    width: 282px;
}

.effect-hvr3-inner p{
    color: #c3c3c3;
}

