/**
 * Trust Elements & Badges CSS
 * Styles for trust badges, verified testimonials, and credibility elements
 */

/* Trust Badges Section */
.trust-badges-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 0;
    margin: 3rem 0;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.trust-badge h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.trust-badge p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Verified Testimonials */
.testimonial-card.verified {
    position: relative;
    border: 2px solid #28a745;
}

.verified-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified-badge i {
    font-size: 1rem;
}

.purchase-verified {
    display: inline-block;
    color: #28a745;
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.testimonials-stats .stat {
    text-align: center;
}

.testimonials-stats .stat strong {
    display: block;
    font-size: 2rem;
    color: #ff6b00;
    margin-bottom: 0.5rem;
}

.testimonials-stats .stat span {
    color: #666;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .verified-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Tablet Breakpoint */
@media (min-width: 768px) and (max-width: 992px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-stats {
        gap: 2rem;
    }
}

/* Additional Trust Elements */
.company-info-badge {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-right: 4px solid #ff6b00;
    margin: 2rem 0;
}

.company-info-badge h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-info-badge h3 i {
    color: #ff6b00;
}

.company-info-badge ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-info-badge li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-info-badge li i {
    color: #28a745;
    font-size: 0.9rem;
}

/* Security Badges */
.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.security-badge i {
    font-size: 1.5rem;
    color: #28a745;
}

.security-badge span {
    font-weight: bold;
    color: #333;
}

/* Stats Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonials-stats .stat {
    animation: countUp 0.6s ease-out;
}

.testimonials-stats .stat:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonials-stats .stat:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonials-stats .stat:nth-child(3) {
    animation-delay: 0.3s;
}
