/* Sticky Callback Container Styles */
.sticky-callback {
    position: fixed;
    bottom: 30px;
    right: 0;
    background-color: #ff7700;
    color: white;
    padding: 10px 15px 10px 35px;
    z-index: 999;
    border-radius: 5px 0 0 5px;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.sticky-callback-text {
    margin-right: 10px;
    font-weight: 600;
    font-size: 14px;
}

.sticky-callback i {
    font-size: 18px;
}

.sticky-callback:hover {
    background-color: #e66c00;
}

.sticky-callback:hover:before {
    background-color: #e66c00;
}

.sticky-callback.visible {
    transform: translateX(0);
}

/* Sticky Social Media Container Styles */
.sticky-social {
    position: fixed;
    bottom: 30px;
    left: 0;
    background-color: #1b3979;
    color: white;
    padding: 15px 35px 15px 15px;
    z-index: 999;
    border-radius: 0 5px 5px 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.sticky-social-text {
    margin-right: 15px;
    font-weight: 600;
    font-size: 14px;
}

.sticky-social-icons {
    display: flex;
    gap: 10px;
}

.sticky-social-icons a {
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.sticky-social-icons a:hover {
    color: #ff7700;
    transform: translateY(-3px);
}

/* Hide the container when scrolled to footer */
.sticky-social.hidden {
    transform: translateX(-150%);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .sticky-social {
        bottom: 20px;
        padding: 8px 12px 8px 28px;
    }

    .sticky-social-text {
        font-size: 12px;
        margin-right: 10px;
    }

    .sticky-social-icons a {
        font-size: 16px;
    }
}