@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.newFrontend {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newFrontend .container {
    position: relative;
    z-index: 2;
}

.newFrontend .col-md-7 {
    animation: fadeInLeft 0.8s ease-out;
}

.newFrontend h4 {
    color: #008751;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.newFrontend h1 {
    color: #1f2937;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.newFrontend h1 span {
    background: linear-gradient(90deg, #008751, #008751);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newFrontend>.container>.row>.col-md-7>p {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.serachZone {
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

/* Card événement moderne */
.featured-event-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 0.8s ease-out 0.3s backwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 550px;
}

.featured-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.featured-event-card .event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-event-card:hover .event-image {
    transform: scale(1.1);
}

.featured-event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #008751, #008751);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: scaleIn 0.5s ease-out 0.8s backwards;
    box-shadow: 0 4px 15px rgba(0, 135, 81, 0.4);
}

.event-badge i {
    margin-right: 6px;
}

.featured-event-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
    animation: fadeInUp 0.6s ease-out 1s backwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.event-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
    animation: fadeInUp 0.6s ease-out 1.1s backwards;
}

.event-meta-item i {
    color: #008751;
    font-size: 18px;
}

.event-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease-out 1.2s backwards;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #008751, #008751);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 135, 81, 0.4);
    animation: fadeInUp 0.6s ease-out 1.3s backwards;
    position: relative;
    overflow: hidden;
}

.event-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.event-cta-button:hover::before {
    left: 100%;
}

.event-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 135, 81, 0.6);
    color: white;
}

.event-cta-button i {
    font-size: 18px;
}

.no-event-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 40px;
}

.no-event-state i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.no-event-state h4 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.no-event-state p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

@media (max-width: 768px) {
    .newFrontend {
        padding: 50px 0;
    }

    .newFrontend h1 {
        font-size: 36px;
    }

    .featured-event-card {
        height: 450px;
        margin-top: 30px;

    }

    .featured-event-title {
        font-size: 24px;
    }

    .event-meta {
        gap: 15px;
    }
}


.wrapper {
    position: relative;
    width: 100%;
    height: 560px;
    pointer-events: none;
    margin: 120px 0;
    overflow: hidden;
    /* <--- AJOUT IMPORTANT */
    z-index: 1;
    background: radial-gradient(at center, #00875198, #fff 35%);
}

.wrapper .circle {
    position: absolute;
    border-radius: 50%;
    border: 0.1px solid #f67f00c2;
    z-index: -1;
}

.wrapper .circle1 {
    width: clamp(150px, 50vw, 250px);
    height: clamp(150px, 50vw, 250px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wrapper .circle2 {
    width: clamp(200px, 75vw, 320px);
    height: clamp(200px, 75vw, 320px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wrapper .circle3 {
    width: clamp(380px, 70vw, 400px);
    height: clamp(380px, 70vw, 400px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.wrapper .center-card {
    width: min(400px, 100vw);
    padding: 30px;
    background: transparent;
    border-radius: 20px;
    /* box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07); */
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.wrapper .center-card h1 {
    margin: 0;
    font-size: clamp(18px, 8vw, 44px);
    width: 100%;
    color: #373D3F;
    font-weight: 800;
}


.wrapper .bubble {
    position: absolute;
    width: 15vw;
    padding: 8px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 10px rgba(60, 60, 60, 0.08);
    pointer-events: auto;
    text-decoration: none;
    color: #373D3F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;

}

.wrapper .bubble .descript small {
    font-size: 13px;
    font-style: italic;
}

.wrapper .bubble svg {
    width: 34px;
    height: 34px;
    color: #373D3F;

}

.wrapper .bubble:hover svg {
    animation: Shake 1.5s ease-out infinite both;
}

@keyframes Shake {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        transform: translateX(20%);
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.wrapper .bubble .descript h3 {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    width: auto;
    text-overflow: ellipsis;
}

/* positions */
.wrapper .bubble-top-left {
    top: 12%;
    left: 27%;
}

.wrapper .bubble-top-right {
    top: 12%;
    right: 27%;
}

.wrapper .bubble-middle-left {
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

.wrapper .bubble-middle-right {
    top: 48%;
    right: 20%;
    transform: translateY(-50%);
}

.wrapper .bubble-bottom-left {
    bottom: 12%;
    left: 27%;
}

.wrapper .bubble-bottom-right {
    bottom: 12%;
    right: 27%;
}


@media (max-width: 829px) {
    .wrapper .wrapper {
        margin: 100px 0;

    }


    .wrapper .center-card {
        position: static;
        transform: none;
        margin-bottom: 20px;
        width: 90%;
        padding: 20px;
        margin: 0 auto;
    }

    .wrapper .bubble {
        width: 60vw;
        padding: 12px 15px;
        transform: none !important;
        position: static;
        margin: 12px auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
}



@media (min-width:830px) and (max-width: 1364px) {
    .wrapper {
        height: 500px;
    }

    .wrapper .center-card {
        position: static;
        transform: none;
        margin-bottom: 30px;
        width: 90%;
        padding: 20px;
        margin: 0 auto;
    }

    .wrapper .center-card h1 {
        font-size: 5vw;
    }

    .wrapper .bubble {
        width: 200px;
    }

    .wrapper .bubble small {
        font-size: 12px;
        font-style: italic;
    }

    .wrapper .bubble svg {
        width: 24px;
        height: 24px;

    }

    .wrapper .descript .bubble h3 {
        font-size: 1rem;
    }

    .wrapper .bubble-top-left {
        top: 25%;
        left: 5%;
        margin-left: 15vw
    }

    .wrapper .bubble-top-right {
        top: 25%;
        right: 5%;
        margin-right: 15vw;
    }

    .wrapper .bubble-middle-left {
        top: 50%;
        left: 5%;
        margin-left: 8vw;
    }

    .wrapper .bubble-middle-right {
        top: 50%;
        right: 5%;
        margin-right: 8vw;
    }

    .wrapper .bubble-bottom-left {
        bottom: 25%;
        left: 5%;
        margin-left: 15vw;
    }

    .wrapper .bubble-bottom-right {
        bottom: 25%;
        right: 5%;
        margin-right: 15vw;
    }



}

@media (min-width: 1920px) and (max-width: 2560px) {
    .wrapper {
        height: 700px;
    }

    .wrapper .circle1 {
        width: 15vw;
        height: 15vw;
    }

    .wrapper .circle2 {
        width: 20vw;
        height: 20vw;
    }

    .wrapper .circle3 {
        width: 25vw;
        height: 25vw;
    }

    .wrapper .center-card {
        width: 25vw;
    }

    .wrapper .center-card h1 {
        font-size: 4rem;
        margin-bottom: 2px;
    }

    .wrapper .bubble {
        width: 12vw;
    }

    .wrapper .bubble small {
        font-size: 18px;
        font-style: italic;
    }

    .wrapper .bubble svg {
        width: 34px;
        height: 34px;

    }

    .wrapper .bubble h3 {
        font-size: 1.8rem;
    }

    .wrapper .bubble-top-left {
        top: 12%;
        left: 30%;
    }

    .wrapper .bubble-top-right {
        top: 12%;
        right: 30%;
    }

    .wrapper .bubble-middle-left {
        top: 50%;
        left: 25%;
    }

    .wrapper .bubble-middle-right {
        top: 50%;
        right: 25%;
    }

    .wrapper .bubble-bottom-left {
        bottom: 12%;
        left: 30%;
    }

    .wrapper .bubble-bottom-right {
        bottom: 12%;
        right: 30%;
    }
}

.temoignage {
    background-color: white;
    width: 80%;
    margin: 150px auto;
    padding: 35px;
}

.temoignage h1 {
    text-align: center;
    font-size: clamp(32px, 4vw, 46px);
    margin-bottom: 50px;
    margin-bottom: 50px;
    font-weight: 800
}

.temoignage .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
    width: 100%;
}

.temoignage .cards .message {
    background-color: #373d3f09;
    line-height: 23px;
    border-radius: 8px;
    word-spacing: 1px;
    border: 1px solid #373D3F;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 300;
    transition: all 0.4s ease;
    display: grid;
    gap: 1em;
    height: auto;
}



.temoignage .cards .message svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    stroke: #373D3F;
}

.temoignage .cards .message .comment {
    color: #373D3F;
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 300;
    word-spacing: 1px;
}

.temoignage .cards .message .photo h3 {
    font-size: 18px;
    color: #373D3F;
    font-weight: 700;
}

.temoignage .paginate {
    height: auto;
    display: flex;
    justify-content: right;
    margin-top: 50px;
    gap: 24px;
}

.temoignage .paginate button {
    border: 1px solid #373D3F;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


.temoignage .paginate button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.temoignage .paginate .back svg {
    transform: rotate(180deg);
}

.temoignage .paginate button svg {
    width: 30px;
    height: 30px;
    fill: #373D3F;
}


.temoignage .paginate button:not(:disabled) {
    background-color: #e0f2e9;
    /* vert clair */
    border-color: #008751;
    /* vert foncé */
}

.temoignage .paginate button:not(:disabled) svg {
    fill: #008751;
    /* vert foncé */
}

/* Boutons désactivés */
.temoignage .paginate button:disabled {
    opacity: 0.4;
    background-color: transparent;
    border-color: #373D3F;
}

.temoignage .paginate button:disabled svg {
    fill: #373D3F;
}

@media (max-width: 768px) {
    .temoignage {
        width: 90%;
        margin: 100px auto;
        padding: 20px;
    }

    .temoignage h1 {
        font-size: 2rem;
    }
}


.contact-section {
    position: relative;
    margin: clamp(80px, 12vw, 140px) auto;
    width: min(1100px, 94%);
    border-radius: 32px;
    padding: 30px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0b1120 100%);
    color: #f8fafc;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.35);
}

.contact-section .badge {
    display: block;
    justify-content: center;
    align-items: center;
    padding: 8px 14px;
}

.contact-section::before {
    content: "";
    position: absolute;
    width: clamp(240px, 38vw, 400px);
    height: clamp(240px, 38vw, 400px);
    background: radial-gradient(circle, rgba(0, 135, 81, 0.25) 0%, rgba(0, 135, 81, 0) 70%);
    top: clamp(-150px, -20vw, -200px);
    left: clamp(-130px, -16vw, -180px);
    filter: blur(18px);
}

.contact-section::after {
    content: "";
    position: absolute;
    width: clamp(220px, 32vw, 360px);
    height: clamp(220px, 32vw, 360px);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, rgba(59, 130, 246, 0) 70%);
    bottom: clamp(-140px, -18vw, -190px);
    right: clamp(-120px, -15vw, -170px);
    filter: blur(16px);
}

.contact-section .contact-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    align-items: stretch;
}

.contact-section .contact-intro {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.contact-section .contact-intro h2 {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    margin: 0;
}

.contact-section .contact-intro p {
    margin: 0;
    color: rgba(226, 232, 240, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.contact-section .contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.contact-section .contact-card {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 22px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.contact-section .contact-card:hover {
    transform: translateY(-6px);
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(99, 102, 241, 0.55);
}

.contact-section .contact-card span.label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(148, 163, 184, 0.7);
    font-weight: 700;
}


.contact-section .contact-card h3 {
    font-size: 19px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-section .contact-card h3 i {
    font-size: 22px;
    color: #22d3ee;
}

.contact-section .contact-card a {
    align-self: flex-start;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.25);
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.contact-section .contact-card a:hover {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.35);
    color: #38bdf8;
}

@media (max-width: 640px) {
    .contact-section {
        padding: clamp(2.6rem, 8vw, 3.2rem) clamp(1.4rem, 7vw, 2.4rem);
    }

    .contact-section .contact-card {
        padding: 20px;
    }

    .contact-section .contact-card h3 {
        font-size: 20px;
    }
}


.news-card {
    width: 100%;
    height: 320px;
    background-color: #008751;
    margin: 100px 0 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 50px 10%;
}

.news-card .description {
    width: 38%;
    align-items: start;
    animation: slideIn 2s ease-out;
}

.news-card .description h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.news-card .description p {
    line-height: 28x;
    border-radius: 8px;
    font-weight: 300;
    word-spacing: 1px;
    font-size: 18px;
    color: white;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card .mailing {
    width: 50%;
    height: auto;
    font-weight: 500;
}


.news-card .mailing form {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    gap: 2%;
}

.news-card .mailing form input {
    width: 78%;
    height: 50px;
    padding: 0 20px;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #008751;
    letter-spacing: 1.5px;
}

.news-card .mailing form button {
    width: 20%;
    height: 50px;
    padding: 0 20px;
    border-radius: 4px;
    background-color: #F67F00;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
}

@media (max-width: 991px) {
    .news-card {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        padding: 50px 5%;
    }

    .news-card .description {
        width: 100%;
    }

    .news-card .description h1 {
        text-align: center;
        font-size: clamp(32px, 4vw, 46px);
    }

    .news-card .description p {
        text-align: center;
        font-size: clamp(12px, 1.5vw, 24px);
    }

    .news-card .mailing {
        width: 100%;
    }

    .news-card .mailing form {
        width: 100%;
        display: flex;
        justify-content: space-around;
    }


    .news-card .mailing form input {
        width: 70%;
        height: 40px;
        padding: 0 10px;
    }

    .news-card .mailing form button {
        width: 30%;
        height: 40px;
        text-align: center;
        font-size: 14px;
    }
}



.download {
    position: relative;
    overflow: hidden;
    margin: clamp(60px, 9vw, 120px) auto;
    width: min(1100px, 94%);
    border-radius: 36px;
    background: linear-gradient(145deg, #e9fff2 0%, #ffffff 55%, #e9fff2 100%);
    box-shadow: 0 45px 90px rgba(0, 135, 81, 0.12);
    padding: clamp(3rem, 6vw, 4.8rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
}

.download .parts-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    width: 100%;
}

.download .parts-card .left {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    max-width: 480px;
}

.download .parts-card .left h1 {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.12;
    letter-spacing: 0.03em;
    animation: FadeIn 1.5s ease-out;
}

@keyframes FadeIn {
    from {
        transform: translateY(-50%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.download .parts-card .left .boutons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: FadeInBtn 1.5s ease-out 0.2s both;
}

@keyframes FadeInBtn {
    from {
        transform: translateY(50%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.download .parts-card .left .store-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-radius: 16px;
    border: 1.5px solid rgba(0, 135, 81, 0.22);
    color: #008751;
    font-weight: 600;
    font-size: 18px;
    background-color: #ffffff;
    box-shadow: 0 18px 35px rgba(0, 135, 81, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    min-width: 220px;
}


.download .parts-card .left .store-btn .store-icon svg {
    fill: currentColor;
}

.download .parts-card .left .store-btn .store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.download .parts-card .left .store-btn .store-text small {
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 135, 81, 0.75);
    margin-bottom: 2px;
}

.download .parts-card .left .store-btn:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #008751 0%, #008751 100%);
    color: #ffffff;
    box-shadow: 0 24px 45px rgba(0, 135, 81, 0.22);
    border: none;
}

.download .parts-card .left .store-btn:hover .store-text small {
    color: #e0f2e9;
}

.download .parts-card .right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.download .parts-card .right img {
    width: min(400px, 100%);
    height: auto;
    filter: drop-shadow(0 24px 35px rgba(15, 23, 42, 0.18));
    animation: pulseGlow 2s ease-in-out;
}

@keyframes pulseGlow {
    0% {
        filter: drop-shadow(0 24px 35px rgba(15, 23, 42, 0.18)) drop-shadow(0 0 0 rgba(0, 135, 81, 0));
        transform: scale(1.1);
    }

    100% {
        filter: drop-shadow(0 24px 35px rgba(15, 23, 42, 0.18)) drop-shadow(0 0 25px rgba(0, 135, 81, 0.338));
        transform: scale(1);
    }
}

@media (max-width: 991px) {
    .download {
        flex-direction: column;
        text-align: center;
        padding: clamp(2.8rem, 10vw, 4rem) clamp(1.5rem, 7vw, 3rem);
        gap: 2.5rem;
    }

    .download .disque {
        top: clamp(-120px, -18vw, -160px);
        right: clamp(-120px, -20vw, -200px);
        left: auto;
    }

    .download .parts-card {
        flex-direction: column-reverse;
        gap: 2.5rem;
        align-items: center;
    }

    .download .parts-card .left {
        align-items: center;
        max-width: 100%;
    }

    .download .parts-card .left h1 {
        font-size: clamp(28px, 6vw, 36px);
    }

    .download .parts-card .left .boutons {
        justify-content: center;
    }

    .download .parts-card .left .store-btn {
        min-width: 240px;
    }

    .download .parts-card .left .store-btn .store-text {
        text-align: center;
    }

    .download .parts-card .right img {
        width: min(320px, 85%);
    }
}

.download .parts-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    width: 100%;
}

.download .parts-card .right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: clamp(320px, 40vw, 420px);
}

.download .parts-card .right img {
    width: min(300px, 100%);
    height: auto;
    filter: drop-shadow(0 24px 35px rgba(15, 23, 42, 0.18));
    position: relative;
    z-index: 3;
}

.download .parts-card .right .phone-orbit {
    position: absolute;
    width: clamp(260px, 38vw, 420px);
    height: clamp(260px, 38vw, 420px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 135, 81, 0.75) 0%, rgba(0, 135, 81, 0.45) 38%, rgba(0, 135, 81, 0.05) 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(2px);
    z-index: 1;
    box-shadow: 0 0 80px rgba(0, 135, 81, 0.35), 0 0 140px rgba(0, 135, 81, 0.3);
}

.download .parts-card .right .phone-orbit::before {
    content: "";
    position: absolute;
    inset: clamp(-22px, -3vw, -32px);
    border-radius: 50%;
    border: 2px dashed rgba(0, 135, 81, 0.45);
    animation: etk-spin 18s linear infinite;
}

.download .parts-card .right .phone-orbit::after {
    content: "";
    position: absolute;
    inset: clamp(-38px, -5vw, -48px);
    border-radius: 50%;
    border: 2px dotted rgba(0, 135, 81, 0.25);
    animation: etk-spin-rev 24s linear infinite;
}

.download .parts-card .right .phone-orbit .orbit {
    position: absolute;
    inset: clamp(-14px, -2vw, -22px);
    border-radius: 50%;
    border-left: 3px dotted rgba(0, 135, 81, 0.75);
    border-top: 3px dotted transparent;
    border-right: 3px dotted transparent;
    border-bottom: 3px dotted rgba(0, 135, 81, 0.45);
    animation: orbit-spin 5s linear infinite;
    mix-blend-mode: screen;
}

.download .parts-card .right .phone-orbit .orbit-secondary {
    inset: clamp(-28px, -3.8vw, -40px);
    border-left-color: rgba(59, 130, 246, 0.55);
    border-bottom-color: rgba(59, 130, 246, 0.35);
    animation-duration: 8s;
    animation-direction: reverse;
}

.download .parts-card .right .phone-orbit .smal-disque {
    width: 65%;
    height: 65%;
    background: radial-gradient(circle, rgba(0, 135, 81, 0.85) 0%, rgba(0, 135, 81, 0.15) 65%);
    border-radius: 50%;
    filter: blur(38px);
    margin: auto;
}

@keyframes etk-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes etk-spin-rev {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes orbit-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    .download .parts-card .right {
        min-height: 280px;
    }

    .download .parts-card .right img {
        width: min(280px, 92%);
    }
}

@media (max-width: 496px) {
    .featured-event-card {
        height: 450px;
        margin-top: 30px;
        margin-left: 5%;
    }

    .wrapper {
        position: relative;
        width: 100%;
        height: 650px;
        pointer-events: none;
        top: -80px;
        margin: 120px 0;
        overflow: hidden;
        /* <--- AJOUT IMPORTANT */
        z-index: 1;
        background: radial-gradient(at center, #008751f7, #fff 35%);
        /* background:blue; */

    }

    .download {
        position: relative;
        top: -150px;
        overflow: hidden;
        margin: clamp(60px, 9vw, 120px) auto;
        width: min(1100px, 94%);
        border-radius: 36px;
        background: linear-gradient(145deg, #e9fff2 0%, #ffffff 55%, #e9fff2 100%);
        box-shadow: 0 45px 90px rgba(0, 135, 81, 0.12);
        padding: clamp(2rem, 4vw, 3.8rem);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: clamp(2rem, 5vw, 4rem);
        /* background:red; */
    }

    .temoignage {
        background-color: white;
        width: 80%;
        margin: 150px auto;
        padding: 35px;
        margin-top: -150px;
    }

}

@media (max-width: 422px) {
    .featured-event-card {
        height: 400px;
        margin-top: 20px;
    }

    .event-badge {
        padding: 6px 14px;
        font-size: 11px;
        top: 15px;
        right: 15px;
    }

    .featured-event-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .event-meta {
        gap: 12px;
        margin-bottom: 15px;
    }

    .event-meta-item {
        font-size: 13px;
        gap: 6px;
    }

    .event-meta-item i {
        font-size: 14px;
    }

    .event-description {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.4;
        -webkit-line-clamp: 2;
    }

    .event-cta-button {
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
    }

    .event-cta-button i {
        font-size: 14px;
    }

    .featured-event-overlay {
        padding: 20px;
    }
}