/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 9998;
    animation: slideInLeft 0.5s ease-out;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #D69234, #E69E3C);
    color: #000;
    padding: 18px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Alexandria', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(214, 175, 55, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(214, 175, 55, 0.7);
    background: linear-gradient(135deg, #E69E3C, #FFD700);
}

.floating-cta-btn i {
    font-size: 1.2rem;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Re-engagement Prompt */
.re-engagement-prompt {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    max-width: 350px;
    background: rgba(65, 65, 65, 0.98);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(214, 175, 55, 0.5);
    backdrop-filter: blur(15px);
    animation: slideInUp 0.5s ease-out;
    direction: rtl;
}

.re-engagement-content {
    position: relative;
}

.close-prompt {
    position: absolute;
    top: -10px;
    left: -10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-prompt:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.re-engagement-content h3 {
    font-family: 'Alexandria', sans-serif;
    color: #D69234;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.re-engagement-content p {
    font-family: 'Alexandria', sans-serif;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
    opacity: 0.9;
}

.prompt-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prompt-btn {
    font-family: 'Alexandria', sans-serif;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.prompt-btn:not(.primary) {
    background: transparent;
    color: var(--white);
    border-color: rgba(214, 175, 55, 0.5);
}

.prompt-btn:not(.primary):hover {
    background: rgba(214, 175, 55, 0.2);
    border-color: #D69234;
}

.prompt-btn.primary {
    background: linear-gradient(135deg, #D69234, #E69E3C);
    color: #000;
}

.prompt-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 175, 55, 0.4);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 80px;
        left: 20px;
    }

    .floating-cta-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .floating-cta-btn span {
        display: none;
    }

    .re-engagement-prompt {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
}

