.sticky-consultation {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    background: linear-gradient(45deg, #FFC107, #FF9800);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    font-family: inherit;
}
.sticky-consultation:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #fff !important;
}
.sticky-consultation svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
#consultation {
    scroll-margin-top: 40px;
}
/* New Form Styles */
.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}
.consultation-radios {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.consultation-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: bold;
    color: #555;
    font-size: 15px;
}
.consultation-radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #506CEA;
}
.consultation-inputs {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.consultation-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    background: transparent;
    font-family: inherit;
}
.consultation-btn {
    background: #506CEA;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.consultation-btn:hover {
    background: #3d55bf;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80, 108, 234, 0.3);
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
@media (max-width: 768px) {
    .sticky-consultation {
        left: 15px;
        bottom: 15px;
        padding: 10px 20px;
        font-size: 14px;
    }
    .sticky-consultation svg {
        width: 20px;
        height: 20px;
    }
    .consultation-inputs {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        gap: 15px;
    }
    .consultation-input {
        background: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        text-align: center;
        border: 1px solid #eee;
    }
    .consultation-btn {
        width: 100%;
        padding: 15px;
    }
}
