/* Why Trust Us Section */
.why-trust {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.why-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e52d27, transparent);
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e52d27, #ff6b47);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #e52d27, #ff6b47);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(229, 45, 39, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(229, 45, 39, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon i {
    transform: scale(1.2);
}

.feature h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.feature h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e52d27, #ff6b47);
    transition: width 0.3s ease;
}

.feature:hover h3::after {
    width: 60px;
}

.feature p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Additional decorative elements */
.feature:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #e52d27, #ff6b47);
}

.feature:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #ff6b47, #e52d27);
}

.feature:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #e52d27, #ff4757);
}

/* Floating background elements */
.why-trust::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(229, 45, 39, 0.1), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Trust badges animation */
.feature {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature:nth-child(1) { animation-delay: 0.2s; }
.feature:nth-child(2) { animation-delay: 0.4s; }
.feature:nth-child(3) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    .why-trust {
        padding: 60px 0;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature {
        padding: 40px 25px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
    
    .feature p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .feature {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 1.6rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }
}
