/* Testimonials Page Specific Styles */

.testimonials-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
    font-weight: 700;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Testimonials */
.featured-testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

/* Testimonial Cards */
.testimonial-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #A0522D);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #8B4513;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border-color: #8B4513;
}

.testimonial-card.featured::before {
    background: linear-gradient(90deg, #fff, #f8f9fa);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Star Rating */
.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.testimonial-card.featured .star {
    color: #FFD700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Quote */
blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-card.featured blockquote {
    color: white;
}

blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #8B4513;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-card.featured blockquote::before {
    color: white;
    opacity: 0.5;
}

/* Author Info */
.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.testimonial-card.featured .author-info h4 {
    color: white;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.testimonial-card.featured .author-info p {
    color: rgba(255, 255, 255, 0.8);
}

.event-type {
    background: #8B4513;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonial-card.featured .event-type {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Rating Summary */
.rating-summary {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    border: 2px solid #8B4513;
}

.summary-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 10px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.rating-stars .star {
    font-size: 1.5rem;
}

.overall-rating p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rating-bar {
    display: grid;
    grid-template-columns: 30px 1fr 40px;
    gap: 15px;
    align-items: center;
}

.rating-bar span:first-child {
    font-weight: 600;
    color: #333;
}

.rating-bar span:last-child {
    font-weight: 600;
    color: #8B4513;
    text-align: right;
}

.bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, #8B4513, #A0522D);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    text-align: center;
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #8B4513;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-container {
        margin: 30px auto;
        padding: 0 30px;
    }
    
    .featured-testimonials {
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .summary-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        margin: 20px auto;
        padding: 0 20px;
    }
    
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-header p {
        font-size: 1.1rem;
    }
    
    .featured-testimonials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .summary-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .rating-breakdown {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-section {
        padding: 40px 30px;
    }
    
    .cta-section h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .testimonials-container {
        margin: 15px auto;
        padding: 0 15px;
    }
    
    .testimonials-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-header p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .rating-summary {
        padding: 30px 20px;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-section h3 {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .testimonials-header h2 {
        font-size: 1.6rem;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .rating-summary {
        padding: 25px 15px;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .cta-section {
        padding: 25px 15px;
    }
    
    .cta-section h3 {
        font-size: 1.2rem;
    }
}
