/* ==========================================
   CONVERSION FOCUSED - PREMIUM ELEMENTS
   ========================================== */

/* Floating Action Buttons */
.floating-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 15px 0;
    z-index: 998;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.floating-cta-bar.show {
    transform: translateY(0);
}

.floating-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-cta-text {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}

.floating-cta-buttons {
    display: flex;
    gap: 10px;
}

.btn-floating-call {
    background: var(--white);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-floating-call:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 5px 20px rgba(255,255,255,0.5);
    color: var(--primary);
}

/* Premium Stats Section */
.premium-stats {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.premium-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></svg>');
    background-size: 30px 30px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    position: relative;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--white);
    font-size: 16px;
    opacity: 0.9;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray-600);
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.trust-badge-text {
    font-weight: 600;
    font-size: 14px;
}

/* Sticky Contact Widget */
.sticky-contact-widget {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
}

.sticky-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.sticky-btn:hover {
    transform: scale(1.1);
}

.sticky-btn.phone {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.sticky-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.sticky-btn.email {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Social Proof Notification */
.social-proof-popup {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 997;
    max-width: 300px;
    transform: translateX(-400px);
    transition: transform 0.5s ease;
}

.social-proof-popup.show {
    transform: translateX(0);
}

.social-proof-content {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-proof-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.social-proof-text {
    flex: 1;
}

.social-proof-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
}

.social-proof-action {
    color: var(--gray-600);
    font-size: 12px;
}

.social-proof-time {
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .floating-cta-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .floating-cta-text {
        font-size: 14px;
    }

    .stat-number {
        font-size: 36px;
    }

    .trust-badges {
        gap: 20px;
    }

    .sticky-contact-widget {
        right: 10px;
        gap: 10px;
    }

    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .sticky-btn::after {
        display: none;
    }

    .social-proof-popup {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}
