/* Customer Testimonials Styles */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-stars {
    font-size: 18px;
}

.testimonial-stars .fa-star {
    margin-right: 3px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.testimonial-avatar,
.testimonial-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-avatar-placeholder {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 20px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.author-position {
    color: #777;
    font-size: 14px;
    line-height: 1.4;
}

.author-location {
    color: #999;
    font-size: 13px;
    margin-top: 3px;
}

.author-location .fa-map-marker-alt {
    margin-right: 5px;
}

/* RTL Support for testimonials */
[dir="rtl"] .testimonial-author {
    text-align: right;
}

[dir="rtl"] .testimonial-avatar,
[dir="rtl"] .testimonial-avatar-placeholder {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .testimonial-stars .fa-star {
    margin-right: 0;
    margin-left: 3px;
}

[dir="rtl"] .author-location .fa-map-marker-alt {
    margin-right: 0;
    margin-left: 5px;
}

/* Promo Banner Enhancements */
.promo-banner {
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.promo-banner:hover {
    transform: translateY(-2px);
}

.promo-banner h3 {
    margin-bottom: 8px;
    font-weight: 700;
}

.promo-banner p {
    margin-bottom: 0;
    opacity: 0.9;
}

.promo-banner .btn {
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.promo-banner .btn:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 20px;
        padding: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .testimonial-avatar,
    .testimonial-avatar-placeholder {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    [dir="rtl"] .testimonial-avatar,
    [dir="rtl"] .testimonial-avatar-placeholder {
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .promo-banner .col-md-4 {
        text-align: center !important;
        margin-top: 15px;
    }
}
