/* Sticky Contact Widget Styles */
.sticky-contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
}

.contact-toggle-btn {
    width: auto;
    height: auto;
    padding: 12px 20px;
    border-radius: 30px;
    background-color: #0f4c5f;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.contact-toggle-btn:hover {
    background-color: #0a3a49;
    transform: translateY(-3px);
}

.contact-widget-panel {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    width: 300px;
    background: white;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.contact-widget-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    color: #666;
    cursor: pointer;
}

.contact-close-btn:hover {
    color: #333;
}

.cta-icon-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-icon-link:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .sticky-contact-widget {
        bottom: 72px;
        right: 16px;
    }
}

@media (max-width: 576px) {
    .sticky-contact-widget {
        bottom: 72px;
        right: 16px;
    }
    
    .contact-toggle-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .contact-widget-panel {
        width: 280px;
        padding: 1.25rem;
        right: -10px;
    }
}
