.enquire-btn {
    position: fixed;
    right: 20px;
    bottom: 65px;
    z-index: 9999;

    background: #ff6060;
    color: #fff;
    border: none;
    cursor: pointer;

    box-shadow: 0 10px 30px rgba(214, 40, 40, 0.35);
    transition: all 0.3s ease;
    overflow: hidden;
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.enquire-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(214, 40, 40, 0.45);
}

.enquire-btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}