/* Base Styles */
:root {
    --primary-color: #003366;
    --secondary-color: #D90404;
    --accent-color: #3498DB;
    --dark-color: #2C3E50;
    --light-color: #0460D9;
    --white: #ffffff;
    --black: #333333;
    --gray: #95A5A6;
    --success: #27AE60;
    --warning: #D90404;
    --danger: #E74C3C;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #0460D9;
    color: var(--white);
}

.btn-primary:hover {
    background-color: #D35400;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #002244;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.text-center {
    text-align: center;
}

/* ======================
   HEADER & NAVIGATION
   ====================== */

/* ----------------------
   Header Base Styles 
   ---------------------- */
   .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----------------------
   Logo Styles 
   ---------------------- */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.logo {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.logo-text p {
    font-size: 0.75rem;
    color: #0460D9;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0;
    opacity: 0.9;
}

.header.scrolled .logo {
    width: 50px;
    height: 50px;
}

.header.scrolled .logo-text h1 {
    font-size: 1.4rem;
}

/* ----------------------
   Main Navigation 
   ---------------------- */
.main-nav {
    transition: all 0.4s ease;
}

.main-nav ul {
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 12px 18px;
    font-family: #0460D9;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0460D9;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--white);
    background: linear-gradient(135deg, #0460D9 0%, #0460D9 100%);
    transform: translateY(-2px);
}

.main-nav a.active {

    box-shadow: #0460D9;
}
.main-nav a.active {
    color: var(--white);
    background: linear-gradient(135deg, #D90404, var(--light-color) 100%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ----------------------
   Mobile Dropdown Handling
   ---------------------- */
   @media (max-width: 992px) {
    .has-dropdown {
        position: relative;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .dropdown-toggle::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        transition: transform 0.3s ease;
    }
    
    .dropdown-toggle.active::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        display: none;
        padding-left: 15px;
        animation: fadeIn 0.3s ease-out;
    }
    
    .dropdown-menu.show {
        display: block;
    }
}

/* ----------------------
   Call-to-Action Button 
   ---------------------- */
.nav-cta {
    margin-left: 15px;
}

.nav-cta .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
}

/* ----------------------
   Mobile Navigation 
   ---------------------- */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn:hover {
    background: #002244;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 90%;
        max-width: 400px;
        height: calc(100vh - 80px);
        background: white;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 30px;
        overflow-y: auto;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    @media (max-width: 992px) {
    .main-nav a.active {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-color) 100%);
        color: white;
    }
}
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 5px;
    }
    
    .main-nav a {
        border-radius: 8px;
        margin-bottom: 5px;
    }
    
    .has-dropdown > a::after {
        position: absolute;
        right: 20px;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-dropdown:hover .dropdown-menu {
        transform: none;
    }
    
    .dropdown-menu.show {
        max-height: 500px;
        margin-top: 5px;
        margin-bottom: 15px;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
    }
}

/* ----------------------
   Navigation Animations 
   ---------------------- */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-nav.active li {
    animation: fadeInRight 0.4s ease forwards;
}

.main-nav.active li:nth-child(1) { animation-delay: 0.1s; }
.main-nav.active li:nth-child(2) { animation-delay: 0.2s; }
.main-nav.active li:nth-child(3) { animation-delay: 0.3s; }
.main-nav.active li:nth-child(4) { animation-delay: 0.4s; }
.main-nav.active li:nth-child(5) { animation-delay: 0.5s; }
.main-nav.active li:nth-child(6) { animation-delay: 0.6s; }

/* =============================================
   PAGE ACCUEIL - HÔTEL MONT BLEU
   Styles spécifiques pour la page d'accueil
   ============================================= */

/* ----------------------
   Variables & Base Styles
   ---------------------- */
   :root {
    /* Couleurs spécifiques à l'accueil */
    --hero-overlay: linear-gradient(135deg, rgba(0, 51, 102, 0.7) 0%, rgba(4, 96, 217, 0.4) 100%);
    --testimonial-bg: linear-gradient(rgba(0, 51, 102, 0.9), rgba(4, 96, 217, 0.8));
}

/* ----------------------
   Hero Section - Version Box
   ---------------------- */
/* Nouveau design pour Hero Box Container */
.hero-box__container {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 700px;
    margin: 100px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(4, 96, 217, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.hero-box__container:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 40px 80px -20px rgba(4, 96, 217, 0.4);
}

.hero-box__image {
    position: absolute;
    width: 100%;
    height: 110%;
    object-fit: cover;
    z-index: 1;
    transform: translateZ(-20px) scale(1.05);
    filter: brightness(0.85) contrast(1.1);
    transition: 
        transform 1s cubic-bezier(0.2, 0.9, 0.3, 1),
        filter 0.8s ease;
    will-change: transform, filter;
}

.hero-box__container:hover .hero-box__image {
    transform: translateZ(-10px) scale(1.03);
    filter: brightness(0.9) contrast(1.05);
}

.hero-box__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 51, 102, 0.178) 0%, 
        rgba(4, 96, 217, 0.411) 100%
    );
    z-index: 2;
    mix-blend-mode: multiply;
}

.hero-box__content {
    position: relative;
    z-index: 3;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    transform: translateZ(20px);
}

.hero-box__title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s 0.3s forwards;
}

.hero-box__title span {
    display: block;
}

.hero-box__title span:last-child {
    color: #0460D9;
    position: relative;
    margin-top: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-box__title span:last-child::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: rgb(255, 255, 255);
    transform-origin: left;
    transform: scaleX(0);
    animation: scaleIn 0.6s 0.8s forwards;
}

.hero-box__subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    max-width: 700px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-box__cta {
    display: flex;
    gap: 25px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s 0.7s forwards;
}

/* Effet de profondeur 3D */
.hero-box__container::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 5%;
    width: 90%;
    height: 60px;
    background: radial-gradient(ellipse at center, 
        rgba(0, 0, 0, 0.3) 0%, 
        transparent 80%
    );
    filter: blur(15px);
    z-index: -1;
    transform: translateZ(-50px);
    opacity: 0.8;
}

/* Animation des boutons au hover */
.btn--gold {
    background: linear-gradient(135deg, #0044ff 0%, #ffffff 100%);
    color: #003366;
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn--gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
}

.btn--gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn--gold:hover::after {
    left: 100%;
}

.btn--outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.btn--outline-white:hover {
    background: white;
    color: #003366;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

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

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

/* Responsive */
@media (max-width: 1200px) {
    .hero-box__title {
        font-size: 3.8rem;
    }
    
    .hero-box__subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-box__container {
        height: 80vh;
        min-height: 600px;
        border-radius: 15px;
    }
    
    .hero-box__title {
        font-size: 3.2rem;
    }
    
    .hero-box__cta {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-box__container {
        height: 70vh;
        min-height: 500px;
        margin-top: 80px;
    }
    
    .hero-box__title {
        font-size: 2.5rem;
    }
    
    .hero-box__subtitle {
        font-size: 1.2rem;
    }
    
    .btn--gold,
    .btn--outline-white {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-box__container {
        height: 60vh;
        min-height: 400px;
        border-radius: 10px;
    }
    
    .hero-box__title {
        font-size: 2rem;
    }
    
    .hero-box__title span:last-child::after {
        bottom: -10px;
        width: 60px;
    }
    
    .hero-box__cta {
        gap: 15px;
    }
}

/* ----------------------
   Features Section
   ---------------------- */
.features {
    padding: 100px 0;
    background-color: #0077ff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--accent-color);
    color: white;
}

.feature-card h3 {
    margin-bottom: 15px;
    color:rgba(12, 12, 11, 0.93);
}

.feature-card p {
    color:rgba(12, 12, 12, 0.93);
    line-height: 1.6;
}

.section-title {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.2rem;
    color: #ffffffdc;
    text-align: center;
    margin-bottom: 50px;
}

/* ----------------------
   Rooms Preview Section
   ---------------------- */
.rooms-preview {
    padding: 100px 0;
    background-color: var(--white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.room-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.room-info .price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 15px;
}

.room-info ul {
    margin: 20px 0;
}

.room-info ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.room-info ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* ----------------------
   Testimonials Section
   ---------------------- */
.testimonials {
    padding: 100px 0;
    background: #005cd3 url('../images/testimonial-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    background-blend-mode: overlay;
}

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

.testimonials .section-title::after {
    background-color: var(--white);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    min-width: 350px;
    background-color: #005cd3;
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    scroll-snap-align: start;
    transition: var(--transition);
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.rating {
    color: blue;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
}

.testimonial-card p::before,
.testimonial-card p::after {
    content: '"';
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 0;
}

.testimonial-card p::before {
    vertical-align: top;
    margin-right: 5px;
}

.testimonial-card p::after {
    vertical-align: bottom;
    margin-left: 5px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.client-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.client-info small {
    opacity: 0.8;
    font-size: 0.85rem;
}

/* ----------------------
   Responsive Design
   ---------------------- */
@media (max-width: 992px) {
    .hero-box {
        height: auto;
        min-height: 500px;
        margin: 80px auto 40px;
    }
    
    .hero-box__title {
        font-size: 2.5rem;
    }
    
    .hero-box__subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-box__container {
        border-width: 5px;
    }
    
    .hero-box__content {
        padding: 30px 20px;
    }
    
    .hero-box__cta {
        flex-direction: column;
    }
    
    .hero-box__cta .btn {
        width: 100%;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-box__title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* ----------------------
   Animations Spécifiques
   ---------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Utilisation des classes d'animation */
.wow.fadeIn {
    animation-name: fadeIn;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}

.wow.fadeInDown {
    animation-name: fadeInDown;
}
    
/* ==============================================
   PAGE À PROPOS - HÔTEL MONT BLEU
   Styles spécifiques pour la page About
   ============================================== */

/* ----------------------
   Variables & Base Styles
   ---------------------- */
   :root {
    /* Couleurs spécifiques à la page About */
    --about-hero-bg: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgb(4, 71, 217) 100%);
    --philosophy-card-bg: rgba(255, 255, 255, 0.95);
    --team-card-hover: rgba(230, 126, 34, 0.05);
    --testimonial-bg: rgba(0, 51, 102, 0.9);
}

/* ----------------------
   Bannière de page
   ---------------------- */
.page-banner {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: url('../images/about-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px; /* Compensation pour le header fixe */
    overflow: hidden;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--about-hero-bg);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-banner h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-banner p {
    font-size: 1.5rem;
    font-weight: 300;
}

/* ----------------------
   Section À Propos
   ---------------------- */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-info h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.about-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--dark-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(4, 96, 217, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background-color: rgba(4, 96, 217, 0.1);
    transform: translateY(-5px);
}

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

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ----------------------
   Section Philosophie
   ---------------------- */
.philosophy-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.philosophy-section.bg-light {
    background-color: #f9f9f9;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.philosophy-card {
    background: var(--philosophy-card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 3px solid transparent;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top-color: var(--secondary-color);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.philosophy-card:hover .philosophy-icon {
    background: var(--secondary-color);
    color: white;
}

.philosophy-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.philosophy-card p {
    color: black;
    line-height: 1.7;
}

/* ----------------------
   Section Équipe
   ---------------------- */
.team-section {
    padding: 80px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

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

.team-image {
    position: relative;
    overflow: hidden;
    height: 510px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.team-info p {
    color: black;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 10px;
}

/* ----------------------
   Section Témoignages
   ---------------------- */
.testimonials-section {
    padding: 80px 0;
    position: relative;
    color: white;
}

.testimonials-section.bg-dark {
    background: rgba(10, 108, 255, 0.945) url('../images/testimonial-bg.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    min-width: 350px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.rating {
    color: #d9b704;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 0;
}

.testimonial-content p::before {
    vertical-align: top;
    margin-right: 5px;
}

.testimonial-content p::after {
    vertical-align: bottom;
    margin-left: 5px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.client-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.client-info small {
    opacity: 0.8;
    font-size: 0.85rem;
}

/* ----------------------
   Responsive Design
   ---------------------- */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .page-banner h2 {
        font-size: 3rem;
    }
    
    .page-banner p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: auto;
        padding: 100px 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .page-banner h2 {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
}

/* ----------------------
   Animations Spécifiques
   ---------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Utilisation des classes d'animation */
.wow.fadeIn {
    animation-name: fadeIn;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}

.wow.fadeInDown {
    animation-name: fadeInDown;
}

/* ==============================================
   PAGE CHAMBRES - HÔTEL MONT BLEU
   Styles spécifiques pour la page Rooms
   ============================================== */

/* ----------------------
   Variables & Base Styles
   ---------------------- */
   :root {
    /* Couleurs spécifiques aux chambres */
    --room-price-color: #0460D9;
    --room-feature-bg: #0460D9;
    --amenity-card-bg: rgba(255, 255, 255, 0.95);
    --cta-bg: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(4, 96, 217, 0.8) 100%);
}
/* ----------------------
   Détails des chambres
   ---------------------- */
.room-types {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.room-detail {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.room-detail:hover {
    transform: translateY(-5px);
    box-shadow: #0460D9;
}

.room-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.room-images {
    position: relative;
}

.main-image {
    height: 400px;
    overflow: hidden;
}

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

.room-detail:hover .main-image img {
    transform: scale(1.03);
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.thumbnail-images img {
    height: 100px;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.thumbnail-images img:hover {
    opacity: 0.8;
    transform: scale(0.98);
}

.room-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-info h3 {
    font-size: 2.2rem;
    color: #0460D9;
    margin-bottom: 10px;
}

.room-price {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.room-price span {
    color: var(--room-price-color);
    font-weight: 700;
}

.room-description p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--dark-color);
}

.room-features {
    margin: 25px 0;
}

.room-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #eee;
}

.room-features li:last-child {
    border-bottom: none;
}

.room-features i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.room-info .btn {
    margin-top: 15px;
    margin-right: 15px;
    display: inline-block;
}

/* ----------------------
   Équipements des chambres
   ---------------------- */
.room-amenities {
    padding: 80px 0;
    background-color: white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.amenity-card {
    background: var(--amenity-card-bg);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top-color: var(--secondary-color);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    background: var(--secondary-color);
    color: white;
}

.amenity-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.amenity-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ----------------------
   Call to Action
   ---------------------- */
.cta {
    padding: 80px 0;
    background: var(--cta-bg) url('../images/cta-bg.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* ----------------------
   Responsive Design
   ---------------------- */
@media (max-width: 992px) {
    .room-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .room-images {
        order: -1;
    }
    
    .main-image {
        height: 300px;
    }
    
    .page-banner h2 {
        font-size: 3rem;
    }
    
    .page-banner p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: auto;
        padding: 100px 0;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .page-banner h2 {
        font-size: 2.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-images {
        grid-template-columns: 1fr 1fr;
    }
    
    .room-info h3 {
        font-size: 1.8rem;
    }
    
    .room-info .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* ----------------------
   Animations Spécifiques
   ---------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utilisation des classes d'animation */
.wow.fadeIn {
    animation-name: fadeIn;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}

.wow.fadeInDown {
    animation-name: fadeInDown;
}

/* ==============================================
   PAGE TARIFS - HÔTEL MONT BLEU
   Styles spécifiques pour la page Prices
   ============================================== */

/* ----------------------
   Variables & Base Styles
   ---------------------- */
   :root {
    /* Couleurs spécifiques aux tarifs */
    --price-featured-bg: linear-gradient(135deg, #003366 0%, #0460D9 100%);
    --price-card-bg: rgba(255, 255, 255, 0.95);
    --offer-discount-color: #E74C3C;
    --old-price-color: #95A5A6;
    --charge-card-bg: #f9f9f9;
}

/* ----------------------
   Section Tarifs des Chambres
   ---------------------- */
.prices-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.price-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: var(--price-card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #eee;
}

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

.price-card.featured {
    border: 2px solid var(--secondary-color);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    width: 120px;
    text-align: center;
}

.price-header {
    padding: 30px 20px;
    text-align: center;
    background: rgba(4, 96, 217, 0.05);
    border-bottom: 1px solid #eee;
}

.price-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-amount .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-amount .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.price-features {
    padding: 30px 20px;
}

.price-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #eee;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.price-card .btn {
    display: block;
    margin: 0 auto 30px;
    width: 80%;
    text-align: center;
}

.price-notes {
    margin-top: 40px;
    padding: 20px;
    background: rgba(4, 96, 217, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--secondary-color);
}

.price-notes p {
    color: var(--dark-color);
    line-height: 1.7;
}

/* ----------------------
   Section Offres Spéciales
   ---------------------- */
.offers-section {
    padding: 80px 0;
}

.offers-section.bg-light {
    background-color: white;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.offer-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.offer-image {
    position: relative;
    height: 100%;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-discount {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--offer-discount-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.offer-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.offer-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.offer-info p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--dark-color);
}

.offer-info ul {
    margin: 20px 0;
}

.offer-info ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.offer-info ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.offer-price {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

.old-price {
    text-decoration: line-through;
    color: var(--old-price-color);
    margin-right: 10px;
}

.new-price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.offer-info .btn-small {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ----------------------
   Section Suppléments
   ---------------------- */
.charges-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.charges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.charge-card {
    background: var(--charge-card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.charge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.charge-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.charge-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.charge-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ----------------------
   Section CTA Réservation
   ---------------------- */
.booking-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(4, 96, 217, 0.8) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.booking-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ----------------------
   Responsive Design
   ---------------------- */
@media (max-width: 992px) {
    .offer-card {
        grid-template-columns: 1fr;
    }
    
    .offer-image {
        height: 250px;
    }
    
    .page-banner h2 {
        font-size: 3rem;
    }
    
    .page-banner p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: auto;
        padding: 100px 0;
    }
    
    .price-tables {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1.02);
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-banner h2 {
        font-size: 2.5rem;
    }
    
    .price-badge {
        top: 10px;
        right: -35px;
        font-size: 0.7rem;
        width: 110px;
    }
    
    .booking-cta h3 {
        font-size: 2rem;
    }
}

/* ----------------------
   Animations Spécifiques
   ---------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Utilisation des classes d'animation */
.wow.fadeIn {
    animation-name: fadeIn;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}

.wow.fadeInLeft {
    animation-name: fadeInLeft;
}

.wow.fadeInRight {
    animation-name: fadeInRight;
}
/* =============================================
   PAGE SERVICES - HÔTEL MONT BLEU
   Styles spécifiques pour la page Services
   ============================================= */

/* ----------------------
   Variables & Base Styles
   ---------------------- */
   :root {
    /* Couleurs spécifiques aux services */
    --service-rating-color: #f1c40f;
    --service-feature-bg: rgba(4, 96, 217, 0.05);
    --service-card-bg: rgba(255, 255, 255, 0.95);
}
/* ----------------------
   Section Services Principaux
   ---------------------- */
.service-section {
    padding: 80px 0;
    position: relative;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.service-image:hover {
    transform: scale(1.02);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.service-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.service-rating {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-rating i {
    color: var(--service-rating-color);
}

.service-rating span {
    margin-left: 10px;
    font-size: 0.9rem;
    color: var(--gray);
}

.service-info p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--dark-color);
}

.service-features {
    margin: 25px 0;
}

.service-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #eee;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--secondary-color);
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.service-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Alternance image/info pour les sections */
.service-section:nth-child(even) .service-grid {
    direction: rtl;
}

.service-section:nth-child(even) .service-info {
    direction: ltr;
}

/* ----------------------
   Services Additionnels
   ---------------------- */
.additional-services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--service-card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top-color: var(--secondary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    color: white;
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ----------------------
   Responsive Design
   ---------------------- */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-section:nth-child(even) .service-grid {
        direction: ltr;
    }
    
    .page-banner h2 {
        font-size: 3rem;
    }
    
    .page-banner p {
        font-size: 1.2rem;
    }
    
    .service-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: auto;
        padding: 100px 0;
    }
    
    .service-info {
        padding: 20px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .page-banner h2 {
        font-size: 2.5rem;
    }
    
    .service-info h3 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-actions .btn {
        width: 100%;
    }
}

/* ----------------------
   Animations Spécifiques
   ---------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Utilisation des classes d'animation */
.wow.fadeIn {
    animation-name: fadeIn;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}

.wow.fadeInDown {
    animation-name: fadeInDown;
}
/* ==============================================
   PAGE GALERIE - HÔTEL MONT BLEU
   Styles spécifiques pour la page Gallery
   ============================================== */

/* ----------------------
   Variables & Base Styles
   ---------------------- */
   :root {
    /* Couleurs spécifiques à la galerie */
    --gallery-overlay-bg: rgba(0, 51, 102, 0.8);
    --filter-active-bg: var(--secondary-color);
    --tour-info-bg: #f9f9f9;
}
/* ----------------------
   Filtre de galerie
   ---------------------- */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--filter-active-bg);
    border-color: var(--filter-active-bg);
    color: white;
    transform: translateY(-2px);
}


/* Gallery Page Styles */
.gallery-page {
    background: #f9f9f9;
}

.gallery-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/gallery-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.gallery-nav {
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.gallery-categories a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.gallery-categories a:hover,
.gallery-categories a.active {
    background: var(--primary-color);
    color: white;
}

.gallery-search {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.gallery-search input {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 20px 0 0 20px;
    width: 300px;
    max-width: 100%;
}

.gallery-search button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1rem;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}

.main-gallery {
    padding: 3rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 250px;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.gallery-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-overlay i {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

.gallery-load-more {
    text-align: center;
    margin-top: 3rem;
}
/* Transitions pour le filtrage */
.gallery-item {
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
    display: block;
}

/* Style des boutons actifs */
.gallery-categories a.active {
    background-color: var(--primary-color);
    color: white;
}

/* Animation des éléments filtrés */
.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.95);
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-categories {
        gap: 0.5rem;
    }
}


/* ----------------------
   Visite Virtuelle
   ---------------------- */
.virtual-tour {
    padding: 80px 0;
    background-color: white;
}

.tour-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.tour-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tour-video iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

.tour-info {
    padding: 30px;
    background: var(--tour-info-bg);
    border-radius: 15px;
}

.tour-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tour-info p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--dark-color);
}

.tour-info ul {
    margin: 25px 0;
}

.tour-info ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.tour-info ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* ----------------------
   Lightbox Customization
   ---------------------- */
.lb-data .lb-caption {
    font-size: 1.1rem;
    line-height: 1.5;
}

.lb-nav a.lb-prev, 
.lb-nav a.lb-next {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.lb-nav a.lb-prev:hover, 
.lb-nav a.lb-next:hover {
    opacity: 1;
}

/* ----------------------
   Responsive Design
   ---------------------- */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .tour-container {
        grid-template-columns: 1fr;
    }
    
    .tour-info {
        order: -1;
    }
    
    .page-banner h2 {
        font-size: 3rem;
    }
    
    .page-banner p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: auto;
        padding: 100px 0;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .page-banner h2 {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
}

/* ----------------------
   Animations Spécifiques
   ---------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utilisation des classes d'animation */
.wow.fadeIn {
    animation-name: fadeIn;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}

.wow.fadeInDown {
    animation-name: fadeInDown;
}

/* =============================================
   PAGE CONTACT - HÔTEL MONT BLEU
   Styles spécifiques pour la page Contact
   ============================================= */

/* ----------------------
   Variables & Base Styles
   ---------------------- */
   :root {
    /* Couleurs spécifiques au contact */
    --contact-icon-color: #e67e22;
    --form-focus-color: rgba(4, 96, 217, 0.2);
    --faq-item-bg: rgba(255, 255, 255, 0.95);
}
/* ----------------------
   Section Contact
   ---------------------- */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-details {
    margin: 30px 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-details i {
    font-size: 1.5rem;
    color: var(--contact-icon-color);
    margin-top: 5px;
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--dark-color);
    line-height: 1.6;
}

.social-media {
    margin-top: 40px;
}

.social-media h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(230, 126, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px var(--form-focus-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

/* ----------------------
   Section Carte
   ---------------------- */
.map-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.map-container iframe {
    display: block;
    width: 100%;
    border: none;
}

/* ----------------------
   Section FAQ
   ---------------------- */
/* FAQ Styles */
.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #f9f9f9;
}

.faq-question h4 {
    color: #003366;
    margin: 0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.faq-question i {
    color: #0460D9;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Quand la FAQ est active */
.faq-item.active .faq-question {
    background-color: #0460D9;
}

.faq-item.active .faq-question h4 {
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px;
}

/* ----------------------
   Responsive Design
   ---------------------- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-banner h2 {
        font-size: 3rem;
    }
    
    .page-banner p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: auto;
        padding: 100px 0;
    }
    
    .contact-info,
    .contact-form {
        padding: 25px;
    }
    
    .contact-details li {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .page-banner h2 {
        font-size: 2.5rem;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 15px;
    }
}

/* ----------------------
   Animations Spécifiques
   ---------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Utilisation des classes d'animation */
.wow.fadeIn {
    animation-name: fadeIn;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}

.wow.fadeInDown {
    animation-name: fadeInDown;
}

/* =============================================
   PAGE RÉSERVATION - HÔTEL MONT BLEU
   Styles spécifiques pour la page de réservation
   ============================================= */

/* ----------------------
   Variables & Base Styles
   ---------------------- */
   :root {
    /* Couleurs spécifiques à la réservation */
    --reservation-step-active: var(--secondary-color);
    --reservation-step-completed: var(--success);
    --reservation-step-inactive: var(--gray);
    --reservation-card-bg: rgba(255, 255, 255, 0.95);
    --reservation-selected-bg: rgba(230, 126, 34, 0.05);
}

/* ----------------------
   Conteneur principal
   ---------------------- */
.reservation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px auto;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .reservation-container {
        grid-template-columns: 1fr;
    }
}

/* ----------------------
   Formulaire de réservation
   ---------------------- */
.reservation-form {
    background: var(--reservation-card-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.reservation-form:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.reservation-form h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.reservation-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ----------------------
   Récapitulatif de réservation
   ---------------------- */
.reservation-summary {
    background: var(--reservation-card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px;
    transition: var(--transition);
}

.reservation-summary:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.reservation-summary h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.reservation-summary h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.room-selected {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.room-selected img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.room-selected img:hover {
    transform: scale(1.05);
}

.room-selected h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.room-selected p {
    color: var(--secondary-color);
    font-weight: 600;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-total {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.notice {
    margin-top: 25px;
    padding: 15px;
    background-color: rgba(4, 96, 217, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.notice i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.notice p {
    display: inline;
    color: var(--dark-color);
}

/* ----------------------
   Étapes de réservation
   ---------------------- */
.reservation-steps {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    counter-reset: step;
    position: relative;
}

.reservation-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.reservation-step::before {
    counter-increment: step;
    content: counter(step);
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 2px solid var(--reservation-step-inactive);
    color: var(--reservation-step-inactive);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    transition: var(--transition);
}

.reservation-step.active::before {
    background-color: var(--reservation-step-active);
    border-color: var(--reservation-step-active);
    color: var(--white);
}

.reservation-step.completed::before {
    background-color: var(--reservation-step-completed);
    border-color: var(--reservation-step-completed);
    color: var(--white);
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.reservation-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    z-index: -1;
    transition: var(--transition);
}

.reservation-step:last-child::after {
    display: none;
}

.reservation-step.active::after,
.reservation-step.completed::after {
    background-color: var(--reservation-step-active);
}

.reservation-step p {
    font-size: 0.9rem;
    color: var(--gray);
    transition: var(--transition);
}

.reservation-step.active p,
.reservation-step.completed p {
    color: var(--dark-color);
    font-weight: 600;
}

/* ----------------------
   Sélection de chambre
   ---------------------- */
.room-selection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.room-option {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    transition: var(--transition);
    cursor: pointer;
    background-color: var(--white);
}

.room-option:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.room-option.selected {
    border-color: var(--secondary-color);
    background-color: var(--reservation-selected-bg);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.1);
}

.room-option h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.room-option .price {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.room-option .capacity {
    display: flex;
    align-items: center;
    margin: 10px 0;
    color: var(--dark-color);
}

.room-option .capacity i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.room-option ul {
    margin: 15px 0 0;
    padding-left: 20px;
}

.room-option ul li {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--gray);
}

/* ----------------------
   Actions du formulaire
   ---------------------- */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.form-actions .btn {
    min-width: 150px;
    text-align: center;
}

.btn-prev {
    background-color: var(--gray);
    color: var(--white);
}

.btn-prev:hover {
    background-color: var(--dark-color);
}

/* ----------------------
   Responsive Design
   ---------------------- */
@media (max-width: 768px) {
    .reservation-form,
    .reservation-summary {
        padding: 25px;
    }
    
    .room-selected {
        flex-direction: column;
        text-align: center;
    }
    
    .room-selected img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .reservation-steps {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .reservation-step {
        flex: none;
        width: calc(50% - 10px);
    }
    
    .reservation-step::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .reservation-form h3,
    .reservation-summary h3 {
        font-size: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* ----------------------
   Animations Spécifiques
   ---------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow.fadeIn {
    animation-name: fadeIn;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}
/* ----------------------
   Navigation Mobile 
   ---------------------- */
   @media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--primary-color);
        color: white;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        transition: var(--transition);
        justify-content: center;
        align-items: center;
    }

    .mobile-menu-btn:hover {
        background: var(--secondary-color);
        transform: scale(1.05);
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 90%;
        max-width: 400px;
        height: calc(100vh - 80px);
        background: white;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 30px;
        overflow-y: auto;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 999;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 5px;
    }

    .main-nav a {
        padding: 12px 15px;
        border-radius: 8px;
        margin-bottom: 5px;
        color: var(--primary-color);
        background: rgba(4, 96, 217, 0.05);
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: white;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-color) 100%);
    }

    .main-nav a i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .main-nav {
        width: 100%;
        max-width: none;
    }
}
/* Menu mobile - Bouton fermeture */
.mobile-menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

@media (max-width: 992px) {
    .mobile-menu-close {
        display: block;
    }
    
    /* Ajoutez un overlay */
    .main-nav::before {
        content: '';
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: -1;
    }
    
    .main-nav.active::before {
        opacity: 1;
        visibility: visible;
    }
}

/* Footer */
.footer {
    background-color:#1c3ba9;
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
}



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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: var(--font-secondary);
}

.newsletter-form button {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #D35400;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    opacity: 0.8;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Styles du chatbot */
.chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-icon {
    width: 60px;
    height: 60px;
    background: #061f39;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.chatbot-container {
    display: none;
    width: 350px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
}

.chatbot-header {
    background: #061f39;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    margin: 0;
    font-size: 18px;
}

.close-chatbot {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.chatbot-messages {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
    background: #f5f5f5;
}

.chatbot-message {
    margin-bottom: 15px;
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    line-height: 1.4;
}

.bot-message {
    background: #e3e3e3;
    color: #333;
    margin-right: auto;
    border-bottom-left-radius: 5px;
}

.user-message {
    background: #061f39;
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
    background: white;
}

.chatbot-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chatbot-input button {
    background: #061f39;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
}

/* Pour les petits écrans */
@media (max-width: 480px) {
    .chatbot {
        bottom: 15px;
        right: 15px;
    }
    
    .chatbot-container {
        width: calc(100% - 30px);
        right: 15px;
        bottom: 80px;
    }
}


/* Responsive */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: var(--transition);
        padding: 30px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav a {
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid #eee;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .quick-booking {
        margin-top: 0;
    }
    
    .booking-form {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 600px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .legal-links {
        justify-content: center;
    }
}