/* Overlay */
.call-modal-overlay {
	display: none; /* Hide initially */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.call-modal-overlay.show {
    display: flex;
}

/* Modal */
.call-modal {
    position: relative;
    width: 100%;
    max-width: 430px;
    background: #fff;
    border-radius: 18px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: popup .25s ease;
}

/* Animation */
@keyframes popup {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: none;
    font-size: 28px;
    color: #777;
	background-color: white;
	height: 1px;
    cursor: pointer;
    transition: .2s;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
	background-color: white;
}

/* Icon */
.call-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #e8f8ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

/* Heading */
.call-modal h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
    line-height: 1.3;
}

/* Description */
.description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Call Button */
.call-btn {
    display: inline-block;
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    background: #16a34a;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    transition: .25s;
}

.call-btn:hover {
	color: #ffffff;
    background: #15803d;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .call-modal {
        padding: 30px 22px;
    }

    .call-modal h2 {
        font-size: 24px;
    }

    .call-btn {
        font-size: 20px;
    }
}