/* Testimonials Section */
.boru-testimonials-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.boru-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.boru-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.boru-testimonials-header .subtitle {
    color: #4ECDC4;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.boru-testimonials-header .heading {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    font-family: 'Roboto', sans-serif;
}

.boru-testimonials-header .description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Testimonials Grid */
.boru-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Testimonial Card */
.boru-testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #4ECDC4;
    display: flex;
    flex-direction: column;
}

.boru-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Stars */
.boru-testimonial-stars {
    margin-bottom: 20px;
}

.boru-testimonial-stars i {
    color: #ffc107;
    font-size: 16px;
    margin-right: 4px;
}

/* Testimonial Text */
.boru-testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

/* Author Info */
.boru-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
}

.boru-testimonial-author strong {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.boru-testimonial-author span {
    color: #4ECDC4;
    font-size: 14px;
    font-weight: 500;
}

/* ========================================
   WHY CUSTOMERS CHOOSE US SECTION
   ======================================== */

.boru-why-customers-section {
    padding: 80px 20px;
    background: #e8f4f5;
    border-top: 3px solid #333;
    border-bottom: 3px solid #333;
}

.boru-why-customers-section .boru-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.boru-why-customers-section .boru-section-subtitle {
    color: #4ECDC4;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.boru-why-customers-section .boru-section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.boru-why-customers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.boru-why-customer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.boru-why-customer-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.boru-why-customer-item i {
    color: #4ECDC4;
    font-size: 24px;
    flex-shrink: 0;
}

.boru-why-customer-item span {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .boru-testimonials-section {
        padding: 60px 20px;
    }

    .boru-testimonials-header .heading {
        font-size: 32px;
    }

    .boru-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .boru-why-customers-section {
        padding: 60px 20px;
    }

    .boru-why-customers-section .boru-section-title {
        font-size: 32px;
    }

    .boru-why-customers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .boru-why-customers-section .boru-section-title {
        font-size: 28px;
    }

    .boru-why-customer-item {
        padding: 15px 20px;
    }

    .boru-why-customer-item span {
        font-size: 15px;
    }
}