
@import url('index.css');

.renmar-testimonials-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(30,136,229,0.95), rgba(76,175,80,0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 8%;
    position: relative;
}

.renmar-testimonials-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.renmar-testimonials-hero p {
    font-size: 20px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.renmar-testimonials {
    padding: 8rem 8%;
    background: white;
}

.renmar-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.renmar-testimonial {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.renmar-testimonial:hover {
    transform: translateY(-10px);
}

.renmar-testimonial-content {
    padding: 2rem;
    text-align: center;
}

.renmar-client-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid #1E88E5;
}

.renmar-quote {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.renmar-client-info h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    color: #333;
    margin-bottom: 0.5rem;
}

.renmar-client-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.renmar-rating {
    color: #FF4081;
    font-size: 20px;
}

.renmar-reviews {
    padding: 8rem 8%;
    background: #f9f9f9;
    text-align: center;
}

.renmar-reviews h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 4rem;
    color: #333;
}

.renmar-reviews-stats {
    display: flex;
    justify-content: center;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.renmar-stat {
    text-align: center;
}

.renmar-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    color: #1E88E5;
    display: block;
    margin-bottom: 1rem;
}

.renmar-stat p {
    color: #666;
    font-size: 18px;
}

.renmar-share {
    padding: 8rem 8%;
    background: white;
    text-align: center;
}

.renmar-share h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 1rem;
    color: #333;
}

.renmar-share p {
    color: #666;
    font-size: 18px;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .renmar-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .renmar-reviews-stats {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .renmar-testimonials-hero h1 {
        font-size: 36px;
    }

    .renmar-testimonials-grid {
        grid-template-columns: 1fr;
    }
} 