/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    /* Optimisations pour les performances */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

.main-content {
    min-height: 100vh;
}

/* ===== HEADER ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    /* Optimisation pour les performances */
    will-change: background-color, box-shadow;
    transform: translateZ(0);
    min-height: 80px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
    width: 100%;
    min-height: 80px;
}

.logo {
    flex: 0 0 auto;
    z-index: 10;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo i {
    font-size: 2rem;
    color: #667eea;
    margin-right: 10px;
}

.nav-main {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    white-space: nowrap;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.header-contact {
    display: flex;
    gap: 20px;
    flex: 0 0 auto;
    z-index: 10;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.contact-item i {
    color: #667eea;
}

/* Navigation mobile */
.nav-mobile {
    display: block;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

.nav-mobile-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.nav-mobile-link {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    font-size: 1rem !important;
    transition: background-color 0.2s ease;
}

.nav-mobile-link:hover {
    background-color: #f8f9fa;
    padding-left: 10px;
}

.nav-mobile-link:last-child {
    border-bottom: none;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

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

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif; /* Conserver la police héro */
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif; /* Conserver la police héro */
}

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

/* ===== BOUTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border-color: #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 60px 0;
}

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

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PRÉSENTATION ===== */
.presentation {
    background: #f8f9fa;
}

.presentation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.presentation-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.presentation-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.presentation-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    font-size: 1.5rem;
    color: #667eea;
    width: 30px;
}

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

.presentation-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===== CROISIÈRES ===== */
.croisieres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.croisiere-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* .croisiere-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
} */

.croisiere-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

/* .croisiere-card:hover .croisiere-image img {
    transform: scale(1.03);
} */

.croisiere-overlay {
    display: none;
}

.croisiere-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.croisiere-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.2;
    font-weight: 700;
}

.croisiere-description {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.4;
    font-size: 1rem;
    flex-grow: 1;
}

.croisiere-details {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    margin-top: auto;
}

.detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.detail i {
    color: #667eea;
    font-size: 1rem;
}

.croisiere-actions {
    display: flex;
    gap: 10px;
}

.croisiere-actions .btn {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    padding: 12px 16px;
    font-weight: 600;
}

/* ===== AVANTAGES ===== */
.avantages {
    background: #f8f9fa;
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.avantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* .avantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
} */

.avantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.avantage-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.avantage-card p {
    color: #666;
    line-height: 1.6;
}

/* ===== TÉMOIGNAGES ===== */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid #667eea;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== FOOTER ===== */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 0;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.contact-info .contact-item i {
    color: #667eea;
    width: 20px;
}

/* Horaires SAV du footer */
.horaires-sav-container {
    flex-direction: column;
    align-items: center;
}

.horaires-sav-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.horaires-sav-header i {
    color: #667eea;
    width: 20px;
}

.horaires-sav-header strong {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.horaires-sav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.horaire-ligne {
    color: #bdc3c7;
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 2px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    background: #667eea;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #764ba2;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    color: #95a5a6;
}

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

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #667eea;
}

/* ===== BOUTON RETOUR EN HAUT ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.back-to-top.show {
    display: flex;
}

/* ===== FORMULAIRES ===== */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* ===== MESSAGES ===== */
.error-message,
.success-message {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message h2 {
    color: #155724;
    margin-bottom: 1rem;
}

.success-message p {
    color: #155724;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.reservation-details {
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RÉSERVATION ===== */
.price-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e1e5e9;
}

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

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

.price-total {
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
    border-top: 2px solid #667eea;
    padding-top: 15px;
    margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1250px) {
    .header-contact {
        display: none;
    }
    
    .nav-main {
        position: static;
        transform: none;
        margin-left: auto;
    }
}

@media (max-width: 970px) {
    .nav-main {
        display: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .header-content {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .presentation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .presentation-features {
        grid-template-columns: 1fr;
    }
    
    .croisieres-grid {
        grid-template-columns: 1fr;
    }
    
    .avantages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Navbar mobile avec nom du site plus petit */
@media (max-width: 970px) {
    .logo a span {
        font-size: 1rem;
    }
}

/* Masquer le nom du site sur très petits écrans, garder seulement le logo et le burger */
@media (max-width: 525px) {
    .logo a span {
        display: none;
    }
    
    .logo a {
        margin-right: 0;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Classes d'animation */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.fade-in-scale {
    animation: fadeInScale 0.8s ease-out;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* État initial des sections */
.section-animate {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-animate.animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* ===== UTILITAIRES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

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

/* ===== NOUVELLES SECTIONS PAGE D'ACCUEIL ===== */

/* Section Élégance Privée */
.elegance-privee {
    padding: 80px 0;
    background: #f8f9fa;
}

.elegance-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: justify;
}

.elegance-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.elegance-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.elegance-features {
    margin: 3rem 0;
    text-align: justify;
}

.elegance-features h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.elegance-features ul {
    list-style: none;
    padding: 0;
    text-align: justify;
}

.elegance-features li {
    color: #555;
    margin-bottom: 1rem;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
    text-align: justify;
}

.elegance-features li:before {
    content: "✨";
    position: absolute;
    left: 0;
    top: 0;
}

.elegance-cta {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: 600;
    font-style: italic;
    margin-top: 2rem;
    text-align: justify;
}

.elegance-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
    justify-items: center;
}

.elegance-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/* Animation supprimée */

/* Section Croisières Élégance */
.croisieres-elegance {
    padding: 80px 0;
    background: white;
}

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

.elegance-header h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.elegance-header h3 {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 500;
    font-style: italic;
}

.elegance-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.elegance-block:nth-child(even) {
    direction: rtl;
}

.elegance-block:nth-child(even) .elegance-text {
    direction: ltr;
}

/* Alternance correcte : 1er et 3ème blocs = texte/photo, 2ème bloc = photo/texte */
.elegance-block:nth-child(1) {
    direction: ltr;
}

.elegance-block:nth-child(1) .elegance-text {
    order: 1;
}

.elegance-block:nth-child(1) .elegance-photo {
    order: 2;
}

.elegance-block:nth-child(2) {
    direction: ltr;
}

.elegance-block:nth-child(2) .elegance-photo {
    order: 1;
}

.elegance-block:nth-child(2) .elegance-text {
    order: 2;
}

.elegance-block:nth-child(3) {
    direction: ltr;
}

.elegance-block:nth-child(3) .elegance-text {
    order: 1;
}

.elegance-block:nth-child(3) .elegance-photo {
    order: 2;
}

.elegance-text {
    direction: ltr;
}

.elegance-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.elegance-highlights {
    margin: 2rem 0;
}

.elegance-highlights h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.elegance-highlights ul {
    list-style: none;
    padding: 0;
}

.elegance-highlights li {
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
}

.elegance-highlights li:before {
    content: "🌟";
    position: absolute;
    left: 0;
    top: 0;
}

.elegance-photo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.elegance-photo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/* Animation supprimée */

/* Section Embarquement */
.embarquement {
    padding: 80px 0;
    background: #f8f9fa;
}

.embarquement-content {
    max-width: 1600px;
    margin: 0 auto 50px;
    text-align: center;
}

.embarquement-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
}

.embarquement-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

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

.embarquement-image {
    text-align: center;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.embarquement-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 650px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/* Animation supprimée */

/* Section Professionnels */
.professionnels {
    padding: 80px 0;
    background: white;
}

.professionnels-content {
    max-width: 1600px;
    margin: 0 auto;
}

.professionnels-text {
    text-align: justify;
    margin-bottom: 50px;
}

.professionnels-text p {
    text-align: justify;
}

/* Section finale en 2 colonnes */
.professionnels-final {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.professionnels-final-text {
    text-align: left;
}

.professionnels-final-text ul {
    text-align: justify;
    list-style: none;
    padding: 0;
    margin: 0;
}

.professionnels-final-text li {
    text-align: justify;
    padding-left: 0;
    margin-bottom: 0.8rem;
    position: relative;
}

.professionnels-final-text li:before {
    content: none;
}

.professionnels-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

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

.professionnels-reasons {
    margin: 3rem 0;
    text-align: justify;
}

.professionnels-reasons h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.professionnels-reasons ul {
    list-style: none;
    padding: 0;
}

.professionnels-reasons li {
    color: #555;
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    text-align: justify;
}

.professionnels-reasons li:before {
    content: "💼";
    position: absolute;
    left: 0;
    top: 0;
}

.professionnels-description {
    margin: 3rem 0;
    text-align: justify;
}

.professionnels-description h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.professionnels-description h4 {
    color: #667eea;
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
}

.professionnels-description ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.professionnels-description li {
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
    text-align: justify;
}

.professionnels-description li:before {
    content: "🚀";
    position: absolute;
    left: 0;
    top: 0;
}

.professionnels-motto {
    font-size: 1.3rem;
    color: #667eea;
    font-weight: 700;
    text-align: center;
    margin: 2rem 0;
    line-height: 1.5;
}

.professionnels-cta {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
}

.professionnels-image {
    text-align: center;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.professionnels-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/* Animation supprimée */

/* Responsive pour les nouvelles sections */
@media (max-width: 768px) {
    .elegance-content h2,
    .embarquement-content h2,
    .professionnels-content h2 {
        font-size: 2rem;
    }
    
    .elegance-header h2 {
        font-size: 2.5rem;
    }
    
    .elegance-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .elegance-block:nth-child(even) {
        direction: ltr;
    }
    
    .elegance-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .elegance-img,
    .elegance-photo img,
    .embarquement-image img,
    .professionnels-image img {
        height: auto;
        max-height: none;
    }
    
    .elegance-photo,
    .embarquement-image,
    .professionnels-image {
        height: auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    
    .elegance-features,
    .professionnels-reasons,
    .professionnels-description {
        text-align: justify;
    }
    
    .professionnels-content {
        text-align: justify;
    }
    
    .professionnels-text {
        text-align: justify;
    }
    
    .professionnels-final {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: justify;
    }
    
    .professionnels-final-text {
        text-align: justify;
    }
    
    /* Ajustements spécifiques pour la section professionnels sur mobile */
    .professionnels-content {
        max-width: 100%;
        padding: 0;
    }
    
    .professionnels-reasons li,
    .professionnels-description li {
        padding-left: 35px;
        margin-bottom: 1.2rem;
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .professionnels-reasons li:before,
    .professionnels-description li:before {
        left: 5px;
        top: 2px;
    }
    
    .professionnels-text {
        padding: 0;
    }
    
    /* Correction spécifique pour la section finale des professionnels */
    .professionnels-final {
        max-width: 100%;
        padding: 0;
    }
    
    .professionnels-final-text {
        padding: 0;
    }
    
    .professionnels-final-text ul {
        padding-left: 0;
        margin-left: 0;
        text-align: justify;
    }
    
    .professionnels-final-text li {
        padding-left: 35px;
        margin-bottom: 1rem;
        position: relative;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: justify;
    }
    
    .professionnels-final-text li:before {
        content: "💼";
        position: absolute;
        left: 5px;
        top: 2px;
    }
}

/* ===== PAGE DE RÉSERVATION ===== */
.reservation-hero {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.reservation-hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.reservation-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== PAGE CROISIÈRES ===== */
.croisieres-intro {
    padding: 60px 0 40px 0;
    background: #f8f9fa;
    text-align: center;
    margin-top: 80px;
}

.intro-content {
    max-width: 1600px;
    margin: 0 auto;
}

.intro-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.intro-subtitle {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 2rem;
    font-weight: 500;
}

.intro-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.intro-personnalisation {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

/* Section Offres de Croisières */
.croisieres-offres {
    padding: 80px 0;
    background: white;
}

.croisieres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.croisiere-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.croisiere-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.croisiere-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.croisiere-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.croisiere-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    flex-shrink: 1;
}

.detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
}

.detail i {
    color: #667eea;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.croisiere-content .btn {
    align-self: center;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
}

/* Section CTA Croisières */
.croisieres-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive pour la page croisières */
@media (max-width: 768px) {
    .croisieres-intro {
        padding: 100px 0 60px 0;
    }
    
    .intro-title {
        font-size: 2.5rem;
    }
    
    .intro-subtitle {
        font-size: 1.3rem;
    }
    
    .croisieres-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .croisiere-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

.reservation-form-section {
    padding: 60px 0 40px 0;
    margin-top: 80px;
}

.reservation-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.reservation-form-content h2 {
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.reservation-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

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

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.reservation-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card,
.contact-card,
.croisiere-summary {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card h3,
.contact-card h4,
.croisiere-summary h4 {
    margin-bottom: 20px;
    color: #333;
}

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

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #666;
}

.info-list li i {
    color: #667eea;
    width: 20px;
}

.contact-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.croisiere-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.croisiere-thumbnail {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

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

.croisiere-details h5 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.1rem;
}

.croisiere-details p {
    margin: 0 0 5px 0;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.croisiere-details .croisiere-price {
    color: #667eea;
    font-weight: 600;
    font-size: 1rem;
}

.croisiere-details .croisiere-duration {
    color: #667eea;
    font-weight: 600;
}

.reservation-avantages {
    background: #f8f9fa;
    padding: 80px 0;
}

.message {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== PAGE DÉTAIL CROISIÈRE ===== */
.croisiere-hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    overflow: hidden;
}

/* Nouveau layout détail (texte prioritaire + 2 départs) */
.offre-detail {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: 80px;
}

.offre-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.offre-title {
    font-size: 3.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offre-subtitle {
    font-size: 1.6rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offre-description {
    max-width: 1600px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.offre-description p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.offre-departs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.offre-depart {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offre-depart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

/* Animation supprimée */

.offre-depart h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offre-depart p {
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.offre-depart p strong {
    color: #667eea;
    font-weight: 700;
}

.offre-depart .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin: 20px 0;
}

.offre-depart .passengers {
    color: #888;
    font-size: 1rem;
    margin-bottom: 25px;
}

.offre-depart .btn {
    width: 100%;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.offre-depart-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.depart-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /* Transition supprimée */
}

/* Animation supprimée */

@media (max-width: 768px) {
    .offre-detail {
        padding: 100px 0 60px 0;
        margin-top: 60px;
    }
    
    .offre-content {
        padding: 0 15px;
    }
    
    .offre-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .offre-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .offre-description {
        margin-bottom: 3rem;
    }
    
    .offre-description p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .offre-departs {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
    }
    
    .offre-depart {
        padding: 25px 20px;
    }
    
    .offre-depart h3 {
        font-size: 1.3rem;
    }
    
    .offre-depart .price {
        font-size: 1.6rem;
        margin: 15px 0;
    }
    
    .depart-photo {
        height: 150px;
    }
    
    .offre-depart-image {
        margin-bottom: 15px;
    }
}

/* Header mobile avec image de fond */
.croisiere-mobile-header {
    display: none;
    position: relative;
    height: 300px;
    margin-top: 80px;
    overflow: hidden;
}

.croisiere-mobile-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.croisiere-mobile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.croisiere-mobile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.croisiere-mobile-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.croisiere-mobile-content h1 {
    font-size: 2rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.croisiere-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.croisiere-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.croisiere-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.croisiere-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.croisiere-hero-details {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.croisiere-hero-details .detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.1rem;
}

.croisiere-hero-details .detail i {
    color: #667eea;
    font-size: 1.3rem;
}

.croisiere-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.croisiere-details-section {
    padding: 120px 0 80px 0;
}

.croisiere-image-description {
    margin-bottom: 30px;
}

.croisiere-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.croisiere-details-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.croisiere-description h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.croisiere-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.croisiere-highlights {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.croisiere-highlights h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 1.1rem;
}

.highlights-list li i {
    color: #28a745;
    font-size: 1.2rem;
    width: 20px;
}

.croisiere-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reservation-card,
.contact-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.reservation-image {
    margin-bottom: 20px;
}

.reservation-photo {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.reservation-card h3,
.contact-card h4 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.4rem;
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
}

.info-item i {
    color: #667eea;
    font-size: 1.2rem;
    width: 20px;
}

.croisiere-gallery {
    background: #f8f9fa;
    padding: 80px 0;
}

.croisiere-gallery h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* .gallery-item:hover {
    transform: translateY(-5px);
} */

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

/* .gallery-item:hover .gallery-image {
    transform: scale(1.05);
} */

.croisiere-info-section {
    padding: 80px 0;
}

.croisiere-info-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

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

.info-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: none !important;
    transform: none !important;
    animation: none !important;
}

/* .info-card:hover {
    transform: translateY(-5px);
} */

.info-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.info-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.info-card li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.info-card li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.croisiere-cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.croisiere-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.croisiere-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.croisieres-similaires {
    background: #f8f9fa;
    padding: 60px 0;
}

.croisieres-similaires h2 {
    text-align: center;
    margin-bottom: 35px;
    color: #333;
}

/* Responsive pour la page détail */
@media (max-width: 768px) {
    .croisiere-hero {
        height: 60vh;
    }
    
    .croisiere-hero-title {
        font-size: 2.5rem;
    }
    
    .croisiere-hero-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .croisiere-details-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .croisiere-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Header mobile avec image */
    .croisiere-mobile-header {
        display: block;
    }
    
    .section-header-desktop {
        display: none;
    }
    
    .croisiere-details-section {
        padding-top: 60px;
    }
}

/* Responsive pour la réservation */
@media (max-width: 768px) {
    .reservation-form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reservation-form {
        padding: 20px;
    }
}

/* ===== PAGE BATEAUX ===== */
.bateaux-titre {
    padding: 60px 0 40px 0;
    background: #f8f9fa;
    text-align: center;
    margin-top: 80px; /* Compensation pour la navbar fixe */
}

.bateaux-titre-content {
    max-width: 1600px;
    margin: 0 auto;
}

.bateaux-titre-content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.bateaux-titre-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

/* Section Description */
.bateaux-description {
    padding: 50px 0;
    background: white;
}

/* Section Spécifications Techniques */
.bateaux-specifications {
    padding: 50px 0;
    background: #f8f9fa;
}

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

.specifications-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.specifications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.specifications-text {
    text-align: left;
}

.specifications-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.specifications-text p:last-child {
    border-bottom: none;
}

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

.bateaux-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.bateaux-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.bateaux-text h2 {
    font-size: 2rem;
    color: #333;
    margin: 2rem 0 1.5rem 0;
    font-weight: 700;
}

.bateaux-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bateaux-photo {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    /* Transition supprimée */
}

/* Animation supprimée */

/* Section Caractéristiques */
.bateaux-caracteristiques {
    padding: 50px 0;
    background: #f8f9fa;
}

.caracteristiques-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.caracteristiques-text h2 {
    text-align: left;
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
}

.caracteristiques-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.caracteristiques-text p:last-child {
    border-bottom: none;
}

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

.caracteristiques-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.caracteristiques-photo {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    /* Transition supprimée */
}

/* Animation supprimée */

/* Section CTA */
.bateaux-cta {
    padding: 50px 0;
    background: white;
    text-align: center;
}

.bateaux-cta-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.bateaux-cta-content p {
    font-size: 1.2rem;
    color: #667eea;
    margin-bottom: 2rem;
    font-weight: 500;
}

.bateaux-cta-image {
    margin-bottom: 2rem;
}

.bateaux-cta-photo {
    width: 100%;
    max-width: 800px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    /* Transition supprimée */
}

/* Animation supprimée */

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

/* Responsive pour la page bateaux */
@media (max-width: 768px) {
    .bateaux-titre {
        padding: 80px 0 50px 0;
    }
    
    .bateaux-titre-content h1 {
        font-size: 2rem;
    }
    
    .bateaux-titre-content p {
        font-size: 1.1rem;
    }
    
    .bateaux-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bateaux-photo,
    .bateaux-cta-photo {
        height: 250px;
    }
    
    .caracteristiques-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .caracteristiques-photo {
        height: 250px;
    }
    
    .bateaux-cta-buttons {
        flex-direction: column;
    align-items: center;
}

    .specifications-title {
        font-size: 2rem;
    }
    
    .specifications-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .specifications-text {
        text-align: center;
    }
}

/* ===== RÉSUMÉ DES SERVICES DANS LE FORMULAIRE ===== */
.services-summary-display {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.services-list {
    margin-bottom: 20px;
}

.service-category-summary {
    margin-bottom: 15px;
}

.service-category-summary:last-child {
    margin-bottom: 0;
}

.service-category-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #e5e7eb;
}

.service-item-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.service-name {
    color: #4b5563;
    font-size: 14px;
}

.service-price {
    color: #059669;
    font-weight: 600;
    font-size: 14px;
}

.services-total {
    text-align: right;
    padding: 15px 0;
    border-top: 2px solid #e5e7eb;
    margin-top: 15px;
    color: #1f2937;
    font-size: 16px;
}

.depart-info {
    text-align: center;
    padding: 10px;
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    margin-top: 15px;
    color: #1e40af;
    font-size: 13px;
}

.depart-info i {
    margin-right: 5px;
}

.services-note {
    text-align: center;
    padding: 10px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    margin-top: 15px;
    color: #92400e;
    font-size: 13px;
}

.services-note i {
    margin-right: 5px;
}

/* ===== MODAL SERVICES ADDITIONNELS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    overflow: hidden;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
}

.modal-body {
    padding: 30px;
    max-height: calc(85vh - 180px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #333;
}



.services-grid {
    display: grid;
    gap: 25px;
}

.service-category {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid #667eea;
}

.service-category h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category h3::before {
    content: "✨";
    font-size: 1.1rem;
}

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

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

.service-name {
    color: #555;
    font-size: 1rem;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.service-price {
    color: #667eea;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* Checkbox personnalisée */
.service-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 15px;
}

.service-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #667eea;
    border-radius: 4px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.service-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.service-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.service-checkbox:hover .checkmark {
    border-color: #764ba2;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

/* Résumé des services */
.services-summary {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.services-summary h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.selected-services ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.selected-services li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    font-size: 0.95rem;
}

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

.total-price {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 2px solid #667eea;
    color: #667eea;
    font-size: 1.1rem;
}

.modal-note {
    margin-top: 25px;
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    text-align: center;
}

.modal-note p {
    margin: 0;
    color: #856404;
    font-size: 1rem;
}

.modal-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding: 25px 30px;
    border-top: 2px solid #f0f0f0;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.modal-footer .btn {
    min-width: 140px;
}

/* Responsive pour la modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-content {
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 20px;
        max-height: calc(90vh - 200px);
    }
    
    .modal-footer {
        padding: 20px;
        flex-direction: column;
        position: sticky;
        bottom: 0;
        background: #f8f9fa;
    }
    
    .modal-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .service-price {
        align-self: flex-end;
    }
    
    .service-checkbox {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .services-summary {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .services-summary h4 {
        font-size: 1.2rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .nav-main,
    .nav-mobile,
    .back-to-top,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    section {
        padding: 20px 0;
    }
}

/* ===== PAGE SERVICES ADDITIONNELS ===== */
.services-section {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: 80px;
}

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

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

.croisiere-info {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.croisiere-info h2 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.croisiere-info p {
    margin-bottom: 8px;
    color: #555;
    font-size: 1.1rem;
}

.croisiere-info p strong {
    color: #333;
    font-weight: 600;
}

.services-content {
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.service-category {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.service-category h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category h3::before {
    content: "✨";
    font-size: 1.2rem;
}

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

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

.service-name {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.service-price {
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
    white-space: nowrap;
}

/* Checkbox personnalisée */
.service-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 15px;
}

.service-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #667eea;
    border-radius: 4px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.service-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.service-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.service-checkbox:hover .checkmark {
    border-color: #764ba2;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.services-note {
    text-align: center;
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    margin-bottom: 30px;
    color: #856404;
    font-size: 1rem;
}

.services-summary {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.services-summary h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
}

.selected-services ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.selected-services li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    font-size: 1rem;
}

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

.total-price {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #667eea;
    color: #667eea;
    font-size: 1.2rem;
}

.services-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
}

.services-actions .btn {
    min-width: 180px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    flex: 1;
    max-width: 250px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style spécifique pour le bouton retour dans la page services */
.services-actions .btn-secondary {
    background: transparent;
    color: #667eea;
    border-color: #667eea;
}

/* Contrôles de quantité pour les services */
.service-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-value {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.services-actions .btn-secondary:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Responsive pour la page services */
@media (max-width: 768px) {
    .services-section {
        padding: 100px 0 60px 0;
        margin-top: 60px;
    }
    
    .services-section .container {
        padding: 0 15px;
    }
    
    .services-title {
        font-size: 2.2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .croisiere-info {
        padding: 20px;
    }
    
    .croisiere-info h2 {
        font-size: 1.3rem;
    }
    
    .service-category {
        padding: 20px;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0;
    }
    
    .service-price {
        align-self: flex-end;
    }
    
    .service-checkbox {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .services-summary {
        padding: 25px;
    }
    
    .services-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .service-quantity {
        margin-left: 10px;
        gap: 6px;
    }
    
    .qty-btn {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
    
    .qty-value {
        font-size: 12px;
        min-width: 16px;
    }
}

.croisiere-details .croisiere-duration {
    color: #667eea;
    font-weight: 600;
    font-size: 1rem;
}

.croisiere-details .croisiere-depart {
    color: #667eea;
    font-weight: 600;
    font-size: 1rem;
}

/* ===== ADMIN GLOBAL ADJUSTMENTS ===== */
.admin-dashboard {
    margin-top: 120px;
    padding-top: 0;
}

.admin-dashboard .admin-form-section {
    padding: 60px 0 40px 0;
}

.admin-dashboard .dashboard-planning,
.admin-dashboard .dashboard-recent {
    padding: 60px 0 40px 0;
}

/* Plus d'espace entre la navbar et le header des pages admin */
.admin-dashboard .dashboard-header {
    padding-top: 60px;
}


