/* Simple Sticky CTA Footer */
.sticky-cta-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-footer.visible {
    transform: translateY(0);
}

.sticky-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.sticky-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.sticky-cta-btn-primary {
    background: white;
    color: #1a1a1a;
}

.sticky-cta-btn-primary:hover {
    transform: scale(1.05);
}

.sticky-cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.sticky-cta-btn-secondary:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

.sticky-cta-close {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    font-size: 18px;
    line-height: 1;
    transition: color 0.2s ease;
}

.sticky-cta-close:hover {
    color: white;
}

/* Mobile */
@media (max-width: 640px) {
    .sticky-cta-close {
        top: 12px;
        right: 12px;
        transform: none;
    }
    .sticky-cta-container {
        flex-direction: column;
        gap: 8px;
    }

    .sticky-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
