/* ========================================
   CLIENTS PAGE STYLES
   ======================================== */

/* Hero Section */
.clients-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.clients-hero h6 {
    color: #e60012;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.clients-hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Supermolot', sans-serif;
    text-transform: uppercase;
}

.clients-hero h1 span {
    color: #e60012;
}

.clients-hero p {
    color: #ffffff;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Introduction Section */
.clients-intro {
    position: relative;
}

.clients-intro .lead {
    font-size: 1.1rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Stats Cards */
.stat-card {
    background: linear-gradient(135deg, #1b1b1b 0%, #2c2c2c 100%);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e60012 0%, #ff3300 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(230, 0, 18, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e60012;
    font-family: 'Supermolot', sans-serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Client Photos Section */
.client-photos-section {
    position: relative;
}

.client-photo-card {
    position: relative;
    height: 100%;
}

.client-photo-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    height: 500px;
    transition: all 0.4s ease;
}

.client-photo-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(230, 0, 18, 0.25);
}

.client-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f8f9fa;
    transition: transform 0.6s ease;
}

.client-photo-wrapper:hover img {
    transform: scale(1.1);
}

.client-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 40px 30px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.client-photo-content h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
}

.client-photo-content p {
    color: #e0e0e0;
    font-size: 1rem;
    margin: 0;
}

/* Client Videos Section */
.client-videos-section {
    position: relative;
}

.client-video-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.client-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(230, 0, 18, 0.2);
}

.video-wrapper {
    position: relative;
}

.client-video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background: #000000;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
}

.video-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border-left: 4px solid #e60012;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(230, 0, 18, 0.15);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: #1b1b1b;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #999;
}

/* Section Utilities */
.section-padding {
    padding: 60px 0;
}

.section-subtitle {
    color: #e60012;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 20px;
    font-family: 'Supermolot', sans-serif;
    text-transform: uppercase;
}

.section-title span {
    color: #e60012;
}

.bg-gray {
    background-color: #f8f9fa;
}

/* Responsive */
@media (max-width: 1199px) {
    .client-video {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .clients-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .client-photo-wrapper {
        height: 400px;
        margin-bottom: 20px;
    }
    
    .client-video {
        height: 200px;
    }
    
    .clients-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .clients-hero {
        min-height: 50vh;
    }
    
    .clients-hero h1 {
        font-size: 2rem;
    }
    
    .clients-hero p {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-card {
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .client-photo-wrapper {
        height: 300px;
    }
    
    .client-video {
        height: 180px;
    }
}

@media (max-width: 575px) {
    .clients-hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}
