 .contact-modal-overlay {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 99999;
        padding: 15px;
    }

    .contact-modal-box {
        width: 100%;
        max-width: 320px;
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        animation: modalShow 0.2s ease;
    }

    @keyframes modalShow {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .contact-modal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 18px;
        background: #007bff;
        color: #fff;
    }

    .contact-modal-title {
        margin: 0;
        font-size: 19px;
        font-weight: 600;
    }

    .contact-modal-close {
        border: 0;
        background: transparent;
        color: #fff;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        padding: 0;
    }

    .contact-modal-body {
        padding: 15px;
    }

    .phone-number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 12px 10px;
        margin-bottom: 10px;
        background: #f8f9fa;
        border: 1px solid #e5e5e5;
        border-radius: 9px;
        color: #333;
        font-size: 17px;
        font-weight: 600;
        text-decoration: none;
    }

    .phone-number:last-child {
        margin-bottom: 0;
    }

    .phone-number:hover {
        background: #007bff;
        border-color: #007bff;
        color: #fff;
    }

    .phone-icon {
        margin-right: 10px;
    }