/* Container: Fixed bottom-right */
.contact-widget {
    position: fixed;
    bottom: 152px;
    right: 54px;
    z-index: 999;
    font-family: sans-serif;
    @media (max-width: 768px) {
        right: 60px;
        bottom: 140px;
    }
    @media (max-width: 560px) {
        right: 10px;
        bottom: 77px;
    }
}

/* Button Styling */
.contact-widget__btn {
    width: 60px;
    height: 60px;
    background-color: #e61e44;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(230, 30, 68, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin-left: auto;
    @media (max-width: 768px) {
        width: 50px;
        height: 50px;
    }
}

.contact-widget__btn:hover {
    transform: scale(1.05);
}

/* Icon Animation (Swing) */
.contact-widget__btn svg {
    width: 30px;
    height: 30px;
    animation: phone-swing 2s infinite ease-in-out;
    transform-origin: center bottom;
}

@keyframes phone-swing {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(10deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(6deg); }
    40% { transform: rotate(-6deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* Tooltip Container */
.contact-widget__tooltip {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: max-content;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    text-align: left;
}

/* Tooltip Arrow */
.contact-widget__tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 22px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    transform: rotate(45deg);
    border-bottom-right-radius: 4px;
}

/* Active State */
.contact-widget.is-active .contact-widget__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Content Typography */
.contact-widget__row {
    margin-bottom: 12px;
}

.contact-widget__link {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #005b9f;
    text-decoration: none;
    line-height: 1.2;
}

.contact-widget__desc {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #005b9f;
    margin-top: 2px;
}

.contact-widget__title {
    font-size: 16px;
    font-weight: 800;
    color: #000;
    margin-top: 15px;
    margin-bottom: 5px;
}

.contact-widget__hours {
    font-size: 14px;
    color: #333;
    font-weight: 400;
}