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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Bannière avec menu */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #013161;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-image {
    height: 150px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: #b0bec5;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* Responsive menu */
/* Responsive pour la nouvelle mise en page */
@media (max-width: 768px) {
    .gallery-layout {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }
    
    .gallery-main-image-container {
        flex: none;
        height: 45vh;
        min-height: 350px;
    }
    
    .gallery-thumbnails-container {
        flex: none;
        padding: 15px;
        max-height: 40vh;
    }
    
    .gallery-thumbnails-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-main-overlay .gallery-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .gallery-indicator {
        display: none;
    }
    
    .space-title {
        font-size: 2rem;
    }
    
    .highlights-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .pricing-header-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .pricing-actions {
        width: 100%;
        justify-content: center;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-layout {
        flex-direction: column;
        height: auto;
        min-height: auto;
        gap: 0;
    }
    
    .gallery-main-image-container {
        flex: none;
        width: 100%;
        height: 50vh;
        min-height: 300px;
    }
    
    .gallery-thumbnails-container {
        flex: none;
        padding: 10px 10px 5px 10px;
        max-height: none;
        height: auto;
        background: #fff;
        border-top: 1px solid #e0e0e0;
        display: block;
        overflow: visible;
        width: 100%;
        position: relative;
    }
    
    .gallery-thumbnails-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: scroll !important;
        overflow-y: hidden !important;
        gap: 8px;
        padding: 5px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        height: auto;
        max-height: none;
        scroll-behavior: smooth;
        touch-action: pan-x;
        -ms-overflow-style: none;
        scrollbar-width: none;
        white-space: nowrap;
    }
    
    .gallery-thumbnails-grid::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    .thumbnail-item {
        flex: 0 0 85px !important;
        width: 85px !important;
        height: 85px !important;
        min-width: 85px !important;
        min-height: 85px !important;
        max-width: 85px !important;
        max-height: 85px !important;
        aspect-ratio: 1;
        scroll-snap-align: start;
        border-radius: 8px;
        border: 2px solid transparent;
        overflow: hidden;
        cursor: pointer;
        margin: 0;
        position: relative;
        display: inline-block;
    }
    
    .thumbnail-item.active {
        border-color: #013161;
        box-shadow: 0 2px 8px rgba(1, 49, 97, 0.3);
    }
    
    .thumbnail-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        pointer-events: none;
        transform: none !important;
        image-orientation: from-image;
    }
    
    .gallery-main-overlay {
        padding: 10px;
    }
    
    .gallery-main-overlay .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .gallery-indicator {
        display: none;
    }
    
    .space-title {
        font-size: 1.6rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background: #013161;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 15px 0;
    }
    
    .nav-link {
        display: block;
        width: 100%;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .logo-image {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        justify-content: center;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .logo-image {
        height: 100px;
    }
    
    .hamburger {
        position: absolute;
        right: 20px;
    }
}

/* Galerie d'images principale - Layout avec grande image à gauche et miniatures à droite */
.image-gallery-section {
    width: 100%;
    background: #fff;
    padding: 0;
}

.gallery-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.gallery-layout {
    display: flex;
    height: 65vh;
    min-height: 500px;
    gap: 2px;
    background: #000;
}

/* Grande image à gauche */
.gallery-main-image-container {
    flex: 2;
    position: relative;
    overflow: hidden;
    background: #000;
}

.gallery-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
    transform: none;
    image-orientation: from-image;
}

.gallery-main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    pointer-events: none;
}

.gallery-main-overlay .gallery-nav-btn {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.gallery-main-overlay .gallery-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.gallery-main-overlay .gallery-nav-btn:active {
    transform: scale(0.95);
}

/* Miniatures à droite */
.gallery-thumbnails-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8f8f8;
    padding: 20px;
    gap: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

.gallery-thumbnails-container::-webkit-scrollbar {
    width: 6px;
}

.gallery-thumbnails-container::-webkit-scrollbar-track {
    background: #e0e0e0;
}

.gallery-thumbnails-container::-webkit-scrollbar-thumb {
    background: #013161;
    border-radius: 3px;
}

.gallery-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    flex: 1;
}

.thumbnail-item {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: transparent;
}

.thumbnail-item:hover {
    border-color: #013161;
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: #013161;
    box-shadow: 0 4px 12px rgba(1, 49, 97, 0.4);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    transform: none;
    image-orientation: from-image;
}

.thumbnail-item:hover .thumbnail-image {
    transform: scale(1.1);
}

/* Indicateur d'image */
.gallery-indicator {
    display: none;
}

/* Modal plein écran pour voir les images en grand */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    cursor: pointer;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 95vh;
    object-fit: contain;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Section principale */
.main-content-section {
    padding: 60px 20px;
    background: #fff;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
    position: relative;
}

.main-content-left {
    max-width: 100%;
    min-width: 0;
    overflow: visible;
}

/* Widget de réservation sticky */
.booking-widget-sticky {
    position: sticky;
    top: 140px;
    height: fit-content;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    width: 100%;
    z-index: 10;
}

.booking-widget-content {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.booking-widget-header {
    margin-bottom: 24px;
}

.booking-form-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.booking-subtitle {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.4;
}

.booking-min-duration {
    font-size: 0.9rem;
    color: #666;
}

.booking-dates-input {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
    flex: 1;
}

.date-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.date-input-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
}

.date-input-wrapper {
    position: relative;
    width: 100%;
}

.date-input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.date-input::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.date-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    z-index: 1;
}

.date-input:focus {
    outline: none;
    border-color: #013161;
    box-shadow: 0 0 0 3px rgba(1, 49, 97, 0.1);
}

.date-input:hover {
    border-color: #013161;
}

.date-input:hover + .date-icon {
    color: #013161;
}

.booking-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 20px;
}

.total-label {
    font-size: 0.9rem;
    color: #666;
}

.total-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.booking-widget-btn {
    width: 100%;
    padding: 18px;
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.booking-widget-btn:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.booking-widget-btn:active {
    transform: translateY(0);
}

.booking-disclaimer {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    margin-top: auto;
}

/* Responsive pour le widget sticky */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-widget-sticky {
        position: relative;
        top: 0;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        gap: 20px;
    }
    
    .booking-widget-content {
        padding: 20px;
    }
}

.space-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.space-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.space-location {
    font-size: 1.2rem;
    color: #666;
}

/* Points forts */
.highlights-section {
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0f7ff;
    color: #013161;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-content {
    flex: 1;
}

.highlight-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.highlight-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* À propos de l'espace */
.about-space-section {
    margin: 0 auto 60px;
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.about-space-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.about-space-content p {
    margin-bottom: 20px;
}

.about-space-content strong {
    color: #013161;
    font-weight: 600;
}

/* Horaires */
.hours-section {
    margin: 0 auto 60px;
}

.hours-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-days {
    font-weight: 500;
    color: #333;
}

.hours-time {
    color: #666;
}

/* Équipements */
.equipment-section {
    margin: 0 auto 60px;
}

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

.equipment-category {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 12px;
}

.equipment-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #013161;
}

.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-list li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.equipment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #013161;
    font-weight: bold;
}

/* Services */
.services-section {
    max-width: 1200px;
    margin: 0 auto 60px;
}

/* Nos partenaires dans le contenu principal */
.partners-section-main {
    margin: 0 auto 60px;
}

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

.services-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #013161;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #f0f7ff;
    color: #013161;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

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

/* Section Tarification */
.pricing-header-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 40px;
    background: #f8f8f8;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-summary {
    flex: 1;
    min-width: 250px;
}

.pricing-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #013161;
    margin-bottom: 10px;
}

.pricing-note {
    font-size: 1rem;
    color: #666;
}

.pricing-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: #013161;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary-large:hover {
    background: #014a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 49, 97, 0.3);
}

.btn-secondary-large {
    background: white;
    color: #013161;
    border: 2px solid #013161;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-secondary-large:hover {
    background: #013161;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 49, 97, 0.3);
}

/* Hero Section (ancien - conservé pour compatibilité) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 120px;
}

/* Overlay léger pour la lisibilité du texte */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 20px;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-cta {
    background: white;
    color: #333;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: #f0f0f0;
}

.btn-cta:active {
    transform: translateY(-1px);
}

/* About Section */
.about {
    padding: 80px 20px;
    background: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 30px;
}

.lead {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 25px;
    font-weight: 500;
}

.lead strong {
    color: #333;
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: #333;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Content Sections - Nouveau Design Moderne */
.content-section {
    padding: 80px 15px;
    position: relative;
}

.popup-section {
    background: #f8fafc;
}

.about-section {
    background: #ffffff;
}

.location-section {
    background: #f8fafc;
    padding: 50px 15px;
}

.partners-section {
    background: #ffffff;
}

.reservations-section {
    background: #ffffff;
}

.pourquoi-section {
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3.5rem;
    color: #013161;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-divider {
    width: 100px;
    height: 5px;
    background: #013161;
    margin: 0 auto;
    border-radius: 5px;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #013161;
    border-radius: 50%;
}

.section-body {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Pop-Up - Cartes d'information */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #013161;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.info-icon {
    margin-bottom: 20px;
    display: block;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 48px;
    height: 48px;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.info-card strong {
    color: #013161;
    font-weight: 600;
}

/* Section But du Pop-Up */
.popup-purpose {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.popup-purpose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #013161;
}

.purpose-icon {
    margin: 0 auto 25px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    border-radius: 50%;
    padding: 15px;
}

.purpose-icon svg {
    width: 48px;
    height: 48px;
}

.purpose-title {
    font-size: 2rem;
    color: #013161;
    margin-bottom: 25px;
    font-weight: 700;
}

.purpose-text {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: left;
}

.purpose-text:last-child {
    margin-bottom: 0;
}

.purpose-text strong {
    color: #013161;
    font-weight: 600;
}

.section-description {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-description p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

/* Section Pourquoi utiliser un pop-up */
.pourquoi-header {
    margin-bottom: 60px;
}

.pourquoi-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.pourquoi-title-underline {
    position: relative;
    display: inline-block;
}

.pourquoi-title-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #013161;
}

.pourquoi-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.pourquoi-benefits {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    stroke: #013161;
}

.benefit-icon-arrows {
    display: flex;
    gap: -5px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.benefit-icon-arrows svg {
    width: 24px;
    height: 24px;
    margin: 0 -3px;
}

.benefit-text h3 {
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

.testimonial-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    position: relative;
}

.testimonial-title {
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-box {
    position: relative;
    padding: 20px 0;
}

.testimonial-quote {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 6rem;
    color: #013161;
    font-weight: 800;
    line-height: 1;
    font-family: Georgia, serif;
    opacity: 0.3;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    color: #013161;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* About Section - Nouveau Design */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: none;
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-intro {
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.about-intro h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 800;
}

.about-intro h3 strong {
    color: #013161;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-description p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.9;
    margin: 0;
}

.about-description strong {
    color: #013161;
    font-weight: 600;
}

/* Section Emplacement / Localisation */
.location-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.location-map-wrapper {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 6px;
}

.location-map {
    width: 100%;
    height: auto;
    max-height: 450px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-info h3 {
    font-size: 1.5rem;
    color: #013161;
    margin: 0;
    font-weight: 700;
}

.location-info p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.location-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.location-detail-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 18px rgba(1, 49, 97, 0.15);
}

.location-detail-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #013161;
}

.location-detail-item span {
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
}

/* Responsive pour la section localisation */
@media (max-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 800px;
    }
    
    .location-map-wrapper {
        order: 1;
    }
    
    .location-map {
        max-height: 400px;
    }
    
    .location-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .location-content {
        gap: 30px;
    }
    
    .location-map {
        max-height: 350px;
    }
    
    .location-info h3 {
        font-size: 1.3rem;
    }
    
    .location-info p {
        font-size: 0.9rem;
    }
    
    .location-detail-item {
        padding: 10px 12px;
    }
    
    .location-detail-item span {
        font-size: 0.85rem;
    }
    
    .location-detail-item svg {
        width: 18px;
        height: 18px;
    }
}

/* Partenaires Section */
/* Partenaires - Nouveau Design */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.partner-card-modern {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.partner-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #013161;
}

.partner-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(1, 49, 97, 0.2);
    border-color: #013161;
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.partner-icon-modern {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    border-radius: 20px;
    flex-shrink: 0;
}

.partner-icon-modern svg {
    width: 40px;
    height: 40px;
}

.partner-card-modern h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin: 0;
    font-weight: 700;
}

.partner-body {
    padding-top: 10px;
}

.partner-body p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.9;
    margin: 0;
}

.partner-body strong {
    color: #013161;
    font-weight: 600;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #E4405F;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: #C13584;
    transform: translateX(3px);
}

.instagram-link svg {
    flex-shrink: 0;
}

/* Réservations Section */
/* Section Réservations - Nouveau Design */
.reservations-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.intro-text {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.9;
    text-align: center;
    margin-bottom: 40px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.pricing-section,
.booking-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.pricing-section:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.reservations-content h3 {
    font-size: 1.8rem;
    color: #013161;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Tarifs - Nouveau Design avec Cartes */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.pricing-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #013161;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(1, 49, 97, 0.15);
    border-color: #013161;
}

.pricing-days {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-price {
    font-size: 2rem;
    color: #013161;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-discount {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

.pricing-note {
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

/* Affichage du prix total */
.price-display {
    background: #013161;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(1, 49, 97, 0.3);
}

.price-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
}

.booking-section p {
    font-size: 1.15rem;
    color: #555;
    line-height: 2;
    margin: 0;
}

.booking-section strong {
    color: #013161;
    font-weight: 600;
}

/* Calendrier interactif */
.calendar-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

.calendar-wrapper {
    background: white;
    border-radius: 15px;
    padding: 20px 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.calendar-header h3 {
    font-size: 1.5rem;
    color: #013161;
    font-weight: 700;
    margin: 0;
}

.calendar-nav {
    background: #013161;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(1, 49, 97, 0.3);
    font-weight: bold;
}

.calendar-nav:hover {
    background: #002244;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(1, 49, 97, 0.4);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-weekdays div {
    text-align: center;
    font-weight: 600;
    color: #013161;
    padding: 10px;
    font-size: 0.9rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #333;
    background: white;
}

.calendar-day:hover:not(.past):not(.other-month) {
    background: #e6f0f8;
    transform: scale(1.1);
}

.calendar-day.today {
    background: #013161;
    color: white;
    font-weight: 700;
}

.calendar-day.selected {
    background: #013161;
    color: white;
    font-weight: 700;
}

.calendar-day.in-range {
    background: #cce5f0;
    color: #013161;
}

.calendar-day.past {
    opacity: 0.3;
    cursor: not-allowed;
    background: #e5e7eb;
}

.calendar-day.other-month {
    opacity: 0.3;
    color: #9ca3af;
}

.selected-dates {
    background: white;
    border-radius: 15px;
    padding: 20px 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.selected-dates h3 {
    font-size: 1.5rem;
    color: #013161;
    margin-bottom: 20px;
    font-weight: 700;
}

.dates-display {
    background: #e6f0f8;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #013161;
    font-weight: 600;
    text-align: center;
    border: 2px solid #013161;
    box-shadow: 0 4px 15px rgba(1, 49, 97, 0.2);
    transition: all 0.3s ease;
}

.dates-display.empty {
    background: #f3f4f6;
    color: #6b7280;
    border-color: #d1d5db;
    box-shadow: none;
    font-weight: 500;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pricing-info h4,
.booking-form-section h4 {
    font-size: 1.2rem;
    color: #013161;
    margin-bottom: 15px;
    font-weight: 700;
}

.booking-form-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.btn-booking {
    background: #013161;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 49, 97, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-booking:hover:not(:disabled) {
    background: #002244;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 49, 97, 0.4);
}

.btn-booking:active:not(:disabled) {
    transform: translateY(0);
}

.btn-booking:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}

.btn-booking span {
    font-size: 1.1rem;
}

.btn-booking svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: white;
    margin: 3% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: slideDown 0.4s ease;
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 36px;
    font-weight: bold;
    padding: 15px 25px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
    position: relative;
}

.close:hover,
.close:focus {
    color: #333;
}

.modal-header {
    background: #013161;
    color: white;
    padding: 35px;
    text-align: center;
}

.modal-header h2 {
    font-size: 2.2rem;
    margin: 0;
}

.modal-body {
    padding: 40px;
}

.modal-image-placeholder {
    width: 100%;
    height: 450px;
    background: #f0f0f0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.modal-body h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

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

.info-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #333;
}

.info-item strong {
    color: #333;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.info-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

.modal-description {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #333;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 30px 0;
    line-height: 1.7;
}

.btn-secondary {
    background: #333;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    display: block;
    margin: 30px auto 0;
    width: 200px;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: #555;
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Styles pour le formulaire de réservation */
.booking-modal-content {
    max-width: 600px;
}

.booking-dates-summary {
    background: #e6f0f8;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 15px 40px 0;
    color: #013161;
    font-weight: 500;
    text-align: center;
    border: 2px solid #013161;
    font-size: 1rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #013161;
    box-shadow: 0 0 0 3px rgba(1, 49, 97, 0.1);
}

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

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    justify-content: flex-end;
}

.btn-primary {
    background: #013161;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 49, 97, 0.3);
}

.btn-primary:hover {
    background: #002244;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 49, 97, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.form-actions .btn-secondary {
    margin: 0;
    width: auto;
    padding: 12px 30px;
    background: #6b7280;
}

.form-actions .btn-secondary:hover {
    background: #4b5563;
}

.form-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Amélioration du calendrier */
.calendar-day {
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.calendar-day.selected {
    background: #013161;
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(1, 49, 97, 0.4);
}

.calendar-day.in-range {
    background: #cce5f0;
    color: #013161;
    font-weight: 500;
}

.calendar-day.today {
    background: #013161;
    color: white;
    font-weight: 700;
    border: 2px solid #013161;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
    }
    
    .lead {
        font-size: 1.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .popup-purpose {
        padding: 40px 30px;
        margin-bottom: 40px;
    }
    
    .purpose-title {
        font-size: 1.8rem;
    }
    
    .purpose-text {
        font-size: 1.1rem;
    }
    
    .purpose-icon {
        width: 70px;
        height: 70px;
    }
    
    .purpose-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-card {
        padding: 30px 25px;
    }
    
    .section-description {
        padding: 25px;
    }
    
    .section-description p {
        font-size: 1.1rem;
    }
    
    .pourquoi-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pourquoi-title {
        font-size: 2.2rem;
    }
    
    .benefit-item {
        gap: 20px;
    }
    
    .benefit-text h3 {
        font-size: 1.3rem;
    }
    
    .benefit-text p {
        font-size: 1.05rem;
    }
    
    .testimonial-section {
        padding: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-text-content {
        order: 2;
    }
    
    .about-intro h3 {
        font-size: 1.8rem;
    }
    
    .about-description p {
        font-size: 1.05rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partner-card-modern {
        padding: 30px;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .pricing-price {
        font-size: 1.8rem;
    }
    
    .reservations-content {
        padding: 30px;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .calendar-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .calendar-wrapper {
        padding: 20px;
    }
    
    .calendar-header h3 {
        font-size: 1.3rem;
    }
    
    .calendar-nav {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .calendar-day {
        font-size: 0.9rem;
    }
    
    .selected-dates {
        padding: 20px;
    }
    
    .selected-dates h3 {
        font-size: 1.3rem;
    }
    
    .reservations-content h3 {
        font-size: 1.5rem;
    }
    
    .pricing-list li {
        font-size: 1.05rem;
        padding: 12px 15px;
    }
    
    .booking-section p {
        font-size: 1.05rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    .booking-dates-summary {
        margin: 15px 20px 0;
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn-secondary,
    .form-actions .btn-primary {
        width: 100%;
    }
    
    .btn-booking {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.8rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .about {
        padding: 50px 20px;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .popup-purpose {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .purpose-title {
        font-size: 1.5rem;
    }
    
    .purpose-text {
        font-size: 1rem;
    }
    
    .purpose-icon {
        width: 60px;
        height: 60px;
    }
    
    .purpose-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .info-cards {
        gap: 20px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .info-icon {
        font-size: 2.5rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .section-description {
        padding: 20px;
    }
    
    .section-description p {
        font-size: 1rem;
    }
    
    .pourquoi-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .pourquoi-content {
        gap: 30px;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
    
    .benefit-text h3 {
        font-size: 1.2rem;
    }
    
    .benefit-text p {
        font-size: 1rem;
    }
    
    .testimonial-section {
        padding: 25px 20px;
    }
    
    .testimonial-title {
        font-size: 1.3rem;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
    }
    
    .testimonial-quote {
        font-size: 4rem;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-image img {
        min-height: 300px;
    }
    
    .about-intro h3 {
        font-size: 1.5rem;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .partner-card-modern {
        padding: 25px;
    }
    
    .partner-card-modern h3 {
        font-size: 1.5rem;
    }
    
    .partner-body p {
        font-size: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-price {
        font-size: 1.6rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .reservations-content {
        padding: 25px;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .calendar-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calendar-wrapper {
        padding: 15px;
    }
    
    .calendar-header h3 {
        font-size: 1.1rem;
    }
    
    .calendar-nav {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }
    
    .calendar-weekdays div {
        font-size: 0.8rem;
        padding: 8px 5px;
    }
    
    .calendar-day {
        font-size: 0.85rem;
    }
    
    .selected-dates {
        padding: 15px;
    }
    
    .selected-dates h3 {
        font-size: 1.1rem;
    }
    
    .dates-display {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .reservations-content h3 {
        font-size: 1.3rem;
    }
    
    .pricing-list li {
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .pricing-list li strong {
        min-width: 80px;
        display: block;
        margin-bottom: 5px;
    }
    
    .booking-section p {
        font-size: 1rem;
    }
    
    .booking-dates-summary {
        margin: 10px 15px 0;
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .booking-form {
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-actions .btn-secondary,
    .form-actions .btn-primary {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .btn-booking {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .btn-booking span {
        font-size: 1rem;
    }
}

/* Widget de réservation mobile (flottant en bas à gauche) */
.mobile-booking-widget {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.mobile-booking-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #013161;
    color: white;
    padding: 14px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(1, 49, 97, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.mobile-booking-toggle:hover {
    background: #014a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(1, 49, 97, 0.5);
}

.mobile-booking-toggle svg {
    width: 20px;
    height: 20px;
}

.mobile-booking-content {
    display: none;
    position: fixed;
    bottom: 80px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: slideUpMobile 0.3s ease;
}

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

.mobile-booking-content.active {
    display: block;
}

.mobile-booking-header {
    background: #013161;
    color: white;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.mobile-booking-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.mobile-booking-close {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.mobile-booking-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-booking-body {
    padding: 20px;
}

.mobile-booking-min-duration {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 18px;
    text-align: center;
}

.mobile-booking-dates-input {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.mobile-booking-btn {
    width: 100%;
    background: #013161;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 49, 97, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-booking-btn:hover {
    background: #002244;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 49, 97, 0.4);
}

.mobile-booking-btn:active {
    transform: translateY(0);
}

.mobile-booking-disclaimer {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin-top: 12px;
}

/* Afficher le widget mobile uniquement sur petits écrans */
@media (max-width: 768px) {
    .mobile-booking-widget {
        display: block;
    }
    
    /* Masquer le widget sticky desktop sur mobile */
    .booking-widget-sticky {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-booking-widget {
        display: none !important;
    }
}
