/*==================================================
    Buttons
==================================================*/

.btn-main,
.btn-outline-main{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:14px 32px;
    border-radius:40px;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
    cursor:pointer;
}

/* Primary Button */

.btn-main{
    background:#153D8A;
    color:#fff;
    border:2px solid #153D8A;
}

.btn-main:hover{
    background:#0f2f69;
    border-color:#0f2f69;
    color:#fff;
}

/* Outline Button */

.btn-outline-main{
    background:transparent;
    color:#153D8A;
    border:2px solid #153D8A;
}

.btn-outline-main:hover{
    background:#153D8A;
    color:#fff;
}

/* Hero Buttons */

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

/* Product & Forms */

.product-detail-actions,
.form-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}


/*==========================================
    Counter Card
==========================================*/

.bg-counter{
    height:100%;
    min-height:180px;

    display:grid;
    place-items:center;
    gap:8px;

    padding:26px;

    background:linear-gradient(135deg,var(--wadi-blue),var(--wadi-blue-dark));
    border-radius:18px;

    box-shadow:0 18px 45px rgba(21,61,138,.16);

    transition:transform .4s ease, box-shadow .4s ease;
}

.bg-counter:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 50px rgba(21,61,138,.25);
}

.bg-counter i{
    color:#B9F3CD;
    font-size:30px;
}

.bg-counter strong{
    display:block;
    color:#fff;
    font-size:42px;
    line-height:1;
    font-weight:700;
}

.bg-counter p{
    margin:0;
    color:#fff;
    font-weight:600;
    text-align:center;
    line-height:1.7;
}

/*==========================================
    Section Badge
==========================================*/

.section-badge{
    display:inline-block;
    padding:10px 24px;
    margin-bottom:15px;

    background:#EAF3FF;
    color:#153D8A;

    border-radius:50px;
    font-weight:600;
    font-size:15px;
    line-height:1.4;
}


/*==========================================
    Work Card
==========================================*/

.work-card{
    position:relative;
    height:100%;
    padding:40px 25px;
    text-align:center;

    background:#fff;
    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:all .35s ease;
}

.work-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(21,61,138,.15);
}

.work-card .icon{
    width:85px;
    height:85px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:0 auto 25px;

    background:#153D8A;
    color:#fff;

    border-radius:50%;
    font-size:32px;

    transition:.35s;
}

.work-card:hover .icon{
    background:#00A651;
}

.work-card h4{
    margin-bottom:15px;

    color:#153D8A;
    font-size:20px;
    font-weight:600;
}

.work-card p{
    margin:0;
    color:#666;
    font-size:15px;
    line-height:1.9;
}


/*==========================================
    WhatsApp
==========================================*/

.whatsapp{
    position:fixed;
    left:25px;
    bottom:25px;
    z-index:1000;
}

.whatsapp a{
    display:flex;
    justify-content:center;
    align-items:center;

    width:60px;
    height:60px;

    background:#25D366;
    color:#fff;

    border-radius:50%;
    text-decoration:none;

    font-size:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:all .3s ease;
}

.whatsapp a:hover{
    transform:translateY(-5px) scale(1.08);
    color:#fff;
}

 
/*==============================
    Mobile
==============================*/

@media (max-width:767px){
    
     .section-badge{
        padding:8px 18px;
        font-size:14px;
    }
    
 .bg-counter{
        min-height:150px;
        padding:20px;
    }

    .bg-counter strong{
        font-size:34px;
    }

    .bg-counter i{
        font-size:26px;
    }

    .hero-actions,
    .product-detail-actions,
    .form-actions{
        flex-direction:column;
        gap:12px;
    }

    .hero-actions .btn-main,
    .hero-actions .btn-outline-main,
    .product-detail-actions .btn-main,
    .product-detail-actions .btn-outline-main,
    .form-actions .btn-main,
    .form-actions .btn-outline-main{
        width:100%;
    }
    
    
      .work-card{
        padding:26px 20px;
    }

    .work-card .icon{
        width:70px;
        height:70px;
        margin-bottom:20px;
        font-size:26px;
    }

    .work-card h4{
        font-size:18px;
    }

    .work-card p{
        font-size:14px;
    }
    
    
      .whatsapp{
        left:15px;
        bottom:15px;
    }

    .whatsapp a{
        width:54px;
        height:54px;
        font-size:26px;
    }

}