/* ============================================
   L'ÉCHAPPÉE BLEUE - STYLES PRINCIPAUX
   Site de sorties en catamaran - Pornichet
   ============================================ */

/* ----- VARIABLES CSS ----- */
:root {
    /* Couleurs principales */
    --bleu-marine: #0d2d4a;
    --bleu-marine-dark: #081c30;
    --bleu-ciel: #5b9bd5;
    --bleu-ocean: #2e6b8a;
    --sable: #c8923a;
    --sable-clair: #f7efe0;
    --blanc: #ffffff;
    --blanc-casse: #f8f9fa;
    --gris-clair: #e9ecef;
    --gris: #6c757d;
    --gris-fonce: #343a40;
    --noir: #1a1a1a;
    
    /* Couleurs sémantiques */
    --succes: #28a745;
    --erreur: #dc3545;
    --warning: #ffc107;
    
    /* Typographie */
    --font-titre: 'Playfair Display', Georgia, serif;
    --font-corps: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Espacements */
    --espacer-xs: 0.25rem;
    --espacer-sm: 0.5rem;
    --espacer-md: 1rem;
    --espacer-lg: 1.5rem;
    --espacer-xl: 2rem;
    --espacer-xxl: 3rem;
    --espacer-xxxl: 5rem;
    
    /* Transitions */
    --transition-rapide: 0.2s ease;
    --transition-normale: 0.3s ease;
    --transition-lente: 0.5s ease;
    
    /* Ombres */
    --ombre-legere: 0 2px 10px rgba(0, 0, 0, 0.1);
    --ombre-moyenne: 0 4px 20px rgba(0, 0, 0, 0.15);
    --ombre-forte: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Bordures */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-rond: 50%;
    
    /* Largeurs */
    --max-width: 1200px;
    --max-width-etroit: 900px;
    --max-width-large: 1400px;
}

/* ----- RESET & BASE ----- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-corps);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--noir);
    background-color: var(--blanc);
    overflow-x: hidden;
}

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

a {
    color: var(--bleu-ocean);
    text-decoration: none;
    transition: color var(--transition-rapide);
}

a:hover {
    color: var(--sable);
}

ul, ol {
    list-style: none;
}

/* ----- TYPOGRAPHIE ----- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titre);
    font-weight: 700;
    line-height: 1.2;
    color: var(--bleu-marine);
    margin-bottom: var(--espacer-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--espacer-md);
}

.text-accent {
    color: var(--sable);
}

.text-light {
    color: var(--blanc);
}

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

/* ----- CONTAINER ----- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--espacer-lg);
}

.container--etroit {
    max-width: var(--max-width-etroit);
}

.container--large {
    max-width: var(--max-width-large);
}

/* ----- SECTIONS ----- */
section {
    padding: var(--espacer-xxxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--espacer-xxl);
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sable), var(--bleu-ocean));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gris);
    max-width: 600px;
    margin: var(--espacer-lg) auto 0;
}

.section--bleu {
    background-color: var(--bleu-marine);
    color: var(--blanc);
}

.section--bleu h2,
.section--bleu h3,
.section--bleu h4 {
    color: var(--blanc);
}

.section--bleu .section-header h2::after {
    background: linear-gradient(90deg, var(--sable), var(--blanc));
}

.section--sable {
    background-color: var(--sable-clair);
}

.section--gris {
    background-color: var(--blanc-casse);
}

/* ----- NAVBAR ----- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--espacer-md) 0;
    transition: all var(--transition-normale);
}


.navbar.scrolled {
    background: var(--blanc);
    box-shadow: var(--ombre-legere);
    padding: var(--espacer-sm) 0;
}

.navbar.transparent {
    background: transparent;
}


.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blanc);
    transition: color var(--transition-normale);
}

.navbar-logo span {
    color: var(--sable);
}

.navbar.scrolled .navbar-logo {
    color: var(--bleu-marine);
}

.navbar-menu {
    display: flex;
    gap: var(--espacer-xl);
}

.navbar-menu a {
    color: var(--blanc);
    font-weight: 500;
    padding: var(--espacer-sm) 0;
    position: relative;
    transition: color var(--transition-normale);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sable);
    transition: width var(--transition-normale);
}

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

.navbar.scrolled .navbar-menu a {
    color: var(--bleu-marine);
}

.navbar-menu a:hover {
    color: var(--sable);
}

/* Burger menu mobile */
.navbar-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--espacer-sm);
}

.navbar-burger span {
    width: 25px;
    height: 3px;
    background-color: var(--blanc);
    border-radius: 2px;
    transition: all var(--transition-normale);
}

.navbar.scrolled .navbar-burger span {
    background-color: var(--bleu-marine);
}

/* ----- BOUTONS ----- */
.btn {
    display: inline-block;
    padding: var(--espacer-md) var(--espacer-xl);
    font-family: var(--font-corps);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normale);
}

.btn--primary {
    background-color: var(--sable);
    color: var(--blanc);
    border-color: var(--sable);
}

.btn--primary:hover {
    background-color: transparent;
    color: var(--sable);
}

.btn--secondary {
    background-color: var(--bleu-ocean);
    color: var(--blanc);
    border-color: var(--bleu-ocean);
}

.btn--secondary:hover {
    background-color: transparent;
    color: var(--bleu-ocean);
}

.btn--outline {
    background-color: transparent;
    color: var(--blanc);
    border-color: var(--blanc);
}

.btn--outline:hover {
    background-color: var(--blanc);
    color: var(--bleu-marine);
}

.btn--outline-dark {
    background-color: transparent;
    color: var(--bleu-marine);
    border-color: var(--bleu-marine);
}

.btn--outline-dark:hover {
    background-color: var(--bleu-marine);
    color: var(--blanc);
}

.btn--large {
    padding: var(--espacer-lg) var(--espacer-xxl);
    font-size: 1.125rem;
}

.btn--small {
    padding: var(--espacer-sm) var(--espacer-md);
    font-size: 0.875rem;
}

/* ----- HERO ----- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 58, 92, 0.7) 0%,
        rgba(26, 58, 92, 0.5) 50%,
        rgba(26, 58, 92, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--blanc);
    max-width: 900px;
    padding: var(--espacer-xl);
}

.hero-content h1 {
    color: var(--blanc);
    margin-bottom: var(--espacer-lg);
}

.hero-content h1 span {
    color: var(--sable);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--espacer-xl);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--espacer-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--blanc);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ----- HERO PAGE INTERIEURE ----- */
.hero--small {
    min-height: 50vh;
    padding-top: 80px;
}

.hero--small .hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

/* ----- CARDS ----- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--espacer-xl);
}

.card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-legere);
    transition: all var(--transition-normale);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre-moyenne);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-lente);
}

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

.card-image .card-badge {
    position: absolute;
    top: var(--espacer-md);
    right: var(--espacer-md);
    background: var(--sable);
    color: var(--blanc);
    padding: var(--espacer-xs) var(--espacer-md);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.card-body {
    padding: var(--espacer-lg);
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: var(--espacer-sm);
}

.card-body p {
    color: var(--gris);
    font-size: 0.95rem;
    margin-bottom: var(--espacer-md);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--espacer-md);
    border-top: 1px solid var(--gris-clair);
}

.card-meta .price {
    font-family: var(--font-titre);
    font-size: 1.25rem;
    color: var(--bleu-marine);
    font-weight: 700;
}

.card-meta .price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gris);
}

.card-meta .duration {
    display: flex;
    align-items: center;
    gap: var(--espacer-xs);
    color: var(--gris);
    font-size: 0.875rem;
}

/* ----- FEATURES / AVANTAGES ----- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--espacer-xl);
}

.feature {
    text-align: center;
    padding: var(--espacer-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--espacer-lg);
    background: linear-gradient(135deg, var(--bleu-ocean), var(--bleu-marine));
    border-radius: var(--radius-rond);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--blanc);
}

.section--bleu .feature-icon {
    background: linear-gradient(135deg, var(--sable), var(--sable-clair));
    color: var(--bleu-marine);
}

.feature h4 {
    margin-bottom: var(--espacer-sm);
}

.feature p {
    color: var(--gris);
    font-size: 0.95rem;
}

.section--bleu .feature p {
    color: rgba(255, 255, 255, 0.8);
}

/* ----- TARIFS ----- */
.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-legere);
}

.tarifs-table thead {
    background: var(--bleu-marine);
    color: var(--blanc);
}

.tarifs-table th,
.tarifs-table td {
    padding: var(--espacer-md) var(--espacer-lg);
    text-align: left;
}

.tarifs-table th {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tarifs-table tbody tr {
    border-bottom: 1px solid var(--gris-clair);
    transition: background-color var(--transition-rapide);
}

.tarifs-table tbody tr:hover {
    background-color: var(--blanc-casse);
}

.tarifs-table tbody tr:last-child {
    border-bottom: none;
}

.tarifs-table .price-cell {
    font-family: var(--font-titre);
    font-weight: 700;
    color: var(--bleu-marine);
    font-size: 1.125rem;
}

/* ----- ÉQUIPAGE ----- */
.equipage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--espacer-xxl);
}

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

.equipage-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--espacer-lg);
    border-radius: var(--radius-rond);
    overflow: hidden;
    border: 4px solid var(--sable);
    box-shadow: var(--ombre-moyenne);
}

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

.equipage-member h3 {
    margin-bottom: var(--espacer-xs);
}

.equipage-role {
    color: var(--sable);
    font-weight: 600;
    margin-bottom: var(--espacer-md);
}

.equipage-member p {
    color: var(--gris);
    max-width: 400px;
    margin: 0 auto;
}

/* ----- GALERIE ----- */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--espacer-md);
}

.galerie-item {
    position: relative;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-lente);
}

.galerie-item:hover img {
    transform: scale(1.1);
}

.galerie-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: opacity var(--transition-normale);
}

.galerie-item:hover::after {
    opacity: 1;
}

/* ----- FAQ ----- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--blanc);
    border-radius: var(--radius-md);
    margin-bottom: var(--espacer-md);
    box-shadow: var(--ombre-legere);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--espacer-lg);
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-corps);
    font-size: 1rem;
    font-weight: 600;
    color: var(--bleu-marine);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-rapide);
}

.faq-question:hover {
    background-color: var(--blanc-casse);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--sable);
    transition: transform var(--transition-normale);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normale);
}

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

.faq-answer p {
    padding: 0 var(--espacer-lg) var(--espacer-lg);
    color: var(--gris);
}

/* ----- FORMULAIRE ----- */
.form-group {
    margin-bottom: var(--espacer-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--espacer-sm);
    font-weight: 600;
    color: var(--bleu-marine);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--espacer-md);
    font-family: var(--font-corps);
    font-size: 1rem;
    border: 2px solid var(--gris-clair);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-rapide);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--bleu-ocean);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--espacer-lg);
}

/* ----- CONTACT ----- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacer-xxl);
}

.contact-info {
    padding: var(--espacer-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--espacer-md);
    margin-bottom: var(--espacer-xl);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--bleu-ocean);
    border-radius: var(--radius-rond);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--blanc);
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: var(--espacer-xs);
    font-size: 1rem;
}

.contact-item p,
.contact-item a {
    color: var(--gris);
}

/* ----- FOOTER ----- */
.footer {
    background-color: var(--bleu-marine-dark);
    color: var(--blanc);
    padding: var(--espacer-xxxl) 0 var(--espacer-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--espacer-xxl);
    margin-bottom: var(--espacer-xxl);
}

.footer-brand .navbar-logo {
    font-size: 1.75rem;
    margin-bottom: var(--espacer-md);
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--espacer-lg);
}

.footer-social {
    display: flex;
    gap: var(--espacer-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-rond);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    transition: all var(--transition-rapide);
}

.footer-social a:hover {
    background: var(--sable);
}

.footer h4 {
    color: var(--blanc);
    font-size: 1rem;
    margin-bottom: var(--espacer-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--espacer-xs) 0;
    transition: color var(--transition-rapide);
}

.footer-links a:hover {
    color: var(--sable);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--sable);
}

/* ----- UTILITIES ----- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--espacer-sm); }
.mt-2 { margin-top: var(--espacer-md); }
.mt-3 { margin-top: var(--espacer-lg); }
.mt-4 { margin-top: var(--espacer-xl); }
.mt-5 { margin-top: var(--espacer-xxl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--espacer-sm); }
.mb-2 { margin-bottom: var(--espacer-md); }
.mb-3 { margin-bottom: var(--espacer-lg); }
.mb-4 { margin-bottom: var(--espacer-xl); }
.mb-5 { margin-bottom: var(--espacer-xxl); }

.py-1 { padding-top: var(--espacer-sm); padding-bottom: var(--espacer-sm); }
.py-2 { padding-top: var(--espacer-md); padding-bottom: var(--espacer-md); }
.py-3 { padding-top: var(--espacer-lg); padding-bottom: var(--espacer-lg); }
.py-4 { padding-top: var(--espacer-xl); padding-bottom: var(--espacer-xl); }
.py-5 { padding-top: var(--espacer-xxl); padding-bottom: var(--espacer-xxl); }

.hidden { display: none; }
.visible { display: block; }

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    section {
        padding: var(--espacer-xxl) 0;
    }
    
    /* Navbar mobile */
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bleu-marine);
        flex-direction: column;
        padding: 80px var(--espacer-xl) var(--espacer-xl);
        gap: var(--espacer-md);
        transition: right var(--transition-normale);
        box-shadow: var(--ombre-forte);
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navbar-menu a {
        color: var(--blanc);
        font-size: 1.125rem;
        padding: var(--espacer-md) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-burger {
        display: flex;
    }
    
    .navbar-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero mobile */
    .hero {
        background-attachment: scroll;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Tables responsive */
    .tarifs-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--espacer-md);
    }
    
    .btn {
        width: 100%;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .equipage-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- ANIMATIONS ----- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

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

.animate-slideIn {
    animation: slideIn 0.6s ease forwards;
}

/* ----- GOOGLE FONTS IMPORT ----- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ============================================
   SORTIES - CARTES DÉTAILLÉES
   ============================================ */

.sortie-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacer-xl);
    align-items: center;
    padding: var(--espacer-xxl) 0;
}

.sortie-detail:nth-child(even) {
    direction: rtl;
}

.sortie-detail:nth-child(even) > * {
    direction: ltr;
}

.sortie-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-moyenne);
}

.sortie-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform var(--transition-lente);
}

.sortie-image:hover img {
    transform: scale(1.05);
}

.sortie-content {
    padding: var(--espacer-lg);
}

.sortie-badge {
    display: inline-block;
    background: var(--sable);
    color: var(--blanc);
    padding: var(--espacer-xs) var(--espacer-md);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--espacer-md);
}

.sortie-content h2 {
    font-family: var(--font-titre);
    font-size: 2.2rem;
    color: var(--bleu-marine);
    margin-bottom: var(--espacer-sm);
}

.sortie-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bleu-ocean);
    margin-bottom: var(--espacer-md);
}

.sortie-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gris);
}

.sortie-content p {
    color: var(--gris-fonce);
    margin-bottom: var(--espacer-lg);
    line-height: 1.7;
}

.sortie-content h4 {
    font-size: 1rem;
    color: var(--bleu-marine);
    margin: var(--espacer-lg) 0 var(--espacer-sm);
    font-weight: 600;
}

.sortie-content ul {
    list-style: none;
    margin-bottom: var(--espacer-md);
}

.sortie-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--espacer-xs);
    color: var(--gris-fonce);
}

.sortie-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sable);
    font-weight: 700;
}

@media (max-width: 900px) {
    .sortie-detail {
        grid-template-columns: 1fr;
        gap: var(--espacer-lg);
    }
    
    .sortie-detail:nth-child(even) {
        direction: ltr;
    }
    
    .sortie-image img {
        height: 280px;
    }
    
    .sortie-content h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   CORRECTIFS CSS MANQUANTS
   ============================================ */

/* ----- FAQ TOGGLE ----- */
.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--sable);
    transition: transform var(--transition-normale);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* ----- CONTACT FORM ----- */
.contact-form-wrapper {
    background: var(--blanc);
    padding: var(--espacer-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-legere);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--espacer-md);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gris-clair);
    border-radius: var(--radius-md);
    font-family: var(--font-corps);
    font-size: 1rem;
    transition: border-color var(--transition-rapide), box-shadow var(--transition-rapide);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--bleu-ocean);
    box-shadow: 0 0 0 3px rgba(46, 107, 138, 0.1);
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
    border-color: var(--erreur);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--bleu-marine);
}

.contact-form button[type="submit"] {
    align-self: flex-start;
    margin-top: var(--espacer-md);
}

/* ----- TABLE RESPONSIVE ----- */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: var(--gris-clair);
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: var(--bleu-ocean);
    border-radius: 4px;
}

/* ----- SORTIE DETAIL REVERSE ----- */
.sortie-detail--reverse {
    direction: rtl;
}

.sortie-detail--reverse > * {
    direction: ltr;
}

@media (max-width: 900px) {
    .sortie-detail--reverse {
        direction: ltr;
    }
}

/* ----- AMÉLIORATIONS FORMULAIRE ----- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacer-md);
}

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

/* ----- CONTACT INFO CARDS ----- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--espacer-lg);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--espacer-md);
    padding: var(--espacer-lg);
    background: var(--blanc);
    border-radius: var(--radius-md);
    box-shadow: var(--ombre-legere);
}

.contact-info-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sable-clair);
    border-radius: var(--radius-rond);
    flex-shrink: 0;
}

.contact-info-content h4 {
    margin: 0 0 0.25rem;
    color: var(--bleu-marine);
    font-size: 1rem;
}

.contact-info-content p {
    margin: 0;
    color: var(--gris-fonce);
}

.contact-info-content a {
    color: var(--bleu-ocean);
    font-weight: 500;
}

/* ----- AMÉLIORATION CARDS ----- */
.card {
    transition: transform var(--transition-normale), box-shadow var(--transition-normale);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre-forte);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    transition: transform var(--transition-lente);
}

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

/* ----- AMÉLIORATION GALERIE ----- */
.galerie-item {
    cursor: pointer;
    transition: transform var(--transition-normale), box-shadow var(--transition-normale);
}

.galerie-item:hover {
    transform: scale(1.02);
    box-shadow: var(--ombre-forte);
}

.galerie-item img {
    transition: filter var(--transition-normale);
}

.galerie-item:hover img {
    filter: brightness(1.05);
}

/* ----- AMÉLIORATION FAQ ----- */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--espacer-lg);
    background: var(--blanc);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-corps);
    font-size: 1rem;
    font-weight: 600;
    color: var(--bleu-marine);
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-rapide);
    box-shadow: var(--ombre-legere);
}

.faq-question:hover {
    background: var(--sable-clair);
}

.faq-item.active .faq-question {
    background: var(--bleu-marine);
    color: var(--blanc);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.faq-item.active .faq-toggle {
    color: var(--sable);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--blanc);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--ombre-legere);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: var(--espacer-lg);
}

.faq-answer p {
    margin: 0;
    color: var(--gris-fonce);
    line-height: 1.7;
}

.faq-item {
    margin-bottom: var(--espacer-md);
}

/* ----- HERO SCROLL INDICATOR ----- */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--blanc);
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ----- SECTION HEADER AMÉLIORATION ----- */
.section-header {
    text-align: center;
    margin-bottom: var(--espacer-xxl);
}

.section-header h2 {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    color: var(--bleu-marine);
    margin-bottom: var(--espacer-sm);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gris);
    max-width: 600px;
    margin: 0 auto;
}

/* ----- TEXT CENTER UTILITY ----- */
.text-center {
    text-align: center;
}

/* ----- CONTAINER NARROW ----- */
.container--narrow {
    max-width: var(--max-width-etroit);
    margin: 0 auto;
    padding: 0 var(--espacer-lg);
}

/* ============================================
   AMÉLIORATIONS UX & CONVERSION
   ============================================ */

/* ----- CTA FLOTTANT ----- */
.cta-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    font-size: 1.5rem;
}

.cta-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.cta-float .cta-whatsapp {
    background: #25D366;
    color: white;
}

.cta-float .cta-phone {
    background: var(--bleu-ocean);
    color: white;
}

.cta-float .cta-book {
    background: var(--sable);
    color: white;
    width: auto;
    padding: 0 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ----- BANDEAU RÉASSURANCE ----- */
.reassurance {
    background: var(--bleu-marine);
    padding: 1rem 0;
    overflow: hidden;
}

.reassurance-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--blanc);
    font-size: 0.95rem;
}

.reassurance-item span:first-child {
    font-size: 1.5rem;
}

/* ----- SECTION TÉMOIGNAGES ----- */
.testimonials {
    background: linear-gradient(135deg, var(--bleu-marine) 0%, var(--bleu-ocean) 100%);
    padding: var(--espacer-xxxl) 0;
    color: var(--blanc);
}

.testimonials .section-header h2 {
    color: var(--blanc);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--sable);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sable);
}

.testimonial-info strong {
    display: block;
    color: var(--blanc);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.testimonial-rating {
    color: var(--sable);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* ----- BADGES DE CONFIANCE ----- */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--blanc);
}

.trust-badge-icon {
    font-size: 2rem;
}

.trust-badge span:last-child {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ----- AMÉLIORATION HERO ----- */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* ----- STICKY HEADER AMÉLIORÉ ----- */

/* ----- ANIMATIONS AU SCROLL ----- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- COMPTEUR STATS ----- */
.stats-section {
    background: var(--blanc);
    padding: var(--espacer-xxl) 0;
}

.stats-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}


.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: var(--blanc);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.stat-number {
    font-family: var(--font-titre);
    font-size: 3rem;
    font-weight: 700;
    color: var(--bleu-marine);
    line-height: 1;
}

.stat-label {
    color: var(--gris);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* ----- PRIX BARRÉ PROMO ----- */
.price-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--gris);
    font-size: 1rem;
}

.price-badge {
    background: #e74c3c;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ----- RESPONSIVE AMÉLIORATIONS ----- */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
    margin-top: 2.5rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reassurance-grid {
        gap: 1.5rem;
    }
    
    .cta-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .cta-float .cta-book {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
    margin-top: 2.5rem;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .reassurance-item span:last-child {
        font-size: 0.85rem;
    }
}

/* ----- SECTION PARTENAIRES/PRESSE ----- */
.as-seen {
    background: var(--gris-clair);
    padding: 2rem 0;
    text-align: center;
}

.as-seen p {
    color: var(--gris);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.as-seen-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
}

/* ----- NOTIFICATION TOAST ----- */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bleu-marine);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--ombre-forte);
    z-index: 1000;
    transition: bottom 0.4s ease;
}

.toast.show {
    bottom: 2rem;
}

.toast-success {
    background: var(--succes);
}

/* ----- AMÉLIORATION FORMULAIRE ----- */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sable);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.2);
}

/* ----- LIGHTBOX GALERIE ----- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}


/* ============================================
   STYLES ADDITIONNELS - L'ÉCHAPPÉE BLEUE V2
   ============================================ */

/* ----- HERO VIDEO ----- */
.hero--video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 58, 92, 0.4) 0%,
        rgba(26, 58, 92, 0.6) 100%
    );
}

/* ----- LOCALISATION BANNER ----- */
.localisation-banner {
    background: var(--bleu-marine);
    color: var(--blanc);
    padding: var(--espacer-md) 0;
    text-align: center;
}

.localisation-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--espacer-sm);
}

.localisation-icon {
    font-size: 1.25rem;
}

.localisation-text {
    font-family: var(--font-titre);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ----- CARDS GRID 4 COLONNES ----- */
.cards-grid--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--espacer-lg);
}

@media (max-width: 1024px) {
    .cards-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ----- CARD LINK ----- */
.card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-normale), box-shadow var(--transition-normale);
}

.card--link:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre-forte);
    color: inherit;
}

.card--link .card-body h3 {
    color: var(--bleu-marine);
    transition: color var(--transition-rapide);
}

.card--link:hover .card-body h3 {
    color: var(--sable);
}

/* ----- SPLIT CONTENT ----- */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacer-xxl);
    align-items: center;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-moyenne);
}

.split-text h2 {
    margin-bottom: var(--espacer-lg);
}

.split-text p {
    color: var(--gris-fonce);
    margin-bottom: var(--espacer-lg);
}

@media (max-width: 900px) {
    .split-content {
        grid-template-columns: 1fr;
        gap: var(--espacer-xl);
    }
    
    .split-image {
        order: -1;
    }
}

/* ----- FEATURE LIST ----- */
.feature-list {
    list-style: none;
    margin: 0 0 var(--espacer-xl) 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--espacer-md);
    padding: var(--espacer-sm) 0;
    font-size: 1rem;
    color: var(--gris-fonce);
}

.feature-icon {
    font-size: 1.25rem;
    width: 30px;
    text-align: center;
}

/* ----- EQUIPAGE GRID 3 COLONNES ----- */
.equipage-grid--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--espacer-xl);
}

@media (max-width: 900px) {
    .equipage-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .equipage-grid--3 {
        grid-template-columns: 1fr;
    }
}

/* ----- TESTIMONIALS SINGLE ----- */
.testimonials-grid--single {
    max-width: 600px;
    margin: 0 auto;
}

/* ----- DROPDOWN MENU ----- */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--blanc);
    min-width: 200px;
    border-radius: var(--radius-md);
    box-shadow: var(--ombre-moyenne);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-rapide);
    z-index: 100;
}

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

.dropdown li {
    border-bottom: 1px solid var(--gris-clair);
}

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

.dropdown a {
    display: block;
    padding: var(--espacer-sm) var(--espacer-md);
    color: var(--bleu-marine);
    font-size: 0.9rem;
    transition: background var(--transition-rapide);
}

.dropdown a:hover {
    background: var(--gris-clair);
    color: var(--sable);
}

/* ----- PAGE HERO (pour pages intérieures) ----- */
.page-hero {
    background: linear-gradient(135deg, var(--bleu-marine) 0%, var(--bleu-ocean) 100%);
    color: var(--blanc);
    padding: calc(80px + var(--espacer-xxl)) 0 var(--espacer-xxl);
    text-align: center;
}

.page-hero h1 {
    color: var(--blanc);
    margin-bottom: var(--espacer-md);
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ----- TIMELINE / ÉTAPES ----- */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--espacer-xl);
    margin-bottom: var(--espacer-xxl);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 200px;
    top: 0;
    bottom: -var(--espacer-xxl);
    width: 2px;
    background: var(--gris-clair);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--espacer-sm);
}

.timeline-content p {
    color: var(--gris);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: var(--espacer-md);
    }
    
    .timeline-item::before {
        display: none;
    }
}

/* ----- INFO BOX ----- */
.info-box {
    background: var(--gris-clair);
    padding: var(--espacer-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--espacer-xl);
}

.info-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--espacer-md);
}

.info-box-item {
    text-align: center;
}

.info-box-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gris);
    margin-bottom: var(--espacer-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-box-item span {
    font-size: 1.125rem;
    color: var(--bleu-marine);
    font-weight: 600;
}

/* ----- FORM STRUCTURED ----- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacer-md);
}

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

.form-group label {
    display: block;
    margin-bottom: var(--espacer-xs);
    font-weight: 500;
    color: var(--bleu-marine);
}

.form-group select {
    width: 100%;
    padding: var(--espacer-sm) var(--espacer-md);
    border: 2px solid var(--gris-clair);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--blanc);
    cursor: pointer;
}

/* ----- SPECS GRID ----- */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--espacer-lg);
}

.spec-item {
    text-align: center;
    padding: var(--espacer-lg);
    background: var(--blanc);
    border-radius: var(--radius-md);
    box-shadow: var(--ombre-legere);
}

.spec-icon {
    font-size: 2.5rem;
    margin-bottom: var(--espacer-sm);
}

.spec-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bleu-marine);
    display: block;
}

.spec-label {
    font-size: 0.9rem;
    color: var(--gris);
}

/* ----- HERO VIDEO FALLBACK ----- */
.hero--video {
    background-image: url("https://static.wixstatic.com/media/fddc12_f640a073a9b64f46a5172d515b8a5ca9~mv2.jpg/v1/fill/w_1920,h_1080,al_c,q_85/fddc12_f640a073a9b64f46a5172d515b8a5ca9~mv2.jpg");
    background-size: cover;
    background-position: center;
}


/* ----- VIDEO SECTION ----- */
.video-section {
    padding: 4rem 0;
    background: #fff;
}

.video-wrapper {
    max-width: 50%;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.video-caption {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .video-wrapper {
        max-width: 90%;
    }
}


/* ----- HERO IMAGE BACKGROUND ----- */
.hero--image {
    background-image: url("https://static.wixstatic.com/media/fddc12_f640a073a9b64f46a5172d515b8a5ca9~mv2.jpg/v1/fill/w_1920,h_1080,al_c,q_85/fddc12_f640a073a9b64f46a5172d515b8a5ca9~mv2.jpg");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}


/* ----- PAGE HERO ----- */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 2rem;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.page-hero--seminaire {
    background-image: url("https://static.wixstatic.com/media/fddc12_ee4bdfec0be448ecac10f532877173a0~mv2.jpg/v1/fill/w_1920,h_1080,al_c,q_85/fddc12_ee4bdfec0be448ecac10f532877173a0~mv2.jpg");
}

/* ----- CONTENT NARROW ----- */
.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* ----- INFO BADGES ----- */
.info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.badge {
    background: #f0f4f8;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    color: #1a3a5c;
}

/* ----- TIMELINE ----- */
.timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.timeline-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: #1a3a5c;
}

.timeline-content p {
    color: #666;
    margin: 0;
}

/* ----- INFO GRID ----- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.info-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.info-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #1a3a5c;
}

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

/* ----- SPLIT REVERSE ----- */
.split-content--reverse {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .split-content--reverse {
        flex-direction: column;
    }
}


/* ========================================
   PAGE HEROES - Variantes par page
   ======================================== */

.page-hero--evenement {
    background-image: url("https://static.wixstatic.com/media/fddc12_c01db55f40ff4deba0d8f400298aae44~mv2.jpg/v1/fill/w_1920,h_800,al_c,q_85/fddc12_c01db55f40ff4deba0d8f400298aae44~mv2.jpg");
}

.page-hero--course {
    background-image: url("https://static.wixstatic.com/media/fddc12_da764ceb6d7b4b24baff3b50cc62aa8d~mv2.png/v1/fill/w_1920,h_800,al_c,q_90/fddc12_da764ceb6d7b4b24baff3b50cc62aa8d~mv2.png");
}

.page-hero--formation {
    background-image: url("https://static.wixstatic.com/media/fddc12_56f2d2e37904491fb6b10192ed47453f~mv2.jpg/v1/fill/w_1920,h_800,al_c,q_85/fddc12_56f2d2e37904491fb6b10192ed47453f~mv2.jpg");
}

.page-hero--bateau {
    background-image: url("https://static.wixstatic.com/media/fddc12_f640a073a9b64f46a5172d515b8a5ca9~mv2.jpg/v1/fill/w_1920,h_800,al_c,q_85/fddc12_f640a073a9b64f46a5172d515b8a5ca9~mv2.jpg");
}

.page-hero--equipage {
    background-image: url("https://static.wixstatic.com/media/fddc12_28a91e90ebab4a909f1223c76d766777~mv2.jpg/v1/fill/w_1920,h_800,al_c,q_85/fddc12_28a91e90ebab4a909f1223c76d766777~mv2.jpg");
}

.page-hero--contact {
    background-image: url("https://static.wixstatic.com/media/fddc12_f640a073a9b64f46a5172d515b8a5ca9~mv2.jpg/v1/fill/w_1920,h_800,al_c,q_85/fddc12_f640a073a9b64f46a5172d515b8a5ca9~mv2.jpg");
}

/* ========================================
   SPECS GRID (page bateau)
   ======================================== */

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--espacer-lg);
    max-width: 900px;
    margin: 0 auto;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: var(--espacer-md);
    padding: var(--espacer-lg);
    background: white;
    border-radius: var(--rayon-lg);
    box-shadow: var(--ombre-sm);
}

.spec-icon {
    font-size: 2.5rem;
}

.spec-content {
    display: flex;
    flex-direction: column;
}

.spec-value {
    font-family: var(--fonte-titre);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bleu-marine);
}

.spec-label {
    font-size: 0.875rem;
    color: var(--texte-leger);
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   EQUIPAGE DETAIL (page équipage)
   ======================================== */

.equipage-detail {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--espacer-xxl);
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.equipage-detail--reverse {
    grid-template-columns: 1fr 300px;
}

.equipage-detail--reverse .equipage-detail-photo {
    order: 2;
}

.equipage-detail--reverse .equipage-detail-content {
    order: 1;
}

.equipage-detail-photo img {
    width: 100%;
    border-radius: var(--rayon-xl);
    box-shadow: var(--ombre-md);
}

.equipage-detail-content h2 {
    margin-bottom: var(--espacer-xs);
}

.equipage-detail-content .equipage-role {
    color: var(--bleu-ocean);
    font-weight: 600;
    margin-bottom: var(--espacer-md);
}

.equipage-detail-content p {
    margin-bottom: var(--espacer-sm);
}

.equipage-grid--single {
    max-width: 400px;
    margin: 0 auto;
}

.equipage-grid--single .equipage-member {
    text-align: center;
}

@media (max-width: 768px) {
    .equipage-detail,
    .equipage-detail--reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .equipage-detail--reverse .equipage-detail-photo,
    .equipage-detail--reverse .equipage-detail-content {
        order: unset;
    }
    
    .equipage-detail-photo {
        max-width: 250px;
        margin: 0 auto;
    }
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--espacer-xxl);
}

.contact-form-wrapper h2 {
    margin-bottom: var(--espacer-sm);
}

.contact-form-wrapper > p {
    color: var(--texte-leger);
    margin-bottom: var(--espacer-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--espacer-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacer-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--espacer-xs);
}

.form-group label {
    font-weight: 500;
    color: var(--bleu-marine);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--espacer-sm) var(--espacer-md);
    border: 1px solid var(--gris-clair);
    border-radius: var(--rayon-md);
    font-family: var(--fonte-corps);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bleu-ocean);
    box-shadow: 0 0 0 3px rgba(0, 105, 148, 0.1);
}

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

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--espacer-lg);
}

.contact-info-card {
    background: var(--gris-perle);
    padding: var(--espacer-lg);
    border-radius: var(--rayon-lg);
}

.contact-info-card h3 {
    margin-bottom: var(--espacer-md);
    font-size: 1.1rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--espacer-md);
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--espacer-sm);
}

.contact-icon {
    font-size: 1.25rem;
}

.contact-info-list a {
    color: var(--bleu-ocean);
    text-decoration: none;
}

.contact-info-list a:hover {
    text-decoration: underline;
}

.contact-social {
    display: flex;
    gap: var(--espacer-sm);
}

.social-link {
    padding: var(--espacer-xs) var(--espacer-sm);
    background: white;
    border-radius: var(--rayon-md);
    text-decoration: none;
    color: var(--texte-principal);
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: var(--bleu-ocean);
    color: white;
}

.map-wrapper {
    border-radius: var(--rayon-lg);
    overflow: hidden;
    box-shadow: var(--ombre-md);
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-wrapper {
        order: -1;
    }
}

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

/* ========================================
   CARDS GRID 4 colonnes
   ======================================== */

.cards-grid--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--espacer-lg);
}

.cards-grid--4 .card {
    text-align: center;
}

.cards-grid--4 .card h3 {
    font-size: 1.1rem;
    margin: var(--espacer-sm) 0;
}

.cards-grid--4 .card p {
    font-size: 0.9rem;
    color: var(--texte-leger);
}

@media (max-width: 968px) {
    .cards-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* VIDEO HERO */
.hero--video {
    overflow: hidden;
    background: var(--marine);
}

.hero--video::before {
    display: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero--video .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 58, 92, 0.5) 0%,
        rgba(26, 58, 92, 0.3) 50%,
        rgba(26, 58, 92, 0.6) 100%
    );
    z-index: 1;
}

.hero--video .hero-content {
    z-index: 2;
}

.hero--video .hero-scroll {
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
    .hero--video {
        background: linear-gradient(rgba(26,58,92,0.7), rgba(26,58,92,0.7)), url('img/hero-fallback.jpg') center/cover no-repeat;
        background-color: var(--marine);
    }
}

/* EQUIPAGE PHOTO HOVER EFFECT */
.equipage-photo-link {
    display: block;
    text-decoration: none;
}

.equipage-photo {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipage-photo-link:hover .equipage-photo {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(26, 58, 92, 0.3);
}

.equipage-photo img {
    transition: filter 0.3s ease;
}

.equipage-photo-link:hover .equipage-photo img {
    filter: brightness(1.1);
}

/* ============================================
   ADDITIONS CSS - Nouvelles pages FR/EN
   ============================================ */

/* ----- Alias pour compatibilité ----- */
.btn-primary { 
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-corps);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normale);
    background: linear-gradient(135deg, var(--sable) 0%, #c49a3d 100%);
    color: var(--blanc);
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.4);
    color: var(--blanc);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--bleu-marine);
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--bleu-marine);
    transition: all var(--transition-normale);
}
.btn-secondary:hover {
    background: var(--bleu-marine);
    color: var(--blanc);
}

.btn-outline {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--blanc);
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--blanc);
    transition: all var(--transition-normale);
}
.btn-outline:hover {
    background: var(--blanc);
    color: var(--bleu-marine);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* ----- Section tag ----- */
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sable);
    margin-bottom: 0.75rem;
}

/* ----- Section styles ----- */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--blanc-casse);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    color: var(--bleu-marine);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gris);
    max-width: 600px;
    margin: 0 auto;
}

/* ----- Hero ----- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-small {
    min-height: 50vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.85) 0%, rgba(46, 107, 138, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--blanc);
    padding: 2rem;
    max-width: 900px;
}

.hero-content h1 {
    font-family: var(--font-titre);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content h1 span {
    color: var(--sable);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tag {
    display: inline-block;
    background: var(--sable);
    color: var(--blanc);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

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

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

.service-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-legere);
    transition: all var(--transition-normale);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre-moyenne);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-lente);
}

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

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--sable);
    color: var(--blanc);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-content {
    padding: 1.5rem 1rem;
    background: var(--blanc);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-content h3 {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    color: var(--bleu-marine);
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-style: italic;
    color: var(--sable);
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gris);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sable);
    font-weight: bold;
}

/* ----- Two Columns Layout ----- */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-columns.reverse {
    direction: rtl;
}

.two-columns.reverse > * {
    direction: ltr;
}

.column-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-moyenne);
}

.column-content h2 {
    font-family: var(--font-titre);
    font-size: 2.2rem;
    color: var(--bleu-marine);
    margin-bottom: 1rem;
}

/* ----- Specs Grid ----- */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.spec-item {
    text-align: center;
    padding: 1rem;
    background: var(--blanc-casse);
    border-radius: var(--radius-md);
}

.spec-value {
    display: block;
    font-family: var(--font-titre);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sable);
}

.spec-label {
    font-size: 0.9rem;
    color: var(--gris);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ----- Crew Grid ----- */
.crew-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.crew-card {
    text-align: center;
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-legere);
    transition: all var(--transition-normale);
}

.crew-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre-moyenne);
}

.crew-image {
    height: 280px;
    overflow: hidden;
}

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

.crew-content {
    padding: 1.5rem 1rem;
    background: var(--blanc);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.crew-content h3 {
    font-family: var(--font-titre);
    font-size: 1.4rem;
    color: var(--bleu-marine);
    margin-bottom: 0.3rem;
}

.crew-role {
    display: block;
    color: var(--sable);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ----- Info Bar ----- */
.section-info-bar {
    background: var(--bleu-marine);
    padding: 2rem 0;
}

.info-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-item {
    text-align: center;
    color: var(--blanc);
}

.info-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.info-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.info-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ----- Content Centered ----- */
.content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-centered h2 {
    font-family: var(--font-titre);
    font-size: 2.2rem;
    color: var(--bleu-marine);
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--gris-fonce);
    line-height: 1.7;
}

/* ----- Timeline ----- */
.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) > * {
    direction: ltr;
}

.timeline-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-legere);
}

.timeline-time {
    display: inline-block;
    background: var(--sable);
    color: var(--blanc);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    color: var(--bleu-marine);
    margin-bottom: 1rem;
}

/* ----- Benefits Grid ----- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--blanc);
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-legere);
    transition: all var(--transition-normale);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre-moyenne);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-family: var(--font-titre);
    font-size: 1.2rem;
    color: var(--bleu-marine);
    margin-bottom: 0.75rem;
}

/* ----- FAQ ----- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--blanc);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--ombre-legere);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--bleu-marine);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--sable);
    transition: transform var(--transition-rapide);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--gris-fonce);
}

/* ----- CTA Section ----- */
.section-cta {
    background: linear-gradient(135deg, var(--bleu-marine) 0%, var(--bleu-ocean) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--blanc);
}

.section-cta h2 {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* ----- Footer ----- */
.footer {
    background: var(--bleu-marine-dark);
    color: var(--blanc);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    color: var(--blanc);
    text-decoration: none;
}

.footer-logo span {
    color: var(--sable);
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: var(--blanc);
    opacity: 0.8;
    transition: opacity var(--transition-rapide);
}

.footer-social a:hover {
    opacity: 1;
    color: var(--sable);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--sable);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--blanc);
    opacity: 0.8;
    transition: opacity var(--transition-rapide);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--sable);
}

.footer-contact address {
    font-style: normal;
    opacity: 0.8;
}

.footer-contact a {
    color: var(--blanc);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--blanc);
}

/* ----- Ideas Grid ----- */
.ideas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.idea-card {
    background: var(--blanc);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-legere);
    text-align: center;
}

.idea-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.idea-card h3 {
    font-family: var(--font-titre);
    color: var(--bleu-marine);
    margin-bottom: 1rem;
}

/* ----- Steps Grid ----- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--sable);
    color: var(--blanc);
    font-family: var(--font-titre);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-rond);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-family: var(--font-titre);
    color: var(--bleu-marine);
    margin-bottom: 0.75rem;
}

/* ----- Formulas Grid ----- */
.formulas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.formula-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-legere);
}

.formula-featured {
    border: 3px solid var(--sable);
}

.formula-header {
    background: var(--bleu-marine);
    color: var(--blanc);
    padding: 1.5rem 1rem;
    background: var(--blanc);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

.formula-header h3 {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.formula-capacity {
    opacity: 0.9;
}

.formula-content {
    padding: 2rem;
}

.formula-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.formula-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.formula-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sable);
    font-weight: bold;
}

.formula-ideal {
    background: var(--blanc-casse);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

/* ----- Races Table ----- */
.races-table {
    overflow-x: auto;
}

.races-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-legere);
}

.races-table th,
.races-table td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.races-table th {
    background: var(--bleu-marine);
    color: var(--blanc);
    font-weight: 600;
}

.races-table tr:nth-child(even) {
    background: var(--blanc-casse);
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-available {
    background: #d4edda;
    color: #155724;
}

.badge-contact {
    background: #fff3cd;
    color: #856404;
}

/* ----- Program Grid ----- */
.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-day {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-legere);
}

.program-header {
    background: var(--bleu-marine);
    color: var(--blanc);
    padding: 1.5rem 1rem;
    background: var(--blanc);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

.program-number {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.program-header h3 {
    font-family: var(--font-titre);
    font-size: 1.3rem;
}

.program-list {
    list-style: none;
    padding: 1.5rem 1rem;
    background: var(--blanc);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.program-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--gris-clair);
}

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

.program-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--sable);
}

/* ----- Crew Profile ----- */
.crew-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.crew-profile-reverse {
    grid-template-columns: 2fr 1fr;
}

.crew-profile-reverse .crew-profile-image {
    order: 2;
}

.crew-profile-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-moyenne);
}

.crew-role-tag {
    display: inline-block;
    background: var(--sable);
    color: var(--blanc);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.crew-profile-content h2 {
    font-family: var(--font-titre);
    font-size: 2rem;
    color: var(--bleu-marine);
    margin-bottom: 0.5rem;
}

.crew-tagline {
    font-style: italic;
    color: var(--sable);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.crew-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.highlight {
    background: var(--blanc-casse);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

/* ----- Values Grid ----- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--blanc-casse);
    border-radius: var(--radius-lg);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: var(--font-titre);
    color: var(--bleu-marine);
    margin-bottom: 0.75rem;
}

/* ----- Contact Grid ----- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    font-family: var(--font-titre);
    font-size: 2rem;
    color: var(--bleu-marine);
    margin-bottom: 0.5rem;
}

.contact-form {
    margin-top: 2rem;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--bleu-marine);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gris-clair);
    border-radius: var(--radius-md);
    font-family: var(--font-corps);
    font-size: 1rem;
    transition: border-color var(--transition-rapide);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bleu-ocean);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-weight: normal;
    font-size: 0.9rem;
}

.contact-info-card {
    background: var(--blanc-casse);
    padding: 1.5rem 1rem;
    background: var(--blanc);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    color: var(--bleu-marine);
    margin-bottom: 0.75rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--gris);
    margin-top: 0.5rem;
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--bleu-marine);
}

/* ----- Gallery Grid ----- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normale);
}

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

/* ----- Equipment Grid ----- */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.equipment-category h3 {
    font-size: 1.1rem;
    color: var(--bleu-marine);
    margin-bottom: 1rem;
}

.equipment-category ul {
    list-style: none;
}

.equipment-category li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--gris-fonce);
}

.equipment-category li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--sable);
}

/* ----- Spaces Grid ----- */
.spaces-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.space-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-legere);
}

.space-image {
    height: 200px;
    overflow: hidden;
}

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

.space-content {
    padding: 1.5rem 1rem;
    background: var(--blanc);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.space-content h3 {
    font-family: var(--font-titre);
    color: var(--bleu-marine);
    margin-bottom: 0.75rem;
}

/* ----- Specs Bar ----- */
.section-specs-bar {
    background: var(--bleu-marine);
    padding: 2rem 0;
}

.specs-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.specs-bar .spec-item {
    text-align: center;
    color: var(--blanc);
    background: transparent;
}

.specs-bar .spec-value {
    color: var(--sable);
}

.specs-bar .spec-label {
    color: var(--blanc);
    opacity: 0.8;
}

/* ----- Map ----- */
.section-map {
    padding: 0;
}

.map-container iframe {
    display: block;
}

/* ----- Lang Switch ----- */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem !important;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

/* ----- Text Center ----- */
.text-center {
    text-align: center;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .services-grid,
    .ideas-grid,
    .formulas-grid,
    .spaces-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .steps-grid,
    .values-grid,
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .crew-grid,
    .program-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .two-columns,
    .timeline-item,
    .crew-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .two-columns.reverse,
    .timeline-item:nth-child(even) {
        direction: ltr;
    }
    
    .crew-profile-reverse .crew-profile-image {
        order: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .steps-grid,
    .values-grid,
    .equipment-grid,
    .crew-grid,
    .program-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-bar {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* VIDEO PRESENTATION SECTION */
.section-video {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--marine) 0%, #0d2137 100%);
}

.video-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.video-intro h2 {
    color: var(--blanc);
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.video-intro p {
    color: var(--sable);
    font-size: 1.1rem;
    opacity: 0.9;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .section-video {
        padding: 3rem 0;
    }
    
    .video-intro h2 {
        font-size: 1.8rem;
    }
}

/* ----- ÉQUIPAGE PAGE ----- */
.crew-member {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.crew-member:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.crew-member--reverse {
    grid-template-columns: 1fr 350px;
}

.crew-member--reverse .crew-photo {
    order: 2;
}

.crew-member--reverse .crew-info {
    order: 1;
}

.crew-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.crew-info h2 {
    font-family: var(--font-titre);
    font-size: 2.2rem;
    color: var(--bleu-marine);
    margin-bottom: 0.5rem;
}

.crew-role {
    font-size: 1.1rem;
    color: var(--bleu-ocean);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.crew-info p {
    color: var(--gris);
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .crew-member,
    .crew-member--reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .crew-member--reverse .crew-photo,
    .crew-member--reverse .crew-info {
        order: unset;
    }
    
    .crew-photo img {
        height: 300px;
        max-width: 350px;
        margin: 0 auto;
    }
}
