/* =====================================================
   GETCLOUD v3.0
   Service Page
===================================================== */

/* =====================================================
   Breadcrumb
===================================================== */

.breadcrumb{
    margin-top:80px;
    padding:18px 0;
    background:#f8fbff;
    border-bottom:1px solid #edf2f7;
}

.breadcrumb .container{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    color:#64748b;
}

.breadcrumb a{
    color:var(--primary);
    font-weight:600;
}

/* =====================================================
   Hero
===================================================== */

.service-hero{
    padding:100px 0;
    background:
    linear-gradient(
        180deg,
        #f7fbff 0%,
        #ffffff 100%
    );
}

.service-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(37,99,235,.08);
    color:var(--primary);
    font-weight:600;
    margin-bottom:20px;
}

.service-content h1{
    font-size:64px;
    line-height:1.2;
    color:#102a5c;
    margin-bottom:10px;
}

.service-content h2{
    font-size:32px;
    margin-bottom:25px;

    background:
    linear-gradient(
        90deg,
        #2563eb,
        #10b981,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.service-content p{
    font-size:20px;
    color:var(--text-light);
    line-height:1.9;
    margin-bottom:35px;
}

.service-image img{
    width:100%;
    max-width:700px;
    display:block;
    margin:auto;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

/* =====================================================
   Product Services
===================================================== */

.product-services{
    padding:100px 0;
    background:#fff;
}

.product-grid{
    display:grid;
    grid-template-columns:
    repeat(2,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:var(--shadow-md);
    transition:.3s;
    position:relative;
    overflow:hidden;
}

.product-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #2563eb,
        #10b981,
        #8b5cf6
    );
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.product-logo{
    height:70px;
    margin-bottom:25px;

    display:flex;
    align-items:center;
}

.product-logo img{
    max-height:60px;
    width:auto;
}

.product-card h3{
    font-size:26px;
    color:#102a5c;
    margin-bottom:15px;
}

.product-card p{
    color:var(--text-light);
    line-height:1.8;
    margin-bottom:25px;
}

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

.tags span{
    padding:8px 14px;
    border-radius:999px;
    background:#eef5ff;
    color:var(--primary);
    font-size:14px;
    font-weight:600;
}

.product-link{
    font-weight:700;
    color:var(--primary);
    transition:.3s;
}

.product-link:hover{
    color:#0f3fd6;
}

/* =====================================================
   Advantages
===================================================== */

.service-advantages{
    padding:100px 0;
    background:#f8fbff;
}

.advantage-grid{
    display:grid;
    grid-template-columns:
    repeat(4,1fr);
    gap:25px;
}

.advantage-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow-md);
    transition:.3s;
}

.advantage-card:hover{
    transform:translateY(-8px);
}

.adv-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    margin:auto;
    margin-bottom:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    rgba(37,99,235,.08);

    font-size:36px;
}

.advantage-card h3{
    color:#102a5c;
    margin-bottom:12px;
}

.advantage-card p{
    color:var(--text-light);
}

/* =====================================================
   Compare Table
===================================================== */

.service-compare{
    padding:100px 0;
    background:#fff;
}

.table-wrapper{
    overflow-x:auto;
}

.compare-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow-md);
}

.compare-table thead{
    background:
    linear-gradient(
        90deg,
        #2563eb,
        #10b981
    );
}

.compare-table th{
    color:#fff;
    padding:20px;
    text-align:left;
}

.compare-table td{
    padding:18px 20px;
    border-bottom:
    1px solid #edf2f7;
}

.compare-table tbody tr:hover{
    background:#f8fbff;
}

/* =====================================================
   Process
===================================================== */

.service-process{
    padding:100px 0;
    background:#f8fbff;
}

.process-grid{
    display:grid;
    grid-template-columns:
    repeat(4,1fr);
    gap:25px;
}

.process-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow-md);
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-8px);
}

.step{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:20px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #10b981,
        #8b5cf6
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
    font-weight:700;
}

.process-card h3{
    color:#102a5c;
    margin-bottom:12px;
}

.process-card p{
    color:var(--text-light);
}

/* =====================================================
   CTA
===================================================== */

.cta{
    padding:100px 0;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #10b981,
        #8b5cf6
    );

    color:#fff;
}

.cta-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.cta-content h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

/* =====================================================
   Footer
===================================================== */

.footer-logo{
    max-width:220px;
    margin-bottom:20px;
}

/* =====================================================
   Animation
===================================================== */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* =====================================================
   Responsive
===================================================== */

@media (max-width:1200px){

    .advantage-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

    .process-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

}

@media (max-width:992px){

    .service-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .service-content h1{
        font-size:52px;
    }

    .hero-buttons{
        justify-content:center;
    }

}

@media (max-width:768px){

    .product-grid{
        grid-template-columns:1fr;
    }

    .advantage-grid{
        grid-template-columns:1fr;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

    .service-content h1{
        font-size:42px;
    }

    .service-content h2{
        font-size:28px;
    }

    .cta-content h2{
        font-size:34px;
    }

}

@media (max-width:576px){

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons a{
        width:100%;
    }

    .service-content h1{
        font-size:34px;
    }

    .cta-content h2{
        font-size:28px;
    }

    .cta-content p{
        font-size:18px;
    }

}