.phone-cta-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007cba;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.phone-cta-button:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 124, 186, 0.4);
}

.phone-cta-button.disabled {
    background: #999;
    cursor: not-allowed;
}

.phone-cta-button.disabled:hover {
    background: #999;
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form-modal.show {
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: white;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.contact-form-modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 10px 20px;
    background-color: #012169;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #FFF;
    font-size: 18px;
    line-height: 1.0em;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #FFF;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #EA7600;
}

.modal-body {
    padding: 20px;
}

.modal-body p {
    margin: 0 0 10px 0;
    line-height: 1.6;
    color: #000;
}

.contact-form-btn {
    display: inline-block;
    background: #EA7600;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    list-style: 1.0em;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 5px;
    padding: 12px 24px;
    transition: background 0.3s ease;
}

.contact-form-btn:hover {
    color: #FFF;
    text-decoration: none;
    background: #EA7600;
}

@media (max-width: 768px) {
    .phone-cta-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
    }
    
    .modal-content {
        margin: 20px;
        width: calc(100% - 40px);
    }
}