
/* Side Contact Buttons */
.side-contact-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-contact-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    min-width: unset;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.side-contact-btn a i {
    font-size: 20px;
    margin-right: 0;
}

.side-contact-btn .call-btn {
    background-color: #007bff; /* Blue for call */
}

.side-contact-btn .whatsapp-btn {
    background-color: #25d366; /* Green for WhatsApp */
}

.side-contact-btn a:hover {
    transform: scale(1.1);
    opacity: 0.9;
    padding-left: 12px;
}
.plot-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.plot-card h5 {
    margin-bottom: 10px;
    color: #1763ad;
}