/* Floating Consultation Box */
.floating-consultation {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ce272d;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(206, 39, 45, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
}

.floating-consultation:hover {
    background: #b01e23;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(206, 39, 45, 0.4);
}

.consultation-text {
    font-weight: 600;
    font-size: 14px;
}

.phone-number a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.phone-number a:hover {
    text-decoration: underline;
}