/* Floating icons */
.contact-fixed-icons {
    position      : fixed;
    right         : 0;
    top           : 35%;
    display       : flex;
    flex-direction: column;
    z-index       : 9999;
}

.btn-success {
    background-color: #49af45;
}

.contact-icon {
    position       : relative;
    color          : #fff;
    padding        : 12px;
    margin         : 2px 0;
    display        : flex;
    align-items    : center;
    justify-content: center;
    cursor         : pointer;
    font-size      : 22px;
    text-decoration: none;
    border-radius  : 8px 0 0 8px;
    transition     : all 0.3s;
}

.contact-icon.whatsapp {
    background: #25D366;
}

.contact-icon.call {
    background: #007bff;
}

.contact-icon.connect {
    background: #87c45a;
}

.fa-whatsapp {
    font-size: 30px;
}

a:hover {
    color: #fff;
}

.contact-icon:hover {
    opacity: 0.85;
}

/* Tooltip text */
.tooltip-text {
    visibility      : hidden;
    width           : max-content;
    background-color: #333;
    color           : #fff;
    text-align      : center;
    padding         : 6px 12px;
    border-radius   : 6px;
    position        : absolute;
    right           : 100%;
    margin-right    : 10px;
    white-space     : nowrap;
    font-size       : 15px;
    top             : 50%;
    transform       : translateY(-50%);
    opacity         : 0;
    transition      : opacity 0.3s, transform 0.3s;
}

.contact-icon:hover .tooltip-text {
    visibility: visible;
    opacity   : 1;
    transform : translateY(-50%) translateX(0);
}

/* Connect popup */
.connect-popup {
    display      : none;
    position     : fixed;
    top          : 50%;
    left         : 50%;
    transform    : translate(-50%, -50%);
    width        : 360px;
    max-width    : 90%;
    background   : #fff;
    border-radius: 10px;
    box-shadow   : 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index      : 10000;
    padding      : 20px;
    font-size    : 16px;
}

.connect-popup-content h5 {
    font-weight: 600;
    font-size  : 20px;
    text-align : center;
}

.connect-popup .close-btn {
    position : absolute;
    top      : 10px;
    right    : 15px;
    font-size: 26px;
    cursor   : pointer;
    color    : #333;
}

.connect-popup .form-control {
    width    : 100%;
    padding  : 10px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-fixed-icons {
        top: 30%;
    }

    .connect-popup {
        width    : 90%;
        font-size: 14px;
        padding  : 15px;
    }
}