@import '/assets/css/base.css';
@import '/assets/css/header.css';
@import '/assets/css/footer.css';

/* Testimonials Page Specific Styles */
.testimonials-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(210, 180, 140, 0.1) 0%, rgba(184, 131, 60, 0.08) 100%);
}

.testimonials-hero__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-hero__content h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.testimonials-hero__lead {
    font-size: 1.1rem;
    color: #666;
    margin: 30px 0;
    line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat__number {
    font-size: 2rem;
    font-weight: bold;
    color: #b8833c;
    margin-bottom: 10px;
}

.stat__label {
    color: #666;
    font-size: 0.95rem;
}

/* Featured Testimonials */
.testimonials__featured {
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-card--featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.testimonial__image {
    margin: 0;
}

.testimonial__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial__stars {
    font-size: 1.2rem;
    color: #ffc107;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial__text {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial__author {
    margin-top: auto;
}

.testimonial__author strong {
    display: block;
    color: #2c2c2c;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial__author p {
    color: #999;
    font-size: 0.9rem;
}

/* All Testimonials Grid */
.all-testimonials {
    padding: 60px 0;
}

.testimonials__grid {
    margin-top: 40px;
}

.testimonials__grid .testimonial-card {
    padding: 30px;
}

/* Video Testimonials */
.video-testimonials {
    padding: 60px 0;
}

.video-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-testimonials__content h2 {
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.video-testimonials__intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.video-testimonials__list {
    list-style: none;
    margin-bottom: 30px;
}

.video-testimonials__list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.video-testimonials__list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #b8833c;
    font-size: 0.9rem;
}

.video-testimonials__image img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    width: 100%;
}

/* Trust Indicators */
.trust-indicators {
    padding: 60px 0;
}

.indicators__grid {
    margin-top: 40px;
}

.indicator-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.indicator-card:hover {
    transform: translateY(-4px);
}

.indicator-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.indicator-card h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.indicator-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Rating Section */
.rating-section {
    padding: 60px 0;
}

.rating__grid {
    margin-top: 40px;
}

.rating-platform {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #b8833c;
}

.rating-platform h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.rating-stars {
    font-size: 1.5rem;
    color: #ffc107;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.rating-count {
    color: #999;
    font-size: 0.9rem;
}

/* Share Story Section */
.share-story {
    padding: 60px 0;
    text-align: center;
}

.share-story__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.share-story__incentive {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-top: 30px;
}

.share-story__incentive strong {
    color: #b8833c;
}

/* CTA Final Section */
.cta-final {
    padding: 60px 0;
    background: linear-gradient(135deg, #d2b48c 0%, #b8833c 100%);
    text-align: center;
    color: white;
}

.cta-final .section__title {
    color: white;
    font-size: 2.5rem;
}

.cta-final .section__description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
}

.cta-final__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-stats,
    .testimonials__featured,
    .testimonials__grid,
    .video-testimonials__grid,
    .indicators__grid,
    .rating__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-hero__content h1 {
        font-size: 2rem;
    }

    .testimonial-card--featured {
        grid-template-columns: 1fr;
    }

    .testimonial__image img {
        height: 250px;
    }

    .video-testimonials__grid {
        gap: 30px;
    }

    .section__title {
        font-size: 2rem;
    }

    .cta-final .section__title {
        font-size: 1.8rem;
    }

    .share-story__actions,
    .cta-final__actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .testimonials-hero {
        padding: 40px 0;
    }

    .testimonials-hero__content h1 {
        font-size: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 20px;
    }

    .testimonial__content {
        padding: 25px;
    }

    .video-testimonials__content h2 {
        font-size: 1.5rem;
    }

    .indicator-card,
    .rating-platform {
        padding: 20px;
    }

    .share-story,
    .cta-final {
        padding: 40px 0;
    }
}

section {
    padding: 60px 0;
}