/* ================================
   PREMIUM STICKY CTA - IMAGE 1 STYLE
   Dark background with gold border
   ================================ */

.sticky-cta {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(400px);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sticky-cta.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(400px);
}

.sticky-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 30px 24px;
    background: linear-gradient(135deg, #1a2332 0%, #0d1b2a 100%);
    border: 2px solid #D4AF37;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.25);
    cursor: pointer;
    min-width: 240px;
    max-width: 260px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover glow effect */
.sticky-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.sticky-cta-btn:hover::before {
    left: 100%;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
    border-color: #f0c84a;
}

/* HIGH PRIORITY Badge */
.sticky-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%);
    color: #0d1b2a;
    padding: 6px 16px;
    border-radius: 0 0 12px 12px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(0.98);
    }
}

/* Icon */
.sticky-icon {
    font-size: 3rem;
    color: #D4AF37;
    text-align: center;
    width: 100%;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Text */
.sticky-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    text-align: center;
}

.sticky-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.sticky-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    font-weight: 400;
}

/* Minimized Button */
.sticky-minimize-btn {
    position: fixed;
    right: 20px;
    bottom: 100px;
    background: linear-gradient(135deg, #D4AF37, #b8941f);
    color: #0d1b2a;
    border: 2px solid #f0c84a;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    display: none;
    align-items: center;
    gap: 8px;
    z-index: 900;
    transition: all 0.3s ease;
    animation: slideInFromRight 0.5s ease;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(200px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.sticky-minimize-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f0c84a, #D4AF37);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sticky-cta {
        right: 10px;
        transform: translateY(-50%) translateX(320px);
    }

    .sticky-cta.visible {
        transform: translateY(-50%) translateX(0);
    }

    .sticky-cta-btn {
        min-width: 200px;
        max-width: 220px;
        padding: 24px 20px;
        gap: 12px;
    }

    .sticky-badge {
        font-size: 0.6rem;
        padding: 5px 12px;
        right: 15px;
    }

    .sticky-icon {
        font-size: 2.2rem;
    }

    .sticky-title {
        font-size: 1.1rem;
    }

    .sticky-subtitle {
        font-size: 0.85rem;
    }

    .sticky-minimize-btn {
        right: 10px;
        bottom: 80px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .sticky-cta {
        right: 5px;
    }

    .sticky-cta-btn {
        min-width: 180px;
        max-width: 200px;
        padding: 20px 16px;
    }

    .sticky-icon {
        font-size: 2rem;
    }

    .sticky-title {
        font-size: 1rem;
    }

    .sticky-subtitle {
        font-size: 0.8rem;
    }
}

/* Extra polish - shine effect on hover */
.sticky-cta-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sticky-cta-btn:hover::after {
    opacity: 1;
}
