*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* 2. STYLES CORPS - Police Montserrat (assurez-vous qu'elle est chargée dans le head) */
body{
    font-family:'Montserrat', sans-serif;
    overflow-x:hidden; /* Empêche le défilement horizontal */
    background-color: #f4f4f4; /* Juste pour le contraste */
}

/*********************************
HEADER - AMÉLIORÉ
*********************************/
.header {
    position: fixed; /* Fixé en haut au défilement */
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Légèrement plus grand pour plus d'air */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px; /* Plus d'espace sur les côtés */
    z-index: 1000; /* Assure d'être au-dessus de tout */
    
    /* Arrière-plan sombre uni pour un look premium */
    background: #0a101c; 
    
    /* Bordure dorée plus fine et élégante */
    border-bottom: 1.5px solid #d4af37;
    
    /* Légère ombre pour la profondeur */
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    
    transition: all 0.3s ease; /* Animation fluide sur mobile */
}

/*********************************
LOGO - AMÉLIORÉ
*********************************/
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 75px; /* Définit la hauteur plutôt que la largeur pour un meilleur alignement */
    width: auto; /* Maintient le ratio */
}

/*********************************
GROUPE DROITE (Bouton + Tél)
*********************************/
.right-group {
    display: flex;
    align-items: center;
    gap: 30px; /* Espace entre le bouton et le téléphone */
}

/*********************************
MENU NAV (Bureau)
*********************************/
.menu ul {
    display: flex;
    align-items: center;
    gap: 40px; /* Espace entre les liens */
    list-style: none;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

/* Soulignement stylé au hover */
.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -5px;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.menu a:hover,
.menu a.active {
    color: #d4af37;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

/* Bouton Réservation (Bureau) */
.menu a.btn-menu {
    background: linear-gradient(135deg, #f3d87f 0%, #cfa648 100%);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    color: #111 !important;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

/* Soulignement stylé désactivé pour le bouton */
.menu a.btn-menu::after { display: none; }

.menu a.btn-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #fce5a3 0%, #dab462 100%);
}

/*********************************
PHONE - AMÉLIORÉ
*********************************/
.phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
}

.phone i {
    color: #d4af37;
    font-size: 24px;
}

/*********************************
RESPONSIVE - MENU BURGER (Mobile & Tablette)
*********************************/

/* Icône Burger cachée par défaut */
.menu-toggle {
    display: none;
    cursor: pointer;
    color: #fff;
    font-size: 32px;
    z-index: 1002;
}

/* Media Query pour Tablette & Mobile */
@media(max-width: 991px) {
    /* Header ajusté pour le burger */
    .header {
        height: 80px; /* Hauteur réduite */
        padding: 0 20px;
    }
    
    .logo img {
        height: 60px; /* Logo plus petit */
    }

    /* Afficher le burger */
    .menu-toggle {
        display: block;
    }

    /* Transformer le menu nav en panneau mobile */
    .menu {
        position: fixed;
        top: 80px; /* Même hauteur que le header */
        left: 0;
        width: 100%;
        height: auto; /* S'adapte au contenu */
        background-color: rgba(10, 16, 28, 0.98); /* Fond mobile */
        border-top: 1.5px solid rgba(212, 175, 55, 0.3);
        padding: 20px 0;
        overflow-y: auto; /* Défilement si nécessaire */
        
        /* Caché par défaut (animation vers le haut) */
        transform: translateY(-120%);
        transition: transform 0.5s ease-in-out;
        z-index: 1001;
    }

    /* Classe active pour montrer le menu */
    .menu.active {
        transform: translateY(0);
    }

    /* Liste verticale */
    .menu ul {
        flex-direction: column;
        gap: 0; /* Pas d'espace, on utilise padding */
        text-align: center;
    }

    .menu li {
        width: 100%;
    }

    /* Liens mobiles */
    .menu a {
        display: block;
        padding: 18px 20px;
        font-size: 17px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        width: 100%;
    }
    
    /* Pas de soulignement sur mobile */
    .menu a::after { display: none; }
    
    /* Pas de bordure pour le dernier item */
    .menu li:last-child a {
        border-bottom: none;
    }

    /* Style du bouton Réservation sur Mobile */
    .menu a.btn-menu {
        border-radius: 0; /* Pas d'arrondi sur les côtés mobiles */
        background: linear-gradient(135deg, #f3d87f 0%, #cfa648 100%);
        margin: 10px 20px 0 20px; /* Marge latérale */
        padding: 16px 20px;
        border-radius: 6px;
        box-shadow: none;
    }
    
    /* Cache le bouton Réservation original si présent dans right-group */
    .right-group .menu { display: none; }

    /* Masquer le groupe de droite sur mobile pour le burger */
    .right-group {
        position: absolute;
        bottom: -20px; /* Juste au-dessus du footer ou déplacé */
        display: none; /* Cache par défaut, peut être ré-affiché sous le menu */
    }
    
    /* Afficher le téléphone en bas du menu mobile */
    .menu .phone {
        justify-content: center;
        padding: 20px;
        color: #fff;
        font-size: 20px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
}
@media(min-width: 992px) and (max-width: 1150px) {
    .header { padding: 0 20px; } /* Moins de padding latéral pour gagner de la place */
    .menu ul { gap: 20px; }      /* Réduit l'espace entre les liens du menu */
    .menu a { font-size: 13px; } /* Police légèrement plus petite pour éviter le retour à la ligne */
}











/* --- OVERLAY POUR LA LISIBILITÉ --- */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4,10,20,.97) 0%, rgba(4,10,20,.95) 38%, rgba(4,10,20,.70) 55%, rgba(4,10,20,.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
}

.left-side {
    width: 50%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* --- BADGE & TITRE --- */
.badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold); /* Assurez-vous que votre variable --gold est définie */
    color: #000;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 20px;
}

h1 {
    font-size: 58px;
    font-weight: 300;
    line-height: 0.95;
    margin-bottom: 20px;
}

h1 span { font-weight: 700; color: #d4af37; }

.line { width: 200px; height: 1.5px; background: #d4af37; margin: 10px 0 20px 0; }

.subtitle { font-size: 20px; font-weight: 500; text-transform: uppercase; margin-bottom: 15px; }

.zone { display: block; font-size: 24px; font-weight: 700; color: #d4af37; margin-bottom: 30px; }

/* --- FEATURES --- */
.features { display: flex; gap: 20px; margin-bottom: 30px; }

.feature { text-align: center; width: 100px; }
.feature i { width: 60px; height: 60px; border: 2px solid #d4af37; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px auto; color: #d4af37; font-size: 22px; }
.feature h3 { font-size: 11px; font-weight: 700; margin-bottom: 5px; }
.feature p { font-size: 9px; color: #aaa; text-transform: uppercase; }

/* --- CTA --- */
.cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    width: 320px; height: 60px; background: linear-gradient(to bottom, #f3d87f, #cfa648);
    border-radius: 50px; text-decoration: none; color: #111; font-size: 16px; font-weight: 800;
}
/* NOUVEAU : Ajout de l'espace ici */
.bottom-text { 
    margin-top: 25px; /* Espace entre le bouton et le texte */
    font-size: 16px; 
    color: #fff; 
    font-weight: 400;
}

/* --- RESPONSIVE MOBILE AMÉLIORÉ --- */
@media(max-width: 991px) {
    .hero { height: auto; padding: 60px 20px; text-align: center; }
  .hero-content { 
        padding: 0; 
        margin-top: 40px; /* Ajustez cette valeur selon l'espace souhaité */
    }
    .left-side { width: 100%; align-items: center; }
    
    h1 { font-size: 40px; } /* Titre plus petit sur mobile */
    .badge { font-size: 16px; padding: 8px 16px; }
    .subtitle { font-size: 16px; }
    .zone { font-size: 20px; margin-bottom: 20px; }
    
    .features { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .feature { width: 40%; } /* Deux colonnes sur mobile */
    
   .cta { width: 100%; max-width: 300px; font-size: 15px; }
    
    /* Ajustement sur mobile si besoin */
    .bottom-text { margin-top: 20px; font-size: 14px; }
}





.services { 
    padding: 100px 20px; 
    background: #ffffff; 
    text-align: center; 
}

.services h2 { 
    font-size: 42px; 
    margin-bottom: 15px; 
    color: #09101c; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.line-center { 
    width: 60px; 
    height: 4px; 
    background: #d4af37; 
    margin: 0 auto 20px; 
    border-radius: 2px;
}

.section-desc { 
    color: #555; 
    margin-bottom: 60px; 
    font-size: 19px; 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto;
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.service-card { 
    padding: 40px 30px; 
    background: #fff; 
    border-radius: 20px; 
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.service-card:hover { 
    border-color: #d4af37; 
    background: #ffffff; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

.service-card i { 
    font-size: 45px; 
    color: #d4af37; 
    margin-bottom: 25px; 
    display: block;
}

.service-card h3 { 
    margin-bottom: 15px; 
    color: #09101c; 
    font-size: 22px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.service-card strong { color: #d4af37; }









.about { padding: 100px 20px; background: #ffffff; }
.about-container { 
    max-width: 1100px; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    gap: 50px; 
    flex-wrap: nowrap; /* Force les éléments sur une seule ligne */
}

/* Typographie et texte */
.badge-mini { color: #d4af37; font-weight: 800; letter-spacing: 2px; font-size: 12px; }
.about-text h2 { font-size: 42px; color: #09101c; margin: 15px 0; line-height: 1.2; }
.line-left { width: 80px; height: 4px; background: #d4af37; margin-bottom: 30px; border-radius: 2px; }
.about-text p { color: #666; line-height: 1.8; font-size: 17px; }

.about-features { list-style: none; margin-top: 30px; }
.about-features li { margin-bottom: 15px; font-weight: 600; color: #09101c; display: flex; align-items: center; }
.about-features i { color: #d4af37; margin-right: 15px; font-size: 20px; }

/* Style de l'image */
.about-image { flex: 1; min-width: 400px; position: relative; }
.image-wrapper { position: relative; width: 100%; }
.image-box { 
    width: 100%; height: 400px; 
    border-radius: 30px; 
    overflow: hidden; 
    z-index: 2; 
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.image-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/* Élément décoratif or */
.deco-box { 
    position: absolute; top: 30px; right: -30px; width: 100%; height: 100%; 
    border: 2px solid #d4af37; border-radius: 30px; z-index: 1; 
}

/* Adaptation mobile */
@media (max-width: 768px) {
    .about-container { flex-direction: column; text-align: center; }
    .line-left { margin: 0 auto 30px; }
    .about-features { text-align: left; display: inline-block; }
    .deco-box { display: none; }
}



.process { padding: 100px 20px; background: #fdfdfd; text-align: center; }

.process-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    max-width: 1100px; 
    margin: 60px auto 0; 
    position: relative;
}

/* Ligne de connexion horizontale */
.process-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.process-step { position: relative; z-index: 2; padding: 20px; background: #fff; transition: 0.3s; border-radius: 15px; }

.step-number { 
    font-size: 32px; 
    font-weight: 800; 
    color: #d4af37; 
    background: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.process-step h3 { margin-bottom: 10px; color: #09101c; }
.process-step p { color: #666; font-size: 14px; line-height: 1.5; }

/* Effet au survol */
.process-step:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* Responsive */
@media (max-width: 900px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; } /* On cache la ligne sur mobile */
}

@media (max-width: 500px) {
    .process-grid { grid-template-columns: 1fr; }
}



.cta-section { 
    padding: 100px 20px; 
    background: linear-gradient(135deg, #09101c 0%, #1a2a40 100%); 
    text-align: center; 
    color: #fff;
    margin-top: 50px;
}

.cta-overlay h2 { font-size: 45px; margin-bottom: 20px; }
.cta-overlay p { font-size: 20px; margin-bottom: 40px; color: #ccc; }

.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* Bouton principal (Or) */
.btn-main { 
    background: linear-gradient(to bottom, #f3d87f, #cfa648);
    color: #111;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(207, 166, 72, 0.3);
}

/* Bouton secondaire (Contour) */
.btn-secondary { 
    border: 2px solid #d4af37;
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-main:hover, .btn-secondary:hover { transform: scale(1.05); }

.zone-badge { 
    margin-top: 40px; 
    font-size: 14px; 
    color: #d4af37; 
    letter-spacing: 2px;
    text-transform: uppercase;
}








.testimonials { padding: 80px 20px; background: #f9f9f9; text-align: center; }
.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    max-width: 1100px; 
    margin: 40px auto 0; 
}

.testi-card { 
    background: #fff; 
    padding: 30px; 
    border-radius: 15px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid #d4af37;
}

.testi-card i { 
    color: #d4af37; 
    font-size: 24px; 
    margin-bottom: 15px; 
    opacity: 0.5;
}

.testi-card p { 
    font-style: italic; 
    color: #555; 
    margin-bottom: 20px; 
    line-height: 1.6; 
}

.client-name { 
    font-weight: 700; 
    color: #09101c; 
}




.engagements { padding: 80px 20px; background: #ffffff; text-align: center; }
.engagements-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 40px; 
    max-width: 1100px; 
    margin: 50px auto 0; 
}

.icon-box { 
    width: 70px; 
    height: 70px; 
    background: #fdfdfd; 
    border: 2px solid #d4af37; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 20px; 
    font-size: 28px; 
    color: #d4af37;
    transition: 0.3s;
}

.engage-item:hover .icon-box { 
    background: #d4af37; 
    color: #fff; 
}

.engage-item h3 { margin-bottom: 10px; color: #09101c; }
.engage-item p { color: #666; font-size: 15px; line-height: 1.5; }




















.gallery {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
    font-family: 'Montserrat', sans-serif; /* Exemple de police premium */
}

/* Titre principal */
.gallery h2 {
    font-size: 2.5rem;
    color: #09101c;
    margin-bottom: 5px;
    font-weight: 700;
}

/* Ligne centrale jaune */
.line-center {
    width: 60px;
    height: 4px;
    background: #d4af37;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

/* Description de la section */
.section-desc {
    font-size: 1.1rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* Conteneur de la grille */
.gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grille de la galerie - Amélioration de la flexibilité */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Plus de colonnes sur grand écran */
    gap: 30px; /* Plus d'espace entre les cartes */
    margin-top: 40px;
}

/* Élément de la galerie - Taille dynamique */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #09101c; /* Fond noir pour l'overlay */
    
    /* Conserve les proportions d'une image en supprimant la hauteur fixe */
    aspect-ratio: 16 / 9; 

    /* Ombre subtile pour l'effet de carte */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

/* Effet de zoom sur l'ombre */
.gallery-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Style de l'image - Conserve le bon cadrage */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Transition plus douce */
}

/* Zoom de l'image au survol */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Overlay - Teinte plus subtile au survol */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 16, 28, 0.4); /* Plus transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

/* Apparition de l'overlay */
.gallery-item:hover .overlay {
    opacity: 1;
}

/* Texte de l'overlay - Plus fin et élégant */
.overlay h3 {
    color: #ffffff;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Améliore la lisibilité */
}

/* Responsive - Réglage pour les tablettes */
@media (max-width: 1024px) {
    .gallery-grid {
        gap: 20px;
    }
}

/* Responsive - Réglage pour les mobiles */
@media (max-width: 600px) {
    .gallery {
        padding: 60px 15px;
    }
    
    .gallery h2 {
        font-size: 2rem;
    }
    
    .section-desc {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr; /* Une seule colonne */
        margin-top: 30px;
    }
}














.quick-benefits { 
    display: flex; 
    justify-content: space-around; 
    background: #09101c; 
    padding: 30px 20px; 
    color: #fff;
    flex-wrap: wrap;
    gap: 20px;
}

.benefit-item { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    font-size: 18px;
}

.benefit-item i { 
    color: #d4af37; 
    font-size: 24px; 
}

.benefit-item strong { color: #d4af37; }

/* Responsive */
@media (max-width: 768px) {
    .quick-benefits { flex-direction: column; align-items: flex-start; padding: 30px 50px; }
}






.footer { 
    background: #09101c; 
    color: #fff; 
    padding: 60px 20px 20px; 
    border-top: 2px solid #d4af37;
   
}

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

.footer-logo { width: 120px; margin-bottom: 20px; }
.footer-col h3 { color: #d4af37; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: #d4af37; }

.social-links { margin-top: 20px; display: flex; gap: 15px; }
.social-links a { 
    width: 40px; height: 40px; 
    background: #1a2a40; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; color: #fff; text-decoration: none;
}
.social-links a:hover { background: #d4af37; color: #111; }

.footer-bottom { 
    text-align: center; 
    margin-top: 50px; 
    padding-top: 20px; 
    border-top: 1px solid #1a2a40; 
    font-size: 14px; 
    color: #666; 
}


/* --- BANNIERE AMÉLIORÉE --- */
.page-banner {
    position: relative;
    background: linear-gradient(90deg, #010b18 0%, #02132b 100%); /* Blue gradient from header */
    border-bottom: 3px solid var(--primary-gold);
    padding: 120px 20px; /* Adjust as needed for desired height */
    text-align: center;
    color: #fff;
    margin-top: -8px; /* Ajustement si nécessaire par rapport au header */
}

.page-banner h1 {
    margin: 0;
    color: var(--primary-gold);
    font-size: 42px;
    font-family: var(--title-font);
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* --- MISE EN PAGE PRINCIPALE --- */
.page-container {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 40px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-content {
    flex: 2.5; /* Content takes more space */
    color: var(--content-text-color);
    font-family: var(--text-font);
    font-size: 16px;
    line-height: 1.6;
}

.page-content b {
    color: var(--dark-bg);
}

.page-content ul {
    margin-top: 10px;
    padding-left: 20px;
}

.page-content li {
    margin-bottom: 8px;
}

.sidebar {
    flex: 1; /* Sidebar takes less space */
    min-width: 300px;
}

/* --- WIDGETS --- */
.widget {
    background: #ffffff; /* White background for widgets to pop, or light-dark for integration */
    background: var(--light-dark); /* Using light-dark for better integration with your theme */
    border: 1px solid var(--primary-gold);
    border-radius: 8px; /* More rounded */
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.widget-title {
    background: var(--dark-bg);
    color: var(--primary-gold);
    text-align: center;
    padding: 18px;
    font-weight: bold;
    font-family: var(--title-font);
    text-transform: uppercase;
    font-size: 18px;
    border-bottom: 1px solid var(--primary-gold);
}

.widget-body {
    padding: 25px;
    color: #fff; /* White text for dark widget body */
}

/* --- FORMULAIRE RÉSERVATION RAPIDE --- */
.quick-booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-booking-form input,
.quick-booking-form select {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    background: #fdfdfd;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333;
    font-family: var(--text-font);
    font-size: 14px;
}

.quick-booking-form input:focus,
.quick-booking-form select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 5px rgba(202, 162, 76, 0.5);
}

.form-group-row {
    display: flex;
    gap: 10px;
}

.form-group-row input,
.form-group-row select {
    flex: 1;
}

.booking-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-gold);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: var(--title-font);
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.booking-btn:hover {
    background-color: var(--secondary-gold);
}

/* --- LISTE DES SERVICES ASSOCIÉS --- */
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    color: #fff;
    padding: 12px 15px;
    border-bottom: 1px solid #1a2a40;
    transition: background-color 0.2s;
    font-family: var(--text-font);
}

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

.services-list li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-list li a:hover {
    color: var(--primary-gold);
}

.services-list li a .arrow-icon {
    font-size: 1.2em;
    color: var(--primary-gold);
}

/* --- RESPONSIVITÉ --- */
@media(max-width:991px) {
    .page-container {
        flex-direction: column;
        gap: 30px;
    }
    .sidebar {
        min-width: unset;
    }
    .page-banner h1 {
        font-size: 32px;
    }
}