/* assets/css/testimonials.css */
/* Testimonials Section (Reference Style) */
.testimonials {
    padding: 100px 0;
    background-color: #000000;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.testimonials-left {
    position: sticky;
    top: 100px;
}

.testimonials-left .tag {
    color: var(--color-text-secondary);
    font-size: 1.0rem;
    margin-bottom: 20px;
    display: block;
}

.testimonials-left h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
    max-width: 500px;
}

.testimonials-left p {
    color: var(--color-text-secondary);
    font-size: 1.0rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
}

.testimonials-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.testimonial-card {
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    height: fit-content;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(124, 58, 237, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    background: rgba(18, 18, 18, 1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-details span:first-child {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.social-icon {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
}

.testimonial-quote {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.testimonial-date {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    display: block;
}

.author-role {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 1200px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-left { position: relative; top: 0; margin-bottom: 60px; }
}

@media (max-width: 992px) {
    .testimonials-grid { gap: 60px; }
    .testimonials-left { text-align: center; }
    .testimonial-card { padding: 30px; }
}

@media (max-width: 768px) {
    .testimonials-right { grid-template-columns: 1fr; }
}
