/* ===== Trust Sections CSS ===== */
/* Trust Badges + Why Choose Us + Testimonials */

/* ========== Trust Badges ========== */
.trust-badges-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8faff 0%, #eef3ff 100%);
    border-top: 1px solid rgba(74, 123, 247, 0.08);
    border-bottom: 1px solid rgba(74, 123, 247, 0.08);
}
.trust-badges-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.trust-badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 123, 247, 0.1);
}
.trust-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A7BF7, #6C63FF);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-badge-icon i {
    color: #fff;
    font-size: 18px;
}
.trust-badge-text {
    display: flex;
    flex-direction: column;
}
.trust-badge-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}
.trust-badge-text span {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

/* ========== Why Choose Us ========== */
.why-choose-section {
    background: #fff;
}
.why-choose-card {
    padding: 30px 24px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #f0f0f0;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    height: 100%;
}
.why-choose-card:hover {
    border-color: #4A7BF7;
    box-shadow: 0 8px 30px rgba(74, 123, 247, 0.12);
    transform: translateY(-4px);
}
.why-choose-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(74, 123, 247, 0.1), rgba(108, 99, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.why-choose-icon i {
    font-size: 24px;
    color: #4A7BF7;
}
.why-choose-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.why-choose-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ========== Testimonials ========== */
.testimonials-section {
    background: linear-gradient(180deg, #f9fbff 0%, #fff 100%);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    box-shadow: 0 8px 35px rgba(74, 123, 247, 0.1);
    transform: translateY(-3px);
    border-color: rgba(74, 123, 247, 0.2);
}
.testimonial-stars {
    margin-bottom: 14px;
}
.testimonial-stars i {
    color: #FFC107;
    font-size: 15px;
    margin-right: 2px;
}
.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
    position: relative;
    padding-left: 16px;
    border-left: 3px solid rgba(74, 123, 247, 0.2);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f5f5f5;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A7BF7, #6C63FF);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-avatar i {
    color: #fff;
    font-size: 22px;
}
.testimonial-info {
    display: flex;
    flex-direction: column;
}
.testimonial-info strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}
.testimonial-info span {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}
.testimonial-company {
    color: #4A7BF7 !important;
    font-weight: 500;
}
.testimonial-company i {
    font-size: 10px;
    margin-right: 3px;
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
    .trust-badges-wrapper {
        gap: 16px;
    }
    .trust-badge-item {
        padding: 10px 14px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .trust-badges-wrapper {
        gap: 10px;
    }
    .trust-badge-item {
        flex: 1 1 calc(50% - 10px);
        min-width: 150px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-card {
        margin-bottom: 16px;
    }
}
