/* ==================================================
   ROOFNEST V2 — SIDEBAR / CONTACT CARD
   ================================================== */

.property-sidebar {
    width: 100%;
    position: relative;
}

.contact-box {
    position: sticky;
    top: 100px;

    width: 100%;
    box-sizing: border-box;

    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 16px;

    padding: 28px;

    box-shadow: 0 15px 45px rgba(0,0,0,.08);

    transition: all .3s ease;
}

.contact-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 55px rgba(0,0,0,.12);
}

/* Contact Heading */

.contact-box h3 {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
}

/* Sidebar Price */

.sidebar-price {
    margin: 15px 0 20px;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;

    color: #16a34a;
}

/* Call / WhatsApp Buttons */

.call-btn,
.whatsapp-btn {
    display: block;

    width: 100%;
    box-sizing: border-box;

    padding: 14px 18px;
    margin-top: 12px;

    border-radius: 9px;

    text-align: center;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    color: #ffffff !important;

    transition: all .25s ease;
}

.call-btn {
    background: #2563eb;
}

.call-btn:hover {
    background: #1d4ed8;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #22c55e;
}

.whatsapp-btn:hover {
    background: #16a34a;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 992px) {

    .contact-box {
        position: relative;
        top: auto;
    }

}

/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 768px) {

    .contact-box {
        padding: 22px;
        border-radius: 14px;
    }

    .contact-box h3 {
        font-size: 23px;
    }

    .sidebar-price {
        font-size: 27px;
    }

    .call-btn,
    .whatsapp-btn {
        padding: 13px 15px;
    }

}