/* ===== PAGE INFOS PRATIQUES (VERSION SIMPLIFIÉE) ===== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35d4, #f7921ec6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.scroll-to-top:hover {
    background: #f7931e;
    transform: translateY(-2px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Horaires Info */
.horaires-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.horaires-info h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 0.8rem;
}

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

.horaires-list li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px solid #e9ecef;
}

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

/* Email Contacts */
.email-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid rgb(94, 180, 174);
}

.email-item strong {
    display: block;
    color: rgb(94, 180, 174);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.email-item a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 0.9rem;
}

.email-item a:hover {
    text-decoration: underline;
}

/* Access Section */
.access-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.access-section h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.access-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.access-method {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.access-method:hover {
    transform: translateY(-3px);
}

.access-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.access-content h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 0.5rem;
}

.access-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

.parking-info {
    background: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.144) 0%,
        rgba(255, 153, 102, 0.143) 100%
    );
    border: 1px solid #ffeaa700;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.parking-info h4 {
    color: #ff5e00;
    margin-bottom: 0.8rem;
}

.parking-info p {
    color: #ac2800;
    margin: 0;
    line-height: 1.5;
}

/* Function Lists */
.function-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.function-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.4;
}

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

/* Material Lists */ /* ===== PAGE INFOS PRATIQUES ===== */

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card.main-contact {
    border-left: 4px solid #ff6b35;
}

.contact-card h3 {
    color: rgb(94, 180, 174);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-details a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}
/*
.quick-nav-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem 0;
    transition: all 0.3s ease;
}

.quick-nav-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
} */

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*
.quick-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-nav-btn {
    background: white;
    color: #2d5016;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quick-nav-btn:hover {
    background: #2d5016;
    color: white;
    transform: translateY(-2px);
} */

/* Hours Info */
.hours-info {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.hours-info ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.hours-info li {
    padding: 0.2rem 0;
    font-size: 0.9rem;
    color: #666;
}

/* Email List */
.email-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-item {
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid rgb(94, 180, 174);
}

.email-item strong {
    display: block;
    color: rgb(94, 180, 174);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.email-item a {
    font-size: 0.9rem;
    word-break: break-all;
}

/* Access Section */
.access-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.access-section h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.access-method {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.access-method:hover {
    transform: translateY(-3px);
}

.access-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* Parking Notice */
.parking-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.parking-notice h4 {
    color: #d68910;
    margin-bottom: 0.8rem;
}

.parking-notice p {
    color: #7d6608;
    margin: 0;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-section h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgb(94, 180, 174);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a7c59;
}

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

.btn-submit {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

/* Functioning Section */
.functioning-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    font-style: italic;
}

.functioning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.function-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.function-card:hover {
    transform: translateY(-3px);
}

.function-card h3 {
    color: rgb(94, 180, 174);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Safety Section */
.safety-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.safety-section h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.safety-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.safety-item:hover {
    transform: translateY(-3px);
}

.safety-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.safety-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Documents Officiel */
.documents-officiel {
    text-align: center;
    margin-top: 3rem;
}

.documents-officiel h3 {
    color: rgb(94, 180, 174);
    margin-bottom: 1.5rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.download-btn:hover {
    transform: translateY(-2px);
}

.download-icon {
    font-size: 1.2rem;
}

/* Equipment Section */
.materiel-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.equipment-section {
    margin-bottom: 4rem;
}

.equipment-section h3 {
    color: rgb(94, 180, 174);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.equipment-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-3px);
}

.equipment-card.essential {
    border-left: 4px solid #dc3545;
}

.equipment-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.equipment-content h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 0.5rem;
}

.equipment-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0.3rem 0;
}

.equipment-content .warning {
    color: #dc3545;
    font-weight: 500;
}

.equipment-content .note {
    color: #6c757d;
    font-style: italic;
}

/* Equipment List */
.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.equipment-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-3px);
}

.equipment-level {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
}

.equipment-desc strong {
    color: rgb(94, 180, 174);
    display: block;
    margin-bottom: 0.5rem;
}

.equipment-desc p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Competition Equipment */
.competition-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.competition-equipment {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.competition-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.competition-category h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 1rem;
    text-align: center;
}

.competition-category ul {
    list-style: none;
    padding: 0;
}

.competition-category li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.competition-category li::before {
    content: "🏆";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Equipment Notes */
.equipment-notes {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.equipment-notes h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
}

.equipment-notes .notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.equipment-notes .note-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
}
/* ===== PAGE PLANNING & TARIFS ===== */

/* Planning Info */
.planning-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.planning-info strong {
    color: rgb(94, 180, 174);
}

/* Schedule Container */
.schedule-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.schedule-day {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.schedule-day.weekend {
    border-left: 4px solid #ff6b35;
}

.day-header {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.3rem;
    text-align: center;
}

.schedule-slots {
    padding: 1.5rem;
}

.time-slot {
    display: grid;
    grid-template-columns: 120px 1fr 100px 150px;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* ===== CSS PRINCIPAL SHEVA ===== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafbfb;
}

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

/* ===== HEADER & NAVIGATION AMÉLIORÉ ===== */
.header {
    background: linear-gradient(
        135deg,
        rgb(94, 180, 174) 0%,
        rgb(69, 144, 150) 100%
    );
    color: white;
    padding: 0.5rem 0; /* Marge réduite en haut et bas */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 70px; /* Hauteur réduite du header */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    min-height: 60px; /* Hauteur minimale réduite */
}

/* Section gauche : Logo + Image secondaire */
.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

/* Logo principal cliquable */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: translateY(-2px);
}

/* Image du logo - adaptative à la hauteur du header */
.logo-image {
    height: 60px; /* Taille adaptée au header réduit */
    width: auto;
    max-width: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1);
    background: rgba(255, 255, 255, 0.9); /* Fond blanc semi-transparent */
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo a:hover .logo-image {
    transform: scale(1.1) rotate(1deg);

    background: rgba(255, 255, 255, 1); /* Fond blanc complet au hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Image secondaire à côté du logo */
.secondary-image {
    height: 45px; /* Légèrement plus petite que le logo */
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.9); /* Fond blanc semi-transparent */
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.secondary-image:hover {
    transform: scale(1.05);
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Navigation principale - centrée à droite */
.nav-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex: 1;
    height: 100%;
    margin-left: 1.5rem; /* Espace entre logo et navigation */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex: 1;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
    white-space: nowrap;
    font-size: 0.95rem; /* Légèrement réduit pour le header compact */
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffffff;
}

/* Dropdown */
/* Dropdown Desktop */
/* Dropdown Desktop - Version corrigée */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(94, 180, 174);
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;

    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 8px;

    z-index: 9999;
}

.dropdown-parent {
    position: relative;
}

.dropdown-parent:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: white;
    display: block;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Forcer les sections suivantes à rester en arrière */
.hero-banner,
.page-hero,
.labels-section,
.news-section,
.preview-section {
    z-index: 1;
    position: relative;
}

/* Header avec z-index élevé */

.nav-menu {
    position: relative;
    z-index: 1001;
}

/* Bouton compte - à l'extrême droite */
.btn-account {
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 94, 77) 100%
    );
    color: white;
    padding: 0.6rem 1.3rem; /* Padding réduit pour header compact */
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.btn-account:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Toggle mobile */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-toggle:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header {
        min-height: 60px;
        padding: 0.3rem 0;
    }

    .nav-container {
        min-height: 50px;
        gap: 1rem;
    }

    .logo-section {
        gap: 1rem;
    }

    .logo-image {
        height: 40px;
        max-width: 40px;
        padding: 3px;
    }

    .secondary-image {
        height: 35px;
        max-width: 35px;
        padding: 3px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-main {
        display: none; /* À adapter selon votre menu mobile */
    }

    .btn-account {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo-image {
        height: 35px;
        max-width: 35px;
        padding: 2px;
    }

    .secondary-image {
        height: 30px;
        max-width: 30px;
        padding: 2px;
    }

    .logo-section {
        gap: 0.8rem;
    }
}
@media (max-width: 768px) {
    .header {
        position: relative; /* Important pour le positionnement du menu */
    }

    .nav-container {
        position: relative;
    }
}

/* Animation pour le chargement */
@keyframes logoEntrance {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.logo-section {
    animation: logoEntrance 0.6s ease-out;
}

/* Variantes de taille pour différents contextes */
.header.compact {
    min-height: 50px;
    padding: 0.25rem 0;
}

.header.compact .logo-image {
    height: 35px;
    padding: 3px;
}

.header.compact .secondary-image {
    height: 30px;
    padding: 3px;
}

/* Alternative sans fond pour logos avec fond transparent */
.logo-image.no-background {
    background: none;
    box-shadow: none;
    padding: 0;
    filter: invert(1) brightness(1.2); /* Inverse les couleurs pour rendre visible sur fond sombre */
}

.secondary-image.no-background {
    background: none;
    box-shadow: none;
    padding: 0;
    filter: invert(1) brightness(1.2);
}

/* Alternative avec fond coloré */
.logo-image.colored-background {
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-image.colored-background {
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* ===== HERO BANNER ===== */
.hero-banner {
    color: white;
    text-align: center;
    padding: 8rem 2rem 6rem;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Important pour la vidéo */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

/* Overlay gradient par-dessus la vidéo */
.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(255, 255, 255, 0.3),
        rgba(69, 144, 169, 0.4)
    );
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: rgb(94, 180, 174);
    background-color: rgba(255, 255, 255, 0.737);
    padding: 0.5rem;
    border-radius: 12px;
}

.hero-subtitle {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
    background-color: rgba(0, 0, 0, 0.165);
    border-radius: 12px;
    padding: 5px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(0, 0, 0, 0.165);

    border-radius: 12px; /* arrondi des angles */
    padding: 0.5rem; /* pour éviter que le texte colle au bord */
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 94, 77) 100%
    );
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(255, 94, 77, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 153, 102) 100%
    );
    box-shadow: 0 6px 20px rgb(255, 94, 77, 0.3);
}

.cta-pricesimulation {
    display: inline-block;
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 94, 77) 100%
    );
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-pricesimulation:hover {
    transform: translateY(-3px);
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 153, 102) 100%
    );
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ===== SECTIONS COMMUNES ===== */
.section-title {
    font-size: 2.8rem;
    color: rgb(94, 180, 174);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-subtitle {
    font-size: 2rem;
    color: rgb(94, 180, 174);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.subsection-title {
    font-size: 2rem;
    color: rgb(94, 180, 174);
    margin-bottom: 2rem;
    margin-top: 2rem;
}

/* ===== LABELS SECTION ===== */
.labels-section {
    background: white;
    padding: 1rem 0;
    text-align: center;
    border-bottom: 0.5px solid #e0e0e0;
}

.labels-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.label-badge {
    display: inline-block;
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 153, 102) 100%
    );
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgb(255, 107, 107) 0%;
    text-decoration: none; /* Enlever le soulignement du lien */
    transition: all 0.3s ease;
    cursor: pointer;
}

.label-badge:hover {
    transform: translateY(-3px); /* Animation de levée */
    box-shadow: 0 6px 20px rrgb(255, 107, 107) 0%;
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 94, 77) 100%
    );
}

.label-badge:active {
    transform: translateY(-1px); /* Légère compression au clic */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.label-logos {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.label-logos img {
    height: 80px;
    width: auto;
    background: #ffffff;
}

/* ===== NEWS SECTION ===== */
.news-section {
    background: white;
    padding: 4rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: rgb(94, 180, 174);
    font-weight: 600;
}

/* Tabs de filtrage */
.news-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgb(94, 180, 174);
    background: white;
    color: rgb(94, 180, 174);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.tab-btn:hover {
    background: rgb(94, 180, 174);
    color: white;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: rgb(94, 180, 174);
    color: white;
}

/* Grid responsive */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* News Cards classiques */
.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 180px;
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.news-title {
    color: rgb(94, 180, 174);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-excerpt {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.news-content li {
    color: #666;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.news-link {
    color: rgb(94, 180, 174);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
    font-size: 0.95rem;
}

.news-link:hover {
    gap: 0.5rem;
    text-decoration: underline;
}

/* Instagram Cards */
.instagram-card {
    padding: 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.instagram-card .instagram-media {
    margin: 0 !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
}

/* Footer avec bouton Instagram */
.news-footer {
    text-align: center;
    margin-top: 2rem;
}

.instagram-follow-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(94, 180, 174, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(94, 180, 174, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .news-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-tabs {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ===== PREVIEW SECTION ===== */
.preview-section {
    padding: 4rem 2rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.preview-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.preview-image {
    height: 200px;
    background: linear-gradient(135deg, rgb(94, 180, 174), rgb(69, 144, 150));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

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

.preview-content {
    padding: 2rem;
    text-align: center;
}

.preview-title {
    color: rgb(94, 180, 174);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.preview-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.preview-link {
    color: #ff6b35;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.preview-link2 {
    color: rgb(255, 255, 255);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.preview-link:hover {
    color: #f7931e;
}

.preview-link2:hover {
    color: rgb(255, 184, 77);
}

.doc-link {
    color: #ff6b6b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.doc-link:hover {
    color: #ffb84d;
}

/* ===== QUICK ACCESS ===== */
.quick-access {
    background: linear-gradient(135deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.quick-access .section-title {
    color: white;
}

.quick-access .section-title::after {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.quick-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.quick-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.quick-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== CONTENT GRIDS ===== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin: 2rem 0;
}

.content-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: rgb(94, 180, 174);
    font-weight: 600;
}

.highlight-vac {
    color: rgb(255, 107, 107);
    font-weight: 600;
}

.under-font {
    color: rgb(94, 180, 174);
    font-weight: 600;
    text-decoration: underline;
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #96969630 100%);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: rgb(94, 180, 174);
    display: block;
}

.stat-label {
    color: #666;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 2px solid rgb(94, 180, 173);
    margin-top: 1rem;
    padding-top: 1rem;
    background: #ffffff;
    color: white;
    padding: 3rem 2rem 2rem;
}

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

.footer-section h3 {
    color: #00b0c0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #333;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #a8d5ba;
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    text-align: center;
    color: #888;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 60px; /* Définis une hauteur minimale */
}

.footer-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-logos img {
    height: auto;
    width: 90px; /* Largeur de base */
    max-height: 50px; /* Hauteur maximale */
    min-width: 70px; /* Largeur minimale */
    object-fit: contain;
}

.footer-copyright {
    margin: 0;
}

/* Responsive pour les petits écrans */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-logos {
        order: 2;
    }

    .footer-copyright {
        order: 1;
    }
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    align-items: center;

    gap: 8px;
    color: #333; /* Ajustez la couleur selon votre thème */
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #a8d5ba; /* Couleur au survol */
}

.social-links i {
    font-size: 18px;
    width: 20px;
}

/* Couleurs spécifiques aux réseaux sociaux */
.social-links a[href*="instagram"]:hover {
    color: #e4405f;
}

.social-links a[href*="facebook"]:hover {
    color: #1877f2;
}

/* ===== PAGES INTERNES ===== */

/* Breadcrumb */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgb(94, 180, 174);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    color: #666;
}

.breadcrumb .current {
    color: #666;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(
        135deg,
        rgba(94, 180, 174, 0.8),
        rgba(69, 144, 150, 0.8)
    );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 0;
    z-index: 1;
    text-align: center;
    position: relative;
}

.hero-logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.hero-logo:hover {
    transform: translateY(-5px);
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 200px;
    }

    .page-hero {
        padding: 3rem 0;
    }
}

/* Quand il y a une image en style inline, on la combine avec le gradient */
.page-hero[style*="background-image"] {
    background-blend-mode: overlay;
}

.page-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    padding: 1rem 0;
}

.content-section.bg-light {
    background: #f8f9fa;
}

/* Organization Grid */
.organization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.org-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid rgb(94, 180, 174);
}

.org-item h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Values List */
.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    color: rgb(94, 180, 174);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-secondary {
    background: transparent;
    color: rgb(94, 180, 174);
    border: 2px solid rgb(94, 180, 174);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgb(94, 180, 174);
    color: white;
}

/* Installations */
.installations-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.installations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.installation-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.installation-card:hover {
    transform: translateY(-5px);
}

.installation-image {
    height: 200px;
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

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

.installation-content {
    padding: 1.5rem;
    text-align: center;
}

.installation-content h3 {
    color: rgb(94, 180, 174);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.installation-specs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.spec {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Membres du conseil d'administration */
.ca-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ca-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.ca-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.ca-card:hover {
    transform: translateY(-5px);
}

.ca-image {
    height: 300px;
    background: linear-gradient(45deg, rgb(255, 255, 255), rgb(255, 255, 255));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.ca-image img {
    width: auto;

    height: 100%;
    object-fit: cover;
}

.ca-content {
    padding: 1.5rem;
    text-align: left;
}

.ca-content h3 {
    color: rgb(94, 180, 174);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.ca-role {
    color: #ff6b35;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.ca-specs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.ca-spec {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Facilities Features */
.facilities-features {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.facilities-features h3 {
    color: rgb(94, 180, 174);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
}

.feature-icon {
    font-size: 1.5rem;
}

/* Team */
.team-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: stretch;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 400px;
    min-width: 200px;
    height: auto; /* La hauteur s'adaptera automatiquement */
    min-height: auto; /* Supprimez le min-height fixe */
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
}
.team-photo img {
    width: 100%;
    height: 100%; /* Changez de 100% à auto */
    object-fit: cover; /* Changez de cover à contain */
    display: block; /* Évite les espaces indésirables */
}

.team-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgb(94, 180, 174);
    margin-bottom: 0.5rem;
}

.team-role {
    color: rgb(255, 107, 107);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-bio {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-contact {
    font-size: 0.8rem;
    color: rgb(94, 180, 174);
}

.team-specs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.team-spec {
    background: linear-gradient(
        135deg,
        rgb(255, 184, 77) 0%,
        rgb(255, 159, 64) 100%
    );
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.team-volunteers {
    background: linear-gradient(135deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.team-volunteers h3 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

/* Responsive pour les petits écrans */
@media (max-width: 768px) {
    .team-card {
        flex-direction: column;
    }

    .team-photo {
        width: 100%;
        min-width: unset;
    }
}

/* ===== PAGE CHEVAUX & PONEYS ===== */

/* Vue d'ensemble cavalerie */
.cavalerie-overview {
    padding: 4rem 0;
    background: white;
}

/* Horse Grid - même style que team-grid */
.horse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

.horse-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.horse-card:hover {
    transform: translateY(-5px);
}

.horse-photo {
    aspect-ratio: 16/9;

    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
}

.horse-photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.horse-info {
    padding: 1.5rem;
}

.horse-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgb(94, 180, 174);
    margin-bottom: 0.5rem;
}

.horse-role {
    color: rgb(255, 107, 107);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.horse-details {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.horse-spec {
    background: linear-gradient(
        135deg,
        rgb(255, 184, 77) 0%,
        rgb(255, 159, 64) 100%
    );
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.horse-bio {
    color: #666;
    line-height: 1.5;
    font-size: 1rem;
}

.horse-grid2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}
.horse-card2 {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.horse-card2:hover {
    transform: translateY(-5px);
}

/* Poney Size Guide */
.poney-size-guide {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.poney-size-guide h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.size-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #ff6b35;
}

.size-card:hover {
    transform: translateY(-3px);
}

.size-letter {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: rgb(94, 180, 174);
    margin-bottom: 1rem;
}

.size-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.size-height {
    font-weight: 600;
    color: rgb(94, 180, 174);
    font-size: 1.1rem;
}

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

.size-name {
    color: #ff6b35;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Care Lists */
.care-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.care-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.care-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Wellbeing Features */
.wellbeing-features {
    background: linear-gradient(135deg, #f8f9fa, rgba(255, 214, 102, 0.491));
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.wellbeing-features h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.wellbeing-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.wellbeing-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.wellbeing-features .feature-item:hover {
    transform: translateY(-3px);
}

.wellbeing-features .feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.wellbeing-features .feature-item strong {
    color: rgb(94, 180, 174);
    display: block;
    margin-bottom: 0.5rem;
}

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

/* Retirement CTA */
.retirement-cta {
    background: linear-gradient(135deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.retirement-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* ===== PAGE PLANNING & TARIFS ===== */

/* Planning Info */
.planning-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.planning-info strong {
    color: rgb(94, 180, 174);
}

/* Schedule Container */
.schedule-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.schedule-day {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.schedule-day.weekend {
    border-left: 4px solid #ff6b35;
}

.day-header {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.3rem;
    text-align: center;
}

.schedule-slots {
    padding: 1.5rem;
}

.time-slot {
    display: grid;
    grid-template-columns: 120px 1fr 100px 150px;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.time-slot:hover {
    background: #e9ecef;
}

.time-slot .time {
    font-weight: 600;
    color: rgb(94, 180, 174);
    font-size: 0.9rem;
}

.time-slot .course-name {
    font-weight: 500;
    color: #333;
}

.time-slot .instructor {
    color: #666;
    font-size: 0.9rem;
}

.availability {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.availability.available {
    background: #28a745;
    color: white;
}

.availability.limited {
    background: #ffc107;
    color: #333;
}

.availability.full {
    background: #dc3545;
    color: white;
}

/* Planning Notes */
.planning-notes {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.planning-notes h3 {
    color: rgb(94, 180, 174);
    margin-bottom: 1.5rem;
    text-align: center;
}

.notes-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.notes-list li {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid rgb(94, 180, 174);
}

/* Tarifs */
.tarifs-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-section {
    margin-bottom: 4rem;
}

.pricing-section h3 {
    color: rgb(94, 180, 174);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #ff6b35;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.pricing-header {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.pricing-header h4 {
    margin: 0;
    font-size: 1.3rem;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-content {
    padding: 2rem;
}

.price-main {
    text-align: center;
    margin-bottom: 1rem;
}

.price-main .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: rgb(94, 180, 174);
}

.price-main .period {
    font-size: 1rem;
    color: #666;
}

.price-details {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #666;
}

.price-details span {
    display: block;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

.pricing-payment {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
}

/* Special Pricing */
.special-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.special-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.special-item:hover {
    transform: translateY(-3px);
}

.special-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.special-content h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 0.5rem;
}

.special-price {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.special-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
}

.service-card h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 1rem;
}

.service-price {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Discounts */
.discounts-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.discounts-section h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.discount-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.discount-item:hover {
    transform: translateY(-3px);
}

.discount-percent {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 60px;
    text-align: center;
}

.discount-content h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 0.5rem;
}

.discount-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Inscription Steps */
.inscription-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content {
    margin-top: 1rem;
}

.step-content h3 {
    color: rgb(94, 180, 174);
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-details {
    background: #f8f9fa;
    padding: 0.8rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.detail-badge {
    background: #ff6b35;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    margin-right: 0.5rem;
}

.step-btn {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
    display: inline-block;
}

.step-btn:hover {
    transform: translateY(-2px);
}

.step-btn.secondary {
    background: transparent;
    color: rgb(94, 180, 174);
    border: 2px solid rgb(94, 180, 174);
}

.step-btn.secondary:hover {
    background: rgb(94, 180, 174);
    color: white;
}

/* Documents Section */
.documents-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.documents-section h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.document-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.document-category h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 1rem;
}

.document-list {
    list-style: none;
    padding: 0;
}

.document-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.document-list li::before {
    content: "📄";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.download-section {
    border-top: 1px solid #e0e0e0;
    padding-top: 2rem;
    text-align: center;
}

.download-section h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 1.5rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.download-btn:hover {
    transform: translateY(-2px);
}

.download-icon {
    font-size: 1.2rem;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 3rem;
}

.payment-methods h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.payment-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-3px);
}

.payment-card.featured {
    border: 2px solid #ff6b35;
}

.payment-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.payment-card h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 0.5rem;
}

.payment-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Payment Terms */
.payment-terms {
    margin-bottom: 3rem;
}

.payment-terms h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.terms-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.terms-card h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 1rem;
    text-align: center;
}

.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.terms-list li::before {
    content: "💳";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Refund Policy */
.refund-policy {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.refund-policy h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
}

.policy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.policy-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.policy-item h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 1rem;
}

.policy-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.contact-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* ===== PAGE PLANNING & TARIFS (VERSION SIMPLIFIÉE) ===== */

/* Planning Section */
.planning-section {
    padding: 4rem 0;
    background: white;
}

.planning-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.planning-info strong {
    color: rgb(94, 180, 174);
}

/* Location Container */
/* ========== SECTION MAPS + PHOTO - STYLE INTÉGRÉ ========== */

.location-section {
    padding: 4rem 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.location-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid rgb(94, 180, 174);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-item h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-content {
    flex: 1;
    margin-top: 1rem;
}

/* Conteneur pour la maps */
.location-maps-container {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-maps-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Conteneur pour la photo */
.location-photo-container {
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center; /* Centre l'image horizontalement */
    align-items: center;
}

.location-photo-container:hover {
    transform: scale(1.02);
}

.location-photo-img {
    width: auto; /* Largeur automatique selon les proportions */
    height: 100%; /* Prend toute la hauteur disponible (350px) */
    max-width: 100%; /* Ne dépasse jamais la largeur du container */
    object-fit: contain; /* Garde les proportions, peut laisser des espaces */
    object-position: center;
    transition: transform 0.3s ease;
}

.location-photo-container:hover .location-photo-img {
    transform: scale(1.05);
}

/* Informations sous la maps */
.location-info {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.location-info strong {
    color: rgb(94, 180, 174);
}

/* Badge sur la photo */
.location-photo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgb(94, 180, 174);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-maps-container,
    .location-photo-container {
        height: 280px;
    }

    .location-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .location-item {
        padding: 1.2rem;
    }

    .location-maps-container,
    .location-photo-container {
        height: 250px;
    }

    .location-section {
        padding: 2rem 0;
    }
}

/* Image Containers */
.planning-image-container,
.tarifs-image-container {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.planning-image,
.tarifs-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.planning-image:hover,
.tarifs-image:hover {
    transform: scale(1.02);
}

/* Planning Notes */
.planning-notes {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.planning-notes h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.note-item:hover {
    transform: translateY(-3px);
    background: #e9ecef;
}

.note-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.note-item strong {
    color: rgb(94, 180, 174);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.note-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Tarifs Section */
.tarifs-section {
    padding: 4rem 0;
}

.tarifs-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Tarifs Highlights */
.tarifs-highlights {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tarifs-highlights h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    transition: transform 0.3s ease;
    border-left: 4px solid #ff6b35;
}

.highlight-item:hover {
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.highlight-item strong {
    color: rgb(94, 180, 174);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.highlight-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Inscription CTA */
.inscription-cta {
    background: linear-gradient(135deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 0.5rem;
    text-align: center;
    margin-left: 3rem;
    margin-right: 3rem;
    margin-bottom: 1rem;
}

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

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-sec {
    background: linear-gradient(
        135deg,
        rgb(255, 184, 77) 0%,
        rgb(255, 159, 64) 100%
    );
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;

    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 160, 64, 0.589);
}

.cta-sec:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 160, 64, 0.337);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: rgb(94, 180, 174);
}

.category-title {
    color: rgb(94, 180, 174);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 1rem 0;
    border-radius: 10px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.265) 0%,
        rgba(94, 180, 174, 0.178) 100%
    );
}

.category-title h3 {
    color: rgb(94, 180, 174);
    font-size: 2rem;
}

/* Contact Quick */
.contact-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    opacity: 0.9;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #a8d5ba;
}

/* ========== STYLES CALENDRIERS VACANCES/FORFAITS ========== */

.calendar-section-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.calendar-section-title {
    text-align: center;
    margin-bottom: 10px;
}

.container h2,
.calendar-section-title h2 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.6rem;
}

.calendar-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.calendar-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calendar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.calendar-card-header {
    text-align: center;
    margin-bottom: 2px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.calendar-card-icon {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.calendar-card-title {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.calendar-card-subtitle {
    color: #666;
    font-size: 0.95rem;
}

.calendar-period-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.calendar-period-name {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}

.calendar-period-dates {
    color: #666;
    font-size: 0.95rem;
}

/* Styles spécifiques vacances */
.calendar-vacances .calendar-card-header {
    border-bottom-color: #e3f2fd;
}

.calendar-vacances .calendar-card-icon {
    color: #2196f3;
}

/* Styles spécifiques forfaits */
.calendar-forfaits .calendar-card-header {
    border-bottom-color: #f3e5f5;
}

.calendar-forfaits .calendar-card-icon {
    color: #9c27b0;
}

/* Badges pour les offres spéciales */
.calendar-badge-special {
    display: inline-block;
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 77, 136) 100%
    );
    color: white;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 10px;
    font-weight: 500;
}

.calendar-badge-nouveau {
    background: #4caf50;
}

/* Responsive */
@media (max-width: 768px) {
    .calendar-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .calendar-section-title h2 {
        font-size: 1.6rem;
    }

    .calendar-card {
        padding: 25px 20px;
    }

    .calendar-card-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .calendar-section-container {
        padding: 10px;
    }

    .calendar-card {
        padding: 20px 15px;
    }
}
/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}
.mt-2 {
    margin-top: 2rem;
}
.mb-2 {
    margin-bottom: 2rem;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

/* ===== SIMULATEUR DE TARIFS ===== */

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.popup-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.popup-header {
    background: linear-gradient(135deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 25px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    position: relative;
}

.popup-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.close-btn:hover {
    opacity: 0.7;
}

.popup-content {
    padding: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover {
    border-color: #ff6b35;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Custom select styling */
.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23667eea" d="m0,1l2,2l2,-2z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    cursor: pointer;
    padding-right: 45px;
}

.form-group select:focus {
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%234c63d2" d="m0,1l2,2l2,-2z"/></svg>');
}

/* Custom number input styling */
.form-group input[type="number"] {
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23667eea" stroke-width="2"><path d="M7 13l3 3 7-7"/><path d="M7 13l3 3 7-7"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 0px;
    transition: all 0.3s ease, background-size 0.2s ease;
}

.form-group input[type="number"]:valid {
    background-size: 16px;
}

/* Success states */
.form-group input:valid:not(:placeholder-shown),
.form-group select:valid {
    border-color: #4caf50;
    background-color: rgba(76, 175, 80, 0.02);
}

.form-group input:valid:not(:placeholder-shown):focus,
.form-group select:valid:focus {
    border-color: rgb(94, 180, 174);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

/* Error states */
.form-group input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #f44336;
    background-color: rgba(244, 67, 54, 0.02);
}

.members-container {
    margin-top: 25px;
}

.member-card {
    background: #f8f9fa;
    border: 2px solid rgb(94, 180, 174);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.member-card:hover {
    border-color: rgb(94, 180, 174);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-title {
    font-size: 18px;
    font-weight: 600;
    color: rgb(94, 180, 174);
    margin-bottom: 15px;
    text-align: center;
}

.member-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgb(69, 144, 150);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.result-container {
    background: linear-gradient(135deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    text-align: center;
    display: none;
}

.result-price {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.result-details {
    font-size: 16px;
    opacity: 0.9;
}

/* Input hints */
.input-hint {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.form-group input:focus ~ .input-hint,
.form-group select:focus ~ .input-hint,
.form-group:hover .input-hint {
    opacity: 1;
    transform: translateY(0);
}

/* Loading state for calculate button */
.btn-primary.loading {
    position: relative;
    color: transparent;
}

.btn-primary.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===== STYLES SUPPLÉMENTAIRES SIMULATEUR ===== */

.recommendation-box {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 20%);
    border: 2px solid #757575;
    color: #424242;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
    font-weight: 600;

    animation: slideIn 0.3s ease;
}

.level-group,
.forfait-group {
    animation: fadeInUp 0.3s ease;
}

.member-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Animation pour les nouveaux éléments */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Style pour les options recommandées */
.form-group select option[style*="bold"] {
    background-color: #e8f5e8;
}

/* Custom option styling */
.form-group select option {
    padding: 12px;
    font-size: 15px;
    background: white;
    color: #333;
}

.form-group select optgroup {
    font-weight: 600;
    color: #667eea;
    background: #f8f9fa;
    font-size: 14px;
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}
/* ===== STYLES SUPPLÉMENTAIRES SIMULATEUR ===== */

.level-group,
.forfait-group {
    animation: fadeInUp 0.3s ease;
}

.member-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Cartes forfaits */
.forfait-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.forfait-card {
    background: white;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.forfait-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.forfait-card.selected {
    border-color: #4caf50;
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.forfait-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.forfait-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.forfait-price {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 8px;
}

.forfait-description {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Responsive forfait cards */
@media (max-width: 600px) {
    .forfait-cards {
        grid-template-columns: 1fr;
    }

    .forfait-card {
        padding: 15px;
    }

    .forfait-icon {
        font-size: 24px;
    }

    .forfait-price {
        font-size: 20px;
    }
}

/* Animation pour les nouveaux éléments */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== STYLES MORPHOLOGIE ET REPRISES (à ajouter à votre style.css) ===== */

/* ===== STYLES MORPHOLOGIE ET REPRISES (à ajouter à votre style.css) ===== */

.morphology-group {
    animation: fadeInUp 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 15px 0;
}

.mount-type-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffecb3 100%);
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
    font-weight: 600;
    color: #e65100;
    animation: slideIn 0.3s ease;
}

.mount-type-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Cartes reprises - 3 par ligne */
.reprise-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.reprise-card {
    background: white;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reprise-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.reprise-card.selected {
    border-color: #4caf50;
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.reprise-day {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.reprise-time {
    font-size: 16px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 4px;
}

.reprise-instructor {
    font-size: 11px;
    color: #666;
}

.reprise-group {
    animation: fadeInUp 0.3s ease;
}

/* ===== STYLES RÉSULTATS DÉTAILLÉS ===== */

.result-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.result-header h3 {
    color: white;
    font-size: 20px;
    margin: 0 0 8px 0;
}

.result-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 14px;
}

.members-breakdown {
    margin-bottom: 20px;
}

.member-breakdown {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.member-header {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.member-info {
    font-weight: 600;
    color: white;
    font-size: 16px;
}

.member-total {
    font-weight: bold;
    color: #ffffff;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 8px;
}

.breakdown-details {
    padding: 15px 20px;
}

.breakdown-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.breakdown-line:last-child {
    margin-bottom: 0;
}

.breakdown-label {
    font-size: 14px;
    flex-grow: 1;
}

.breakdown-value {
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.forfait-line .breakdown-label {
    font-weight: 600;
    color: #ffeb3b;
}

.forfait-line .breakdown-value {
    font-weight: bold;
    color: #ffeb3b;
}

.reprise-line {
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 8px;
}

.breakdown-instructor {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.total-section {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    margin-top: 20px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.total-label {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.total-amount {
    font-size: 28px;
    font-weight: bold;
    color: #ffeb3b;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive résultats */
@media (max-width: 600px) {
    .morphology-group {
        grid-template-columns: 1fr;
    }

    .reprise-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .reprise-card {
        min-height: 80px;
        padding: 10px;
    }

    .reprise-day {
        font-size: 12px;
    }

    .reprise-time {
        font-size: 14px;
    }

    .reprise-instructor {
        font-size: 10px;
    }

    .member-header {
        padding: 12px 15px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .breakdown-details {
        padding: 12px 15px;
    }

    .total-line {
        padding: 12px 15px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .total-amount {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .reprise-cards {
        grid-template-columns: 1fr;
    }
}

/* Animation pour les éléments morphologie */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== STYLES RÉSULTATS DÉTAILLÉS (MANQUANT) ===== */

.result-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.result-header h3 {
    color: white;
    font-size: 20px;
    margin: 0 0 8px 0;
}

.result-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 14px;
}

.members-breakdown {
    margin-bottom: 20px;
}

.member-breakdown {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.member-header {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.member-info {
    font-weight: 600;
    color: white;
    font-size: 16px;
}

.member-total {
    font-weight: bold;
    color: #ffffff;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 8px;
}

.breakdown-details {
    padding: 15px 20px;
}

.breakdown-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.breakdown-line:last-child {
    margin-bottom: 0;
}

.breakdown-label {
    font-size: 14px;
    flex-grow: 1;
}

.breakdown-value {
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.forfait-line .breakdown-label {
    font-weight: 600;
    color: #ffeb3b;
}

.forfait-line .breakdown-value {
    font-weight: bold;
    color: #ffeb3b;
}

.reprise-line {
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 8px;
}

.breakdown-instructor {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.total-section {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    margin-top: 20px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.total-label {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.total-amount {
    font-size: 28px;
    font-weight: bold;
    color: #ffeb3b;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive résultats */
@media (max-width: 600px) {
    .member-header {
        padding: 12px 15px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .breakdown-details {
        padding: 12px 15px;
    }

    .total-line {
        padding: 12px 15px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .total-amount {
        font-size: 24px;
    }
}

/* ===== STYLES REMISES FAMILLE NOMBREUSE ===== */

.discount-line .breakdown-label {
    color: #f8f9fa;
    font-weight: bold;
}

.discount-line .breakdown-value {
    color: #f8f9fa;
    font-weight: bold;
}

.original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-right: 5px;
    font-weight: normal;
}

/* Animation pour les réductions */
.discount-line {
    background: rgba(76, 175, 80, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    margin: 4px 0;
    position: relative;
    overflow: hidden;
}

.discount-line::before {
    content: "💰";
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 600px) {
    .original-price {
        display: block;
        font-size: 11px;
    }
}

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

/* Cours styles */
.courses-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.course-category {
    margin-bottom: 4rem;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 350px);
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-image {
    height: 200px;
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
}

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

.course-content {
    padding: 1.5rem;
}

.course-content h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.course-details {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.detail-item {
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 153, 102) 100%
    );
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.course-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

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

.course-objectives li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.course-objectives li::before {
    content: "✓  ";
    position: sticky;
    left: 0;
    color: rgb(94, 180, 174);
    font-weight: bold;
}

/* Carte d'information spéciale Éveil Poney */
.eveil-details-card {
    background: linear-gradient(135deg, #fff 0%, #f8fcfc 100%);
}

.eveil-details-header {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.eveil-details-icon {
    font-size: 2.5rem;
}

.eveil-details-header h4 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
}

.eveil-details-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.eveil-details-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.eveil-details-section h5 {
    color: rgb(94, 180, 174);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.eveil-details-dates-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eveil-details-dates-list li {
    padding: 0.5rem 0.8rem;
    margin-bottom: 0.4rem;
    background: #f0f8f8;
    border-left: 3px solid rgb(94, 180, 174);
    border-radius: 5px;
    font-size: 0.95rem;
    color: #333;
}

.eveil-details-text {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.eveil-details-text strong {
    color: rgb(94, 180, 174);
}

.eveil-details-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eveil-details-info-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: #555;
}

.eveil-details-info-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}
/* Competition styles */
.competition-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.competition-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.competition-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.competition-card:hover {
    transform: translateY(-5px);
}

.competition-header {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.competition-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.competition-frequency {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.competition-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.competition-image {
    height: 250px;
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
}

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

.competition-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.competition-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.competition-features li::before {
    content: "🏆";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.next-event,
.results-highlight {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #ff6b35;
}

.competition-cta {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.competition-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Galops styles */
.galops-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.galops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.galop-level {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.galop-level:hover {
    transform: translateY(-5px);
}

.galop-header {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.galop-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.galop-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.galop-badge.beginner {
    background: #28a745;
    color: white;
}

.galop-badge.intermediate {
    background: #ffc107;
    color: #333;
}

.galop-badge.advanced {
    background: #dc3545;
    color: white;
}

.galop-content {
    padding: 1.5rem;
}

.galop-skills h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 1rem;
}

.galop-skills ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.galop-skills li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.galop-skills li::before {
    content: "📚";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.galop-exam {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Exam schedule */
.exam-schedule {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.exam-schedule h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.exam-date {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.exam-date:hover {
    transform: translateY(-3px);
}

.date-info {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
}

.date-info .month {
    font-size: 0.8rem;
    font-weight: 600;
}

.date-info .day {
    font-size: 1.5rem;
    font-weight: bold;
}

.exam-details h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 0.5rem;
}

.exam-details p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.exam-register {
    background: rgb(94, 180, 174);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.exam-register:hover {
    background: rgb(94, 180, 174);
}

.exam-register.disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Exam preparation */
.exam-preparation {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.exam-preparation h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
}

.preparation-info {
    max-width: 800px;
    margin: 0 auto;
}

.preparation-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.preparation-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.preparation-list li::before {
    content: "🎯";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.preparation-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Stages styles */
.stages-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stage-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stage-card:hover {
    transform: translateY(-5px);
}

.stage-image {
    height: 120px;
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.stage-content {
    padding: 1.5rem;
}

.stage-content h3 {
    color: rgb(94, 180, 174);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.stage-program {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.stage-program li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.stage-program li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

.stage-price {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
    border-left: 4px solid #ff6b35;
}

.stage-price strong {
    color: rgb(94, 180, 174);
    font-size: 1.1rem;
}

/* Stages calendar */
.stages-calendar {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stages-calendar h3 {
    color: rgb(94, 180, 174);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.vacation-period {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.vacation-period:hover {
    transform: translateY(-3px);
}

.vacation-period h4 {
    color: rgb(94, 180, 174);
    margin-bottom: 0.5rem;
}

.dates {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.available-stages {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stage-tag {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
}

.booking-status {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.booking-status.available {
    background: #28a745;
    color: white;
}

.booking-status.coming-soon {
    background: #ffc107;
    color: #333;
}

.stages-cta {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.stages-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}
.online-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.online-feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.online-feature-card:hover {
    transform: translateY(-5px);
}

.feature-header {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.feature-content {
    padding: 1.5rem;
}

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

.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.4;
}

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

.online-access-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.access-card,
.compatibility-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.access-card h3,
.compatibility-card h3 {
    color: #2d5016;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.access-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.compatibility-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compatibility-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.compat-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Styles pour la FAQ */
.faq-introduction {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-section {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-section-title {
    background: linear-gradient(45deg, rgb(15, 73, 70), rgb(69, 144, 150));
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.3rem;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

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

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question span:first-child {
    font-weight: 600;
    color: rgb(15, 73, 70);
    font-size: 1rem;
}

.faq-toggle {
    background: rgb(15, 73, 70);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: #ff6b35;
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: white;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease-out;
}

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

.faq-contact {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.faq-contact h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* ===== POPUP NOTICES D'INSCRIPTION ===== */

/* Bouton déclencheur */
.btn-notices {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(
        135deg,
        rgb(94, 180, 174) 0%,
        rgb(69, 144, 150) 100%
    );
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(94, 180, 174, 0.3);
}

.btn-notices:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(94, 180, 174, 0.4);
    background: linear-gradient(
        135deg,
        rgb(69, 144, 150) 0%,
        rgb(94, 180, 174) 100%
    );
}

.btn-notices-icon {
    font-size: 1.3rem;
}

/* Overlay de la popup */
.notices-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease;
}

.notices-popup-overlay.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Container de la popup */
.notices-popup-container {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 700px;
    margin: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    overflow: hidden;
}

/* Header de la popup */
.notices-popup-header {
    background: linear-gradient(
        135deg,
        rgb(94, 180, 174) 0%,
        rgb(69, 144, 150) 100%
    );
    color: white;
    padding: 2rem 2.5rem;
    text-align: center;
    position: relative;
}

.notices-popup-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.notices-popup-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
}

.notices-popup-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.notices-close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Contenu de la popup */
.notices-popup-content {
    padding: 2rem 2.5rem;
}

/* Introduction */
.notices-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid rgb(94, 180, 174);
}

.notices-intro p {
    color: #555;
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.notices-intro p:last-child {
    margin-bottom: 0;
}

.notices-intro strong {
    color: rgb(94, 180, 174);
}

.notices-tip {
    background: rgba(255, 107, 53, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Liste des notices */
.notices-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Item de notice */
.notice-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.notice-item:hover {
    border-color: rgb(94, 180, 174);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(94, 180, 174, 0.15);
}

.notice-item.notice-main {
    background: linear-gradient(
        135deg,
        rgba(94, 180, 174, 0.08) 0%,
        rgba(69, 144, 150, 0.08) 100%
    );
    border-color: rgb(94, 180, 174);
}

.notice-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-info {
    flex-grow: 1;
}

.notice-info h4 {
    color: rgb(94, 180, 174);
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.notice-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Bouton de téléchargement */
.notice-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.notice-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

.download-icon {
    font-size: 1rem;
}

/* Footer de la popup */
.notices-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.notices-help {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 10px;
}

.help-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notices-help p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.notices-help a {
    color: rgb(94, 180, 174);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.notices-help a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .notices-popup-overlay {
        padding: 1rem;
    }

    .notices-popup-header {
        padding: 1.5rem;
    }

    .notices-popup-title {
        font-size: 1.5rem;
    }

    .notices-popup-content {
        padding: 1.5rem;
    }

    .notice-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

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

    .notice-download-btn {
        width: 100%;
        justify-content: center;
    }

    .notices-help {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn-notices {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .notices-popup-icon {
        font-size: 2.5rem;
    }

    .notices-popup-title {
        font-size: 1.3rem;
    }

    .notices-popup-subtitle {
        font-size: 0.9rem;
    }

    .notice-icon {
        font-size: 1.5rem;
    }

    .notice-info h4 {
        font-size: 1rem;
    }
}
