.convince-boss-btn {
    position: fixed;
    top: 20vh;
    left: 20px;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.request-speaker {
    position: fixed;
    top: 20vh;
    right: 20px;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.btn-convince {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(141, 21, 67, 0.8);
    color: #fff;
    font-size: 15px;
    padding: 24px 24px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-convince:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-convince .text {
    display: none;
}

.btn-convince:hover .text {
    display: block;
    font-weight: 500;
    transition: opacity 0.4s ease;

    color: #ffffff;
}

.btn-convince i {
    color: rgb(1, 129, 245);
    font-size: 24px;
    margin: 10px;
    transition: transform 0.6s ease;
}

.btn-convince:hover i {
    transform: rotate(-10deg);
}

.btn-convince img.svg-icon {
    width: 6rem;
    height: 6rem;
    transition: transform 0.9s ease;
}

.btn-convince:hover img.svg-icon {
    transform: rotate(-10deg) scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .convince-boss-btn,
    .request-speaker {
        top: auto;
        bottom: 20px;
    }
    
    .convince-boss-btn {
        left: 10px;
    }
    
    .request-speaker {
        right: 10px;
    }
    
    .btn-convince {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .btn-convince img.svg-icon {
        width: 4.5rem;
        height: 4.5rem;
    }
}

@media (max-width: 768px) {
    .btn-convince {
        font-size: 13px;
        padding: 8px 12px;
        gap: 6px;
    }
    
    .btn-convince i {
        font-size: 20px;
        margin: 6px;
    }
    
    .btn-convince img.svg-icon {
        width: 4rem;
        height: 4rem;
    }
}

@media (max-width: 576px) {
    .convince-boss-btn,
    .request-speaker {
        bottom: 10px;
    }
    
    .btn-convince {
        font-size: 12px;
        padding: 6px 10px;
        gap: 4px;
    }
    
    .btn-convince i {
        font-size: 16px;
        margin: 4px;
    }
    
    .btn-convince img.svg-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    /* Hide text on smallest screens and only show icon */
    .btn-convince .text {
        display: none;
    }
    
    /* Optionally show text on hover even on mobile */
    .btn-convince:hover .text {
        display: block;
    }
}

/* Hidden state */
.convince-boss-btn.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.request-speaker.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}