.elementor-19070101 .elementor-element.elementor-element-3aa716a > .elementor-widget-container{margin:-35px -145px 0px -150px;}@media(max-width:1024px){.elementor-19070101 .elementor-element.elementor-element-3aa716a > .elementor-widget-container{margin:-35px -55px 0px -62px;}}@media(max-width:767px){.elementor-19070101 .elementor-element.elementor-element-3aa716a > .elementor-widget-container{margin:-35px -41px -32px -41px;}}/* Start custom CSS for html, class: .elementor-element-3aa716a *//* Fond général : dégradé doux avec un soupçon d’orange clair */
body {
    background: linear-gradient(to bottom right, #f6f7f9, #fff4ee); /* blanc cassé + orange très pâle */
}

.services-container {
  background: linear-gradient(to right,
    #ffffff 0%,
    #ffffff 25%,
    #f9f0e9 50%, /* orange très pâle */
    #ffffff 75%,
    #ffffff 100%      /* blanc pur */
  );
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(244, 105, 1, 0.05); /* ombre très légère orangée */
}

.title {
    text-align: center;
    font-size: 25px;
    margin-bottom: 10px;
    color: #f46901;
    animation: fadeInDown 1s ease forwards;
    opacity: 0; /* pour forcer l'animation */
    animation-delay: 0.2s;
}

.intro-text {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin: 0 auto 40px;
    max-width: 800px;
    opacity: 0;
    animation: fadeInDown 1s ease forwards;
    animation-delay: 0.3s;
}

.cards-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    background: transparent;
}

/* 2 colonnes à partir de 700px d'écran */
@media (min-width: 700px) {
    .cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-wrapper {
    position: relative;
    width: 100%;
    height: 220px; /* hauteur fixe */
    background-color: transparent;
    margin-bottom: 275px;
    animation: fadeSlideIn 1s ease forwards;
}

/* Pour écrans tablette */
@media (max-width: 1023px) and (min-width: 600px) {
    .service-text {
        height: 465px !important;
    }
    .service-wrapper {
        margin-bottom: 450px;
    }
}

/* Entre 1023px et 1024px */
@media (max-width: 1024px) and (min-width: 1023px) {
    .service-text {
        height: 350px !important;
    }
    .service-wrapper {
        margin-bottom: 400px;
    }
}

/* Pour mobile */
@media (max-width: 599px) {
    .service-text {
        height: 505px !important;
    }
    .service-wrapper {
        margin-bottom: 480px;
    }
}

.service-card {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(255, 255, 255, 0.5)); /* blanc + orange pâle */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow:
        0 0 30px rgba(135, 206, 250, 0.5),  /* halo blanc doux */
        0 4px 12px rgba(135, 206, 250, 0.5);     /* ombre classique légère */

    transition: box-shadow 0.4s ease;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    filter: grayscale(8%) brightness(0.96);
    transition: transform 0.4s ease, filter 0.4s ease;

    /* Ombre blanche très douce autour de l'image */
    box-shadow: 0 0 40px 15px Blue;
    filter: grayscale(8%) brightness(0.96) drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
}


.service-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 40px rgba(255, 255, 255, 0.7),
        0 20px 35px rgba(0, 0, 0, 0.1);
}

.icon-overlay {
    position: absolute;
    top: 160px; /* légèrement au-dessus du bas */
    left: 50%;
    transform: translateX(-50%);
    background-color: #f46901;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.service-text {
    position: absolute;
    top: 190px; /* légèrement sous l'icône */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    border: 1.5px solid #f46901;
    padding: 20px 25px 25px 25px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
    width: 85%;
    color: #333;
    text-align: left;
    height: 275px;
}

.service-text h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.4em;
    text-align: center;
    color: #f46901;
}

.service-text p {
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
}

/* Animations */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}/* End custom CSS */