/* --- RESET & BASES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    height: auto; /* Force la hauteur à s'adapter au contenu */
}
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Bloque le scroll horizontal seulement */
    min-height: 100vh;  /* S'assure que le body fait au moins la taille de l'écran */
    height: auto;       /* Laisse le body s'étirer vers le bas */
}
/* --- PRELOADER ÉLITE : MÉDITERRANÉE & LEVER DE SOLEIL --- */

#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Utilisation du bleu marine profond exact */
    background: #0a1e38 linear-gradient(135deg, #0a1e38 0%, #153152 100%);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease;
}
.preloader-content {
    text-align: center;
    position: relative;
    width: 100%;
}
.logo-reveal-container {
    position: relative;
    display: inline-block;
    overflow: hidden; 
    margin-bottom: 20px;
    padding: 10px; /* Espace pour ne pas couper le drop-shadow */
}
.pulsating-logo {
    width: 280px;
    height: auto;
    opacity: 0;
    /* On commence flou et sombre pour l'effet lever de soleil */
    filter: blur(10px) brightness(0.5);
    /* Animation de révélation */
    animation: logo-sunrise 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.8s;
}
@keyframes logo-sunrise {
    0% { opacity: 0; filter: blur(10px) brightness(0.5); transform: scale(0.98); }
    100% { opacity: 1; filter: blur(0px) brightness(1.2) drop-shadow(0 0 25px rgba(212, 175, 55, 0.4)); transform: scale(1); }
}
/* La ligne dorée "Horizon" qui scanne et révèle le logo */

.reveal-scanner {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    box-shadow: 0 0 15px #d4af37;
    z-index: 5;
    /* Animation de scan de bas en haut */
    animation: sunrise-scan 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes sunrise-scan {
    0% { bottom: -5%; opacity: 0; width: 0%; left: 50%; }
    20% { opacity: 1; width: 100%; left: 0; }
    100% { bottom: 105%; opacity: 0; }
}
/* L'effet Shine qui fait briller l'écriture "THANIA" */

.preloader-content::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 80%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-25deg);
    animation: shine-effect 4s infinite;
    animation-delay: 3s; /* Commence après le lever de soleil */
}
@keyframes shine-effect {
    0% { left: -100%; }
    30% { left: 200%; }
    100% { left: 200%; }
}
.loader-text {
    color: #d4af37;
    font-size: 10px;
    letter-spacing: 7px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 25px;
    opacity: 0;
    animation: text-fade-in 1.2s ease-out forwards;
    animation-delay: 2.8s;
}
@keyframes text-fade-in {
    to { opacity: 0.8; }
}
/* --- HERO SLIDER (Plein Écran PC) --- */
.hero-slider {

    position: relative;

    height: 100vh; /* Toute la hauteur de l'écran */

    width: 100%;

    overflow: hidden;

    background: #000;

}
.slides {
    position: relative;
    width: 100%;
    height: 100%;

}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.slide.active {
    opacity: 1;
}
/* Overlay sombre pour faire ressortir le texte blanc sur tes photos */
.slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;

}
.hero-content p {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;

}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-style: italic; /* Garde l'italique pour le côté accueillant */
    font-weight: 400;
    font-size: 45px; /* Plus petit pour faire moins "Grand Hôtel" */
    color: white;
    line-height: 1.2;
}
.btn-outline {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s;
}
.btn-outline:hover {
    background: white;
    color: #1a1a1a;
}
/* --- ACTIONS GAUCHE (Réserver / Tel) --- */
.side-actions {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.btn-reserve {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    padding: 30px 15px;
    text-decoration: none;
    color: #c9a050; /* Or Thania */
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 160, 80, 0.3);
    transition: 0.3s;
}
.btn-reserve:hover {
    background: #c9a050;
    color: white;
}
.btn-phone {
    margin-top: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
.btn-phone:hover {
    background: white;
    color: #1a1a1a;
}
/* --- NUMÉROS DROITE --- */
.slider-numbers {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 100;
    color: white;
}
.slider-numbers span {
    cursor: pointer;
    font-size: 16px;
    opacity: 0.4;
    transition: 0.3s;
    text-align: right;
}
.slider-numbers span.active {
    opacity: 1;
    font-weight: 700;
    border-right: 3px solid #c9a050;
    padding-right: 15px;
}
/* --- FLÈCHES BAS --- */
.slider-arrows {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 100;
}
.slider-arrows button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.slider-arrows button:hover {
    background: white;
    color: black;
}

/* --- QUICK CHECK (Accueil) --- */
.booking-section-container {
    padding: 80px 0;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
}
.booking-container {
    background: white;
    padding: 30px;
    display: grid;

    /* MODIFICATION ICI : 

       Arrivée (1fr), Départ (1fr), Chambre (1.2fr), 

       Adultes (70px), Enfants (70px), 

       Bouton (1.2fr) -> Le bouton sera bien large */
    grid-template-columns: 1fr 1fr 1.2fr 70px 70px 1.2fr; 
    gap: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    width: 95%;
    max-width: 1300px;
    margin-top: -80px;
    position: relative;
    z-index: 200;
    align-items: end;
}
/* On centre le texte pour les petites cases Adultes/Enfants */
.input-group input[type="number"] {
    text-align: center;
    padding: 12px 5px !important;
}
.input-group label {
    font-size: 10px;
    font-weight: 700;
    color: #c9a050; /* Doré Thania pour les labels */
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.input-group input, .input-group select {
    width: 100%;
    border: 1px solid #eee;
    padding: 12px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    font-size: 13px;
    color: #333;
    background: #fff;
}

/* Style spécifique pour les inputs date (plus propre sur Chrome) */
input[type="date"] {
    text-transform: uppercase;
    font-size: 11px;
}
.btn-check {
    height: 45px;
    background: #1a1a1a;
    color: white;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}
.btn-check:hover {
    background: #c9a050;
}
/* Responsive : On passe en 2 colonnes sur tablette/mobile */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr 1fr;
        margin-top: 20px;
    }
    .btn-check { grid-column: span 2; }
}
/* --- TYPOGRAPHIE EL AURASSI --- */
.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c9a050; /* Couleur dorée de la capture */
    margin-bottom: 15px;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-style: italic; /* Important pour le look El Aurassi */
    font-weight: 400;
    font-size: clamp(45px, 7vw, 80px);
    color: white;
    letter-spacing: 2px;
}
.hero-content h1 i {
    font-style: italic;
    font-family: 'Playfair Display', serif;
}
/* --- SECTION TEXTE (Sous le slider) --- */
.intro-text {
    text-align: center;
    padding: 80px 20px;
    background: white;
}
.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #c9a050;
    font-size: 32px; /* Plus doux */
    margin-bottom: 20px;
}
.intro-text  {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* Un peu plus épais pour être plus lisible */
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
.hero-logo {
    display: block;
    margin: 0 auto 25px auto; /* Centre le logo et ajoute de l'espace en bas */
    width: 250px;             /* Taille plus imposante pour un look "Elite" */
    height: auto;
    min-height: 50px;         /* Sécurité pour le rendu SVG */
    /* Filtre pour rendre le logo blanc pur et brillant (si ton SVG original est noir) */
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;

}
.hero-logo:hover {
    transform: scale(1.05); /* Petit effet au survol */
}

/* --- SECTION CHAMBRES REVISITÉE --- */
.premium-rooms-section {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

/* Header de section avec animation de ligne */
.header-gold {
    text-align: center;
    margin-bottom: 80px;
}

.header-gold .subtitle {
    color: var(--gold);
    letter-spacing: 6px;
    font-size: 12px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.header-gold .title-main {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(32px, 5vw, 48px);
    color: var(--marine-dark);
}

.gold-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
    position: relative;
}

/* Grille et Cartes */
.rooms-wow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.room-wow-card {
    position: relative;
    height: 550px;
    overflow: hidden;
    cursor: pointer;
    background: #fcfcfc;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.room-wow-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-wow-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease, filter 0.8s ease;
}

/* Effet de fondu noir sur l'image */
.room-wow-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
    opacity: 0.8;
}

/* Overlay & Contenu */
.room-wow-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 5;
    color: white;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.room-cat {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
}

.room-wow-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-style: italic;
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    gap: 20px;
    font-size: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.1s;
}

.room-price {
    display: block;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 300;
}

.room-price b { color: var(--gold); font-size: 24px; }

/* Hover Effects */
.room-wow-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
.room-wow-card:hover img { transform: scale(1.1); }
.room-wow-card:hover .room-wow-details { transform: translateY(0); }
.room-wow-card:hover .room-features { opacity: 1; transform: translateY(0); }

/* Badges Status */
.badge-status {
    position: absolute;
    top: 20px; left: 20px;
    z-index: 10;
    padding: 8px 15px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
}
.badge-complet { background: #e74c3c; }
.badge-indispo { background: #555; }
/* ===============================
    SECTION SERVICES (STYLE VOILA.PNG)
    Prêt à coller - Thème Blanc & Or
================================= */
/* --- SECTION SERVICES DYNAMIQUE --- */
.services-section {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Background décoratif discret */
.services-section::after {
    content: 'PREMIUM';
    position: absolute;
    bottom: -50px;
    right: -20px;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(201, 160, 80, 0.03);
    z-index: 0;
    pointer-events: none;
}

/* Grille avec perspective */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 1;
}

/* Card Elite : Le Crochet Doré devient Interactif */
.service-card-premium {
    background: #fff;
    border-left: 3px solid #c9a050;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.service-card-premium:hover {
    transform: translateY(-15px) translateX(5px);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-left-width: 8px; /* Le crochet s'épaissit au survol */
}

/* L'icône qui "pop" */
.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(201, 160, 80, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

.icon-box i {
    font-size: 32px;
    color: #c9a050;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-premium:hover .icon-box {
    background: #c9a050;
}

.service-card-premium:hover .icon-box i {
    color: #fff;
    transform: scale(1.2) rotate(10deg);
}

/* Typographie & Listes */
.service-card-premium h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.service-card-premium ul li {
    list-style: none;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: 0.3s;
}

.service-card-premium:hover ul li {
    opacity: 1;
    color: #333;
}

.service-card-premium ul li i {
    color: #c9a050;
    margin-right: 15px;
    font-size: 12px;
    width: 20px;
}

/* Bouton Galerie "Glass" */
.btn-view-gallery {
    margin-top: 30px;
    background: transparent;
    border: 1px solid rgba(201, 160, 80, 0.3);
    color: #c9a050;
    padding: 12px 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.btn-view-gallery::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 160, 80, 0.2), transparent);
    transition: 0.5s;
}

.btn-view-gallery:hover {
    border-color: #c9a050;
    letter-spacing: 3px;
}

.btn-view-gallery:hover::before {
    left: 100%;
}
/* --- SECTION CARTE PREMIUM --- */
.hotel-map-section {
    padding: 100px 0;
    background: #fff;
}

.map-wrapper-premium {
    position: relative;
    height: 600px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

/* Effet visuel sur la carte */
#map-thania {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(92%) contrast(83%); /* Look minimaliste luxe */
    transition: all 0.8s ease;
}

.map-wrapper-premium:hover #map-thania {
    filter: grayscale(30%) invert(0%) contrast(100%); /* Reprend des couleurs au survol */
}

/* Cartes flottantes POI (Points d'Intérêt) */
.map-info-cards {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.poi-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    display: flex;
    align-items: center;
   gap: 12px;;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 3px solid var(--gold);
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInMap 0.6s forwards;
}

.poi-item:nth-child(2) { animation-delay: 0.2s; }
.poi-item:nth-child(3) { animation-delay: 0.4s; }

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

.poi-icon-img {
    width: 34px;
    height: 34px;
    object-fit: contain;

    /* rendu propre */
    background: white;
    padding: 6px;
    border-radius: 10px;

    /* effet luxe */
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

.poi-item:hover .poi-icon-img {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* Le Pin Central "Signature" */
.custom-marker {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border: 5px solid white;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 10px 20px rgba(201, 160, 80, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-marker i { transform: rotate(45deg); color: white; }



/* =========================================
   SECTION DESCRIPTION (STYLE ÉLITE)
   ========================================= */
.hotel-description-section {
    background: #ffffff;
    padding: 120px 0;
    font-family: 'Montserrat', sans-serif;
}

.description-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.desc-text-side { flex: 1.2; min-width: 350px; }
.desc-highlights-side { flex: 0.8; min-width: 300px; display: grid; gap: 30px; }

.gold-badge {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.desc-text-side h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--marine-dark);
    line-height: 1.1;
    margin-bottom: 30px;
}

.main-p {
    font-size: 16px;
    line-height: 2;
    color: #777;
    margin-bottom: 40px;
}

/* Cartes d'atouts avec crochet doré */
.highlight-card {
    padding-left: 30px;
    border-left: 2px solid var(--gold);
    transition: all 0.4s ease;
}

.highlight-card:hover {
    transform: translateX(10px);
    background: rgba(201, 160, 80, 0.03);
}

.highlight-card i { color: var(--gold); font-size: 20px; margin-bottom: 10px; display: block; }
.highlight-card h4 { font-size: 18px; color: var(--marine-dark); margin-bottom: 8px; }
.highlight-card p { font-size: 14px; color: #999; line-height: 1.6; }

/* =========================================
   BOUTONS ET FORMULAIRES (DESIGN FINAL)
   ========================================= */
.btn-confirm-booking {
    background: var(--gold);
    color: white;
    border: none;
    padding: 18px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(201, 160, 80, 0.2);
}

.btn-confirm-booking:hover {
    background: var(--marine-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 30, 56, 0.3);
}

/* Notice d'alerte élégante */
.booking-notice {
    background: #fff5f5;
    color: #c0392b;
    padding: 15px 25px;
    border: 1px solid rgba(192, 57, 43, 0.1);
    font-size: 13px;
    margin-top: 20px;
    display: inline-block;
    border-left: 4px solid #c0392b;
}

/* Inputs épurés */
.booking-container input, 
.booking-container select {
    border: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    font-weight: 500;
}

.booking-container input:focus {
    border-bottom-color: var(--gold) !important;
}
/* ============================================================
   CSS ADDITIONNEL — HÔTEL THANIA
   Coller à la fin de style.css
   ============================================================ */

:root {
    --gold: #c9a050;
    --gold-light: #e8c97a;
    --gold-dark: #9a7530;
    --dark: #0d0d0d;
    --dark-2: #1a1a1a;
    --marine-dark: #0a1e38;
    --gray-soft: #f7f5f0;
    --text-muted: #888;
}

/* ─── SECTION HEADER PARTAGÉ ──────────────────────────────── */
.section-header-ultra {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    justify-content: center;
}
.header-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
    max-width: 200px;
}
.header-line:last-child { background: linear-gradient(to left, transparent, var(--gold)); }
.header-text-block { flex: none; text-align: center; }
.section-eyebrow {
    display: block;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 6px;
    font-weight: 700;
    margin-bottom: 12px;
}
.section-mega-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--dark-2);
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
}
.section-mega-title em { font-style: italic; color: var(--gold); }

/* ─── SECTION CHAMBRES ────────────────────────────────────── */
.ultra-rooms-section {
    padding: 140px 0;
    background: var(--gray-soft);
    position: relative;
    overflow: hidden;
}
.rooms-bg-deco {
    position: absolute;
    bottom: -60px;
    right: -40px;
    pointer-events: none;
    z-index: 0;
}
.deco-word {
    font-size: 18vw;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: rgba(201,160,80,0.04);
    letter-spacing: -5px;
    white-space: nowrap;
}
.ultra-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Card */
.ultra-room-card {
    background: white;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
    border-bottom: 3px solid transparent;
}
.ultra-room-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    border-bottom-color: var(--gold);
}

/* Slider intégré */
.room-slider-wrap { position: relative; height: 420px; overflow: hidden; }
.room-slider-wrap .swiper { height: 100%; }
.room-slider-wrap .swiper-slide img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 8s ease;
}
.ultra-room-card:hover .swiper-slide-active img { transform: scale(1.08); }
.room-overlay-gradient {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
}
.room-slider-wrap .swiper-pagination { bottom: 15px; z-index: 10; }
.room-slider-wrap .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5); opacity: 1;
    width: 6px; height: 6px; border-radius: 3px;
    transition: width 0.3s, background 0.3s;
}
.room-slider-wrap .swiper-pagination-bullet-active {
    background: var(--gold); width: 20px;
}

/* Badges */
.ultra-badge {
    position: absolute; top: 20px; left: 20px; z-index: 10;
    padding: 6px 14px; font-size: 9px; font-weight: 800;
    letter-spacing: 3px; color: white;
}
.badge-dispo   { background: rgba(0,0,0,0.5); border: 1px solid rgba(201,160,80,0.5); }
.badge-complet { background: #c0392b; }
.badge-indispo { background: #555; }

.room-number-deco {
    position: absolute; bottom: 20px; right: 20px; z-index: 10;
    font-size: 11px; font-weight: 800; letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
}
.room-hover-cta {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 10; background: var(--gold); color: white;
    padding: 12px 24px; display: flex; align-items: center;
    gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 2px;
    opacity: 0; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none; white-space: nowrap;
}
.ultra-room-card:hover .room-hover-cta {
    opacity: 1; transform: translate(-50%, -50%) scale(1);
}

/* Infos */
.ultra-room-info { padding: 28px 30px 20px; background: white; }
.room-info-top {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 12px;
}
.room-category-tag { font-size: 10px; letter-spacing: 3px; color: var(--gold); font-weight: 600; text-transform: uppercase; }
.room-rating { color: var(--gold); font-size: 12px; letter-spacing: 2px; }
.room-title-ultra {
    font-family: 'Playfair Display', serif;
    font-size: 22px; color: var(--dark-2); margin: 0 0 20px; letter-spacing: 1px;
}
.room-features-ultra { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.feature-pill {
    display: flex; align-items: center; gap: 6px;
    background: var(--gray-soft); border: 1px solid #eeece8;
    padding: 5px 12px; font-size: 11px; color: #666;
    transition: all 0.3s;
}
.feature-pill svg { color: var(--gold); }
.ultra-room-card:hover .feature-pill {
    background: rgba(201,160,80,0.06); border-color: rgba(201,160,80,0.3);
}
.room-price-row {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 20px; border-top: 1px solid #f0ede8;
}
.price-block { display: flex; align-items: baseline; gap: 5px; }
.price-from  { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; }
.price-amount { font-size: 26px; font-weight: 700; color: var(--dark-2); font-family: 'Playfair Display', serif; }
.price-night { font-size: 11px; color: var(--text-muted); }
.btn-book-room {
    background: var(--dark-2); color: white; border: none;
    padding: 11px 22px; font-size: 11px; font-weight: 700;
    letter-spacing: 2px; cursor: pointer;
    display: flex; align-items: center; gap: 8px; transition: all 0.3s;
}
.btn-book-room:hover { background: var(--gold); }
.btn-disabled { background: #ccc !important; cursor: not-allowed; }
.room-progress-bar { height: 3px; background: #f0ede8; overflow: hidden; }
.room-progress-fill {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    animation: fillProgress 3s ease-in-out infinite alternate;
}
@keyframes fillProgress { from { width: 0%; } to { width: 75%; } }

/* CTA global */
.rooms-global-cta {
    display: flex; align-items: center; gap: 40px;
    margin-top: 70px; max-width: 700px;
    margin-left: auto; margin-right: auto;
}
.cta-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, #ddd); }
.cta-line:last-child { background: linear-gradient(90deg, #ddd, transparent); }
.btn-all-rooms {
    white-space: nowrap; background: transparent;
    border: 1px solid var(--gold); color: var(--gold);
    padding: 14px 30px; font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-decoration: none;
    display: flex; align-items: center; gap: 10px; transition: all 0.4s;
}
.btn-all-rooms:hover { background: var(--gold); color: white; letter-spacing: 4px; }

/* ─── MODALE CHAMBRE ──────────────────────────────────────── */
.ultra-room-modal {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.9);
    align-items: center; justify-content: center; padding: 20px;
}
.ultra-room-modal.is-open { display: flex; }
.modal-inner {
    background: white; width: 100%; max-width: 1000px;
    max-height: 90vh; overflow-y: auto; position: relative;
    display: grid; grid-template-columns: 1fr 1fr;
    animation: modalSlideIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.9) translateY(30px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close-btn {
    position: absolute; top: 15px; right: 15px; z-index: 20;
    background: rgba(0,0,0,0.7); color: white; border: none;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.3s;
}
.modal-close-btn:hover { background: var(--gold); }
.modal-swiper-wrap { height: 100%; min-height: 500px; position: relative; }
.modal-swiper, .modal-swiper .swiper-slide,
.modal-swiper .swiper-slide img {
    width: 100%; height: 100%; object-fit: cover;
}
.modal-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
}
.modal-swiper-next, .modal-swiper-prev {
    color: white !important;
    background: rgba(201,160,80,0.8) !important;
    width: 40px !important; height: 40px !important;
    border-radius: 50% !important;
}
.modal-swiper-next:after, .modal-swiper-prev:after {
    font-size: 14px !important; font-weight: 900 !important;
}
.modal-content-panel {
    padding: 50px 40px;
    display: flex; flex-direction: column; justify-content: space-between;
    background: white;
}
.modal-eyebrow {
    display: block; font-size: 10px; letter-spacing: 4px;
    color: var(--gold); font-weight: 700; margin-bottom: 10px;
}
.modal-room-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px; color: var(--dark-2); margin: 0 0 8px; line-height: 1.1;
}
.modal-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; }
.modal-features-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 15px; margin-bottom: 35px; margin-top: 25px;
}
.modal-feat {
    display: flex; align-items: center; gap: 12px;
    padding: 12px; background: var(--gray-soft);
    border-left: 2px solid var(--gold);
}
.modal-feat span { font-size: 20px; }
.modal-feat strong { display: block; font-size: 12px; font-weight: 700; color: var(--dark-2); }
.modal-feat small  { font-size: 11px; color: var(--text-muted); }
.modal-price-action { border-top: 1px solid #f0ede8; padding-top: 25px; }
.modal-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.mp-from   { font-size: 11px; color: var(--text-muted); }
.mp-amount { font-size: 36px; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--dark-2); }
.mp-night  { font-size: 12px; color: var(--text-muted); }
.btn-modal-book {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; width: 100%; background: var(--gold); color: white;
    padding: 16px; font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-decoration: none; transition: all 0.3s;
}
.btn-modal-book:hover { background: var(--dark-2); letter-spacing: 4px; }
.modal-indispo-notice {
    background: #f8f8f8; border: 1px solid #ddd;
    padding: 15px; font-size: 13px; color: #999; text-align: center;
}
@media (max-width: 768px) {
    .modal-inner { grid-template-columns: 1fr; }
    .modal-swiper-wrap { min-height: 280px; }
    .modal-content-panel { padding: 30px 25px; }
}

/* ─── SECTION SERVICES ────────────────────────────────────── */
.services-ultra-section {
    padding: 140px 0; background: white;
    position: relative; overflow: hidden;
}
.services-bg-text {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16vw; font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: rgba(201,160,80,0.03);
    pointer-events: none; white-space: nowrap;
}
.services-ultra-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px; max-width: 1300px; margin: 0 auto;
    padding: 0 20px; position: relative; z-index: 1;
}
.service-ultra-card {
    background: white; border: 1px solid #f0ede8;
    cursor: pointer; position: relative; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.service-ultra-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,160,80,0.03), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.service-ultra-card:hover::before { opacity: 1; }
.service-ultra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
    border-color: rgba(201,160,80,0.3);
}
.featured-card {
    border-color: rgba(201,160,80,0.4);
    background: linear-gradient(to bottom right, white, rgba(201,160,80,0.02));
}
.service-card-visual {
    background: var(--dark-2); padding: 40px;
    position: relative; display: flex;
    align-items: flex-start; justify-content: space-between;
    overflow: hidden; min-height: 140px;
}
.service-card-visual::after {
    content: ''; position: absolute; bottom: -30px; right: -30px;
    width: 120px; height: 120px; border-radius: 50%;
    border: 1px solid rgba(201,160,80,0.15);
}
.service-card-visual::before {
    content: ''; position: absolute; bottom: -50px; right: -50px;
    width: 180px; height: 180px; border-radius: 50%;
    border: 1px solid rgba(201,160,80,0.08);
}
.service-icon-ring {
    width: 60px; height: 60px; border: 1px solid rgba(201,160,80,0.4);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: var(--gold); transition: all 0.4s;
}
.service-ultra-card:hover .service-icon-ring {
    background: var(--gold); color: white;
    border-color: var(--gold); transform: rotate(10deg) scale(1.1);
}
.service-number {
    font-size: 48px; font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: rgba(255,255,255,0.06); line-height: 1;
    position: relative; z-index: 1;
}
.featured-badge {
    position: absolute; top: 15px; right: 15px;
    background: var(--gold); color: white;
    font-size: 9px; font-weight: 800; letter-spacing: 2px; padding: 4px 10px;
}
.service-card-body { padding: 35px; }
.service-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px; letter-spacing: 1px;
    color: var(--dark-2); margin-bottom: 12px; font-weight: 700;
}
.service-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.service-list { list-style: none; padding: 0; margin: 0 0 28px; }
.service-list li {
    display: flex; align-items: center; gap: 12px;
    padding: 8px 0; font-size: 13px; color: #555;
    border-bottom: 1px solid #f7f5f0; transition: color 0.3s;
}
.service-ultra-card:hover .service-list li { color: #333; }
.dot-gold {
    width: 6px; height: 6px; background: var(--gold);
    border-radius: 50%; flex-shrink: 0;
}
.service-cta-row {
    display: flex; align-items: center; justify-content: space-between;
}
.service-cta-text {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    color: var(--gold); text-transform: uppercase;
}
.service-cta-arrow {
    width: 36px; height: 36px;
    border: 1px solid rgba(201,160,80,0.3);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: var(--gold); transition: all 0.3s;
}
.service-ultra-card:hover .service-cta-arrow {
    background: var(--gold); color: white; transform: translateX(5px);
}
.service-hover-line {
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: scaleX(0); transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: left;
}
.service-ultra-card:hover .service-hover-line { transform: scaleX(1); }

/* ─── MODALE SERVICES ─────────────────────────────────────── */
.service-ultra-modal {
    display: none; position: fixed; inset: 0; z-index: 9999;
    align-items: flex-end; justify-content: center;
}
.service-ultra-modal.is-open { display: flex; }
.service-modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
    animation: backdropIn 0.4s ease;
}
@keyframes backdropIn { from { opacity: 0; } to { opacity: 1; } }
.service-modal-panel {
    position: relative; z-index: 1; background: white;
    width: 100%; max-width: 900px; max-height: 90vh;
    overflow-y: auto; padding: 50px; margin: 20px;
    animation: panelSlideUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes panelSlideUp {
    from { opacity: 0; transform: translateY(60px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.service-modal-close {
    position: absolute; top: 20px; right: 20px;
    background: var(--dark-2); color: white; border: none;
    width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s; z-index: 10;
}
.service-modal-close:hover { background: var(--gold); }
.smodal-header {
    display: flex; align-items: flex-start; gap: 25px;
    margin-bottom: 40px; padding-bottom: 30px;
    border-bottom: 1px solid #f0ede8;
}
.smodal-icon-big {
    font-size: 48px; flex-shrink: 0;
    width: 80px; height: 80px; background: var(--gray-soft);
    border: 1px solid rgba(201,160,80,0.2);
    display: flex; align-items: center; justify-content: center;
}
.smodal-eyebrow {
    display: block; font-size: 10px; letter-spacing: 4px;
    color: var(--gold); font-weight: 700; margin-bottom: 8px;
}
.smodal-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px; color: var(--dark-2); margin: 0 0 10px; font-style: italic;
}
.smodal-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }
.smodal-big-img-wrap {
    position: relative; height: 380px; overflow: hidden;
    margin-bottom: 15px; background: var(--dark-2);
}
.smodal-big-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.smodal-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
    pointer-events: none;
}
.smodal-img-caption { position: absolute; bottom: 20px; left: 25px; z-index: 5; }
.smodal-caption-tag {
    display: inline-block; background: var(--gold); color: white;
    font-size: 9px; font-weight: 700; letter-spacing: 2px;
    padding: 4px 10px; margin-bottom: 8px;
}
.smodal-caption-text {
    display: block; color: white; font-size: 18px;
    font-family: 'Playfair Display', serif; font-style: italic;
}
.smodal-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    background: rgba(0,0,0,0.5); color: white; border: none;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.3s;
}
.smodal-nav:hover { background: var(--gold); }
.smodal-nav-prev { left: 15px; }
.smodal-nav-next { right: 15px; }
.smodal-thumbs { display: flex; gap: 10px; }
.smodal-thumb {
    flex: 1; height: 80px; object-fit: cover; cursor: pointer;
    opacity: 0.5; transition: all 0.3s; border-bottom: 2px solid transparent;
}
.smodal-thumb.active, .smodal-thumb:hover { opacity: 1; border-bottom-color: var(--gold); }
.smodal-dots { display: flex; justify-content: center; gap: 8px; margin: 20px 0 30px; }
.smodal-dot {
    width: 8px; height: 8px; background: #ddd;
    border-radius: 50%; cursor: pointer; transition: all 0.3s;
}
.smodal-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.smodal-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 25px; border-top: 1px solid #f0ede8; gap: 20px; flex-wrap: wrap;
}
.smodal-footer-stats { display: flex; align-items: center; gap: 25px; }
.stat-num  { display: block; font-size: 20px; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--dark-2); }
.stat-label { display: block; font-size: 10px; letter-spacing: 2px; color: var(--text-muted); font-weight: 600; }
.smodal-stat-divider { width: 1px; height: 40px; background: #f0ede8; }
.smodal-cta-btn {
    background: var(--dark-2); color: white; text-decoration: none;
    padding: 15px 35px; font-size: 11px; font-weight: 700;
    letter-spacing: 3px; display: flex; align-items: center;
    gap: 10px; transition: all 0.3s; white-space: nowrap;
}
.smodal-cta-btn:hover { background: var(--gold); letter-spacing: 4px; }

@media (max-width: 768px) {
    .service-modal-panel { padding: 30px 20px; }
    .smodal-big-img-wrap { height: 250px; }
    .smodal-footer { flex-direction: column; }
    .smodal-cta-btn { width: 100%; justify-content: center; }
    .ultra-rooms-grid { grid-template-columns: 1fr; }
    .services-ultra-grid { grid-template-columns: 1fr; }
}
/* =========================================
   CONTACT SECTION — VERSION LUXE
========================================= */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(160deg, #faf8f3 0%, #f0ebe0 100%);
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(201,160,80,0.12);
    pointer-events: none;
}
.contact-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(201,160,80,0.08);
    pointer-events: none;
}
.contact-wrapper {
    max-width: 860px;
    margin: auto;
    position: relative;
}
.contact-box {
    background: #fff9f0;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 20px 60px rgba(0,0,0,0.07);
    overflow: hidden;
}
.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #e8c470, #c9a050, #a07830);
}
.contact-box::after {
    content: 'THANIA';
    position: absolute;
    bottom: -30px;
    right: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 600;
    color: rgba(201,160,80,0.04);
    letter-spacing: 10px;
    pointer-events: none;
    user-select: none;
}
.contact-box-inner {
    padding: 60px 60px 60px 68px;
}
.contact-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.contact-eyebrow-line {
    width: 28px;
    height: 1px;
    background: #c9a050;
    display: inline-block;
}
.contact-eyebrow-text {
    color: #c9a050;
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 5px;
    font-weight: 400;
    text-transform: uppercase;
}
.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    line-height: 1.15;
    color: #1a1209;
    margin-bottom: 6px;
    font-weight: 400;
}
.contact-title em {
    color: #c9a050;
    font-style: italic;
}
.contact-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: #b8a280;
    margin-bottom: 6px;
    font-weight: 300;
}
.contact-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #c9a050, transparent);
    margin: 20px 0 28px;
}
.contact-intro {
    color: #6b5e4a;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 44px;
    font-weight: 300;
    max-width: 520px;
    font-family: 'Cormorant Garamond', serif;
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(201,160,80,0.1);
    position: relative;
    transition: all 0.3s;
    text-decoration: none;
}
.contact-item:last-child {
    border-bottom: none;
}
.contact-item-icon-wrap {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(201,160,80,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    position: relative;
}
.contact-item-icon-wrap::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid transparent;
    transition: all 0.3s;
}
.contact-item:hover .contact-item-icon-wrap {
    border-color: #c9a050;
    background: rgba(201,160,80,0.05);
}
.contact-item:hover .contact-item-icon-wrap::before {
    border-color: rgba(201,160,80,0.2);
}
.contact-item i {
    font-size: 16px;
    color: #c9a050;
    transition: transform 0.3s;
}
.contact-item:hover i {
    transform: scale(1.15);
}
.contact-item-label {
    font-size: 10px;
    letter-spacing: 3px;
    color: #b8a280;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
}
.contact-item-value {
    font-size: 15px;
    color: #1a1209;
    line-height: 1.6;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    transition: color 0.3s;
}
a.contact-item:hover .contact-item-value {
    color: #c9a050;
}
.contact-item-arrow {
    margin-left: auto;
    font-size: 16px;
    color: rgba(201,160,80,0.3);
    transition: all 0.3s;
    align-self: center;
}
a.contact-item:hover .contact-item-arrow {
    color: #c9a050;
    transform: translateX(3px);
}
.contact-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid rgba(201,160,80,0.12);
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 36px;
    background: transparent;
    border: 1px solid #c9a050;
    color: #c9a050;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #c9a050;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.contact-btn:hover::before {
    transform: scaleX(1);
}
.contact-btn span,
.contact-btn i {
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}
.contact-btn:hover span,
.contact-btn:hover i {
    color: white;
}
.contact-btn i {
    font-size: 14px;
    transition: all 0.4s;
}
.contact-btn:hover i {
    transform: rotate(-45deg);
}
.contact-hours {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: #b8a280;
    letter-spacing: 1px;
    font-style: italic;
}
 
/* Responsive */
@media (max-width: 620px) {
    .contact-box-inner {
        padding: 40px 30px 40px 36px;
    }
    .contact-title {
        font-size: 30px;
    }
    .contact-footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
/* ── OVERLAY MODALE CHAMBRE ──────────────────────────────────── */
.ultra-room-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 5, 5, 0.92);
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
}
.ultra-room-modal.is-open {
    display: flex;
}
 
/* ── INNER V2 ─────────────────────────────────────────────────── */
.modal-inner-v2 {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 1050px;
    max-height: calc(100vh - 32px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    overflow: hidden;
    animation: mv2In 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin: auto;
}
@keyframes mv2In {
    from { opacity: 0; transform: scale(0.93) translateY(24px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
 
/* ── CLOSE BTN ───────────────────────────────────────────────── */
.modal-close-btn-v2 {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 20;
    width: 36px; height: 36px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    backdrop-filter: blur(4px);
}
.modal-close-btn-v2:hover { background: #c9a050; }
 
/* ── COLONNE GAUCHE ──────────────────────────────────────────── */
.mv2-left {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #0d0d0d;
    overflow: hidden;
}
.mv2-type-badge {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 10;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 14px;
    color: #fff;
    text-transform: uppercase;
}
.badge-commune { background: rgba(80,80,80,0.85); border: 1px solid rgba(255,255,255,0.2); }
.badge-privee  { background: rgba(201,160,80,0.9); }
 
.mv2-swiper-wrap {
    flex: 1;
    min-height: 300px;
    overflow: hidden;
    position: relative;
}
.mv2-swiper,
.mv2-swiper .swiper-slide,
.mv2-swiper .swiper-slide img {
    width: 100%; height: 100%; object-fit: cover;
}
.mv2-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 55%);
}
.mv2-next, .mv2-prev {
    color: #fff !important;
    background: rgba(201,160,80,0.85) !important;
    width: 36px !important; height: 36px !important;
    border-radius: 50% !important;
    margin-top: -18px !important;
}
.mv2-next:after, .mv2-prev:after {
    font-size: 12px !important; font-weight: 900 !important;
}
.mv2-pagination { bottom: 58px !important; }
.mv2-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.45); opacity: 1;
    width: 5px; height: 5px; border-radius: 3px;
    transition: width 0.3s, background 0.3s;
}
.mv2-pagination .swiper-pagination-bullet-active {
    background: #c9a050; width: 18px;
}
 
/* Highlights */
.mv2-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
}
.mv2-hl-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-right: 1px solid rgba(255,255,255,0.05);
    flex: 1 0 33%;
}
.mv2-hl-icon { font-size: 13px; flex-shrink: 0; }
.mv2-hl-label {
    font-size: 9.5px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
 
/* ── COLONNE DROITE ──────────────────────────────────────────── */
.mv2-right {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 28px 26px 22px;
    gap: 18px;
    background: #fff;
    max-height: calc(100vh - 32px);
}
.mv2-right::-webkit-scrollbar { width: 3px; }
.mv2-right::-webkit-scrollbar-thumb { background: #c9a050; border-radius: 2px; }
.mv2-right::-webkit-scrollbar-track { background: #f5f3ee; }
 
/* Header */
.mv2-eyebrow {
    display: block;
    font-size: 9px; font-weight: 800;
    letter-spacing: 4px; color: #c9a050;
    margin-bottom: 8px; text-transform: uppercase;
}
.mv2-room-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px; color: #0d0d0d;
    margin: 0 0 6px; line-height: 1.2;
}
.mv2-stars { color: #c9a050; font-size: 12px; letter-spacing: 3px; margin-bottom: 8px; }
.mv2-short-desc { font-size: 12px; color: #777; line-height: 1.7; margin: 0; }
 
/* Stats */
.mv2-quick-stats {
    display: flex;
    align-items: center;
    background: #f7f5f0;
    border: 1px solid #ede8df;
    padding: 12px 0;
}
.mv2-stat { flex: 1; text-align: center; }
.mv2-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700; color: #0d0d0d;
}
.mv2-stat-lbl {
    display: block;
    font-size: 9px; letter-spacing: 2px;
    color: #999; font-weight: 600; margin-top: 2px;
}
.mv2-stat-divider { width: 1px; height: 30px; background: #ede8df; flex-shrink: 0; }
 
/* Lits */
.mv2-beds-row { display: flex; flex-wrap: wrap; gap: 7px; }
.mv2-bed-pill {
    display: flex; align-items: center; gap: 6px;
    background: #f7f5f0; border: 1px solid #ede8df;
    padding: 5px 12px; font-size: 11px; color: #444; font-weight: 600;
}
.mv2-view-pill {
    background: rgba(201,160,80,0.06);
    border-color: rgba(201,160,80,0.3);
    color: #7a5800;
}
 
/* Accordéon équipements */
.mv2-amenities { display: flex; flex-direction: column; gap: 3px; }
.mv2-amenities-title {
    font-size: 9px; font-weight: 800;
    letter-spacing: 3px; color: #c9a050;
    margin-bottom: 6px; text-transform: uppercase;
}
.mv2-amenity-group {
    border: 1px solid #ede8df;
    overflow: hidden;
    transition: border-color 0.3s;
}
.mv2-amenity-group[open] { border-color: rgba(201,160,80,0.4); }
.mv2-amenity-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 13px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; color: #333;
    cursor: pointer; list-style: none;
    user-select: none;
    background: #faf7f0;
    transition: background 0.2s;
    gap: 8px;
}
.mv2-amenity-summary:hover { background: rgba(201,160,80,0.08); }
.mv2-amenity-summary::-webkit-details-marker { display: none; }
.mv2-amenity-count {
    margin-left: auto;
    background: rgba(201,160,80,0.12);
    color: #9a7530;
    font-size: 9px; font-weight: 800;
    padding: 2px 7px; border-radius: 20px;
}
.mv2-chevron {
    flex-shrink: 0; transition: transform 0.3s; color: #c9a050;
}
.mv2-amenity-group[open] .mv2-chevron { transform: rotate(180deg); }
.mv2-amenity-list {
    list-style: none; padding: 10px 13px; margin: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5px 10px;
    background: #fff; border-top: 1px solid #ede8df;
}
.mv2-amenity-list li {
    display: flex; align-items: flex-start; gap: 7px;
    font-size: 11px; color: #555; line-height: 1.4;
}
.mv2-check { color: #c9a050; font-size: 10px; flex-shrink: 0; margin-top: 1px; }
 
/* Prix + CTA */
.mv2-price-block {
    border-top: 1px solid #ede8df;
    padding-top: 16px;
    margin-top: auto;
}
.mv2-price-row {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 10px; flex-wrap: wrap;
}
.mv2-price { display: flex; align-items: baseline; gap: 5px; }
.mv2-from  { font-size: 10px; color: #999; }
.mv2-amount {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700; color: #0d0d0d;
}
.mv2-night { font-size: 11px; color: #999; }
.mv2-cta {
    display: flex; align-items: center; gap: 8px;
    background: #c9a050; color: #0d0d0d;
    text-decoration: none;
    padding: 11px 20px;
    font-size: 11px; font-weight: 800;
    letter-spacing: 2px;
    transition: all 0.3s;
    white-space: nowrap;
}
.mv2-cta:hover { background: #0d0d0d; color: #c9a050; letter-spacing: 2.5px; }
.mv2-indispo {
    font-size: 11px; color: #aaa;
    padding: 9px 14px; background: #f8f8f8;
    border: 1px solid #eee;
}
.mv2-availability-note {
    display: flex; align-items: center; gap: 6px;
    font-size: 10px; color: #5dba7e; margin-top: 8px;
}
 
/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 820px) {
    .modal-inner-v2 {
        grid-template-columns: 1fr;
        max-height: none;
    }
    .mv2-left { max-height: 55vw; }
    .mv2-right {
        max-height: none;
        overflow-y: visible;
        padding: 20px 16px;
    }
    .mv2-amenity-list { grid-template-columns: 1fr; }
    .mv2-highlights { display: none; }
    .mv2-room-name { font-size: 19px; }
}
/* ============================================================
   RESPONSIVE COMPLET — HÔTEL THANIA
   Coller à la toute fin de style.css
   ============================================================ */


/* ============================================================
   TABLETTE LARGE — max 1200px
   ============================================================ */
@media (max-width: 1200px) {

    /* Booking */
    .booking-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }
    .btn-check { grid-column: span 3; }

    /* Rooms grid */
    .ultra-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
    .rooms-wow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services grid */
    .services-ultra-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Description */
    .description-wrapper {
        gap: 40px;
    }
}


/* ============================================================
   TABLETTE — max 1024px
   ============================================================ */
@media (max-width: 1024px) {

    /* Hero */
    .hero-content h1 {
        font-size: clamp(36px, 6vw, 60px);
    }
    .side-actions {
        display: none;
    }
    .slider-numbers {
        right: 20px;
    }
    .slider-arrows {
        right: 20px;
        bottom: 30px;
    }

    /* Booking */
    .booking-container {
        grid-template-columns: 1fr 1fr;
        margin-top: 20px;
    }
    .btn-check { grid-column: span 2; }

    /* Section headers */
    .section-header-ultra {
        margin-bottom: 50px;
        gap: 20px;
    }
    .header-line { max-width: 100px; }

    /* Rooms */
    .ultra-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .room-slider-wrap { height: 320px; }

    /* Rooms WOW */
    .rooms-wow-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    .room-wow-card { height: 460px; }

    /* Services */
    .services-ultra-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Description */
    .description-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .desc-text-side,
    .desc-highlights-side {
        min-width: unset;
        width: 100%;
    }
    .desc-highlights-side {
        grid-template-columns: 1fr 1fr;
    }

    /* Map */
    .map-wrapper-premium { height: 450px; }

    /* Modal chambre */
    .modal-inner {
        grid-template-columns: 1fr;
    }
    .modal-swiper-wrap { min-height: 280px; }
    .modal-content-panel { padding: 30px 25px; }

    /* Modal v2 */
    .modal-inner-v2 {
        grid-template-columns: 1fr;
    }
    .mv2-left { max-height: 55vw; }
    .mv2-right {
        max-height: none;
        overflow-y: visible;
        padding: 22px 20px;
    }
    .mv2-amenity-list { grid-template-columns: 1fr; }
    .mv2-highlights { display: none; }
}


/* ============================================================
   MOBILE LARGE — max 768px
   ============================================================ */
@media (max-width: 768px) {

    /* Preloader */
    .pulsating-logo { width: 180px; }
    .loader-text { font-size: 9px; letter-spacing: 5px; }

    /* Hero */
    .hero-slider { height: 100svh; }
    .hero-content h1 { font-size: clamp(28px, 8vw, 48px); }
    .hero-content p { font-size: 11px; letter-spacing: 3px; }
    .hero-logo { width: 160px; }
    .btn-outline { padding: 12px 28px; font-size: 11px; }
    .slider-arrows { display: none; }
    .slider-numbers { display: none; }

    /* Booking */
    .booking-section-container { padding: 40px 0; }
    .booking-container {
        grid-template-columns: 1fr;
        margin-top: 0;
        padding: 20px;
        width: 92%;
    }
    .btn-check { grid-column: span 1; }

    /* Section intro */
    .intro-text { padding: 60px 20px; }
    .intro-text h2 { font-size: 24px; }

    /* Section header ultra */
    .section-header-ultra {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    .header-line { display: none; }
    .section-mega-title { font-size: clamp(28px, 7vw, 40px); }

    /* Chambres */
    .ultra-rooms-section { padding: 80px 0; }
    .ultra-rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    .room-slider-wrap { height: 280px; }
    .ultra-room-info { padding: 20px; }
    .room-title-ultra { font-size: 19px; }
    .room-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .btn-book-room { width: 100%; justify-content: center; }
    .rooms-global-cta {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    .cta-line { display: none; }
    .btn-all-rooms { width: 100%; justify-content: center; }

    /* Rooms WOW */
    .premium-rooms-section { padding: 80px 0; }
    .rooms-wow-grid { padding: 0 15px; }
    .room-wow-card { height: 380px; }
    .room-wow-details { padding: 25px; }
    .room-wow-details h3 { font-size: 22px; }

    /* Services ancienne version */
    .services-section { padding: 80px 0; }
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 30px;
    }
    .service-card-premium { padding: 30px 20px; }

    /* Services ultra */
    .services-ultra-section { padding: 80px 0; }
    .services-ultra-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    .service-card-visual { min-height: 110px; padding: 25px; }
    .service-number { font-size: 36px; }
    .service-card-body { padding: 25px 20px; }
    .smodal-footer { flex-direction: column; }
    .smodal-cta-btn { width: 100%; justify-content: center; }
    .service-modal-panel { padding: 30px 20px; margin: 10px; }
    .smodal-big-img-wrap { height: 220px; }
    .smodal-header { flex-direction: column; gap: 15px; }
    .smodal-title { font-size: 24px; }

    /* Description */
    .hotel-description-section { padding: 80px 0; }
    .description-wrapper { padding: 0 15px; }
    .desc-text-side { min-width: unset; }
    .desc-highlights-side { grid-template-columns: 1fr; }
    .desc-text-side h2 { font-size: clamp(26px, 6vw, 38px); }

    /* Map */
    .hotel-map-section { padding: 60px 0; }
    .map-wrapper-premium { height: 320px; }
    .map-info-cards { top: 15px; left: 15px; gap: 8px; }
    .poi-item { padding: 10px 14px; }
    .poi-item span { font-size: 11px; }

    /* Contact */
    .contact-section { padding: 60px 15px; }
    .contact-box-inner { padding: 35px 20px 35px 26px; }
    .contact-title { font-size: 28px; }
    .contact-footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .contact-btn { width: 100%; justify-content: center; }

    /* Modal chambre */
    .ultra-room-modal { padding: 10px; align-items: flex-start; }
    .modal-inner {
        grid-template-columns: 1fr;
        max-height: none;
    }
    .modal-swiper-wrap { min-height: 240px; }
    .modal-content-panel { padding: 25px 18px; }
    .modal-features-grid { grid-template-columns: 1fr; }
    .modal-room-name { font-size: 24px; }
    .mp-amount { font-size: 28px; }

    /* Modal v2 */
    .modal-inner-v2 {
        grid-template-columns: 1fr;
        max-height: none;
    }
    .mv2-left { max-height: 52vw; }
    .mv2-right { padding: 18px 14px; }
    .mv2-room-name { font-size: 18px; }
    .mv2-amenity-list { grid-template-columns: 1fr; }
    .mv2-highlights { display: none; }
    .mv2-price-row { flex-direction: column; align-items: flex-start; gap: 12px; }
    .mv2-cta { width: 100%; justify-content: center; }
}


/* ============================================================
   MOBILE PETIT — max 480px
   ============================================================ */
@media (max-width: 480px) {

    /* Hero */
    .hero-content h1 { font-size: clamp(24px, 9vw, 38px); }
    .hero-content p { display: none; }
    .hero-logo { width: 130px; }

    /* Booking */
    .booking-container { padding: 15px; }
    .input-group label { font-size: 9px; }

    /* Rooms */
    .room-slider-wrap { height: 240px; }
    .room-features-ultra { display: none; }
    .price-amount { font-size: 22px; }

    /* Section mega title */
    .section-mega-title { font-size: clamp(24px, 8vw, 32px); }

    /* Services */
    .service-card-visual { min-height: 90px; padding: 20px; }
    .service-icon-ring { width: 48px; height: 48px; }
    .service-number { font-size: 28px; }

    /* Description */
    .highlight-card { padding-left: 18px; }
    .highlight-card h4 { font-size: 16px; }
    .main-p { font-size: 14px; }

    /* Contact */
    .contact-title { font-size: 24px; }
    .contact-intro { font-size: 14px; }
    .contact-item { gap: 14px; }
    .contact-item-icon-wrap { width: 38px; height: 38px; }
    .contact-item-value { font-size: 13px; }

    /* Map */
    .map-info-cards { display: none; }
    .map-wrapper-premium { height: 260px; }

    /* Modales */
    .modal-content-panel { padding: 20px 14px; }
    .modal-room-name { font-size: 20px; }
    .mv2-right { padding: 14px 12px; }
    .mv2-quick-stats { flex-wrap: wrap; }
    .mv2-stat { flex: 1 0 45%; padding: 8px 0; }
}


/* ============================================================
   MOBILE TRÈS PETIT — max 360px
   ============================================================ */
@media (max-width: 360px) {

    .hero-content h1 { font-size: 22px; }
    .section-mega-title { font-size: 22px; }
    .contact-title { font-size: 20px; }
    .contact-btn { padding: 13px 20px; font-size: 10px; letter-spacing: 2px; }
    .ultra-rooms-grid { padding: 0 10px; }
    .room-slider-wrap { height: 210px; }
    .service-card-body h3 { font-size: 17px; }
    .mv2-amount { font-size: 22px; }
    .btn-modal-book { font-size: 10px; padding: 14px; }
}
/* Style des markers personnalisés sur la carte */
.poi-marker-container {
    position: relative;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    border: 2px solid #c9a050;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.poi-marker-container:hover {
    transform: scale(1.1);
    z-index: 1000;
}

.poi-marker-img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/* Petite pointe sous le cercle */
.poi-marker-pin {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #c9a050;
}

/* Reset pour Leaflet */
.custom-poi-marker {
    background: none !important;
    border: none !important;
}