/* Testimonials Page Specific Styles */

/* Hero Section Adjustments */
.page-hero {
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 204, 0.05) 0%, transparent 70%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--lightest-slate);
}

.hero-content h1 span {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Grid */
.testimonials-page-section {
    padding: 80px 0;
    min-height: 60vh;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(17, 34, 64, 0.6);
    border: 1px solid rgba(0, 255, 204, 0.1);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    backdrop-filter: blur(5px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 204, 0.3);
    box-shadow: 0 10px 30px -15px rgba(0, 255, 204, 0.15);
    background: rgba(17, 34, 64, 0.8);
}

.quote-icon {
    color: var(--neon-cyan);
    margin-bottom: 25px;
    opacity: 0.8;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-slate);
    font-style: italic;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), #00ccaa);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.client-info h4 {
    color: var(--lightest-slate);
    font-size: 1rem;
    margin-bottom: 4px;
}

.client-info span {
    color: var(--slate);
    font-size: 0.9rem;
}

/* CTA Card in Grid */
.testimonial-card.cta-card {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(17, 34, 64, 0.9));
    border: 1px solid var(--neon-cyan);
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-card.cta-card h3 {
    color: var(--lightest-slate);
    font-size: 1.8rem;
}

.testimonial-card.cta-card p {
    color: var(--slate);
    margin-bottom: 10px;
}

/* Partners Block */
.partners-block {
    padding: 60px 0 100px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.partners-grid.simple-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 60px;
    align-items: center;
}

.partner-logo {
    color: var(--slate);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    cursor: default;
}

.partner-logo:hover {
    color: var(--neon-cyan);
    opacity: 1 !important;
}

/* Base Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }
}

/* CTA Section fix */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--secondary-color, #a0aec0);
}
