/**
 * CrownateStudio Sticky CTA Engine
 * Performance-driven conversion bar for Lead Generation
 */

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.hidden {
    transform: translateY(100%);
}

.cta-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-primary {
    background: #002AFF;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 42, 255, 0.4);
}

.cta-primary:hover {
    background: #001fcc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 42, 255, 0.6);
    color: #fff;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 768px) {
    .cta-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    .sticky-cta-bar {
        gap: 8px;
        padding: 10px 10px 20px 10px; /* Extra bottom padding for mobile safe area */
    }
}
