         * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Outfit', sans-serif;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* Container wrapper */
        .container {
            max-width: 1900px;
            margin: auto;
        }
        
        @media (max-width: 1900px) {
            .container {
                padding-inline: 82px;
            }
        }
        
        @media (max-width: 1480px) {
            .container {
                padding-inline: 40px;
            }
        }
        
        @media (max-width: 1260px) {
            .container {
                padding-inline: 15px;
            }
        }
        
        /* Primary button */
        .btn-primary {
            background: #567ab1;
            display: inline-flex;
            padding: 7px 16px;
            justify-content: center;
            align-items: center;
            border: none;
            outline: none;
            cursor: pointer;
            gap: 8px;
            border-radius: 24px;
            color: #fff;
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            width: max-content;
            text-decoration: none;
        }
        
        .btn-primary:hover {
            background: #124265;
        }
        
        /* Header */
        .header {
            height: auto;
            padding-block: 10px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.04);
            background: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 1000000;
            position: relative;
        }
        
        @media (min-width: 1480px) {
            .header {
                padding-left: 35px;
                padding-right: 35px;
            }
        }
        
        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            width: 100%;
        }
        
        /* Logo */
        .logo {
            display: flex;
            gap: 16px;
            align-items: center;
            cursor: pointer;
        }
        
        .logo img {
            height: 45px;
            width: auto;
        }
        
        @media (max-width: 1024px) {
            .logo {
                gap: 8px;
            }
            .logo img {
                height: 35px;
            }
        }
        
        /* Navigation */
        .nav-menu {
            display: flex;
            gap: 32px;
            margin-left: 64px;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: #000000;
        }
        
        .nav-menu span,
        .nav-menu a {
            text-transform: uppercase;
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
            cursor: pointer;
        }
        
        .nav-menu span:hover,
        .nav-menu a:hover {
            color: #567ab1;
        }
        
        @media (max-width: 1260px) {
            .nav-menu {
                gap: 20px;
                margin-left: 20px;
            }
        }
        
        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
            }
        }
        
        /* Right section */
        .header-right {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            gap: 40px;
        }
        
        @media (max-width: 1260px) {
            .header-right {
                gap: 20px;
            }
        }
        
        /* Language selector */
        .lang-selector {
            position: relative;
            display: inline-block;
        }
        
        .lang-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            background: transparent;
            border: 1px solid rgba(18, 66, 101, 0.2);
            border-radius: 20px;
            color: #124265;
            font-family: 'Outfit', sans-serif;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 90px;
            justify-content: center;
            height: 32px;
        }
        
        .lang-btn:hover {
            background: rgba(18, 66, 101, 0.05);
            border-color: rgba(18, 66, 101, 0.3);
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(18, 66, 101, 0.1);
        }
        
        .lang-btn .flag {
            font-size: 14px;
            line-height: 1;
        }
        
        .lang-btn .chevron {
            margin-left: 2px;
            transition: transform 0.3s ease;
            opacity: 0.6;
        }
        
        .lang-selector:hover .chevron {
            transform: rotate(180deg);
        }
        
        .lang-dropdown {
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            min-width: 160px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(18, 66, 101, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            overflow: hidden;
        }
        
        .lang-selector:hover .lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        
        .lang-option {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            background: transparent;
            border: none;
            color: #124265;
            font-family: 'Outfit', sans-serif;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: left;
        }
        
        .lang-option:hover {
            background: rgba(18, 66, 101, 0.05);
        }
        
        .lang-option.active {
            background: rgba(107, 202, 44, 0.1);
            color: #6BCA2C;
            font-weight: 600;
        }
        
        .lang-option .flag {
            font-size: 14px;
        }
        
        .lang-option .label {
            flex: 1;
        }
        
        .lang-option .check {
            opacity: 0;
            color: #6BCA2C;
            font-size: 12px;
        }
        
        .lang-option.active .check {
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .lang-btn {
                min-width: 55px;
                padding: 4px 8px;
                height: 26px;
            }
            .lang-btn .label {
                display: none;
            }
        }
        
        /* Phone button */
        .phone-btn {
            background-color: #fff;
            border: 2px solid #6BCA2C;
            border-radius: 50px;
            display: flex;
            align-items: center;
            min-width: 300px;
            min-height: 50px;
            height: auto;
            padding: 0 16px;
            gap: 12px;
            text-decoration: none;
        }
        
        .phone-btn:hover {
            background-color: rgba(107, 202, 44, 0.05);
        }
        
        .phone-btn-text {
            flex: 1;
            text-align: center;
            padding-block: 8px;
        }
        
        .phone-btn-text span {
            color: #6BCA2C;
            font-size: 14px;
            font-weight: 500;
            font-family: 'Outfit', sans-serif;
            display: block;
        }
        
        .phone-btn-text span:first-child {
            white-space: nowrap;
        }
        
        @media (max-width: 1260px) {
            .phone-btn {
                min-width: auto;
            }
            .phone-btn-text span:last-child {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .phone-btn {
                min-width: auto;
                padding: 8px;
            }
            .phone-btn-text {
                display: none;
            }
        }
        
        /* Page title */
        .page-title {
            font-size: clamp(40px, 4vw, 50px);
            color: #000;
            padding-block: 16px;
            text-align: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
        }
        
        /* Main content */
        .main-content {
            padding-top: 25px;
        }
        
        .title-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }
        
        /* Filter section */
        .filter-row {
            display: flex;
            justify-content: flex-end;
            width: 100%;
            margin-bottom: 20px;
        }
        
        .filter-toggle {
            background: #fff;
            padding: 12px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            outline: none;
            border: 1px solid #5277af;
            cursor: pointer;
            transition: 0.4s all;
            display: none;
        }
        
        @media (max-width: 1024px) {
            .filter-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
        }
        
        .search-section {
            display: flex;
             gap: 30px;
        }
        
        @media (max-width: 768px) {
            .search-section {
                padding-top: 30px;
                flex-direction: column;
            }
        }
        
        /* Filter sidebar */
        .filter-sidebar {
            width: 25%;
            min-width: 280px;
            box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.08);
            border-radius: 16px;
            padding: 24px 16px;
            height: max-content;
            background: #fff;
        }
        
        @media (max-width: 1024px) {
            .filter-sidebar {
                display: none;
            }
        }
        
        .filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
        }
        
        .section-title {
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            font-size: 12px;
            color: #000;
            display: block;
            margin-bottom: 8px;
        }
        
        .form-input {
            width: 100%;
            height: 48px;
            padding: 0 16px;
            border: 1px solid #d9d9d9;
            border-radius: 24px;
            font-size: 16px;
            font-family: 'Outfit', sans-serif;
            outline: none;
            transition: border-color 0.3s;
        }
        
        .form-input:focus {
            border-color: #567ab1;
        }
        
        .input-with-icon {
            position: relative;
        }
        
        .input-with-icon .icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #567AB1;
        }
        
        .input-with-icon .form-input {
            padding-left: 44px;
        }
        
        .form-divider {
            height: 1px;
            background: #e8e8e8;
            margin: 24px 0;
        }
        
        /* Results area */
        .results-area {
            flex: 1;
        }
        
        /* Footer */
        .footer {
            font-family: 'Outfit', sans-serif;
            width: 100%;
            background: #08283e;
            padding-top: 48px;
            margin-top: 48px;
        }
        
        @media (min-width: 1480px) {
            .footer {
                padding-left: 35px;
                padding-right: 35px;
            }
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            gap: 40px;
        }
        
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }
        
        .footer-brand {
            width: 347px;
            max-width: 100%;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        @media (max-width: 640px) {
            .footer-brand {
                width: 100%;
                text-align: center;
            }
        }
        
        .footer-logo {
            display: flex;
            gap: 16px;
            align-items: center;
        }
        
        @media (max-width: 640px) {
            .footer-logo {
                justify-content: center;
            }
        }
        
        .footer-logo img {
            height: 65px;
            width: auto;
        }
        
        .footer-brand p {
            color: #ffffff;
            font-weight: 300;
            font-size: 16px;
            line-height: 20px;
        }
        
        .payment-icons {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        @media (max-width: 640px) {
            .payment-icons {
                justify-content: center;
            }
        }
        
        .payment-icons img {
            height: 30px;
            width: auto;
        }
        
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            flex: 1;
            gap: 30px;
        }
        
        .footer-section {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .footer-section-title {
            color: #b9d5ff;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding-top: 10px;
        }
        
        .footer-section a {
            font-weight: 500;
            font-size: 12px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #ffffff;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #b9d5ff;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons img {
            height: 21px;
            width: auto;
            filter: brightness(0) invert(1);
        }
        
        .footer-copyright {
            text-align: center;
            color: #fff;
            padding-block: 16px;
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 640px) {
            .footer {
                text-align: center;
            }
            .social-icons {
                justify-content: center;
            }
        }
   
   /* ========================================
   RESULTS AREA - CRUISE CARDS
   À ajouter à la fin de css.css
   ======================================== */

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.results-count {
    font-size: 18px;
    color: #333;
    font-style: italic;
}

.results-sort {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.results-sort label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.sort-select {
    padding: 10px 40px 10px 16px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #333;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' fill='none' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.sort-select:focus {
    outline: none;
    border-color: #5277AF;
}

/* Cruises Grid */
.cruises-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .cruises-grid {
        grid-template-columns: 1fr;
    }
}

/* Cruise Card */
.cruise-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cruise-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Cruise Image */
.cruise-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.cruise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cruise-card:hover .cruise-image img {
    transform: scale(1.05);
}

/* Rating Badge */
.cruise-rating {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cruise-rating .star {
    color: #F5A623;
    font-size: 14px;
}

.cruise-rating .rating-max {
    color: #999;
    font-weight: 400;
    font-size: 12px;
}

/* Cruise Content */
.cruise-content {
    padding: 20px;
}

.cruise-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.cruise-schedule {
    font-size: 14px;
    color: #5277AF;
    margin: 0 0 12px 0;
}

/* Price Row */
.cruise-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cruise-price {
    font-size: 14px;
    color: #666;
}

.cruise-price strong {
    font-size: 18px;
    color: #333;
    font-weight: 700;
}

.cruise-views {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #999;
}

.cruise-views svg {
    color: #999;
}

/* Description */
.cruise-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Action Buttons */
.cruise-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-reserve {
    display: inline-block;
    padding: 12px 24px;
    background: #5277AF;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.btn-reserve:hover {
    background: #3d5a87;
}

.btn-more {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: color 0.2s ease;
}

.btn-more:hover {
    color: #5277AF;
}

/* No Results / Error States */
.no-results,
.api-error {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.no-results p,
.api-error p {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 16px;
}

.no-results p:first-child,
.api-error p:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 600px) {
    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .results-sort {
        align-items: flex-start;
        width: 100%;
    }
    
    .sort-select {
        width: 100%;
    }
    
    .cruise-image {
        height: 180px;
    }
    
    .cruise-content {
        padding: 16px;
    }
    
    .cruise-title {
        font-size: 18px;
    }
    
    .cruise-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .btn-reserve {
        text-align: center;
    }
    
    .btn-more {
        text-align: center;
    }
}
.cruise-image-link {
    display: block;
    text-decoration: none;
}

/* ========================================
   CHAPO & TEXTE SEO
   ======================================== */

/* Chapô (intro) */
.results-area > p:first-child {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    border-left: 4px solid #567AB1;
    padding: 20px 24px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

/* Conteneur SEO avec espacement */
.seo-content {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e8eef4;
}

/* Titres SEO */
.seo-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #124265;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8eef4;
}

.seo-content h2:first-child {
    margin-top: 0;
}

.seo-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 28px;
    margin-bottom: 12px;
}

/* Paragraphes SEO */
.seo-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 16px;
    text-align: justify;
}

.seo-content p strong {
    color: #124265;
    font-weight: 600;
}

/* Listes SEO */
.seo-content ul,
.seo-content ol {
    margin: 16px 0 20px 0;
    padding-left: 24px;
}

.seo-content ul li,
.seo-content ol li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.seo-content ul li::marker {
    color: #567AB1;
}

.seo-content ol li::marker {
    color: #567AB1;
    font-weight: 600;
}

/* Tableaux SEO */
.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.seo-content table th {
    background: #567AB1;
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
}

.seo-content table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e8eef4;
    color: #444;
}

.seo-content table tr:nth-child(even) td {
    background: #f8fafc;
}

.seo-content table tr:hover td {
    background: #eef4fa;
}

/* FAQ Section */
.seo-content div[itemtype="https://schema.org/FAQPage"] {
    margin-top: 30px;
    background: #fafbfc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e8eef4;
}

.seo-content div[itemtype="https://schema.org/FAQPage"] > div[itemscope] {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #eef2f7;
}

.seo-content div[itemtype="https://schema.org/FAQPage"] > div[itemscope]:last-child {
    margin-bottom: 0;
}

.seo-content div[itemtype="https://schema.org/FAQPage"] h3[itemprop="name"] {
    color: #124265;
    font-size: 16px;
    margin: 0 0 12px 0;
    padding-left: 28px;
    position: relative;
}

.seo-content div[itemtype="https://schema.org/FAQPage"] h3[itemprop="name"]::before {
    content: "?";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #6BCA2C;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-content div[itemprop="text"] {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.seo-content div[itemprop="text"] p {
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .results-area > p:first-child {
        font-size: 15px;
        padding: 16px 18px;
    }
    
    .seo-content {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .seo-content h2 {
        font-size: 20px;
        margin-top: 30px;
    }
    
    .seo-content h3 {
        font-size: 16px;
    }
    
    .seo-content div[itemtype="https://schema.org/FAQPage"] {
        padding: 16px;
    }
    
    .seo-content div[itemtype="https://schema.org/FAQPage"] > div[itemscope] {
        padding: 16px;
    }
    
    .seo-content table th,
    .seo-content table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}


/* ========================================
   LIENS ASSOCIÉS (MAILLAGE)
   ======================================== */

.liens-associes {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f5fa 0%, #e8eef4 100%);
    border-radius: 12px;
    border: 1px solid #dde5ed;
}

.liens-associes h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #124265;
    margin: 0 0 20px 0;
    padding: 0;
    border: none;
}

.liens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.lien-associe {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.lien-associe:hover {
    border-color: #567AB1;
    box-shadow: 0 4px 12px rgba(86, 122, 177, 0.15);
    transform: translateY(-2px);
}

.lien-icon {
    color: #6BCA2C;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.lien-associe:hover .lien-icon {
    transform: translateX(4px);
}

.lien-titre {
    flex: 1;
}

@media (max-width: 768px) {
    .liens-associes {
        padding: 20px;
        margin-top: 40px;
    }
    
    .liens-grid {
        grid-template-columns: 1fr;
    }
    
    .lien-associe {
        padding: 12px 14px;
        font-size: 14px;
    }
}