/* ============================================
   TESTIMONIALS PAGE STYLES
   ============================================ */

/* Hero Section */
.testimonials-hero {
    background: linear-gradient(135deg, rgba(15, 20, 30, 0.95) 0%, rgba(25, 35, 50, 0.95) 100%);
    color: var(--neutral-white);
}

.testimonials-lead {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

/* Quick Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.testimonial-nav-link {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--neutral-black);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.testimonial-nav-link:hover {
    background-color: var(--neutral-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Section Titles */
.testimonials-section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-dark .testimonials-section-title {
    color: var(--primary-color);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--neutral-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.section-dark .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Badge */
.testimonial-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.badge-dj {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--neutral-white);
}

.badge-presale {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffd700 100%);
    color: var(--neutral-black);
}

.badge-devbites {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--neutral-white);
}

.badge-anf {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: var(--neutral-black);
}

/* Quote */
.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
    position: relative;
}

.section-dark .testimonial-quote {
    color: var(--neutral-white);
}

/* Author */
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.section-dark .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.testimonial-author strong {
    font-size: 1rem;
    color: var(--dark-blue);
    font-weight: 700;
}

.section-dark .testimonial-author strong {
    color: var(--primary-color);
}

.testimonial-role {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.section-dark .testimonial-role {
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.testimonials-cta {
    background: linear-gradient(135deg, rgba(15, 20, 30, 0.95) 0%, rgba(25, 35, 50, 0.95) 100%);
    color: var(--neutral-white);
    padding: 60px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .testimonial-nav-link {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonials-nav {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem !important;
    }

    .testimonials-lead {
        font-size: 1rem !important;
    }

    .testimonials-section-title {
        font-size: 1.5rem;
    }

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

    .testimonials-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonial-nav-link {
        text-align: center;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Section padding adjustments */
.section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
}
