/* Trust Banner Section */
.trust-banner-section {
    border-radius: 12px !important;
}

.trust-banner-section .card-body {
    padding: 1.5rem 1rem !important;
}

.trust-item-banner {
    padding: 0.75rem 0.5rem;
    transition: transform 0.2s ease;
}

.trust-item-banner:hover {
    transform: translateY(-2px);
}

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

.trust-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem !important;
}

.trust-desc {
    font-size: 0.75rem;
    line-height: 1.2;
}

/* Trust Metrics Section */
.trust-metrics-section {
    border-radius: 12px !important;
}

.trust-metrics-section .card-body {
    padding: 1.5rem 1rem !important;
}

.trust-metric-item {
    padding: 0.5rem;
    transition: transform 0.2s ease;
}

.trust-metric-item:hover {
    transform: translateY(-2px);
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem !important;
}

.metric-label {
    font-size: 1rem;
    font-weight: 500;
    display: block;
}

.metric-icon {
    font-size: 1rem;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .trust-item-banner {
        padding: 0.5rem 0.25rem;
    }
    
    .trust-icon {
        font-size: 1.5rem;
    }
    
    .trust-title {
        font-size: 0.8rem;
        margin-bottom: 0.125rem !important;
    }
    
    .trust-desc {
        font-size: 0.7rem;
    }
    
    .trust-metric-item {
        padding: 0.375rem 0.125rem;
    }
    
    .metric-number {
        font-size: 1.5rem;
        margin-bottom: 0.125rem !important;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    .metric-icon {
        font-size: 0.85rem;
    }
    
    .trust-banner-section .card-body {
        padding: 0.75rem 0.5rem !important;
    }
    
    .trust-metrics-section .card-body {
        padding: 0.75rem 0.5rem !important;
    }
}

/* Testimonial Cards */
.testimonial-card {
    padding: 0;
    border-radius: 12px !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.testimonial-card .card-body {
    padding: 1.5rem 1.25rem !important;
}

.testimonial-stars i {
    margin: 0 1px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
}

.customer-name {
    font-size: 1rem;
    font-weight: 600;
}

.customer-badge {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Extra small devices */
@media (max-width: 575px) {
    .trust-title {
        font-size: 0.75rem;
    }
    
    .trust-desc {
        font-size: 0.65rem;
    }
    
    .metric-number {
        font-size: 1.25rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .customer-name {
        font-size: 0.9rem;
    }
    
    .customer-badge {
        font-size: 0.7rem;
    }
    
    .testimonial-stars i {
        font-size: 0.8rem;
    }
}