.itinerary-section {
    padding: 2rem 0rem 2em 0em;
    position: relative;
    overflow: visible;
}

/* Ligne pointillée centrale améliorée avec animation */
.itinerary-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(6rem + 80px); /* padding-top + demi-hauteur du premier jour */
    height: calc(100% - 12rem - 160px); /* Hauteur totale - (padding-top + padding-bottom + hauteur premier/dernier jour) */
    width: 3px;
    background: repeating-linear-gradient(
        to bottom,
        var(--primary-color) 0,
        var(--primary-color) 8px,
        transparent 8px,
        transparent 16px
    );
    opacity: 0.3;
    z-index: 0; /* Changer pour être derrière les blocs */
    animation: borderPulse 2s infinite;
}

/* On ajoute des points de début et de fin */
.itinerary-section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(6rem + 80px - 10px); /* Même que before mais -10px pour le point */
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 0 5px rgba(255, 183, 71, 0.2);
    z-index: 0; /* Changer pour être derrière les blocs */
}

/* Point de fin */
.itinerary-section .end-point {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(6rem + 80px - 10px);
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 0 5px rgba(255, 183, 71, 0.2);
    z-index: 0; /* Changer pour être derrière les blocs */
}

/* Animation de pulsation pour la ligne */
@keyframes borderPulse {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

/* Décoration de fond avec motifs thaïlandais */
.itinerary-section::after {
    content: '🌺';
    position: absolute;
    font-size: 15rem;
    right: -5rem;
    bottom: -5rem;
    opacity: 0.05;
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 9999;
}

.itinerary-day {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff 0%, #fff8f3 100%);
    border: 1px solid rgba(255, 183, 71, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 183, 71, 0.1);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    z-index: 1; /* Mettre les blocs au premier plan */
    background: #fff; /* S'assurer que le fond est opaque */
    transform-origin: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    filter: blur(1px);
    overflow: visible;
}

/* Ajout des fleurs pour chaque jour */
.itinerary-day .flower-decoration {
    content: '🌺';
    position: absolute;
    font-size: 10rem;
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}

/* Premier jour : fleur en bas à droite */
.itinerary-day:nth-child(4n+1) .flower-decoration {
    right: -3rem;
    bottom: -3rem;
    transform: rotate(-15deg);
}

/* Deuxième jour : fleur en haut à gauche */
.itinerary-day:nth-child(4n+2) .flower-decoration {
    left: -3rem;
    top: -3rem;
    transform: rotate(45deg);
}

/* Troisième jour : fleur en haut à droite */
.itinerary-day:nth-child(4n+3) .flower-decoration {
    right: -3rem;
    top: -3rem;
    transform: rotate(-45deg);
}

/* Quatrième jour : fleur en bas à gauche */
.itinerary-day:nth-child(4n+4) .flower-decoration {
    left: -3rem;
    bottom: -3rem;
    transform: rotate(15deg);
}

/* Ajout d'une règle spécifique pour le premier jour */
.itinerary-day:first-of-type {
    opacity: 1 !important;
    filter: blur(0) !important;
    transform: none !important;
}

.itinerary-day.in-focus {
    opacity: 1;
    filter: blur(0);
    box-shadow: 0 15px 40px rgba(255, 183, 71, 0.2);
    border-color: var(--primary-color);
    z-index: 2;
    animation: focusIn 0.5s ease-out forwards;
}

/* Connexions améliorées entre les étapes */
.itinerary-day::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    width: 50px;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        var(--primary-color) 0,
        var(--primary-color) 4px,
        transparent 4px,
        transparent 8px
    );
    transform-origin: left center;
    animation: connectLine 0.5s ease-out both;
}

@keyframes connectLine {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Icônes animées pour chaque jour */
.itinerary-day::after {
    content: attr(data-icon);
    font-size: 2rem;
    position: absolute;
    left: -75px;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(0 0 10px rgba(255, 183, 71, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(5px); }
}

/* Animation focusIn */
@keyframes focusIn {
    0% {
        opacity: 0.7;
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Style amélioré pour le numéro du jour */
.itinerary-day .day-number {
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    position: relative;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--primary-color) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        2px 2px 4px rgba(0,0,0,0.1),
        4px 4px 8px rgba(var(--primary-rgb), 0.2);
    line-height: 1;
    margin: auto 0;
    flex-shrink: 0;
    transform-origin: center;
    animation: dayNumberFloat 3s ease-in-out infinite;
    position: relative;
}

.itinerary-day .day-number::before {
    content: attr(data-day);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-text-fill-color: rgba(var(--primary-rgb), 0.1);
    transform: translate(3px, 3px);
    filter: blur(4px);
}

@keyframes dayNumberFloat {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-5px) rotate(-3deg);
    }
}

.itinerary-day .content {
    flex-grow: 1;
}

.itinerary-day h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.itinerary-day .description {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.itinerary-day .highlights {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Highlights améliorés */
.itinerary-day .highlight {
    background: linear-gradient(135deg, var(--light-orange), #fff);
    border: 1px solid rgba(255, 183, 71, 0.3);
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.itinerary-day .highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 183, 71, 0.2);
    border-color: var(--primary-color);
}

.itinerary-day .highlight i {
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .itinerary-day h3
    {
        justify-content: center;
    }


    .itinerary-section {
        padding: 4rem 1rem;
        position: relative;
    }

    /* Ligne centrale verticale */
    .itinerary-section::before {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        height: 100%;
        width: 3px;
    }

    /* Points de début et fin */
    .itinerary-section::after,
    .itinerary-section .end-point {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Style des cartes */
    .itinerary-day {
        flex-direction: column;
        align-items: center;
        margin: 0 auto 4rem auto;
        padding: 2.5rem 2rem;
        width: 90%;
        max-width: 500px;
        position: relative;
        opacity: 1;
        filter: none;
        transform: none !important;
    }

    .itinerary-day.in-focus {
        opacity: 1;
        filter: none;
        transform: none !important;
        box-shadow: 0 15px 40px rgba(255, 183, 71, 0.2);
        border-color: var(--primary-color);
    }

    /* Suppression des connexions horizontales */
    .itinerary-day::before {
        display: none;
    }

    /* Repositionnement des icônes */
    .itinerary-day::after {
        /* left: 50%;
        transform: translateX(-50%);
        top: 0rem;
        font-size: 2.8rem; */
        display: none;
    }

    /* Style du numéro */
    .itinerary-day .day-number {
        font-size: 3.5rem;
        width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    /* Contenu centré */
    .itinerary-day .content {
        width: 100%;
        text-align: center;
    }

    /* Highlights centrés */
    .itinerary-day .highlights {
        justify-content: center;
        margin-top: 2rem;
    }

    /* Autres ajustements responsives existants */
    .voyage-title {
        font-size: 2.5rem;
    }

    .timer-container {
        gap: 1rem;
    }
}


.testimonials-section {
    background: var(--light-orange);
    padding: 4rem 2rem;

}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
}

/* Section Témoignages */
#testimonials {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

#testimonials blockquote {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#testimonials p {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

#testimonials cite {
    color: var(--primary-color);
    font-weight: 600;
}

.search-faq {
    text-align: center;
    margin-top: 4rem;
}

/* Section Garanties */
#guarantees {
    padding: 4rem 2rem 2rem 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.guarantee-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    /* Ajout d'une largeur fixe pour une meilleure uniformité */
    width: calc(33.333% - 2rem);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.guarantee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(var(--primary-rgb), 0.05) 0%,
        rgba(var(--primary-rgb), 0.02) 100%
    );
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.guarantee-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: all 0.6s ease;
    transform: translate(-100%, -100%) rotate(35deg);
}

.guarantee-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(var(--primary-rgb), 0.15),
        inset 0 0 0 2px var(--primary-color);
}

.guarantee-item:hover::before {
    opacity: 1;
}

.guarantee-item:hover::after {
    opacity: 0.3;
    transform: translate(0, 0) rotate(35deg);
}

.guarantee-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 auto 1.5rem auto; /* Centrage horizontal explicite */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-orange), white);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow:
        0 5px 15px rgba(var(--primary-rgb), 0.2),
        inset 0 0 0 2px rgba(var(--primary-rgb), 0.1);
}

.guarantee-item:hover i {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow:
        0 8px 20px rgba(var(--primary-rgb), 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.guarantee-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 1rem 0;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.guarantee-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.guarantee-item:hover h3::after {
    transform: scaleX(1);
}

.guarantee-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    /* Hauteur minimale pour aligner les cartes */
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.guarantee-item:hover p {
    color: #333;
}

@media (max-width: 992px) {
    .guarantee-item {
        width: calc(50% - 2rem);
    }
}

/* Responsive Design pour Guarantees */
@media (max-width: 992px) {
    #guarantees {
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .guarantee-item {
        flex: 0 1 calc(50% - 1rem);
        min-width: unset;
        width: calc(50% - 1rem);
        padding: 2rem 1.5rem;
    }

    .guarantee-item i {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    #guarantees {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .guarantee-item {
        flex: 1 1 100%;
        width: 100%;
        min-width: unset;
        max-width: none;
        margin: 0;
        padding: 1.5rem;
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 1.5rem;
    }

    .guarantee-item i {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.75rem;
        margin: 0;
    }

    .guarantee-item .content-wrapper {
        flex: 1;
    }

    .guarantee-item h3 {
        margin: 0 0 0.5rem 0;
        text-align: left;
    }

    .guarantee-item p {
        margin: 0;
        font-size: 0.9rem;
        text-align: left;
    }

    .guarantee-item:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 480px) {
    #guarantees {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .guarantee-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .guarantee-item i {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }

    .guarantee-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .guarantee-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Section Offre Spéciale */
#special-offer {
    background: linear-gradient(to right,var(--primary-color) 0%, rgba(255, 107, 44, 0.2) 0%), url('/images/carte-map-thailande.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 3rem 1rem;
}

.timer-box {
    background: white;
    color: var(--primary-color);
    padding: 1rem;
    border-radius: 0.5rem;
    min-width: 80px;
}

.timer-number {
    font-size: 2rem;
    font-weight: 700;
}

.timer-label {
    font-size: 0.8rem;
    color: #666;
}

.offer-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.offer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.offer-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.timer-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.timer-box {
    background: var(--light-orange);
    border-radius: 8px;
    padding: 1rem;
    min-width: 100px;
}

.timer-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.timer-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.urgency {
    font-size: 1.2rem;
    margin: 2rem 0;
}

.urgency.critical {
    color: #ff4444;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .timer-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .timer-box {
        min-width: 80px;
    }

    .timer-number {
        font-size: 2rem;
    }
}

/* Section FAQ */
#faq {
    padding: 4rem 2rem;
}

.faq-item {
    max-width: 800px;
}

.faq-item.active {
    background: var(--primary-color);
    color: white;
}

/* CTA Final */
#cta-final {
    text-align: center;
    padding: 8rem 2rem;
    background: linear-gradient(to right,var(--primary-color) 0%, rgba(255, 255, 255, 0.0) 0%), url('/images/image-fond-header-webp.webp') no-repeat center/cover fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

#cta-final::before {
    content: '🌺';
    position: absolute;
    font-size: 20rem;
    right: -2rem;
    bottom: -5rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}

#cta-final p {
    font-size: 2.5rem;
    font-family: 'Dancing Script', cursive;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

#cta-final .highlight-text {
    display: inline-block;
    font-size: 3.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow:
        3px 3px 0 #fff,
        -3px -3px 0 #fff,
        3px -3px 0 #fff,
        -3px 3px 0 #fff;
    margin: 1rem 0;
    transform: rotate(-2deg);
    animation: highlight-pulse 2s infinite;
}

#cta-final .subtitle-text {
    display: block;
    font-size: 1.8rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    margin-top: 0.5rem;
    background: linear-gradient(45deg, #fff, var(--light-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

@keyframes highlight-pulse {
    0%, 100% { transform: rotate(-2deg) scale(1); }
    50% { transform: rotate(-2deg) scale(1.05); }
}

#cta-final button {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

#cta-final button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

#cta-final .booking-form {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .voyage-title {
        font-size: 2.5rem;
    }

    .timer-box {
        min-width: 60px;
    }

    #cta-final {
        padding: 6rem 1rem;
    }

    #cta-final p {
        font-size: 1.8rem;
    }

    #cta-final button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Sections des détails */
.prestations-details,
.repas-details {
    padding: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.prestations-grid,
.repas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prestations-column,
.repas-column {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prestations-column::before,
.repas-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prestations-column:hover,
.repas-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.prestations-column:hover::before,
.repas-column:hover::before {
    opacity: 1;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.column-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.column-header h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.icon-wrapper.included {
    background: rgba(40, 167, 69, 0.1);
}

.icon-wrapper.not-included {
    background: rgba(220, 53, 69, 0.1);
}

.icon-wrapper i {
    font-size: 0.9rem;
}

.icon-wrapper.included i {
    color: #28a745;
}

.icon-wrapper.not-included i {
    color: #dc3545;
}

.feature-text {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .prestations-grid,
    .repas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .prestations-column,
    .repas-column {
        padding: 1.5rem;
    }

    .column-header h3 {
        font-size: 1.5rem;
    }

    .feature-text {
        font-size: 1rem;
    }

    .feature-list li {
        padding: 0.8rem 0;
    }
}

/* Section Prestations et Repas CRO Optimisée */
.prestations-repas-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8f3 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.section-block {
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.icon-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.2);
    position: relative;
    overflow: hidden;
}

.icon-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.icon-badge i {
    font-size: 2.2rem;
    color: white;
    z-index: 2;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    font-family: 'Dancing Script', cursive;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.prestations-grid,
.repas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.prestations-column,
.repas-column {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(var(--primary-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.prestations-column::before,
.repas-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.prestations-column:hover,
.repas-column:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(var(--primary-rgb), 0.2);
    border-color: var(--primary-color);
}

.prestations-column:hover::before,
.repas-column:hover::before {
    transform: scaleX(1);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.15);
    position: relative;
}

.column-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.prestations-column:hover .column-header::after,
.repas-column:hover .column-header::after {
    width: 100%;
}

.column-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.2);
    transition: all 0.3s ease;
}

.column-icon i {
    font-size: 1.8rem;
    color: white;
}

.prestations-column:hover .column-icon,
.repas-column:hover .column-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.3);
}

.column-header h3 {
    font-size: 1.6rem;
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
    flex: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.feature-list li:hover {
    background: rgba(var(--primary-rgb), 0.08);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.1);
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.icon-wrapper.included {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.icon-wrapper.included::before {
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.icon-wrapper.not-included {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.3);
}

.icon-wrapper.not-included::before {
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.feature-list li:hover .icon-wrapper::before {
    opacity: 1;
}

.feature-list li:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.icon-wrapper i {
    font-size: 1.1rem;
    color: white;
    z-index: 2;
    position: relative;
}

.feature-text {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
    flex: 1;
}

.feature-highlight {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(var(--primary-rgb), 0.1);
}

.feature-highlight .feature-text {
    color: var(--text-color);
    font-weight: 500;
}

/* Animation au survol */
.prestations-column.included:hover,
.repas-column.included:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.prestations-column.not-included:hover,
.repas-column.not-included:hover {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.05) 0%, rgba(255, 255, 255, 0.7) 100%);
}

/* Responsive Design Prestations et Repas */
@media (max-width: 992px) {
    .prestations-grid,
    .repas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .section-header-content {
        gap: 15px;
    }

    .icon-badge {
        width: 70px;
        height: 70px;
    }

    .icon-badge i {
        font-size: 2rem;
    }

    .prestations-column,
    .repas-column {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .prestations-repas-section {
        padding: 60px 0;
    }

    .section-block {
        margin-bottom: 60px;
        padding: 0 15px;
    }

    .section-header-content {
        flex-direction: column;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .icon-badge {
        width: 60px;
        height: 60px;
    }

    .icon-badge i {
        font-size: 1.8rem;
    }

    .prestations-column,
    .repas-column {
        padding: 25px;
        border-radius: 20px;
    }

    .column-header {
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .column-icon {
        width: 50px;
        height: 50px;
    }

    .column-icon i {
        font-size: 1.5rem;
    }

    .column-header h3 {
        font-size: 1.4rem;
    }

    .feature-list li {
        gap: 15px;
        margin-bottom: 15px;
        padding: 12px;
    }

    .icon-wrapper {
        width: 35px;
        height: 35px;
    }

    .icon-wrapper i {
        font-size: 1rem;
    }

    .feature-text {
        font-size: 1.1rem;
    }

    /* Galerie responsive */
    .gallery-header h2 {
        font-size: 2.2rem;
    }

    .gallery-stats {
        gap: 20px;
        margin: 40px 0 30px;
    }

    .gallery-stat {
        min-width: 120px;
        padding: 15px;
    }

    .gallery-stat-number {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }

    .gallery-cta {
        margin-top: 40px;
        padding: 30px;
    }

    .gallery-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .prestations-repas-section {
        padding: 40px 0;
    }

    .section-block {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .prestations-column,
    .repas-column {
        padding: 20px;
    }

    .column-header {
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .column-icon {
        width: 45px;
        height: 45px;
    }

    .column-icon i {
        font-size: 1.3rem;
    }

    .column-header h3 {
        font-size: 1.2rem;
    }

    .feature-list li {
        gap: 12px;
        margin-bottom: 12px;
        padding: 10px;
    }

    .icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .icon-wrapper i {
        font-size: 0.9rem;
    }

    .feature-text {
        font-size: 1rem;
    }

    /* Galerie mobile */
    .gallery-header h2 {
        font-size: 1.8rem;
    }

    .gallery-header p {
        font-size: 1rem;
    }

    .gallery-stats {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0 20px;
    }

    .gallery-stat {
        min-width: auto;
        padding: 12px;
    }

    .gallery-stat-number {
        font-size: 1.8rem;
    }

    .gallery-stat-label {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }

    .gallery-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .gallery-overlay i {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .gallery-overlay-text {
        font-size: 1rem;
        padding: 0 15px;
    }

    .gallery-cta {
        margin-top: 30px;
        padding: 20px;
    }

    .gallery-cta h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .gallery-cta p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

/* Section Slogan */
.slogan-section {
    position: relative;
    padding: 6rem 4rem;
    background: linear-gradient(135deg, #fff8f3 0%, #fff 100%);
    overflow: hidden;
    margin: 4rem 0;
}

/* Éléments décoratifs */
.slogan-section::before,
.slogan-section::after {
    content: '🌺';
    position: absolute;
    font-size: 12rem;
    opacity: 0.06;
    z-index: 1;
}

.slogan-section::before {
    right: -2rem;
    top: -2rem;
    transform: rotate(15deg);
    animation: floatFlower 6s ease-in-out infinite;
}

.slogan-section::after {
    left: -2rem;
    bottom: -2rem;
    transform: rotate(-15deg);
    animation: floatFlower 6s ease-in-out infinite reverse;
}

@keyframes floatFlower {
    0%, 100% { transform: rotate(15deg) translate(0, 0); }
    50% { transform: rotate(20deg) translate(10px, -10px); }
}

.slogan-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(var(--primary-rgb), 0.1);
}

.slogan-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.4rem;
    line-height: 1.6;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding: 2rem 3rem;
    margin: 0;
}

.slogan-text::before,
.slogan-text::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.2;
    background-size: contain;
    background-repeat: no-repeat;
}

.slogan-text::before {
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b2c'%3E%3Cpath d='M9.5,3C4.8,3,1,6.8,1,11.5c0,2.8,1.3,5.3,3.4,6.9c-0.3,0.9-0.9,1.8-1.7,2.4c-0.2,0.1-0.3,0.3-0.2,0.5C2.5,21.4,2.7,21.5,2.9,21.5c2.1-0.1,4-1,5.4-2.3C8.7,19.4,9.1,19.4,9.5,19.4c4.7,0,8.5-3.8,8.5-8.5C18,6.8,14.2,3,9.5,3z'/%3E%3C/svg%3E");
    transform: rotate(180deg);
}

.slogan-text::after {
    bottom: 0;
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b2c'%3E%3Cpath d='M9.5,3C4.8,3,1,6.8,1,11.5c0,2.8,1.3,5.3,3.4,6.9c-0.3,0.9-0.9,1.8-1.7,2.4c-0.2,0.1-0.3,0.3-0.2,0.5C2.5,21.4,2.7,21.5,2.9,21.5c2.1-0.1,4-1,5.4-2.3C8.7,19.4,9.1,19.4,9.5,19.4c4.7,0,8.5-3.8,8.5-8.5C18,6.8,14.2,3,9.5,3z'/%3E%3C/svg%3E");
}

/* Effet de soulignement décoratif */
.slogan-text span {
    display: inline-block;
    position: relative;
}

.slogan-text span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.slogan-container:hover .slogan-text span::after {
    transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slogan-section {
        padding: 4rem 2rem;
    }

    .slogan-container {
        padding: 2rem;
    }

    .slogan-text {
        font-size: 1.8rem;
        padding: 1.5rem;
    }

    .slogan-text::before,
    .slogan-text::after {
        width: 60px;
        height: 60px;
    }

    .slogan-section::before,
    .slogan-section::after {
        font-size: 8rem;
    }
}

@media (max-width: 480px) {
    .slogan-section {
        padding: 3rem 1rem;
    }

    .slogan-container {
        padding: 1.5rem;
    }

    .slogan-text {
        font-size: 1.5rem;
        padding: 1rem;
    }

    .slogan-text::before,
    .slogan-text::after {
        width: 40px;
        height: 40px;
    }
}

/* ===== STYLES CRO OPTIMISÉS ===== */

/* Hero Section CRO */
.voyage-hero-cro {
    position: relative;
    /* height: auto; */
    overflow: visible; /* Permet l'affichage complet du contenu */
    display: flex;
    align-items: flex-start; /* Alignement en haut pour éviter la coupure */
    padding-top: 100px; /* Espace pour le header */
}

.hero-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
}

.gallery-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active,
.gallery-dot:hover {
    background: white;
    transform: scale(1.2);
}

.hero-content-cro {
    position: relative; /* Changement de absolute à relative */
    top: auto; /* Suppression du centrage vertical */
    left: auto;
    transform: none; /* Suppression de la transformation */
    text-align: center;
    color: white;
    z-index: 5;
    max-width: 900px; /* Suppression de la limite de largeur */
    width: 95%; /* Largeur augmentée */
    margin: 0 auto; /* Centrage horizontal */
    margin-bottom: 75px;
    margin-top: 25px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge-bestseller,
.badge-rating {
    background: rgba(255, 188, 80, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.2rem; /* Taille légèrement réduite */
    font-family: 'Dancing Script', cursive;
    margin-bottom: 12px; /* Marge réduite */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.1; /* Hauteur de ligne optimisée */
}

.hero-subtitle {
    font-size: 1.1rem; /* Taille légèrement réduite */
    margin-bottom: 25px; /* Marge réduite */
    line-height: 1.5; /* Hauteur de ligne optimisée */
    opacity: 0.95;
}

.price-showcase {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 20px; /* Padding réduit */
    border-radius: 20px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.price-from {
    font-size: 1rem;
    color: #666;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.price-person {
    font-size: 1rem;
    color: #666;
}

.season-selector {
    margin-bottom: 15px;
}

.season-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.season-selector select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.savings-highlight {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.savings-highlight-button {
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    min-width: auto;
}

.savings-highlight-button:hover {
    background: linear-gradient(135deg, #45a049, #388e3c) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.savings-highlight-button .text {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.savings-highlight-button .price {
    font-weight: 700;
    font-size: 1rem;
    margin-left: 8px;
    color: #fff3cd;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
    align-items: center; /* Ajout pour centrage vertical */
}

.cta-primary,
.cta-secondary {
    padding: 8px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1.0rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    max-width: 300px;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff9800);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 188, 80, 0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 188, 80, 0.6);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    transform: translateY(-2px);
}

/* Styles spécifiques pour le bouton principal hero */
.main-hero-pay-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    min-width: 280px;
}

.main-hero-pay-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.main-hero-pay-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.main-hero-pay-button:hover::before {
    left: 100%;
}

.main-hero-pay-button .text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.main-hero-pay-button .text i {
    font-size: 20px;
    margin-right: 5px;
}

.main-hero-pay-button .fa-camera-alt:before, .fa-camera:before {
    font-size: 20px;
    margin-right: 5px;
}

.main-hero-pay-button .loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
}

.main-hero-pay-button .loading i {
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Points forts CRO */
.voyage-features-cro {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8f3 0%, #fff 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Dancing Script', cursive;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
}

.feature-card-cro {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card-cro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 188, 80, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card-cro:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card-cro h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card-cro p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Galerie Photos Moderne */
.photo-gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8f3 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
    margin-bottom: 15px;
    position: relative;
}

.gallery-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 50px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 188, 80, 0.9) 0%, rgba(255, 107, 44, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 15px;
    animation: zoomIn 0.4s ease;
}

.gallery-overlay-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay-text {
    opacity: 1;
    transform: translateY(0);
}

@keyframes zoomIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.gallery-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 188, 80, 0.95);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0 40px;
    flex-wrap: wrap;
}

.gallery-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    min-width: 150px;
    transition: all 0.3s ease;
}

.gallery-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 188, 80, 0.2);
}

.gallery-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.gallery-stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.gallery-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-cta h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.gallery-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

/* Lightbox Moderne CRO-Optimisée */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 95vw;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.lightbox-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    overflow: hidden;
}

.lightbox-image-container.dragging {
    cursor: grabbing;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: block;
    margin: 0 auto;
}

.lightbox-image.zoomed {
    cursor: move;
}

/* Contrôles de la lightbox */
.lightbox-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 10001;
}

.lightbox-control-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-control-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

.lightbox-close {
    background: rgba(255,107,44,0.8);
    border-color: rgba(255,107,44,0.3);
}

.lightbox-close:hover {
    background: rgba(255,107,44,1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10001;
}

.lightbox-prev,
.lightbox-next {
    width: 60px;
    height: 60px;
    background: rgba(255,188,80,0.9);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,188,80,1);
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255,188,80,0.4);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: scale(0.95);
}

/* Informations de la lightbox */
.lightbox-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10001;
}

.lightbox-counter {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.lightbox-zoom-info {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    text-align: center;
    background: rgba(0,0,0,0.3);
    padding: 8px 16px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

/* Indicateur de progression */
.lightbox-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255,188,80,0.8);
    transition: width 0.3s ease;
    border-radius: 0 0 20px 20px;
}

/* CTA Flottant */
.floating-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 300px;
}

.floating-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-cta-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.floating-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.floating-price-text {
    font-size: 0.9rem;
    color: #666;
}

.floating-cta-btn {
    background: linear-gradient(135deg, var(--primary-color), #ff9800);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.floating-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 188, 80, 0.4);
}

.floating-urgency {
    font-size: 0.8rem;
    color: #ff4444;
    text-align: center;
    font-weight: 600;
    animation: pulse 2s infinite;
}

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

/* Tablette */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .voyage-hero-cro {
        min-height: 100vh;
        height: auto;
        padding: 80px 0 30px 0; /* Espace réduit pour plus de place au contenu */
    }

    .hero-content-cro {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 98%; /* Largeur augmentée */
        padding: 15px; /* Padding réduit */
        margin: 0 auto;
        max-width: none; /* Suppression de la limite de largeur */
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-title {
        font-size: 2.2rem; /* Taille réduite pour économiser l'espace */
        margin-bottom: 8px; /* Marge réduite */
        line-height: 1.2; /* Hauteur de ligne optimisée */
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px; /* Marge réduite */
        line-height: 1.4; /* Hauteur de ligne optimisée */
    }

    .price-showcase {
        padding: 15px; /* Padding réduit */
        margin: 15px 0; /* Marge réduite */
    }

    .price-amount {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        font-size: 1rem;
    }

    .trust-indicators {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    /* Points forts mobile */
    .voyage-features-cro {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card-cro {
        padding: 25px;
    }

    /* Galerie mobile */
    .photo-gallery-section {
        padding: 60px 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    /* CTA flottant mobile */
    .floating-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 15px;
    }

    .floating-cta-content {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 8px;
    }

    .floating-cta-btn {
        width: 100%;
        padding: 10px;
        font-size: 0.9rem;
    }

    /* Lightbox mobile - Optimisé pour affichage complet des images */
    .lightbox-content {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        padding: 0;
    }

    .lightbox-image-container {
        /* Calculer l'espace disponible en tenant compte des contrôles */
        height: calc(100vh - 120px); /* 60px pour contrôles + 60px pour infos */
        width: 100vw;
        padding: 70px 15px 70px 15px; /* Espace pour contrôles et navigation */
        box-sizing: border-box;
    }

    .lightbox-image {
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain !important;
        object-position: center !important;
        display: block;
        margin: 0 auto;
    }

    .lightbox-controls {
        top: 10px;
        right: 10px;
        gap: 8px;
        z-index: 10002;
    }

    .lightbox-control-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        background: rgba(0,0,0,0.7);
        border: 1px solid rgba(255,255,255,0.3);
    }

    .lightbox-nav {
        padding: 0 10px;
        z-index: 10002;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        background: rgba(255,188,80,0.9);
    }

    .lightbox-info {
        bottom: 10px;
        gap: 8px;
        z-index: 10002;
    }

    .lightbox-counter {
        padding: 8px 16px;
        font-size: 0.9rem;
        background: rgba(0,0,0,0.7);
        border: 1px solid rgba(255,255,255,0.3);
    }

    .lightbox-zoom-info {
        font-size: 0.75rem;
        padding: 6px 12px;
        background: rgba(0,0,0,0.7);
    }

    /* Hero mobile amélioré */
    @media (max-height: 700px) {
        .voyage-hero-cro {
            min-height: auto;
            padding: 60px 0 20px 0; /* Padding encore plus réduit */
        }

        .hero-content-cro {
            padding: 10px; /* Padding minimal */
            width: 99%; /* Largeur maximale */
        }

        .hero-title {
            font-size: 1.9rem;
            margin-bottom: 6px;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 0.9rem;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .price-showcase {
            padding: 12px;
            margin: 12px 0;
        }
    }
}

/* Très petit mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .floating-cta {
        padding: 12px;
    }

    .floating-price-amount {
        font-size: 1.2rem;
    }

    .floating-urgency {
        font-size: 0.7rem;
    }

    /* Lightbox très petit mobile - Optimisé pour affichage complet */
    .lightbox-content {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        padding: 0;
    }

    .lightbox-image-container {
        height: calc(100vh - 100px); /* Réduire l'espace pour contrôles sur petits écrans */
        width: 100vw;
        padding: 60px 10px 50px 10px; /* Moins d'espace sur très petits écrans */
        box-sizing: border-box;
    }

    .lightbox-image {
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain !important;
        object-position: center !important;
        display: block;
        margin: 0 auto;
    }

    .lightbox-controls {
        top: 8px;
        right: 8px;
        gap: 6px;
    }

    .lightbox-control-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        background: rgba(0,0,0,0.8);
    }

    .lightbox-nav {
        padding: 0 8px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .lightbox-info {
        bottom: 8px;
        gap: 6px;
    }

    .lightbox-counter {
        padding: 6px 12px;
        font-size: 0.85rem;
        background: rgba(0,0,0,0.8);
    }

    .lightbox-zoom-info {
        font-size: 0.7rem;
        padding: 4px 8px;
        background: rgba(0,0,0,0.8);
    }

    /* Hero très petit mobile */
    @media (max-height: 600px) {
        .voyage-hero-cro {
            padding: 50px 0 15px 0; /* Padding minimal */
        }

        .hero-content-cro {
            padding: 8px; /* Padding très réduit */
            width: 99%;
        }

        .hero-title {
            font-size: 1.7rem;
            margin-bottom: 4px;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 0.85rem;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .price-showcase {
            padding: 10px;
            margin: 8px 0;
        }

        .price-amount {
            font-size: 1.4rem;
        }

        .hero-cta {
            gap: 6px;
        }

        .cta-primary,
        .cta-secondary {
            padding: 8px 14px;
            font-size: 0.85rem;
        }

        .hero-badges {
            margin-bottom: 8px;
        }

        .trust-indicators,
        .security-indicators {
            margin-top: 8px;
        }
    }
}

/* Optimisations spéciales pour orientation paysage mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .lightbox-image-container {
        height: calc(100vh - 80px); /* Moins d'espace vertical en paysage */
        padding: 50px 15px 40px 15px;
    }

    .lightbox-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .lightbox-controls {
        top: 5px;
        right: 5px;
    }

    .lightbox-control-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .lightbox-nav {
        padding: 0 10px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .lightbox-info {
        bottom: 5px;
    }

    .lightbox-counter {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .lightbox-zoom-info {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* Optimisations pour très petits écrans en paysage */
@media (max-width: 480px) and (orientation: landscape) and (max-height: 400px) {
    .lightbox-image-container {
        height: calc(100vh - 60px);
        padding: 35px 10px 30px 10px;
    }

    .lightbox-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .lightbox-controls {
        top: 3px;
        right: 3px;
        gap: 4px;
    }

    .lightbox-control-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .lightbox-info {
        bottom: 3px;
    }

    .lightbox-counter {
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    .lightbox-zoom-info {
        display: none; /* Masquer sur très petits écrans paysage */
    }
}

/* Optimisations pour la performance */
@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .gallery-item,
    .feature-card-cro,
    .floating-cta {
        transition: none;
    }

    .gallery-dot,
    .lightbox-prev,
    .lightbox-next {
        animation: none;
    }
}