

/* Base CSS with optimization */

:root {

    --blue: #0c2e60;

    --blue-dark: #05152c;

    --blue-light: #1a3c70;

    --blue-lighter: #05152c;

    --blue-pale: #e8edf7;

    --gold: #e7c45f;

    --light-gold: #f0e6c9;

    --white: #ffffff;

    --dark: #121212;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    font-family: "Simonetta", sans-serif;

    overflow-x: hidden;

    line-height: 1.6;

    color: #444;

}



h1, h2, h3, h4 {

    font-family: "Simonetta", sans-serif;

    font-weight: 600;

    line-height: 1.2;

}



img {

    height: auto;

}



.container {

    width: 90%;

    max-width: 1400px;

    margin: 0 auto;

}



/* Decorative Elements */

.gold-line {

    width: 80px;

    height: 3px;

    background-color: var(--gold);

    margin: 15px 0;

}



.center-line {

    margin: 15px auto;

}



/* Buttons */

.btn {

    display: inline-block;

    padding: 14px 32px;

    background-color: var(--gold);

    color: var(--white);

    text-decoration: none;

    font-weight: 500;

    font-size: 16px;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: all 0.3s ease;

    border: 2px solid var(--gold);

    position: relative;

    overflow: hidden;

    z-index: 1;

    border-radius: 15px;

    cursor: pointer;

}



.btn::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: var(--blue);

    transition: all 0.5s ease;

    z-index: -1;

}



.btn:hover::before {

    left: 0;

}



.btn:hover {

    color: var(--white);

    border-color: var(--blue);

}



.btn-outline {

    background-color: transparent;

    color: var(--gold);

}



.btn-blue {

    background-color: var(--blue);

    border-color: var(--blue);

}



.btn-blue::before {

    background: var(--gold);

}

/* Bouton de réservation fixe sur mobile */
.mobile-booking-button {
    display: none;
}

@media screen and (max-width: 991px) {
    /* Cacher le bouton de réservation dans le menu sur mobile */
    .nav-button {
        display: none !important;
    }
    
    /* Afficher le bouton fixe en bas à droite */
    .mobile-booking-button {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999;
        animation: pulse 2s infinite;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        border-radius: 50%;
        width: 65px;
        height: 65px;
        overflow: hidden;
    }
    
    .mobile-booking-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        background-color: var(--gold);
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    /* Animation de pulsation pour attirer l'attention */
    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(231, 196, 95, 0.7);
        }
        70% {
            transform: scale(1.05);
            box-shadow: 0 0 0 10px rgba(231, 196, 95, 0);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(231, 196, 95, 0);
        }
    }
}



/* Header & Navigation */

header {

    position: fixed;

    width: 100%;

    top: 0;

    left: 0;

    z-index: 1000;

    transition: all 0.4s ease;

}



.header-scrolled {

    background-color: white;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);

}



.navbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 25px 0;

    transition: all 0.4s ease;

}



.header-scrolled .navbar {

    padding: 15px 0;

}



.logo {

    display: flex;

    align-items: center;

    text-decoration: none;

}



.logo-img {

    width: 90px;

    height: 90px;

    margin-right: 0;

    display: flex;

    align-items: center;

    justify-content: center;

}



.logo-img img {

    padding-top: 20px;

    width: 120%;

    height: auto;

    object-fit: contain;

}



.header-scrolled .logo-img {

    width: 40px;

    height: 40px;

}



.header-scrolled .logo-img img {

    padding-top: 0px;

    height: auto;

    width: 250%;

}



.nav-list {

    display: flex;

    list-style: none;

}



.nav-item {

    display: flex;

    align-items: center;

    margin: 0 18px;

}



.nav-link {

    color: var(--white);

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: all 0.3s ease;

    position: relative;

}

.nav-link-scrolled{
    color: var(--blue);
}



.nav-link::after {

    content: '';

    position: absolute;

    bottom: -5px;

    left: 0;

    width: 0;

    height: 2px;

    background-color: var(--gold);

    transition: all 0.3s ease;

}



.nav-link:hover::after,

.nav-link.active::after {

    width: 100%;

}



.nav-link:hover,

.nav-link.active {

    color: var(--gold);

}



.nav-button {

    margin-left: 15px;

}



.burger {

    display: none;

    cursor: pointer;

    width: 30px;

    height: 20px;

    position: relative;

}

.burger-line-scrolled {
    background-color: var(--blue) !important;
}


.burger-line {

    position: absolute;
    width: 100%;
    height: 2px;

    background-color: white;

    transition: all 0.3s ease;

}



.burger-line:nth-child(1) {

    top: 0;

}



.burger-line:nth-child(2) {

    top: 50%;

    transform: translateY(-50%);

}



.burger-line:nth-child(3) {

    bottom: 0;

}



/* Hero Section - Version Immersive et Moderne */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--blue-dark);
    perspective: 1000px; /* Ajoute de la profondeur 3D */
}

/* Effet parallax pour l'arrière-plan */
.parallax-bg {
    transform: translateZ(-10px) scale(2);
    transition: transform 0.3s ease-out;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
    filter: blur(2px); /* Léger flou pour plus de profondeur */
    transition: all 0.7s ease-out;
}

/* Overlay amélioré avec dégradé plus riche */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                 rgba(5, 21, 44, 0.9) 0%, 
                 rgba(5, 21, 44, 0.8) 20%,
                 rgba(12, 46, 96, 0.7) 50%,
                 rgba(5, 21, 44, 0.8) 80%);
    z-index: 2;
    backdrop-filter: blur(3px); /* Effet de flou moderne */
    transition: all 0.7s ease-out;
}

/* Conteneur principal avec position 3D */
.hero-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    transform-style: preserve-3d;
}

.hero-flex {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
}

/* Animations améliorées pour le texte */
.hero-text {
    width: 50%;
    padding-right: 30px;
    opacity: 0;
    transform: translateX(-30px) translateZ(0);
    animation: fadeInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.3s;
    transform-style: preserve-3d;
}

.hero-subtitle {
    display: inline-block;
    background-color: rgba(231, 196, 95, 0.15);
    padding: 8px 16px;
    border-left: 3px solid var(--gold);
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.5s;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    font-family: "Island Moments", cursive;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.7s;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animation de découpage du texte */
.split-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpChars 0.5s forwards;
}

/* Ligne décorative dorée animée */
.hero-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--gold);
    animation: expandLine 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 1.5s;
}

.hero-description {
    font-size: 22px;
    line-height: 1.8;
    margin: 30px 0;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.9s;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 1.1s;
}

/* Boutons magnétiques avancés */
.btn-magnetic {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-magnetic:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* Partie visuelle avec animations 3D */
.hero-visual {
    width: 60%;
    position: relative;
    opacity: 0;
    transform: translateX(30px) translateZ(0);
    animation: fadeInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.5s;
    transform-style: preserve-3d;
}

/* Effet de parallaxe sur les éléments */
.parallax-element {
    transform: translateZ(50px);
    transition: all 0.3s ease;
}

.parallax-element-reverse {
    transform: translateZ(30px);
    transition: all 0.3s ease;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.hero-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transform: scale(1);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1.05);
}

.hero-visual:hover .hero-image-main {
    transform: scale(1.05);
}

.hero-image-accent {
    position: absolute;
    width: 300px;
    height: 200px;
    object-fit: cover;
    bottom: -50px;
    right: -50px;
    border: 5px solid var(--gold);
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transform: rotate(8deg);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
}

.hero-visual:hover .hero-image-accent {
    transform: rotate(12deg) translateY(-15px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
}

/* Badge flottant amélioré */
.hero-badge {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: float 6s ease-in-out infinite;
}

.hero-badge-inner {
    background: radial-gradient(circle at center, var(--gold) 20%, #d4af37 100%);
    border-radius: 50%;
    width: 95%;
    height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    text-align: center;
    padding: 10px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.hero-badge-text {
    font-family: var(--font-text);
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-visual:hover .hero-badge {
    transform: scale(1.1) rotate(-10deg) translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Éléments flottants 3D */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background-color: var(--gold);
    opacity: 0.05;
    filter: blur(20px);
}

.fe-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: floatSlow 15s ease-in-out infinite;
}

.fe-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    animation: floatSlow 12s ease-in-out infinite 2s;
}

.fe-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 30%;
    animation: floatSlow 10s ease-in-out infinite 1s;
}

/* Effet de particules dorées amélioré */
.golden-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    display: block;
    background-color: var(--gold);
    opacity: 0.4;
    border-radius: 50%;
    filter: blur(1px);
    animation: float 15s infinite linear;
    box-shadow: 0 0 10px rgba(231, 196, 95, 0.6);
}

.particle-shine {
    background: radial-gradient(circle at center, #fff 0%, var(--gold) 70%);
    box-shadow: 0 0 15px rgba(231, 196, 95, 0.8);
    animation: floatAndGlow 15s infinite linear;
}

/* Indicateur de défilement animé */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 1s forwards 2s;
    z-index: 10;
    cursor: pointer;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    margin-bottom: 10px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

/* Animations améliorées */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 70px;
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.2;
    }
    75% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
}

@keyframes floatSlow {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes floatAndGlow {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
        filter: blur(1px) brightness(1);
    }
    25% {
        opacity: 0.8;
        filter: blur(0) brightness(1.5);
    }
    50% {
        transform: translateY(-200px) rotate(180deg);
        opacity: 0.4;
        filter: blur(2px) brightness(1);
    }
    75% {
        opacity: 0.8;
        filter: blur(0) brightness(1.5);
    }
    100% {
        transform: translateY(-400px) rotate(360deg);
        opacity: 0;
        filter: blur(3px) brightness(1);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    75% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    76% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
/* Styles pour les caractères d'espace */
.space-char {
    display: inline-block !important; /* Assure que les espaces sont bien visibles */
}

/* Media Queries pour le responsive de la section Hero */
@media screen and (max-width: 1200px) {
    .hero-title {
        font-size: 60px;
    }
    
    .hero-description {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .hero-badge {
        width: 140px;
        height: 140px;
        top: -30px;
        left: -30px;
    }
    
    .hero-badge-text {
        font-size: 14px;
    }
    
    .hero-image-accent {
        width: 250px;
        height: 170px;
    }
    
    .floating-element {
        opacity: 0.03;
    }
}

@media screen and (max-width: 991px) {
    .hero-flex {
        flex-direction: column-reverse;
        padding-top: 100px;
        align-items: center;
        text-align: center;
    }
    
    .hero-text, .hero-visual {
        padding-top: 20px;
        width: 100%;
        padding-right: 0;
        max-width: 700px;
    }
    
    .hero-title {
        font-size: 52px;
        margin-bottom: 15px;
    }
    
    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .hero-subtitle {
        margin: 0 auto 15px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-frame {
        padding-bottom: 60%;
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-badge {
        top: -25px;
        left: 0;
        width: 120px;
        height: 120px;
    }
    
    .hero-badge-text {
        font-size: 12px;
    }
    
    .hero-image-accent {
        width: 200px;
        height: 140px;
        bottom: -30px;
        right: -20px;
    }
    
    .scroll-indicator {
        display: none;
        bottom: 20px;
    }
    
    .fe-1, .fe-2, .fe-3 {
        transform: scale(0.8);
    }
}

@media screen and (max-width: 768px) {
    .hero-container {
        padding-top: 30px;
    }
    
    .hero-flex {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 46px;
    }
    
    .hero-description {
        font-size: 16px;
        margin: 20px 0;
    }
    
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
        padding: 6px 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 12px 24px;
    }
    
    .hero-image-frame {
        padding-bottom: 65%;
    }
    
    .hero-badge {
        width: 100px;
        height: 100px;
        top: -20px;
        left: 0px;
    }
    
    .hero-badge-text {
        font-size: 10px;
    }
    
    .hero-image-accent {
        width: 150px;
        height: 100px;
        bottom: -20px;
        right: -10px;
    }
    
    /* Réduire l'effet parallaxe sur mobile pour éviter les problèmes de performance */
    .parallax-element, .parallax-element-reverse {
        transform: none !important;
    }
    
    /* Diminuer le nombre de particules sur mobile */
    .particle:nth-child(odd) {
        display: none;
    }
    
    .floating-element {
        opacity: 0.02;
    }
}

@media screen and (max-width: 576px) {
    .hero-flex {
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .hero-image-frame {
        padding-bottom: 70%;
    }
    
    .hero-badge {
        width: 90px;
        height: 90px;
        top: -15px;
        left: 0;
    }
    
    .hero-badge-text {
        font-size: 9px;
    }
    
    .hero-image-accent {
        width: 120px;
        height: 80px;
        bottom: -15px;
        right: -5px;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-icon {
        width: 25px;
        height: 40px;
    }
    
    /* Simplifier encore plus les effets sur petit mobile */
    .fe-3 {
        display: none;
    }
}

@media screen and (max-width: 390px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-badge {
        width: 80px;
        height: 80px;
    }
    
    .hero-badge-text {
        font-size: 8px;
    }
    
    .hero-image-accent {
        width: 100px;
        height: 70px;
    }
    
    /* Simplifier encore plus les particules sur très petit mobile */
    .particle:nth-child(3n+1) {
        display: none;
    }
}

/* Style spécifique pour les appareils avec hauteur limitée (comme téléphones en paysage) */
@media screen and (max-height: 667px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }
    
    .hero-flex {
        padding-top: 40px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        margin: 15px 0;
    }
    
    .hero-image-frame {
        padding-bottom: 55%;
    }
}


/* Section About modernisée */
.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

/* Élément décoratif d'arrière-plan */
.about::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: rgba(231, 196, 95, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.about::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background-color: rgba(12, 46, 96, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.about-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 50px;
}

/* Section contenu */
.about-content {
    grid-column: 1 / span 6;
    align-self: center;
}

.about-subtitle {
    display: inline-block;
    color: var(--blue);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background-color: var(--gold);
}

.about-title {
    font-size: 80px;
    color: var(--blue);
    margin-bottom: 25px;

    line-height: 1;
    font-weight: 400;
    font-family: "Island Moments", cursive;
}

.about-text {
    font-size: 22px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.about-text:last-of-type {
    margin-bottom: 40px;
}

/* Caractéristiques modernisées */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    position: relative;
    padding-left: 60px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #f0d78e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(231, 196, 95, 0.3);
}

.feature-text {
    font-weight: 600;
    color: var(--blue);
    font-size: 18px;
    line-height: 1.4;
}

.feature-desc {
    color: #777;
    font-size: 16px;
    margin-top: 5px;
    line-height: 1.5;
}

.about-btn {
    text-align: center;
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--blue);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(12, 46, 96, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.about-btn:hover {
    color: white;
    box-shadow: 0 8px 20px rgba(12, 46, 96, 0.3);
}

.about-btn:hover::before {
    left: 0;
}

/* Section image */
.about-visual {
    grid-column: 7 / span 6;
    position: relative;
}

.about-visual-container {
    position: relative;
    width: 100%;
    padding-top: 140%; /* Rapport hauteur/largeur */
}

.about-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 75%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.about-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 45%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.about-image-border {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 80%;
    height: 80%;
    border: 3px solid var(--gold);
    border-radius: 10px;
    z-index: 0;
}

.about-stat {
    position: absolute;
    bottom: 20%;
    right: 0;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    text-align: center;
}

.about-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.about-stat-text {
    font-size: 14px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1.4;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.about-image-main {
    animation: float 6s ease-in-out infinite;
}

.about-image-accent {
    animation: float 8s ease-in-out infinite 1s;
}

/* Design responsive */
@media screen and (max-width: 1200px) {
    .about-title {
        font-size: 36px;
    }
    
    .about-container {
        gap: 30px;
    }
}

@media screen and (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-content {
        grid-column: 1 / -1;
    }
    
    .about-visual {
        grid-column: 1 / -1;
    }
    
    .about-visual-container {
        padding-top: 80%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-image-main {
        width: 75%;
        height: 70%;
    }
}

@media screen and (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .about-title {
        font-size: 38px;
    }

    .about-text{
        font-size: 15px;
    }

    .service-description{
        font-size: 15px;
    }
    
    .amenity-description{
        font-size: 15px;
    }

    .gallery-item.show {
        padding: 10px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-visual-container {
        padding-top: 100%;
    }
    
    .about-stat {
        width: 120px;
        height: 120px;
        padding: 15px;
    }
    
    .about-stat-number {
        font-size: 30px;
    }
    
    .about-stat-text {
        font-size: 12px;
    }
}

@media screen and (max-width: 576px) {
    .about-visual-container {
        padding-top: 130%;
    }
    
    .about-image-main {
        width: 85%;
    }
    
    .about-image-accent {
        width: 60%;
    }
}

/* Services Section - Design modernisÃ© */
.services {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
}

/* ArriÃ¨re-plan avec motif subtil */
.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/feather-pattern.webp');
    background-size: 400px;
    opacity: 0.03;
    z-index: 0;
}

.services-container {
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    color: var(--blue);
    font-size: 22px;
    line-height: 1.8;
}

/* Ligne dorÃ©e stylisÃ©e */
.gold-line.center-line {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    width: 120px;
    margin: 20px auto 40px;
}

.gold-line.center-line::before, 
.gold-line.center-line::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold);
    top: -2px;
}

.gold-line.center-line::before {
    left: 0;
}

.gold-line.center-line::after {
    right: 0;
}

/* Nouvelle grille de services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

/* Style modernisÃ© des cartes de service */
.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Bande supÃ©rieure colorÃ©e */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(45deg, var(--blue), var(--gold));
}

/* Image du service */
.service-img-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

/* Badge de catÃ©gorie */
.service-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--gold);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Contenu du service */
.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 24px;
    color: var(--blue);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Pied de la carte */
.service-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

.service-price-period {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.service-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--blue);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.service-link:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* IcÃ´nes et dÃ©tails supplÃ©mentaires */
.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.service-detail {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.service-detail-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: var(--gold);
}

/* Indicateur de popularitÃ© */
.service-popular {
    position: absolute;
    top: 20px;
    left: -35px;
    background-color: var(--gold);
    color: white;
    transform: rotate(-45deg);
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

/* Design spÃ©cial pour le service star */
.service-card.service-star {
    border: 2px solid var(--gold);
}

.service-card.service-star::before {
    height: 8px;
}

.service-star .service-title {
    color: var(--gold);
}

/* Responsive */
@media screen and (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .services {
        padding: 80px 0;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .service-card {
        min-height: 400px;
    }
}

@media screen and (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-title {
        font-size: 22px;
    }
    
    .service-img-container {
        height: 180px;
    }
}



/* Styles pour les titres de section */

/* Sous-titre de section */
.section-subtitle {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 45px;
}

.section-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background-color: var(--gold);
}

/* Pour les sous-titres centrés (comme dans les en-têtes de section) */
.section-subtitle.centered {
    padding-left: 0;
    display: block;
    text-align: center;
    color: var(--blue);
}

.section-subtitle.centered::before {
    display: none;
}

/* Pour les sous-titres sur fond foncé */
.section-subtitle.light {
    color: var(--gold);
}

/* Titre principal de section */
.section-title {
    font-family: "Island Moments", cursive;
    font-size: 80px;
    color: var(--blue);
    margin-bottom: 25px;
    line-height: 1;
    font-weight: 500;
}

/* Pour les titres centrés */
.section-title.centered {
    text-align: center;
}

/* Pour les titres sur fond foncé */
.section-title.light {
    color: var(--white);
}

/* Ligne décorative dorée */
.gold-line {
    height: 3px;
    background-color: var(--gold);
    margin: 15px 0 30px;
    width: 80px;
}

.gold-line.center-line {
    margin: 15px auto 30px;
    position: relative;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    width: 120px;
}

.gold-line.center-line::before,
.gold-line.center-line::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold);
    top: -2px;
}

.gold-line.center-line::before {
    left: 0;
}

.gold-line.center-line::after {
    right: 0;
}

/* Styles responsives */
@media screen and (max-width: 1200px) {
    .section-title {
        font-size: 38px;
    }
}

@media screen and (max-width: 991px) {
    .section-title {
        font-size: 34px;
    }
}

@media screen and (max-width: 768px) {
    .section-subtitle {
        font-size: 14px;
        padding-left: 35px;
    }
    
    .section-subtitle::before {
        width: 25px;
    }
    
    .section-title {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .gold-line {
        margin: 12px 0 25px;
    }
    
    .gold-line.center-line {
        margin: 12px auto 25px;
        width: 100px;
    }
}

@media screen and (max-width: 576px) {
    .section-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* Styles modernes pour la section Options de réservation avec options séparées */
.options-modern {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

/* Éléments décoratifs flottants */
.options-floating-element {
    position: absolute;
    background: radial-gradient(circle at center, rgba(231, 196, 95, 0.1) 0%, rgba(231, 196, 95, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.left-float {
    width: 40vw;
    height: 40vw;
    top: -10%;
    left: -15%;
    animation: float-subtle 20s infinite alternate ease-in-out;
}

.right-float {
    width: 35vw;
    height: 35vw;
    bottom: -10%;
    right: -10%;
    animation: float-subtle 15s infinite alternate-reverse ease-in-out;
    opacity: 0.8;
}

@keyframes float-subtle {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(3%, 5%);
    }
}

.options-header {
    text-align: center;
    margin-bottom: 90px;
    position: relative;
    z-index: 2;
}

.options-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Grille des options */
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* Carte d'option */
.option-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(0);
}

.option-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Conteneur d'image */
.option-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.option-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.option-card:hover .option-img {
    transform: scale(1.1);
}

.option-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(5, 21, 44, 0.8) 0%, 
        rgba(5, 21, 44, 0.6) 30%,
        rgba(5, 21, 44, 0.2) 100%);
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.option-card:hover .option-overlay {
    opacity: 0.6;
}

/* Contenu de l'option */
.option-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: white;
}

.option-tag {
    display: inline-block;
    background-color: rgba(231, 196, 95, 0.15);
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(231, 196, 95, 0.3);
}

.option-title {
    font-size: 22px;
    color: var(--blue);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
    transition: color 0.3s ease;
}

.option-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.option-card:hover .option-title {
    color: var(--gold);
}

.option-card:hover .option-title::after {
    width: 60px;
}

.option-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Pied de carte */
.option-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.option-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    font-family: "Simonetta", sans-serif;
}

.option-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: var(--blue);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.option-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.option-button svg {
    transition: transform 0.3s ease;
}

.option-button:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.option-button:hover::before {
    left: 0;
}

.option-button:hover svg {
    transform: rotate(90deg);
}

/* CTA redessiné */
.options-cta {
    margin-top: 100px;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    background-color: white;
}

.cta-content {
    flex: 1;
    padding: 70px;
    position: relative;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/feather-pattern.webp');
    background-size: 300px;
    opacity: 0.05;
    z-index: -1;
}

.cta-highlight {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content h3 {
    font-size: 66px;
    margin-bottom: 20px;
    font-family: "Island Moments", cursive;
    font-weight: 400;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: var(--gold);
    color: var(--blue-dark);
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.cta-visual {
    flex: 1;
    position: relative;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animation d'apparition au scroll */
.option-card, .options-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.option-card.option-visible, .options-cta.options-cta-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Styles responsifs */
@media screen and (max-width: 1400px) {
    .options-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}

@media screen and (max-width: 1200px) {
    .options-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .option-img-container {
        height: 180px;
    }
    
    .option-content {
        padding: 20px;
    }
    
    .option-title {
        font-size: 20px;
    }
    
    .option-description {
        font-size: 14px;
    }
    
    .option-price {
        font-size: 24px;
    }
}

@media screen and (max-width: 991px) {
    .options-modern {
        padding: 100px 0;
    }
    
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        gap: 30px;
    }
    
    .option-title {
        font-size: 20px;
    }
    
    .options-cta {
        flex-direction: column;
    }
    
    .cta-content {
        padding: 50px 30px;
    }
    
    .cta-visual {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .options-modern {
        padding: 80px 0;
    }
    
    .options-intro {
        font-size: 16px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .option-img-container {
        height: 200px;
    }
    
    .option-content {
        padding: 25px;
    }
    
    .option-footer {
        flex-direction: row; /* Maintenir en ligne sur mobile pour une seule colonne */
        align-items: center;
    }
    
    .cta-content h3 {
        font-size: 30px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media screen and (max-width: 576px) {
    .options-modern {
        padding: 60px 0;
    }
    
    .options-header {
        margin-bottom: 60px;
    }
    
    .option-img-container {
        height: 180px;
    }
    
    .option-title {
        font-size: 20px;
    }
    
    .option-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .option-button {
        width: 100%;
        justify-content: center;
    }
    
    .cta-content {
        padding: 40px 25px;
    }
    
    .cta-content h3 {
        font-size: 26px;
    }
    
    .cta-visual {
        height: 250px;
    }
}

/* Styles pour la section Visite Virtuelle */
.virtual-tour {
    padding: 120px 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}


.virtual-tour-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.virtual-tour-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.virtual-tour-container {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Styles pour la vidéo en autoplay */
.virtual-tour-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    flex: 3;
}

.video-player {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: rgba(231, 196, 95, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    opacity: 0.7;
}

.play-button:hover {
    background-color: var(--gold);
    transform: scale(1.1);
    opacity: 1;
}

.play-icon {
    color: white;
    font-size: 24px;
}

/* Animation pour attirer l'attention sur le contrôle vidéo */
@keyframes pulse-button {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 196, 95, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(231, 196, 95, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 196, 95, 0);
    }
}

.play-button {
    animation: pulse-button 2s infinite;
}

/* Styles responsifs */
@media screen and (max-width: 991px) {
    .play-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .play-icon {
        font-size: 20px;
    }
}

@media screen and (max-width: 576px) {
    .video-player {
        min-height: 300px;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }
    
    .play-icon {
        font-size: 16px;
    }
}

.placeholder-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}


.play-icon {
    color: white;
    font-size: 28px;
    margin-left: 5px;
}

.virtual-tour-highlights {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.highlight-row {
    display: flex;
    gap: 25px;
}

.highlight-item {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 1;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

.highlight-title {
    font-size: 18px;
    color: var(--blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.virtual-tour-gallery {
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.gallery-scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #f1f1f1;
}

.gallery-scroller::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroller::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gallery-scroller::-webkit-scrollbar-thumb {
    background-color: var(--gold);
    border-radius: 10px;
}

.gallery-item-small {
    flex: 0 0 auto;
    width: 250px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.gallery-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

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

.virtual-tour-cta {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.virtual-tour-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/feather-pattern.webp');
    background-size: 300px;
    opacity: 0.05;
    z-index: -1;
}

.cta-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--gold);
    color: var(--blue-dark);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background-color: white;
    color: var(--blue-dark);
}

@media screen and (max-width: 1200px) {
    .virtual-tour-container {
        gap: 30px;
    }
    
    .highlight-row {
        gap: 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 991px) {
    .virtual-tour {
        padding: 80px 0;
    }
    
    .virtual-tour-container {
        flex-direction: column;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-icon {
        font-size: 24px;
    }
    
    .virtual-tour-cta {
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .highlight-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .highlight-item {
        padding: 20px;
    }
    
    .gallery-item-small {
        width: 220px;
        height: 160px;
    }
    
    .virtual-tour-cta {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 576px) {
    .virtual-tour-intro {
        font-size: 16px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-icon {
        font-size: 20px;
    }
    
    .gallery-item-small {
        width: 180px;
        height: 130px;
    }
    
    .cta-text {
        font-size: 15px;
    }
    
    .cta-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* ===== Testimonials Section - Modern Version (Fixed Layout) ===== */
.testimonials-modern {
    padding: 120px 0 50px;
    background: linear-gradient(to bottom, #f9f7f2, #fff);
    position: relative;
    overflow: hidden;
}

/* Floating peacock feather images */
.testimonial-floating-image {
    position: absolute;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.left-feather {
    top: 10%;
    left: -5%;
    width: 35%;
    height: 70%;
    background-image: url('../img/plume1.webp'); /* Vous remplacerez avec vos images de plumes */
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-15deg);
    animation: float-feather 15s ease-in-out infinite;
}

.right-feather {
    bottom: 5%;
    right: -10%;
    width: 40%;
    height: 80%;
    background-image: url('../img/plume2.webp'); /* Vous remplacerez avec vos images de plumes */
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(15deg);
    animation: float-feather 18s ease-in-out infinite 2s;
}

@keyframes float-feather {
    0%, 100% {
        transform: rotate(-15deg) translateY(0) scale(1);
    }
    50% {
        transform: rotate(-20deg) translateY(-20px) scale(1.02);
    }
}

/* Header styling */
.testimonials-modern .testimonials-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.testimonials-intro {
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

/* Grid layout for testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Card styling */
.testimonial-card {
    height: 100%;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:nth-child(1) {
    transition-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    transition-delay: 0.3s;
}

.testimonial-card:nth-child(3) {
    transition-delay: 0.5s;
}

.testimonial-card-inner {
    height: 100%;
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    transform-style: preserve-3d;
    transform: translateY(0) rotateY(0);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover .testimonial-card-inner {
    transform: translateY(-10px) rotateY(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Quote icon */
.testimonial-quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    opacity: 0.8;
}

/* Star rating */
.testimonial-rating {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 2px;
}

.star {
    display: inline-block;
    margin-right: 2px;
    animation: starPulse 3s infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.3s; }
.star:nth-child(3) { animation-delay: 0.6s; }
.star:nth-child(4) { animation-delay: 0.9s; }
.star:nth-child(5) { animation-delay: 1.2s; }

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

/* Testimonial text */
.testimonial-card .testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Author info */
.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    margin-top: auto;
}

.testimonial-card .author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card .author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 5px;
}

.testimonial-card .author-info p {
    font-size: 14px;
    color: #777;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 1200px) {
    .testimonials-grid {
        gap: 25px;
    }
    
    .testimonial-card-inner {
        padding: 35px;
    }
}

@media screen and (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .left-feather, .right-feather {
        opacity: 0.1;
    }
}

@media screen and (max-width: 768px) {
    .testimonials-modern {
        padding: 90px 0 120px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card:last-child {
        grid-column: span 1;
    }
    
    .testimonial-card-inner {
        padding: 30px;
    }
    
    .testimonials-intro {
        font-size: 16px;
        margin-top: 20px;
    }
    
    .left-feather {
        top: 0;
        left: -20%;
        width: 50%;
    }
    
    .right-feather {
        bottom: 0;
        right: -20%;
        width: 50%;
    }
}

@media screen and (max-width: 576px) {
    .testimonials-modern {
        padding: 70px 0 100px;
    }
    
    .testimonial-card-inner {
        padding: 25px;
    }
    
    .testimonial-card .author-img {
        width: 60px;
        height: 60px;
    }
    
    .left-feather, .right-feather {
        opacity: 0.07;
    }
}

/* CSS pour les images des équipements */
.amenities {
    padding: 120px 0;
    background: var(--blue-lighter);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
}

.amenities-header {
    text-align: center;
    margin-bottom: 70px;
}

.amenities-header .section-subtitle {
    color: var(--gold);
}

.amenities-header .section-title {
    color: var(--white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}

.amenity-item {
    border-radius: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    padding: 40px 25px;
    border: 1px solid var(--gold);
    background-color: rgba(5, 21, 44, 0.7);
    overflow: hidden;
}

.amenity-item::before {
    border-radius: 30px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(212, 175, 55, 0.2);
    transform: scaleX(0);
    transform-origin: center;
    transition: all 0.4s ease;
    z-index: 0;
}

.amenity-item:hover::before {
    transform: scaleX(1);
}

.amenity-item:hover {
    transform: translateY(-10px);
}

/* Style pour les images des équipements */
.image-amenities {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.amenity-item:hover .image-amenities {
    transform: scale(1.05);
}

.amenity-title {
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    z-index: 1;
}

.amenity-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.amenity-description {
    font-size: 19px;
    line-height: 1.7;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .image-amenities {
        max-height: 180px;
    }
    
    .amenity-item {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 576px) {
    .image-amenities {
        max-height: 150px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}


/* Styles pour le carousel de galerie sur mobile */

/* Structure de base de la galerie inchangée */
.gallery {
    background-color: var(--blue-dark);
    padding: 120px 0;
    overflow: hidden;
}

.gallery .section-title{
    color: white;
}

.gallery .section-subtitle{
    color: white;
}

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

.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-button {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    color: white;
    margin: 0 5px 10px;
    transition: all 0.3s ease;
    position: relative;
}

.filter-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: all 0.3s ease;
}

.filter-button:hover, 
.filter-button.active {
    color: var(--gold);
}

.filter-button:hover::after,
.filter-button.active::after {
    width: 30px;
}

/* Modifications pour la vue grille standard */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-item.show {
    border-radius: 10px;
    opacity: 1;
    transform: translateY(0);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 46, 96, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

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

.gallery-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transform: scale(0);
    transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Carousel sur mobile */
/* Ces styles seront activés uniquement pour les écrans de petite taille */
@media screen and (max-width: 768px) {
    .gallery-grid {
        display: block;
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    
    /* Cache tous les éléments filtres sauf "Tous" sur mobile */
    .gallery-filter .filter-button:not([data-filter="all"]) {
        display: none;
    }
    
    .gallery-filter .filter-button[data-filter="all"] {
        margin-bottom: 30px;
    }
    
    /* Conteneur du carousel */
    .gallery-carousel-container {
        width: 100%;
        position: relative;
        overflow: hidden;
        padding-bottom: 50px; /* Espace pour les indicateurs */
    }
    
    /* Track du carousel - utilisé en JS */
    .gallery-carousel-track {
        display: flex;
        transition: transform 0.5s ease;
    }
    
    /* Élément du carousel */
    .gallery-carousel-item {
        min-width: calc(100% - 40px); /* Laisse voir un peu du slide suivant */
        margin: 0 20px;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        height: 250px;
    }
    
    .gallery-carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Navigation du carousel */
    .gallery-carousel-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .gallery-carousel-nav button {
        background-color: var(--blue);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .gallery-carousel-nav button:hover,
    .gallery-carousel-nav button:focus {
        background-color: var(--gold);
        transform: scale(1.1);
    }
    
    /* Indicateurs du carousel */
    .gallery-carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    
    .gallery-carousel-indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ccc;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .gallery-carousel-indicator.active {
        background-color: var(--gold);
        transform: scale(1.3);
    }
    
    /* Remplacer l'overlay par un titre en bas */
    .gallery-carousel-title {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        color: white;
        padding: 15px;
        font-size: 16px;
        text-align: center;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    .gallery-carousel-item:hover .gallery-carousel-title {
        transform: translateY(0);
    }
}

/* ===== SECTION CARTES CADEAUX - STYLES FINAUX ===== */
.gift-cards-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #04122a 0%, #0c2e60 100%);
    color: var(--white);
    overflow: hidden;
}

/* Éléments décoratifs */
.gift-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gift-cards-header .section-subtitle{
    color: var(--gold);
}

.gift-cards-header .section-title{
    color: var(--white);
}


.gift-floating-feather {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.06;
    filter: blur(2px);
    z-index: 0;
}

.feather-1 {
    width: 40%;
    height: 50%;
    top: -5%;
    left: -10%;
    background-image: url('img/plume1.webp');
    transform: rotate(-15deg);
    animation: float-feather-1 20s ease-in-out infinite;
}

.feather-2 {
    width: 30%;
    height: 40%;
    bottom: 10%;
    right: -5%;
    background-image: url('img/plume2.webp');
    transform: rotate(25deg);
    animation: float-feather-2 25s ease-in-out infinite;
}

.feather-3 {
    width: 25%;
    height: 30%;
    top: 40%;
    left: 70%;
    background-image: url('img/plume1.webp');
    transform: rotate(170deg);
    animation: float-feather-3 15s ease-in-out infinite;
}

@keyframes float-feather-1 {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50% { transform: rotate(-20deg) translateY(-20px); }
}

@keyframes float-feather-2 {
    0%, 100% { transform: rotate(25deg) translateY(0); }
    50% { transform: rotate(20deg) translateY(-30px); }
}

@keyframes float-feather-3 {
    0%, 100% { transform: rotate(170deg) translateY(0) translateX(0); }
    50% { transform: rotate(175deg) translateY(-15px) translateX(20px); }
}

/* Particules dorées pour le fond */
.gift-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.gift-particle {
    position: absolute;
    background-color: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.2;
    animation: float-particle var(--duration) ease-in-out infinite;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(var(--move-y)) translateX(var(--move-x));
    }
}

/* En-tête de la section */
.gift-cards-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 30px;
}

.gift-cards-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Section d'explication */
.gift-cards-explanation {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 0 auto 50px;
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.explanation-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: rgba(231, 196, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explanation-icon .icon {
    font-size: 34px;
}

.explanation-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--gold);
}

.explanation-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Carousel de cartes cadeaux */
.gift-cards-carousel {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

/* Carte cadeau - conteneur */
.gift-card-item {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.gift-card-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gift-card-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--gold);
    color: var(--blue-dark);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
}

/* Styles de la carte */
.gift-card {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: rgba(4, 18, 42, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Conteneur de l'image */
.gift-card-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.gift-card:hover .gift-card-image {
    transform: scale(1.05);
}

.gift-card-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(4, 18, 42, 0.3) 0%,
        rgba(4, 18, 42, 0.5) 50%,
        rgba(4, 18, 42, 0.8) 100%);
    z-index: 1;
}

.gift-card-gradient-overlay.premium {
    background: linear-gradient(to bottom, 
        rgba(183, 139, 0, 0.3) 0%,
        rgba(183, 139, 0, 0.5) 50%,
        rgba(4, 18, 42, 0.8) 100%);
}

/* Contenu de la carte */
.gift-card-content {
    padding: 25px;
    position: relative;
}

.gift-card-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

.gift-card-category.premium-category {
    background-color: var(--gold);
    color: var(--blue-dark);
}

.gift-card-title {
    font-family: "Island Moments", cursive;
    font-size: 38px;
    margin-bottom: 5px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gift-card-value {
    font-family: "Simonetta", serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Description et caractéristiques */
.gift-card-description {
    margin-bottom: 25px;
}

.gift-card-description p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.gift-card-features {
    list-style: none;
    text-align: left;
    margin-left: 5px;
}

.gift-card-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    opacity: 0.9;
}

.gift-card-features li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Bouton d'achat */
.gift-card-cta {
    margin-bottom: 25px;
}

.gift-card-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.gift-card-btn:hover {
    background-color: var(--gold);
    color: var(--blue-dark);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.premium-btn {
    background-color: var(--gold);
    color: var(--blue-dark);
    border-color: var(--gold);
}

.premium-btn:hover {
    background-color: white;
    border-color: white;
}

/* Logo */
.gift-card-logo {
    text-align: right;
    margin-top: 15px;
}

.gift-card-logo-text {
    font-family: "Island Moments", cursive;
    font-size: 24px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

/* Note d'information */
.gift-cards-note {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 10px;
    margin: 0 auto 60px;
    max-width: 900px;
    position: relative;
    z-index: 2;
    border-left: 3px solid var(--gold);
}

.note-icon {
    font-size: 24px;
    opacity: 0.8;
}

.gift-cards-note p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Section CTA */
.gift-cards-cta {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.cta-image-container {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 21, 44, 0.8), transparent);
}

.cta-content {
    flex: 1;
    padding: 60px;
    background-color: var(--blue-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h3 {
    font-size: 62px;
    margin-bottom: 20px;
    color: var(--gold);
    font-family: "Island Moments", cursive;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--gold);
    color: var(--blue-dark);
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Animation d'apparition au scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles responsifs */
@media screen and (max-width: 1200px) {
    .gift-cards-carousel {
        padding: 0 20px;
    }
    
    .gift-card-title {
        font-size: 34px;
    }
    
    .gift-card-value {
        font-size: 30px;
    }
    
    .cta-content {
        padding: 40px;
    }
}

@media screen and (max-width: 991px) {
    .gift-cards-section {
        padding: 80px 0;
    }
    
    .gift-cards-carousel {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .gift-card-item {
        margin-bottom: 30px;
    }
    
    .gift-cards-explanation {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .explanation-content h3 {
        font-size: 22px;
    }
    
    .gift-cards-cta {
        flex-direction: column;
    }
    
    .cta-image-container {
        height: 250px;
    }
    
    .cta-image-overlay {
        background: linear-gradient(to top, rgba(5, 21, 44, 0.8), transparent);
    }
}

@media screen and (max-width: 768px) {
    .gift-cards-section {
        padding: 60px 0;
    }
    
    .gift-cards-intro {
        font-size: 16px;
    }
    
    .gift-card-content {
        padding: 20px;
    }
    
    .gift-card-title {
        font-size: 32px;
    }
    
    .gift-card-value {
        font-size: 28px;
    }
    
    .gift-card-description p {
        font-size: 15px;
    }
    
    .gift-card-features li {
        font-size: 14px;
    }
    
    .gift-cards-note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media screen and (max-width: 576px) {
    .gift-card-badge {
        top: -10px;
        right: -10px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .gift-card-image-container {
        height: 180px;
    }
    
    .gift-card-title {
        font-size: 30px;
    }
    
    .gift-card-value {
        font-size: 26px;
    }
    
    .gift-card-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .explanation-content p {
        font-size: 15px;
    }
}

/* CSS Ultra-Moderne pour la section Offre Flash 3h */
.flash-offer-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--blue-dark) 0%, #081e3f 50%, var(--blue) 100%);
    overflow: hidden;
    color: var(--white);
    perspective: 1000px;
    z-index: 1;
}

/* Formes géométriques d'arrière-plan */
.flash-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.07;
    filter: blur(10px);
    transform-style: preserve-3d;
}

.shape-1 {
    top: -10%;
    left: -5%;
    width: 40%;
    height: 60%;
    background: linear-gradient(45deg, var(--gold) 0%, transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 15s infinite alternate ease-in-out;
}

.shape-2 {
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: linear-gradient(-45deg, var(--gold) 0%, transparent 70%);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.shape-3 {
    top: 20%;
    right: 15%;
    width: 20%;
    height: 20%;
    background: radial-gradient(circle at center, var(--gold) 0%, transparent 70%);
    border-radius: 50%;
}

.shape-4 {
    bottom: 30%;
    left: 10%;
    width: 15%;
    height: 15%;
    background: radial-gradient(circle at center, var(--gold) 0%, transparent 70%);
    border-radius: 50%;
}


@keyframes pulseShape {
    0%, 100% {
        transform: scale(1);
        opacity: 0.07;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.05;
    }
}

/* En-tête avec badge pulsant */
.flash-offer-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.flash-badge-pulse {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.flash-badge-text {
    position: relative;
    display: inline-block;
    background: var(--gold);
    color: var(--blue-dark);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 12px 30px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.flash-badge-pulse::before,
.flash-badge-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    background: var(--gold);
    opacity: 0.6;
    z-index: 1;
}


/* Titre avec animation */
.flash-title {
    font-family: "Island Moments", cursive;
    font-size: 84px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.flash-title-line {
    display: block;
    transform-style: preserve-3d;
}

.flash-title-line:nth-child(2) {
    animation-delay: 1s;
}


.flash-title .accent {
    color: var(--gold);
    position: relative;
}

.flash-title .accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
}

/* Prix avec mise en évidence */
.flash-price-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.flash-price-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(231, 196, 95, 0.2);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(10deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.flash-price {
    font-size: 100px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-family: "Simonetta", serif;
}

.flash-price-text {
    font-size: 24px;
    color: var(--white);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 10px;
}

/* Grille de contenu asymétrique */
.flash-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "image description"
        "info cta";
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

/* Image principale avec superposition */
.flash-image-box {
    grid-area: image;
    position: relative;
    perspective: 1000px;
}

.flash-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transform: rotate(-3deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flash-image-container:hover {
    transform: rotate(0deg) translateY(-10px);
}

.flash-main-image {
    width: 100%;
    display: block;
    transform: scale(1.05);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flash-image-container:hover .flash-main-image {
    transform: scale(1.1);
}

.flash-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 46, 96, 0.8) 0%, rgba(12, 46, 96, 0.4) 50%, rgba(12, 46, 96, 0) 100%);
}

.flash-time-tag {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gold);
    color: var(--blue-dark);
    padding: 20px;
    border-radius: 70px 0 70px 70px;
    text-align: center;
    min-width: 140px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
    z-index: 3;
}

.flash-time-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.flash-time-text {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

/* Description avec design moderne */
.flash-description-box {
    grid-area: description;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.flash-tagline {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
    font-family: "Island Moments", cursive;
    position: relative;
}

.accent-text {
    color: var(--gold);
}

.flash-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Liste d'avantages modernisée */
.flash-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.flash-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.flash-feature:hover {
    transform: translateX(10px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(231, 196, 95, 0.2) 0%, rgba(231, 196, 95, 0.1) 100%);
    color: var(--gold);
    font-size: 18px;
    transition: all 0.3s ease;
}

.flash-feature:hover .feature-icon {
    transform: scale(1.2) rotate(20deg);
    background: linear-gradient(135deg, rgba(231, 196, 95, 0.4) 0%, rgba(231, 196, 95, 0.2) 100%);
}

.feature-text {
    font-size: 18px;
    color: var(--white);
}

/* Boîte d'information et CTA */
.flash-info-box {
    grid-area: info;
    position: relative;
}

.flash-info-inner {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 3px solid var(--gold);
}

.flash-info-icon {
    font-size: 24px;
}

.flash-info-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA avec design modernisé */
.flash-cta-box {
    grid-area: cta;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.flash-cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 40px;
    background: var(--gold);
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-icon {
    position: relative;
    z-index: 2;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.button-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flash-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.flash-cta-button:hover .button-icon {
    transform: translateX(5px);
}

.flash-cta-button:hover .button-highlight {
    transform: translateX(0);
}

.flash-additional-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Compteur de disponibilité */
.flash-counter {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.counter-label {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
}

.counter-slots {
    display: flex;
    gap: 15px;
}

.slot {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    text-transform: uppercase;
}

.slot.available {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.slot.available::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
}

.slot.booked {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.slot.booked::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(-45deg);
}

/* Styles Responsive */
@media screen and (max-width: 1200px) {
    .flash-title {
        font-size: 70px;
    }
    
    .flash-price {
        font-size: 80px;
    }
    
    .flash-time-tag {
        right: -10px;
        bottom: 20px;
        padding: 15px;
        min-width: 120px;
    }
    
    .flash-time-value {
        font-size: 30px;
    }
}

@media screen and (max-width: 991px) {
    .flash-offer-section {
        padding: 100px 0;
    }
    
    .flash-title {
        font-size: 60px;
    }
    
    .flash-price-box {
        padding: 15px 30px;
    }
    
    .flash-price {
        font-size: 70px;
    }
    
    .flash-price-text {
        font-size: 20px;
    }
    
    .flash-content-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "description"
            "info"
            "cta";
    }
    
    .flash-description-box {
        padding: 30px;
    }
    
    .flash-tagline {
        font-size: 36px;
    }
    
    .flash-feature {
        gap: 10px;
    }
    
    .slot {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .flash-offer-section {
        padding: 80px 0;
    }
    
    .flash-badge-text {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .flash-title {
        font-size: 50px;
    }
    
    .flash-price {
        font-size: 60px;
    }
    
    .flash-time-tag {
        bottom: 10px;
        right: 10px;
        border-radius: 50px 0 50px 50px;
        padding: 10px;
        min-width: 100px;
    }
    
    .flash-time-value {
        font-size: 24px;
    }
    
    .flash-time-text {
        font-size: 12px;
    }
    
    .flash-tagline {
        text-align: center;
    }
    
    .flash-description {
        text-align: center;
    }
    
    .flash-features-list {
        align-items: center;
    }
    
    .flash-info-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .counter-slots {
        gap: 10px;
    }
    
    .slot {
        width: 45px;
        height: 45px;
        font-size: 13px;
    }
}

@media screen and (max-width: 576px) {
    .flash-offer-section {
        padding: 60px 0;
    }
    
    .flash-title {
        font-size: 42px;
    }
    
    .flash-price {
        font-size: 50px;
    }
    
    .flash-price-text {
        font-size: 16px;
    }
    
    .flash-cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .slot {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
}

/* Testimonials Section */

.testimonials {

    padding: 120px 0;

    background-color: #f9f7f2;

    position: relative;

    overflow: hidden;

}



.testimonials-header {

    text-align: center;

    margin-bottom: 70px;

}



.testimonials-slider {

    position: relative;

    max-width: 1000px;

    margin: 0 auto;

    overflow: hidden;

}



.testimonials-track {

    display: flex;

    transition: all 0.5s ease;

}



.testimonial-item {

    min-width: 100%;

    padding: 0 15px;

    box-sizing: border-box;

}



.testimonial-content {
    border-radius: 30px;
    background-color: var(--white);

    padding: 50px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    position: relative;

}



.testimonial-content::before {

    content: '"';

    position: absolute;

    top: 20px;

    left: 20px;

    font-family: 'Prata', serif;

    font-size: 80px;

    color: rgba(212, 175, 55, 0.2);

    line-height: 1;

}



.testimonial-text {

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 25px;

    color: #444;

    position: relative;

    z-index: 1;

}



.testimonial-author {

    display: flex;

    align-items: center;

}



.author-img {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    object-fit: cover;

    margin-right: 20px;

}



.author-info h4 {

    font-family: 'Montserrat', sans-serif;

    font-size: 18px;

    font-weight: 600;

    color: var(--blue);

    margin-bottom: 5px;

}



.author-info p {

    font-size: 14px;

    color: #777;

}



.slider-controls {

    display: flex;

    justify-content: center;

    margin-top: 40px;

}



.slider-btn {

    width: 50px;

    height: 50px;

    border: 1px solid var(--blue);

    background: none;

    border-radius: 50%;

    margin: 0 10px;

    cursor: pointer;

    transition: all 0.3s ease;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--blue);

}



.slider-btn:hover {

    background-color: var(--blue);

    color: var(--white);

}



.testimonial-indicators {

    display: flex;

    justify-content: center;

    margin-top: 30px;

}



.indicator {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background-color: #ccc;

    margin: 0 5px;

    cursor: pointer;

    transition: all 0.3s ease;

}



.indicator.active {

    background-color: var(--gold);

    transform: scale(1.3);

}



/* Reservation Section */

.reservation {

    padding: 120px 0;

    overflow: hidden;

    position: relative;

}



.reservation-header {

    text-align: center;

    margin-bottom: 70px;

}


/* Styles pour la section contact modernisée */
.contact-modern {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    position: relative;
    overflow: hidden;
    color: var(--white);
}

/* Éléments décoratifs */
.contact-decor {
    position: absolute;
    background-color: rgba(231, 196, 95, 0.03);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.decor-1 {
    width: 40vw;
    height: 40vw;
    top: -15%;
    left: -10%;
}

.decor-2 {
    width: 35vw;
    height: 35vw;
    bottom: -10%;
    right: -10%;
}

.contact-header {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
    text-align: center;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Formulaire de contact */
.contact-form-wrapper {
    flex: 1;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-form-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.15);
}

.contact-form {
    padding: 40px;
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}

.form-header h3 {
    font-size: 60px;
    color: var(--blue);
    margin-bottom: 10px;
    font-family: "Island Moments", cursive;
    font-weight: 400;
}

.form-header p {
    font-size: 15px;
    color: #666;
}

.form-group {
    margin-bottom: 30px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    background: transparent;
    font-size: 16px;
    color: var(--blue);
    font-family: inherit;
}

.input-wrapper label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 16px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-wrapper .input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ddd;
}

.input-wrapper .input-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: all 0.3s ease;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
}

.input-wrapper input:focus + label,
.input-wrapper textarea:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.input-wrapper textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 12px;
    color: var(--gold);
}

.input-wrapper input:focus ~ .input-line::after,
.input-wrapper textarea:focus ~ .input-line::after {
    width: 100%;
}

.input-wrapper textarea {
    resize: none;
    min-height: 100px;
}

.form-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--blue);
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.form-button svg {
    transition: transform 0.3s ease;
}

.form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.form-button:hover::before {
    left: 0;
}

.form-button:hover svg {
    transform: translateX(5px);
}

/* Informations de contact */
.contact-info-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-inner {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 50%;
    transition: all 0.3s ease;
}

.contact-info-inner:hover {
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-header {
    margin-bottom: 40px;
}

.contact-info-header h3 {
    font-size: 60px;
    margin-bottom: 10px;
    font-family: "Island Moments", cursive;
    font-weight: 400;
}

.contact-info-header p {
    font-size: 15px;
    opacity: 0.8;
}

.contact-info-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    margin-bottom: 50px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(231, 196, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .info-icon {
    background-color: var(--gold);
    color: var(--blue-dark);
    transform: scale(1.1);
}

.info-content h4 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p,
.info-content address {
    font-size: 20px;
    opacity: 0.8;
    font-style: normal;
    line-height: 1.6;
}

.info-content a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-social {
    margin-top: auto;
}

.contact-social h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--blue-dark);
    transform: translateY(-5px);
}

/* Carte */
.contact-map {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.map-overlay-link {
    position: absolute;
    inset: 0;
    background-color: rgba(5, 21, 44, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-map:hover .map-overlay-link {
    opacity: 1;
}

.contact-map:hover .map-img {
    transform: scale(1.05);
}

/* Animation au défilement */
.contact-form-wrapper,
.contact-info-inner,
.contact-map {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-form-wrapper.contact-visible,
.contact-info-inner.contact-visible,
.contact-map.contact-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Styles responsifs */
@media screen and (max-width: 1200px) {
    .contact-wrapper {
        gap: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .contact-info-inner {
        padding: 30px;
    }
    
    .contact-info-items {
        gap: 30px 15px;
    }
}

@media screen and (max-width: 991px) {
    .contact-modern {
        padding: 100px 0;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .contact-info-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .contact-modern {
        padding: 80px 0;
    }
    
    .contact-intro {
        font-size: 16px;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        max-width: 500px;
    }
    
    .contact-info-items {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-button {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .contact-modern {
        padding: 60px 0;
    }
    
    .contact-header {
        margin-bottom: 50px;
    }
    
    .form-header h3,
    .contact-info-header h3 {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-info-inner {
        padding: 25px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-content h4 {
        font-size: 16px;
    }
}

.excep{
    color: var(--gold);
}
/* Footer */

footer {

    background-color: #05152c;

    color: rgba(255, 255, 255, 0.7);

    padding: 80px 0 0;

}



.footer-container {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 40px;

    margin-bottom: 60px;

}



.footer-logo {

    font-family: 'Prata', serif;

    font-size: 28px;

    color: var(--gold);

    display: block;

    margin-bottom: 20px;

}



.footer-about p {

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 25px;

}



.footer-heading {

    font-size: 18px;

    color: var(--white);

    margin-bottom: 25px;

    position: relative;

    padding-bottom: 15px;

}



.footer-heading::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: 0;

    width: 40px;

    height: 2px;

    background-color: var(--gold);

}



.footer-links {

    list-style: none;

}



.footer-link {

    margin-bottom: 12px;

}



.footer-link a {

    color: rgba(255, 255, 255, 0.7);

    text-decoration: none;

    transition: all 0.3s ease;

    font-size: 15px;

    display: inline-block;

}



.footer-link a:hover {

    color: var(--gold);

    transform: translateX(5px);

}



.footer-bottom {

    text-align: center;

    padding: 25px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 14px;

}



.footer-bottom span {

    color: var(--gold);

}



/* Animations */

@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* Responsive Styles */

@media screen and (max-width: 1200px) {

    .section-title {

        font-size: 36px;

    }

    

    .hero-title {

        font-size: 52px;

    }

    

    .about-container, 

    .contact-container {

        gap: 40px;

    }

    

    .about-features {

        grid-template-columns: 1fr;

    }

    

    .logo-img img {

        width: 100%;

    }

}



@media screen and (max-width: 991px) {

    .hero-title {

        font-size: 52px;

    }



    .nav-list {

        position: fixed;

        top: 0;

        right: -300px;

        width: 280px;

        height: 100vh;

        background-color: white;

        flex-direction: column;

        align-items: flex-start;

        padding: 80px 30px 30px;

        transition: all 0.4s ease;

        z-index: 1000;

        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);

    }

    

    .nav-list.active {

        right: 0;

    }

    

    .nav-item {

        margin: 10px 0;

    }

    

    .nav-button {

        margin: 20px 0 0;

        display: block;

        text-align: center;

    }

    

    .burger {

        display: block;

        z-index: 1001;

    }

    

    .burger.active .burger-line:nth-child(1) {

        transform: rotate(45deg) translate(5px, 5px);

    }

    

    .burger.active .burger-line:nth-child(2) {

        opacity: 0;

    }

    

    .burger.active .burger-line:nth-child(3) {

        transform: rotate(-45deg) translate(7px, -8px);

    }

    

    .about-container {

        flex-direction: column;

    }

    

    .hero-title {

        font-size: 42px;

    }

    

    .section-title {

        font-size: 32px;

    }

    

    .gallery-grid,

    .services-grid {

        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

    }

    

    .contact-boxes {

        grid-template-columns: 1fr;

    }

    

    .logo-img {

        width: 70px;

        height: 70px;

    }

    

    .logo-img img {

        padding-top: 15px;

        width: 200%;

    }

    

    .header-scrolled .logo-img {

        width: 50px;

        height: 50px;

    }

    

    .header-scrolled .logo-img img {

        padding-top: 5px;

        width: 200%;

    }

    

    .hero-container {

        flex-direction: column;

        gap: 30px;

    }

    

    .hero-content {

        text-align: center;

        max-width: 100%;

    }

    

    .gold-line.hero-gold-line {

        margin: 15px auto;

    }

    

    .hero-buttons {

        justify-content: center;

    }

    

    .hero-image {

        order: -1;

    }

    

    .hero-image img {

        max-height: 250px;

        transform: perspective(1000px) rotateY(0);

    }

}



@media screen and (max-width: 768px) {

    .hero {

        height: auto;

        min-height: 100vh;

        padding: 120px 0 60px;

    }

    

    .hero-subtitle {

        font-size: 16px;

        letter-spacing: 2px;

    }

    

    .hero-title {

        font-size: 48px;

        margin-bottom: 15px;

    }

    

    .hero-description {

        font-size: 16px;

        margin-bottom: 30px;

    }

    

    .hero-buttons {

        flex-direction: column;

        align-items: center;

        gap: 15px;

    }

    

    .btn {

        width: 100%;

        max-width: 300px;

        text-align: center;

    }

    

    .contact-container {

        flex-direction: column;

    }

    

    .testimonial-content {

        padding: 30px;

    }

    

    .logo-img {

        width: 60px;

        height: 60px;

    }

    

    .logo-img img {

        padding-top: 10px;

        width: 180%;

    }

    

    .navbar {

        padding: 15px 0;

    }

}



@media screen and (max-width: 576px) {

    .container {

        width: 95%;

    }

    

    .hero-subtitle {

        font-size: 16px;

    }

    

    .hero-title {

        font-size: 42px;

    }

    

    .hero-description {

        font-size: 16px;

    }

    

    .section-title {

        font-size: 28px;

    }

    

    .gallery-grid,

    .services-grid {

        grid-template-columns: 1fr;

    }

    

    .gallery-item {

        height: 250px;

    }

    

    .logo-img {

        width: 50px;

        height: 50px;

    }

    

    .logo-img img {

        padding-left: 20px;

        padding-top: 8px;

        width: 160%;

    }

    

    .hero {

        padding: 100px 0 50px;

    }

    

    .hero-title {

        font-size: 42px;

    }

    

    .hero-description {

        font-size: 15px;

        line-height: 1.6;

    }

    

    .hero-image img {

        max-height: 200px;

    }

}



@media screen and (max-width: 390px) {

    .hero-subtitle {

        font-size: 14px;

    }

    

    .hero-title {

        font-size: 38px;

    }

    

    .btn {

        padding: 12px 25px;

        font-size: 14px;

    }

}

