/* =========================================
   CCSOL ENTERPRISE SERVICE DESIGN SYSTEM
========================================= */

/* GLOBAL */
.ccsol-service-page {
    padding-bottom: 120px;
}

.service-section {
    padding: 120px 0;
    position: relative;
}

.light-bg {
    background: #f4f8fc;
}

.service-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 70px;
    font-weight: 800;
    color: #0b1f2e;
    letter-spacing: -0.5px;
}

/* =========================================
   HERO – ENTERPRISE STYLE
========================================= */

.service-hero {
    padding: 160px 0;
    text-align: center;
    background: linear-gradient(135deg, #021924 0%, #062b3d 50%, #03314a 100%);
    color: #ffffff;
    position: relative;
}

.service-hero::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgba(2,25,36,0) 0%, #f4f8fc 100%);
}

.service-hero h1 {
    font-size: 52px;
    margin-bottom: 30px;
    font-weight: 800;
    color: #ffffff;
}

.hero-subtitle {
    max-width: 820px;
    margin: 0 auto 45px;
    font-size: 21px;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
}

/* =========================================
   BUTTON – PREMIUM
========================================= */

.primary-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #00c2ff, #009ed1);
    color: #ffffff;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 194, 255, 0.4);
}

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

/* =========================================
   GRID SYSTEM
========================================= */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

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

/* =========================================
   CARDS – GLASS ENTERPRISE STYLE
========================================= */

.card,
.feature-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    color: #0b1f2e;
    font-weight: 500;
    line-height: 1.7;
    border: 1px solid rgba(0,0,0,0.03);
}

.card:hover,
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0b1f2e;
}

.feature-box p {
    color: #333;
    font-size: 16px;
}

/* =========================================
   PROCESS – ENTERPRISE BADGES
========================================= */

.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.process-steps div {
    background: #ffffff;
    color: #021924;
    padding: 18px 35px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.05);
}

/* =========================================
   INDUSTRY & WHY LIST
========================================= */

.why-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.why-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-size: 18px;
    color: #0b1f2e;
    line-height: 1.7;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00c2ff;
    font-weight: bold;
    font-size: 20px;
}

/* =========================================
   CTA – STRONG SEPARATION
========================================= */

.service-cta {
    padding: 150px 0;
    text-align: center;
    background: linear-gradient(135deg, #021924 0%, #03314a 100%);
    color: #ffffff;
}

.service-cta h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 800;
    color: #ffffff;
}

/* =========================================
   FAQ – CLEAN ENTERPRISE STYLE
========================================= */

.faq-item {
    max-width: 850px;
    margin: 0 auto 50px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0b1f2e;
    font-weight: 700;
}

.faq-item p {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .service-hero {
        padding: 120px 20px;
    }

    .service-section {
        padding: 90px 20px;
    }

    .service-hero h1 {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}
/* =========================================
   SCROLL ANIMATION
========================================= */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}