/* 15. Premium Lets Connect Button */
#customPopupBtn {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 99;
    background: linear-gradient(135deg, #FFCC2A 0%, #FFD95A 100%);
    color: #000;
    border: none;
    padding: 16px 38px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 204, 42, 0.35), 0 0 0 0 rgba(255, 204, 42, 0);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    animation: btnPulseGlow 3s ease-in-out infinite;
}

@keyframes btnPulseGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 204, 42, 0.35), 0 0 0 0 rgba(255, 204, 42, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 204, 42, 0.35), 0 0 0 12px rgba(255, 204, 42, 0);
    }
}

#customPopupBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.45),
        transparent
    );
    transition: all 0.6s ease;
}

#customPopupBtn:hover::before {
    left: 100%;
}

#customPopupBtn:hover {
    transform: translateY(-4px) scale(1.06);
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    color: #000;
    animation: none;
}

#customPopupBtn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Responsive button adjustments */
@media screen and (max-width: 991px) {
    #customPopupBtn {
        top: 25px;
        right: 25px;
        padding: 13px 28px;
        font-size: 11px;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 767px) {
    #customPopupBtn {
        top: 18px;
        right: 18px;
        padding: 10px 22px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}
