/* ===========================
   CLIENTS PAGE STYLES
   =========================== */

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #D4AF37;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 10px;
    font-family: 'Heebo', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-card {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.client-card:hover {
    transform: translateY(-15px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.client-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    transition: all 0.3s ease;
}

.client-card:hover .client-icon {
    transform: rotate(360deg) scale(1.1);
}

.client-name {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 10px;
    font-weight: 700;
}

.client-category {
    font-size: 1rem;
    color: #B8941F;
    margin-bottom: 20px;
    font-style: italic;
}

.client-projects {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.client-projects li {
    padding: 10px 0;
    color: #ccc;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: color 0.3s ease;
}

.client-projects li:last-child {
    border-bottom: none;
}

.client-card:hover .client-projects li {
    color: #fff;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reason-card {
    background: #1a1a1a;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.reason-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.reason-card:hover::after {
    transform: scaleX(1);
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.reason-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    background: #D4AF37;
    color: #000;
    transform: scale(1.1);
}

.reason-card h3 {
    font-size: 1.3rem;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 700;
}

.reason-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-buttons .btn-primary {
    background: #000;
    color: #D4AF37;
    border: 2px solid #000;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.cta-buttons .btn-secondary:hover {
    background: #000;
    color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .client-card {
        padding: 30px 20px;
    }
    
    .reason-card {
        padding: 30px 20px;
    }
}
