/* ==========================================================================
   Testimonial Section - Enhanced Showcase
   ========================================================================== */

.testimonial {
    padding: 8rem 6rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--ink);
}

/* Showcase Container */
.testimonial-showcase {
    position: relative;
}

/* Decorative Quote */
.testimonial-decoration {
    position: absolute;
    top: -2rem;
    left: -2rem;
    z-index: 0;
}

.decoration-quote {
    width: 120px;
    height: 120px;
    color: var(--terracotta);
    opacity: 0.1;
}

/* Main Testimonial Card */
.testimonial-card {
    background: var(--paper);
    border: 1px solid rgba(26, 25, 21, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

.testimonial-content {
    padding: 3rem;
}

/* Quote Styling */
.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 25, 21, 0.08);
    flex-wrap: wrap;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 120, 90, 0.1), rgba(184, 151, 110, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar svg {
    width: 32px;
    height: 32px;
    color: var(--terracotta);
}

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

.testimonial-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--ink-muted);
}

/* Client Badge */
.client-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(107, 144, 104, 0.1);
    border: 1px solid rgba(107, 144, 104, 0.2);
    border-radius: 2rem;
    margin-left: auto;
}

.client-badge svg {
    width: 16px;
    height: 16px;
    color: var(--sage);
}

.client-badge span {
    font-family: 'Caveat', cursive;
    font-size: 0.95rem;
    color: var(--sage);
}

/* Industry Indicator */
.testimonial-industry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(26, 25, 21, 0.02);
    border-top: 1px solid rgba(26, 25, 21, 0.05);
}

.testimonial-industry svg {
    width: 20px;
    height: 20px;
    color: var(--terracotta);
    opacity: 0.7;
}

.testimonial-industry span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-muted);
}

/* CTA Section */
.testimonial-cta {
    margin-top: 3rem;
    text-align: center;
}

.cta-text {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--ink-muted);
    margin-bottom: 1rem;
}

.testimonial-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

.testimonial-cta .btn-secondary {
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--ink);
}

.testimonial-cta .btn-secondary:hover {
    background: var(--ink);
    color: var(--cream);
}

.testimonial-cta .btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.testimonial-cta .btn:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial {
        padding: 6rem 2rem;
    }

    .testimonial-quote {
        font-size: 1.5rem;
    }

    .decoration-quote {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .testimonial {
        padding: 4rem 1.5rem;
    }

    .testimonial-title {
        font-size: 2.5rem;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .testimonial-quote {
        font-size: 1.25rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-details {
        text-align: center;
    }

    .client-badge {
        margin-left: 0;
    }

    .testimonial-decoration {
        top: -1rem;
        left: -1rem;
    }

    .decoration-quote {
        width: 60px;
        height: 60px;
    }
}
