/*==================================================
SERVICES
==================================================*/

.services-page{

    padding:80px 0;

    background:#faf9ff;

}

.services-page .container{

    max-width:1280px;

    margin:auto;

    padding:0 30px;

}

/*==================================================
HERO
==================================================*/

.services-hero{

    max-width:900px;

    margin:0 auto 80px;

    text-align:center;

}

.services-hero .section-tag{

    display:inline-block;

    padding:8px 22px;

    background:#efe9ff;

    color:#6d28d9;

    border-radius:50px;

    font-weight:700;

    margin-bottom:20px;

}

.services-hero h1{

    font-size:3.3rem;

    line-height:1.2;

    color:#241c44;

    margin-bottom:25px;

}

.services-hero p{

    max-width:760px;

    margin:auto;

    font-size:1.15rem;

    line-height:1.9;

    color:#666;

}

/*==================================================
INTRODUCTION
==================================================*/

.services-intro{

    margin-bottom:90px;

}

.intro-box{

    max-width:900px;

    margin:auto;

    background:#fff;

    padding:60px;

    border-radius:28px;

    text-align:center;

    box-shadow:0 18px 50px rgba(0,0,0,.07);

}

.intro-box h2{

    color:#241c44;

    font-size:2.2rem;

    margin-bottom:20px;

}

.intro-box p{

    color:#666;

    line-height:1.9;

    font-size:1.08rem;

    margin:0;

}

/*==================================================
CATÉGORIES
==================================================*/

.service-category{

    margin-bottom:90px;

    padding:70px 60px;

    border-radius:35px;

}

/*==================================================
COULEURS DES UNIVERS
==================================================*/

.service-category:nth-of-type(2){

    background:#fff5f7;

}

.service-category:nth-of-type(3){

    background:#fff9ed;

}

.service-category:nth-of-type(4){

    background:#f4f9ff;

}

.service-category:nth-of-type(5){

    background:#f7f3ff;

}

/*==================================================
TITRES
==================================================*/

.section-heading{

    max-width:800px;

    margin:0 auto 55px;

    text-align:center;

}

.section-heading .section-tag{

    display:inline-block;

    padding:8px 20px;

    background:#ffffff;

    color:#6d28d9;

    border-radius:50px;

    font-weight:700;

    margin-bottom:18px;

}

.section-heading h2{

    font-size:2.3rem;

    color:#241c44;

    margin-bottom:20px;

    line-height:1.3;

}

.section-heading p{

    color:#666;

    line-height:1.8;

}

/*==================================================
GRILLE
==================================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*==================================================
CARTES DES PRESTATIONS
==================================================*/

.service-card{

    background:#fff;

    border-radius:26px;

    padding:38px 32px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

    height:100%;

    position:relative;

    overflow:hidden;

    border:1px solid rgba(109,40,217,.08);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 60px rgba(0,0,0,.14);

}

/*==================================================
ICÔNES
==================================================*/

.service-icon{

    width:85px;

    height:85px;

    border-radius:50%;

    background:#f6f1ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2.2rem;

    margin-bottom:28px;

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:scale(1.08);

    background:#6d28d9;

    color:#fff;

}

/*==================================================
TITRES
==================================================*/

.service-card h3{

    font-size:1.45rem;

    color:#241c44;

    margin-bottom:8px;

    line-height:1.35;

}

.service-subtitle{

    display:block;

    color:#6d28d9;

    font-weight:700;

    margin-bottom:22px;

    font-size:.95rem;

    text-transform:uppercase;

    letter-spacing:.08em;

}

/*==================================================
DESCRIPTION
==================================================*/

.service-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:24px;

    flex:1;

}

/*==================================================
LISTE
==================================================*/

.service-card ul{

    list-style:none;

    margin:0 0 28px;

    padding:0;

}

.service-card li{

    margin-bottom:12px;

    color:#555;

    line-height:1.6;

}

.service-card li:last-child{

    margin-bottom:0;

}

/*==================================================
PRIX
==================================================*/

.service-price{

    display:flex;

    align-items:flex-end;

    gap:14px;

    margin-bottom:28px;

}

.old-price{

    text-decoration:line-through;

    color:#999;

    font-size:1rem;

}

.new-price{

    color:#6d28d9;

    font-size:2rem;

    font-weight:800;

    line-height:1;

}

/*==================================================
BOUTONS
==================================================*/

.service-card .btn{

    width:100%;

    text-align:center;

    margin-top:auto;

}

.service-card .btn:hover{

    transform:translateY(-2px);

}

/*==================================================
BADGE PREMIUM
==================================================*/

.service-badge{

    position:absolute;

    top:22px;

    right:-38px;

    background:#ffd700;

    color:#241c44;

    padding:8px 45px;

    transform:rotate(45deg);

    font-size:.75rem;

    font-weight:700;

    letter-spacing:.05em;

    text-transform:uppercase;

}

/*==================================================
EFFET LUMIÈRE
==================================================*/

.service-card::before{

    content:"";

    position:absolute;

    top:-120px;

    left:-120px;

    width:220px;

    height:220px;

    background:rgba(255,255,255,.35);

    border-radius:50%;

    transition:.5s;

}

.service-card:hover::before{

    transform:scale(2);

    opacity:0;

}

/*==================================================
POURQUOI CHOISIR EVAA
==================================================*/

.services-advantages{

    padding:90px 0;

    background:#ffffff;

}

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:55px;

}

.advantage-card{

    background:#faf9ff;

    padding:45px 35px;

    border-radius:24px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.07);

    transition:.35s;

}

.advantage-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 55px rgba(0,0,0,.12);

}

.advantage-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#efe9ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

}

.advantage-card h3{

    color:#241c44;

    margin-bottom:18px;

    font-size:1.4rem;

}

.advantage-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}

/*==================================================
CTA
==================================================*/

.services-cta{

    padding:90px 0;

}

.services-cta .cta-box{

    max-width:1100px;

    margin:auto;

    background:linear-gradient(135deg,#6d28d9,#4f46e5);

    border-radius:30px;

    padding:80px 60px;

    text-align:center;

    color:#fff;

}

.services-cta .section-tag{

    display:inline-block;

    padding:8px 20px;

    background:rgba(255,255,255,.15);

    border-radius:50px;

    margin-bottom:20px;

    font-weight:700;

}

.services-cta h2{

    color:#fff;

    font-size:2.6rem;

    margin-bottom:25px;

}

.services-cta p{

    max-width:760px;

    margin:0 auto 40px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons .btn{

    min-width:230px;

}

.cta-buttons .btn-outline{

    background:transparent;

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

}

.cta-buttons .btn-outline:hover{

    background:#fff;

    color:#6d28d9;

}

/*==================================================
ANIMATIONS
==================================================*/

.service-card,
.advantage-card{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

.services-grid{

    grid-template-columns:repeat(2,1fr);

}

.advantages-grid{

    grid-template-columns:repeat(2,1fr);

}

.service-category{

    padding:55px 40px;

}

}

@media(max-width:768px){

.services-page{

    padding:60px 0;

}

.services-page .container{

    padding:0 20px;

}

.services-hero{

    margin-bottom:60px;

}

.services-hero h1{

    font-size:2.4rem;

}

.intro-box{

    padding:40px 30px;

}

.intro-box h2{

    font-size:1.9rem;

}

.services-grid{

    grid-template-columns:1fr;

}

.advantages-grid{

    grid-template-columns:1fr;

}

.service-category{

    padding:40px 25px;

    margin-bottom:60px;

}

.services-cta .cta-box{

    padding:55px 30px;

}

.services-cta h2{

    font-size:2rem;

}

.cta-buttons{

    flex-direction:column;

}

.cta-buttons .btn{

    width:100%;

}

}

@media(max-width:480px){

.services-hero h1{

    font-size:2rem;

}

.section-heading h2{

    font-size:1.8rem;

}

.service-card{

    padding:30px 25px;

}

.service-icon{

    width:70px;

    height:70px;

    font-size:1.8rem;

}

.new-price{

    font-size:1.7rem;

}

.services-cta .cta-box{

    border-radius:22px;

    padding:45px 20px;

}

}
