/* ==========================================================================
   iTour Landing Page - Testimonial Section
   ========================================================================== */

.testimonial {
    padding: var(--spacing-3xl) 0;
    background: var(--color-surface);
}

.testimonial__quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial__icon {
    color: var(--color-gold);
    opacity: 0.3;
    margin-bottom: var(--spacing-md);
}

.testimonial__text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.testimonial__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.testimonial__author {
    font-weight: 500;
    color: var(--color-gold);
}

.testimonial__location {
    color: var(--color-text-muted);
}

.testimonial__location::before {
    content: '\2014\00a0';
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial {
        padding: var(--spacing-2xl) 0;
    }

    .testimonial__icon {
        width: 36px;
        height: 36px;
    }

    .testimonial__text {
        font-size: 1.15rem;
    }

    .testimonial__footer {
        flex-direction: column;
        gap: 0.25rem;
    }

    .testimonial__location::before {
        content: '';
    }
}
