/* ===================================
   TESTIMONIALS PAGE - TRUST-FOCUSED
   =================================== */

/* Hero Section - Full Screen with Video */
.testimonials-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonials-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1920&auto=format&fit=crop&q=80') center/cover no-repeat;
}

.testimonials-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 1 !important;
}

.testimonials-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

.testimonials-hero .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.testimonials-hero .container {
    text-align: center;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Featured Testimonials */
.featured-testimonials {
    padding: 6rem 0;
    background: var(--off-white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
}

.featured-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 1rem;
}

.featured-quote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.featured-author {
    padding-top: 2rem;
    border-top: 1px solid var(--silver);
}

.featured-author h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.featured-author p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Testimonials Grid Section */
.testimonials-grid-section {
    padding: 8rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--silver);
    transition: var(--transition);
    cursor: default;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    padding-top: 1.5rem;
    border-top: 1px solid var(--silver);
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Trust Section */
.trust-section {
    padding: 8rem 0;
    background: var(--off-white);
}

.trust-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trust-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.trust-text {
    font-size: 1.2rem;
    color: var(--gray);
}

/* CTA Section */
.testimonials-cta {
    padding: 8rem 0;
    background: var(--white);
}

.testimonials-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-cta .cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2.5rem;
    color: var(--dark);
}

.testimonials-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonials-cta .btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.testimonials-cta .btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

/* Responsive */
@media (max-width: 968px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-hero {
        padding: 10rem 0 4rem;
    }
}

@media (max-width: 640px) {
    .featured-card {
        padding: 3rem 2rem;
    }
    
    .quote-mark {
        font-size: 4rem;
    }
    
    .featured-quote {
        font-size: 1.125rem;
    }
    
    .testimonials-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
