.itinerary-section {
    padding: 1.5rem 0rem 1.5em 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 2.5rem;
    padding: 1.5rem;
    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: 1.5rem;
    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: 3.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.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.itinerary-day .description {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: justify;
}

.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;
        font-size: 1rem;
    }


    .itinerary-section {
        padding: 2rem 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 2rem auto;
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 500px;
        position: relative;
        opacity: 1;
        filter: none;
        transform: none !important;
        gap: 0;
    }

    .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: 2.5rem;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    /* 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: 1.3rem;
    }

    .timer-container {
        gap: 1rem;
    }
}


.testimonials-section {
    background: var(--light-orange);
    padding: 2.5rem 2rem;

}

.cta-section {
    text-align: center;
    padding: 2.5rem 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: 2.5rem 2rem 1.5rem 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    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: 1.8rem;
    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 FAQ */
#faq {
    padding: 2.5rem 2rem;
}

@media (max-width: 768px) {
    #faq {
        padding: 0rem 1rem 2rem 1rem;
    }
}

.faq-item {
    max-width: 800px;
}

.faq-item.active {
    background: var(--primary-color);
    color: white;
}

/* CTA Final */
#cta-final {
    text-align: center;
    padding: 4rem 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: 2rem;
    font-family: 'Dancing Script', cursive;
    margin-bottom: 2rem;
    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;
}

/* Section Autres Voyages */
.autres-voyages {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.autres-voyages .social-proof {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.autres-voyages .social-proof h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.autres-voyages .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.autres-voyages .social-proof p:last-child {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    /* margin: 2.5rem 0; */
    flex-wrap: wrap;
}


/* Grille des packages dans la section autres voyages */
.autres-voyages .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .voyage-title {
        font-size: 1.3rem;
    }

    .timer-box {
        min-width: 60px;
    }

    #cta-final {
        padding: 3rem 1rem;
    }

    #cta-final p {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    #cta-final p {
        font-size: 1.8rem;
    }

    #cta-final button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .autres-voyages .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .autres-voyages .social-proof h2 {
        font-size: 1.3rem;
    }

    .autres-voyages {
        padding: 40px 0;
    }
}

/* Sections des détails */
.prestations-details,
.repas-details {
    padding: 2.5rem 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: 50px 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: 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 25px 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: 1.5rem;
    color: white;
    z-index: 2;
    position: relative;
}

.section-header h2 {
    font-size: 2.2rem;
    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;
    justify-self: center;
}

.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: 30px;
    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: 1.8rem;
    }

    .section-header-content {
        gap: 15px;
    }

    .icon-badge {
        width: 55px;
        height: 55px;
    }

    .icon-badge i {
        font-size: 1.3rem;
    }

    .prestations-column,
    .repas-column {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .prestations-repas-section {
        padding: 40px 0;
    }

    .section-block {
        margin-bottom: 60px;
        padding: 0 15px;
    }

    .section-header-content {
        flex-direction: column;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .icon-badge {
        width: 45px;
        height: 45px;
    }

    .icon-badge i {
        font-size: 1.1rem;
    }

    .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: 1.5rem;
    }

    .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;
    }


}

@media (max-width: 576px) {
    .prestations-repas-section {
        padding: 30px 0;
    }

    .section-block {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .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.3rem;
    }

    .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;
    }


}

/* ===== STYLES CRO OPTIMISÉS ===== */

/* Hero Section CRO */
.voyage-hero-cro {
    position: relative;
    overflow: visible; /* Permet l'affichage complet du contenu */
    display: flex;
    align-items: flex-start; /* Alignement en haut pour éviter la coupure */
    padding-top: 250px;
    min-height: 650px;
}

.hero-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 650px;
}

@media (max-width: 980px) {
    .hero-gallery {
        min-height: 450px;
    }
}

.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;
}

.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: 2.5rem; /* Taille légèrement réduite */
    font-family: 'Dancing Script', cursive;
    margin-bottom: 10px; /* 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: 5px;
    flex-wrap: wrap;
}

.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;
}

.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;
}

.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;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Galerie Photos Moderne */
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 2.2rem;
    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;
}

/* ===== GALERIE MODERNE RESPONSIVE ===== */
.modern-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-layout {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
    border-radius: 20px;
    overflow: hidden;
    place-items: center;
}

/* Image principale */
.main-image-container {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 14px;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.main-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-image-wrapper:hover .main-gallery-image {
    transform: scale(1.05);
}

/* Images secondaires */
.secondary-images-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px 20px 0;
}

.secondary-image-wrapper {
    position: relative;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-image-wrapper:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.secondary-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.secondary-image-wrapper:hover .secondary-gallery-image {
    transform: scale(1.1);
}

/* Overlay pour toutes les images */
.image-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.3s ease;
    backdrop-filter: blur(5px);
}

.main-image-wrapper:hover .image-overlay,
.secondary-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-overlay span {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}

.main-image-wrapper:hover .image-overlay i,
.secondary-image-wrapper:hover .image-overlay i {
    transform: scale(1);
}

.main-image-wrapper:hover .image-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* Bouton CTA */
.gallery-cta-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.view-all-photos-btn {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 12px 24px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.view-all-photos-btn:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 188, 80, 0.3);
}

.view-all-photos-btn i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.view-all-photos-btn:hover i {
    transform: scale(1.1);
}

/* Animations d'entrée pour la galerie */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-gallery-container {
    animation: fadeInUp 0.8s ease-out;
}

/* Focus states pour l'accessibilité */
.main-image-wrapper:focus,
.secondary-image-wrapper:focus,
.view-all-photos-btn:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* États de chargement */
.main-gallery-image,
.secondary-gallery-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.main-gallery-image[src],
.secondary-gallery-image[src] {
    background: none;
    animation: none;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* 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: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    padding: 15px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 280px;
}

.floating-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-cta-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .floating-price {
        flex-direction: row;
    }
}

.floating-price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .floating-price-amount {
        margin-right: 4px;
    }
}

.floating-price-text {
    font-size: 0.8rem;
    color: #666;
}

.floating-cta-btn {
    background: linear-gradient(135deg, var(--primary-color), #ff9800);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    font-size: 0.85rem;
}

.floating-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 188, 80, 0.4);
}

/* ===== RESPONSIVE CRO ===== */

/* Tablette */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    /* Galerie moderne responsive - Tablette */
    .gallery-layout {
        grid-template-columns: 2fr 1fr;
        gap: 15px;
    }

    .secondary-images-container {
        gap: 15px;
        padding: 15px 15px 15px 0;
    }

    .gallery-cta-button {
        bottom: 15px;
        right: 15px;
    }

    .view-all-photos-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .voyage-hero-cro {
        height: auto;
        padding: 60px 0 60px 0; /* Espace réduit pour plus de place au contenu */
        min-height: 450px;
    }

    .hero-content-cro {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 98%; /* Largeur augmentée */
        padding: 80px 15px 15px 15px; /* Padding réduit */
        margin: 0 auto;
        max-width: none; /* Suppression de la limite de largeur */
    }

    .hero-title {
        font-size: 1.3rem; /* Taille réduite pour économiser l'espace */
        margin-bottom: 6px; /* 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;
    }

    .price-from,
    .price-person {
        font-size: 0.9rem;
    }

    .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;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Galerie mobile */
    .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: 12px;
    }

    .floating-cta-content {
        flex-direction: column;
        gap: 8px;
    }

    .floating-cta-btn {
        width: 100%;
        padding: 8px;
        font-size: 0.8rem;
    }

    /* 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: 45px;
        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);
    }

    /* Galerie moderne responsive - Mobile */
    .modern-gallery-container {
        padding: 0 15px;
    }

    .gallery-layout {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: 15px;
    }

    .main-image-container {
        aspect-ratio: 4/3;
    }

    .secondary-images-container {
        display: none; /* Masquer les images secondaires sur mobile */
    }

    .gallery-cta-button {
        bottom: 15px;
        right: 15px;
    }

    .view-all-photos-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        gap: 6px;
    }

    .view-all-photos-btn i {
        font-size: 0.9rem;
    }

    .image-overlay i {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .image-overlay span {
        font-size: 0.9rem;
    }

    /* Hero mobile amélioré */
    @media (max-height: 700px) {
        .voyage-hero-cro {
            min-height: auto;
            min-height: 450px;
        }

        .price-showcase {
            padding: 12px;
            margin: 12px 0;
        }
    }
}

/* Très petit mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    /* Galerie moderne - Très petits écrans */
    .modern-gallery-container {
        padding: 0 10px;
    }

    .gallery-layout {
        border-radius: 12px;
    }

    .main-image-container {
        aspect-ratio: 3/2;
    }

    .gallery-cta-button {
        bottom: 10px;
        right: 10px;
    }

    .view-all-photos-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
        gap: 5px;
    }

    .price-main {
        gap: 3px;
    }

    .price-from,
    .price-person {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .floating-cta {
        padding: 10px;
    }

    .floating-price-amount {
        font-size: 1rem;
    }

    /* 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: 45px;
        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 60px 0; /* Padding minimal */
        min-height: 450px;
        }

        .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;
        }

        .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: 45px;
        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: 45px;
        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,
    .floating-cta {
        transition: none;
    }

    .gallery-dot,
    .lightbox-prev,
    .lightbox-next {
        animation: none;
    }
}

/* Styles pour la section de prix intégrée */
.integrated-price-section {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem auto;
    box-shadow: 0 12px 40px rgba(255, 183, 71, 0.12);
    border: 1px solid rgba(255, 183, 71, 0.15);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
}

.integrated-price-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 183, 71, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.integrated-price-section .price-main {
    text-align: center;
    /* margin-bottom: 1.5rem; */
    position: relative;
    z-index: 1;
}

.integrated-price-section .price-from {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.integrated-price-section .price-amount {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(255, 183, 71, 0.3);
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.3rem;
}

.integrated-price-section .price-person {
    font-size: 1.1rem;
    color: #777;
    font-weight: 500;
}

.integrated-price-section .season-selector {
    margin-bottom: 1.5rem;
    text-align: center;
}

.integrated-price-section .season-selector label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
}

.integrated-price-section .season-selector select {
    width: 100%;
    max-width: 450px;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 183, 71, 0.3);
    border-radius: 10px;
    background: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffb747' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.3rem;
}

.integrated-price-section .season-selector select:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 183, 71, 0.2);
}

.integrated-price-section .season-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 183, 71, 0.1);
}

.integrated-price-section .savings-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    border: 1px solid #4caf50;
    color: #2d7a2d;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 3px 12px rgba(76, 175, 80, 0.15);
}

.integrated-price-section .savings-badge i {
    font-size: 1.2rem;
    color: #4caf50;
}

.integrated-price-section .main-booking-button {
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e6a84e 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 183, 71, 0.25);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.integrated-price-section .main-booking-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;
}

.integrated-price-section .main-booking-button:hover::before {
    left: 100%;
}

.integrated-price-section .main-booking-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 183, 71, 0.4);
    background: linear-gradient(135deg, #e6a84e 0%, #d4941d 100%);
}

.integrated-price-section .main-booking-button .text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.integrated-price-section .main-booking-button .text i {
    font-size: 1.2rem;
}

.integrated-price-section .main-booking-button .loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.integrated-price-section .main-booking-button .loading i {
    animation: spin 1s linear infinite;
}

.integrated-price-section .trust-security-section {
    border-top: 1px solid rgba(255, 183, 71, 0.2);
    padding-top: 1.5rem;
}

.integrated-price-section .trust-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.integrated-price-section .trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 183, 71, 0.1);
    transition: all 0.3s ease;
}

.integrated-price-section .trust-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 183, 71, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 183, 71, 0.1);
}

.integrated-price-section .trust-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.integrated-price-section .trust-item span {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}

/* Responsive pour la section intégrée */
@media (max-width: 768px) {
    .integrated-price-section {
        padding: 1.3rem 1.2rem;
        margin: 1.2rem 0;
        border-radius: 14px;
    }

    .integrated-price-section .price-amount {
        font-size: 2.4rem;
    }

    .integrated-price-section .season-selector select {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }

    .integrated-price-section .savings-badge {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        text-align: center;
    }

    .integrated-price-section .main-booking-button {
        padding: 1rem 1.3rem;
        font-size: 1.05rem;
    }

    .integrated-price-section .security-badges {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .integrated-price-section .security-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .integrated-price-section .trust-benefits {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .integrated-price-section .trust-item {
        padding: 0.6rem;
    }

    .integrated-price-section .trust-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .integrated-price-section {
        padding: 1.2rem 0.8rem;
        margin: 1rem 0;
    }

    .integrated-price-section .price-amount {
        font-size: 1.3rem;
    }

    .integrated-price-section .season-selector select {
        font-size: 0.85rem;
        padding: 0.7rem 0.9rem;
    }

    .integrated-price-section .savings-badge {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }

    .integrated-price-section .main-booking-button {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
    }

    .integrated-price-section .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .integrated-price-section .security-badge {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }

    .integrated-price-section .trust-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .integrated-price-section .trust-item i {
        font-size: 1rem;
    }

    .integrated-price-section .trust-item span {
        font-size: 0.75rem;
    }
}