/* =====================================================
   CCSOL – CLIENTS PAGE
   DARK ENTERPRISE LUXURY SYSTEM
===================================================== */


/* ===============================
   BASE DARK SYSTEM
=================================*/
body.page-template-page-clients {
    background: #021924;
    color: #e2e8f0;
}


/* ===============================
   SECTION STRUCTURE
=================================*/
.ccsol-section {
    padding: 120px 0;
    position: relative;
}

.ccsol-section-inner {
    position: relative;
    z-index: 2;
}


/* ===============================
   HERO
=================================*/
.ccsol-hero-inner {
    background: linear-gradient(135deg, #021924, #063255);
    padding: 160px 0 120px;
    text-align: center;
    color: #ffffff;
}

.ccsol-hero-inner h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
}

.ccsol-hero-subtitle {
    font-size: 22px;
    color: #cbd5e1;
}


/* ===============================
   SECTION TITLES
=================================*/
.ccsol-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.ccsol-section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.ccsol-section-header p {
    font-size: 18px;
    color: #94a3b8;
}


/* ===============================
   STATS (Elevated Surface)
=================================*/
.ccsol-stats-section {
    background: #06283d;
}

.ccsol-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-item {
    padding: 40px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
}

.stat-item h3 {
    font-size: 54px;
    font-weight: 900;
    color: #00c6ff;
}

.stat-item p {
    color: #cbd5e1;
}


/* ===============================
   CONTENT BLOCK
=================================*/
.ccsol-content-block {
    max-width: 900px;
    margin: 0 auto;
}

.ccsol-content-block p {
    font-size: 18px;
    line-height: 1.9;
    color: #cbd5e1;
}

.ccsol-list li {
    color: #e2e8f0;
}


/* ===============================
   SERVICES (Layered Dark Cards)
=================================*/
.ccsol-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.service-item {
    background: #06283d;
    padding: 50px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: #00c6ff;
    box-shadow: 0 25px 60px rgba(0, 198, 255, 0.15);
}

.service-item h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.service-item li {
    color: #cbd5e1;
}


/* ===============================
   CLIENT LOGOS SECTION
=================================*/
.ccsol-clients-section {
    background: #021924;
}

.ccsol-clients-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.client-logo img {
    max-height: 60px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: 0.4s ease;
}

.client-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}


/* ===============================
   TESTIMONIAL SECTION
=================================*/
.ccsol-testimonials-slider {
    position: relative;
    min-height: 180px;
}

.testimonial-item {
    opacity: 0;
    transition: 0.8s ease;
    text-align: center;
}

.testimonial-item.active {
    opacity: 1;
}

.testimonial-item p {
    font-size: 22px;
    font-style: italic;
    color: #e2e8f0;
}

.testimonial-item h4 {
    color: #94a3b8;
}


/* ===============================
   WHY CHOOSE SECTION
=================================*/
.ccsol-why-section {
    background: #06283d;
}


/* ===============================
   CTA
=================================*/
.ccsol-cta-section {
    background: linear-gradient(135deg, #0a4d8c, #021924);
    padding: 140px 0;
    text-align: center;
    color: #ffffff;
}

.ccsol-cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.ccsol-btn-primary {
    background: #00c6ff;
    color: #021924;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s ease;
}

.ccsol-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,198,255,0.3);
}


/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 992px) {
    .ccsol-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ccsol-service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ccsol-hero-inner h1 {
        font-size: 36px;
    }

    .ccsol-section-header h2 {
        font-size: 28px;
    }
}
