/* Testimonial Page Custom CSS */
.testimonial-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.testimonial-header {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
    margin-bottom: 50px;
}

.testimonial-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.testimonial-header__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.testimonial-header__title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonial-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.testimonial-breadcrumb li {
    color: #ffffff;
    font-size: 16px;
}

.testimonial-breadcrumb li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.testimonial-breadcrumb li a:hover {
    color: #f5a425;
}

.testimonial-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #ffffff;
}

.testimonial-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.testimonial-intro__tagline {
    display: inline-block;
    font-size: 16px;
    color: #f5a425;
    font-weight: 600;
    position: relative;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.testimonial-intro__tagline::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: #f5a425;
}

.testimonial-intro__tagline::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: #f5a425;
}

.testimonial-intro__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.testimonial-intro__text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-card__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid #f5a425;
}

.testimonial-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__info {
    flex: 1;
}

.testimonial-card__name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.testimonial-card__position {
    font-size: 14px;
    color: #666;
}

.testimonial-card__rating {
    margin-bottom: 10px;
}

.testimonial-card__rating .fa-star {
    color: #f5a425;
    margin-right: 2px;
}

.testimonial-card__quote {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(245, 164, 37, 0.2);
    font-size: 40px;
}

.testimonial-card__text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    font-style: italic;
}

.testimonial-card__text::before {
    content: open-quote;
}

.testimonial-card__text::after {
    content: close-quote;
}

@media (max-width: 991px) {
    .testimonial-header__title {
        font-size: 36px;
    }
    
    .testimonial-intro__title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .testimonial-header {
        padding: 80px 0;
    }
    
    .testimonial-header__title {
        font-size: 28px;
    }
    
    .testimonial-intro__title {
        font-size: 24px;
    }
    
    .testimonial-card__header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-card__image {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
