/* --- Contact Modal --- */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.contact-modal-content {
    background-color: #ffffff;

    margin: 15% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #BF9850;
}

.contact-modal h3 {
    margin-top: 10px;
    color: #BF9850;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-modal p {
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
}

.modal-contact-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.modal-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    background: #fff;
}

.modal-btn i {
    font-size: 36px;
    margin-bottom: 10px;
    color: #BF9850;
}

.modal-btn span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.modal-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-btn.phone:hover {
    border-color: #BF9850;
}

.modal-btn.whatsapp:hover {
    border-color: #25D366;
}

.modal-btn.instagram:hover {
    border-color: #E1306C;
}
.modal-btn.whatsapp i {
    color: #25D366;
}
.modal-btn.instagram i {
    color: #E1306C;
}   

/* RTL Support */
body.rtl .close-modal {
    float: left;
    right: auto;
    left: 20px;
}