/*==================================================
SERVICES HERO (PREMIUM SAAS STYLE)
==================================================*/

.services-hero{
    position:relative;
    padding:30px 0 30px;
    background:
        radial-gradient(circle at top,#f8fbff 0%,#ffffff 60%);
    overflow:hidden;
}

/* soft glow background */
.services-hero::before{
    content:"";
    position:absolute;
    top:-200px;
    left:-200px;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#2563eb22,transparent 70%);
    filter:blur(90px);
    opacity:.6;
    pointer-events:none;
}

.services-hero::after{
    content:"";
    position:absolute;
    bottom:-200px;
    right:-200px;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#60a5fa22,transparent 70%);
    filter:blur(100px);
    opacity:.5;
    pointer-events:none;
}

/*==================================================
CONTENT WRAPPER
==================================================*/

.hero-content{
    max-width:900px;
    margin:0 auto;
    text-align:center;
    position:relative;
    z-index:2;
}

/*==================================================
BADGE
==================================================*/

.hero-badge{
    display:inline-block;
    padding:7px 16px;
    border-radius:999px;

    font-size:.8rem;
    font-weight:700;

    color:#2563eb;
    background:rgba(37,99,235,.08);
    border:1px solid rgba(37,99,235,.15);

    margin-bottom:16px;
}

/*==================================================
TITLE
==================================================*/

.hero-content h1{
    font-size:clamp(2.2rem,4vw,3.4rem);
    font-weight:900;
    color:#0f172a;
    letter-spacing:-0.04em;
    line-height:1.2;

    margin-bottom:16px;
}

/*==================================================
SUBTITLE
==================================================*/

.hero-content p{
    font-size:1.1rem;
    color:#64748b;
    line-height:1.8;

    max-width:750px;
    margin:0 auto 30px;
}

/*==================================================
SEARCH BOX (FUTURE READY)
==================================================*/

.hero-search{
    display:flex;
    align-items:center;
    justify-content:center;

    max-width:520px;
    margin:0 auto;

    background:rgba(255,255,255,.8);
    backdrop-filter:blur(14px);

    border:1px solid #e2e8f0;
    border-radius:16px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(15,23,42,.06);
}

.hero-search input{
    flex:1;
    padding:14px 16px;

    border:none;
    outline:none;

    font-size:.95rem;
    color:#0f172a;

    background:transparent;
}

.hero-search input::placeholder{
    color:#94a3b8;
}

/* button */
.hero-search button{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    background:#2563eb;
    color:#fff;

    cursor:not-allowed;
    opacity:.6;

    transition:.3s ease;
}

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

@media(max-width:768px){

    .services-hero{
        padding:100px 0 60px;
    }

    .hero-search{
        width:100%;
    }
}









/*==================================================
SERVICES FILTER (PREMIUM PILLS)
==================================================*/

.services-filter{
    position:relative;
    padding:30px 0 10px;
    background:#ffffff;
}

/*==================================================
FILTER WRAPPER
==================================================*/

.filter-wrapper{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:12px;

    padding:10px;
}

/*==================================================
FILTER BUTTON (PILL STYLE)
==================================================*/

.filter-btn{
    padding:10px 16px;

    border-radius:999px;

    border:1px solid #e2e8f0;
    background:rgba(248,250,252,.8);

    color:#475569;

    font-size:.9rem;
    font-weight:600;

    cursor:pointer;

    transition:.3s ease;

    position:relative;
    overflow:hidden;
}

/* hover effect */
.filter-btn::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(37,99,235,.12),transparent);
    opacity:0;
    transition:.3s ease;
}

.filter-btn:hover::before{
    opacity:1;
}

.filter-btn:hover{
    transform:translateY(-2px);
    border-color:#c7dbff;
    color:#2563eb;
}

/*==================================================
ACTIVE STATE
==================================================*/

.filter-btn.active{
    background:#2563eb;
    color:#fff;
    border-color:#2563eb;
    box-shadow:0 10px 25px rgba(37,99,235,.25);
}

.filter-btn.active::before{
    opacity:0;
}

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

@media(max-width:768px){

    .filter-wrapper{
        justify-content:flex-start;
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:10px;
    }

    .filter-btn{
        white-space:nowrap;
        flex-shrink:0;
    }
}








/*==================================================
SERVICES GRID SECTION (PREMIUM CARDS)
==================================================*/

.services-grid-section{
    position:relative;
    padding:30px 0 30px;
    background:#ffffff;
}

/*==================================================
GRID LAYOUT
==================================================*/

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-top:20px;
}

/*==================================================
SERVICE CARD
==================================================*/

.service-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;

    padding:22px;

    border-radius:20px;

    background:rgba(255,255,255,.8);
    backdrop-filter:blur(14px);

    border:1px solid #e2e8f0;

    box-shadow:
        0 20px 50px rgba(15,23,42,.05),
        inset 0 1px 0 rgba(255,255,255,.7);

    text-decoration:none;

    position:relative;
    overflow:hidden;

    transition:.35s cubic-bezier(.2,.8,.2,1);
}

/* glow hover layer */
.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top left,rgba(37,99,235,.12),transparent 60%);
    opacity:0;
    transition:.4s ease;
}

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

/* hover lift */
.service-card:hover{
    transform:translateY(-6px);
    border-color:#c7dbff;
    box-shadow:0 30px 80px rgba(37,99,235,.12);
}

/*==================================================
ICON
==================================================*/

.service-icon{
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:rgba(37,99,235,.08);
    color:#2563eb;

    font-size:1.1rem;

    margin-bottom:14px;

    transition:.35s ease;
}

.service-card:hover .service-icon{
    background:#2563eb;
    color:#fff;
    transform:rotate(-6deg) scale(1.05);
    box-shadow:0 12px 30px rgba(37,99,235,.25);
}

/*==================================================
CATEGORY LABEL
==================================================*/

.service-category{
    font-size:.75rem;
    font-weight:700;
    color:#2563eb;

    background:rgba(37,99,235,.08);
    padding:4px 10px;
    border-radius:999px;

    display:inline-block;

    margin-bottom:10px;
}

/*==================================================
TITLE
==================================================*/

.service-title{
    font-size:1.2rem;
    font-weight:900;
    color:#0f172a;

    margin-bottom:8px;
    letter-spacing:-0.02em;
}

/*==================================================
DESCRIPTION
==================================================*/

.service-desc{
    font-size:.95rem;
    line-height:1.7;
    color:#64748b;

    margin-bottom:18px;
}

/*==================================================
FOOTER CTA
==================================================*/

.service-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:.9rem;
    font-weight:700;
    color:#475569;

    padding-top:10px;

    border-top:1px solid #eef2f7;

    transition:.3s ease;
}

.service-card:hover .service-footer{
    color:#2563eb;
}

/* arrow animation */
.service-footer i{
    transition:.3s ease;
}

.service-card:hover .service-footer i{
    transform:translateX(5px);
}

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

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

@media(max-width:640px){
    .services-grid{
        grid-template-columns:1fr;
    }
}








/*==================================================
TRUST + CTA SECTION (PREMIUM CONVERSION BLOCK)
==================================================*/

.services-trust-cta{
    position:relative;
    padding:100px 0;
    background:
        radial-gradient(circle at top,#f8fbff 0%,#ffffff 60%);
}

/*==================================================
TRUST STRIP
==================================================*/

.trust-strip{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;

    margin-bottom:70px;
}

.trust-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:14px 16px;

    border-radius:14px;

    background:rgba(255,255,255,.75);
    backdrop-filter:blur(12px);

    border:1px solid #e2e8f0;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

    font-size:.9rem;
    font-weight:700;
    color:#0f172a;

    transition:.3s ease;
}

.trust-item i{
    color:#2563eb;
    font-size:1rem;
}

.trust-item:hover{
    transform:translateY(-3px);
    border-color:#c7dbff;
    box-shadow:0 25px 60px rgba(37,99,235,.10);
}

/*==================================================
CTA BOX
==================================================*/

.cta-box{
    max-width:900px;
    margin:0 auto;

    text-align:center;

    padding:60px 40px;

    border-radius:24px;

    background:rgba(255,255,255,.85);
    backdrop-filter:blur(14px);

    border:1px solid #e2e8f0;

    box-shadow:
        0 30px 80px rgba(15,23,42,.08),
        inset 0 1px 0 rgba(255,255,255,.7);

    position:relative;
    overflow:hidden;
}

/* soft glow */
.cta-box::before{
    content:"";
    position:absolute;
    top:-150px;
    left:-150px;
    width:400px;
    height:400px;

    background:radial-gradient(circle,rgba(37,99,235,.18),transparent 70%);
    filter:blur(80px);
    opacity:.5;
    pointer-events:none;
}

/*==================================================
CTA TEXT
==================================================*/

.cta-box h2{
    font-size:2.2rem;
    font-weight:900;
    color:#0f172a;

    margin-bottom:14px;
    letter-spacing:-0.03em;
}

.cta-box p{
    font-size:1.05rem;
    color:#64748b;

    max-width:650px;
    margin:0 auto 28px;

    line-height:1.8;
}

/*==================================================
CTA BUTTON
==================================================*/

.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 22px;

    border-radius:12px;

    background:#2563eb;
    color:#fff;

    font-weight:700;
    font-size:.95rem;

    text-decoration:none;

    box-shadow:0 15px 40px rgba(37,99,235,.25);

    transition:.35s ease;
}

.cta-btn i{
    transition:.3s ease;
}

.cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 25px 60px rgba(37,99,235,.35);
}

.cta-btn:hover i{
    transform:translateX(5px);
}

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

@media(max-width:900px){

    .trust-strip{
        grid-template-columns:repeat(2,1fr);
    }

    .cta-box{
        padding:50px 25px;
    }
}

@media(max-width:520px){

    .trust-strip{
        grid-template-columns:1fr;
    }

    .cta-box h2{
        font-size:1.8rem;
    }
}