/* Happy Customers Page Styles */

/* Hero Section */
.customer-hero {
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--primary) 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.customer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 101, 132, 0.15), transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(108, 99, 255, 0.15), transparent 30%);
    z-index: 1;
}

.customer-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.customer-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.customer-hero-content h1 span {
    color: var(--accent);
}

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

/* Customer Showcase Section */
.customer-showcase {
    background-color: var(--dark-surface);
    padding: 80px 0;
    color: white;
}

.showcase-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.showcase-intro h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.showcase-intro h2 span {
    color: var(--primary);
}

.showcase-intro p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.customer-grid {
    margin-bottom: 60px;
}

.customer-category {
    margin-bottom: 50px;
}

.customer-category h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--secondary);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.customer-category h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.customer-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    justify-content: center;
}

.customer-logo-item {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.customer-logo-item img {
    max-width: 100%;
    max-height: 120px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.customer-logo-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
    transform: translateY(-5px);
}

.customer-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.customer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.customer-logo-item:hover .customer-overlay {
    opacity: 1;
}

.customer-overlay span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 30px;
    background-color: var(--primary);
}

/* Become a Customer Section */
.become-customer {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.become-customer h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.become-customer p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Testimonial Section */
.testimonial-highlights {
    background-color: var(--dark-surface-2);
    padding: 80px 0;
    color: white;
}

.testimonial-highlights h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
}

.testimonial-highlights h2 span {
    color: var(--primary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    margin-bottom: 25px;
}

.testimonial-quote i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.testimonial-quote p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .customer-row {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .customer-hero-content h1 {
        font-size: 2.3rem;
    }
    
    .showcase-intro h2 {
        font-size: 1.8rem;
    }
    
    .showcase-intro p {
        font-size: 1rem;
    }
    
    .become-customer h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .customer-logo-item {
        height: 140px;
    }
    
    .customer-logo-item img {
        max-height: 90px;
    }
}
