/* ============================================
   TRUST SIGNALS - SEO ENHANCEMENT
   ============================================ */

.trust-signals {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin-top: var(--spacing-lg, 2rem);
    padding: var(--spacing-md, 1.5rem);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 150px;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.trust-icon {
    font-size: 2rem;
    line-height: 1;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.trust-rating {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF6B35;
    line-height: 1;
}

.trust-label {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Loading State for Buttons */
.btn {
    position: relative;
    overflow: hidden;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: flex;
}

.btn-loading .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Button Enhancement */
.btn-primary {
    background: linear-gradient(135deg, #FF6B35, #FFA500);
    transition: all 0.3s ease;
}

.btn-primary:hover:not(.loading) {
    background: linear-gradient(135deg, #FFA500, #FF6B35);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary.loading {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Security Badges Section */
.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.security-badge:hover {
    transform: scale(1.1);
}

.security-badge img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.security-badge-label {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

/* Reviews Section Enhancement */
.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 15px;
    margin: 2rem 0;
}

.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.reviews-stars {
    font-size: 2rem;
    color: #FFD700;
    letter-spacing: 0.2rem;
}

.reviews-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B35;
}

.reviews-count {
    font-size: 1rem;
    color: #666;
}

.reviews-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-bar-label {
    font-size: 0.9rem;
    min-width: 60px;
}

.review-bar-fill {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.review-bar-progress {
    height: 100%;
    background: linear-gradient(90deg, #FF6B35, #FFD700);
    transition: width 0.5s ease;
}

/* Mobile Optimization */
@media (max-width: 640px) {
    .reviews-summary {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .security-badges {
        gap: 1rem;
    }
    
    .security-badge img {
        width: 50px;
        height: 50px;
    }
}
