/**
 * Styles pour la page Croisières Célibataires
 * Design moderne et expérience utilisateur optimisée
 */

/* ============================================
   HERO SECTION - Style Destinations
   ============================================ */
.solo-hero {
    background: linear-gradient(135deg, #0066a1 0%, #00b4d8 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.solo-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.solo-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    line-height: 1.2;
}

.solo-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.solo-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.solo-hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.solo-hero-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.solo-hero-stat:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.solo-hero-stat i {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.solo-hero-stat strong {
    font-size: 1.5rem;
    font-weight: 700;
}

/* ============================================
   CONTENT WRAPPER - Design Moderne
   ============================================ */
.guide-content-wrapper {
    padding: 3rem 0;
    background: #f8f9fa;
}

.guide-content-wrapper h2 {
    color: #1d3557;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.guide-content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0066a1 0%, #00b4d8 100%);
    border-radius: 2px;
}

.guide-content-wrapper h3 {
    color: #1d3557;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

/* Cards Essentiels */
.essential-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

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

.essential-card .card-body {
    padding: 2rem;
}

.essential-card .card-title {
    color: #0066a1;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.essential-card .card-title i {
    font-size: 1.5rem;
    opacity: 0.8;
}

.essential-card .card-text {
    color: #4a5568;
    line-height: 1.6;
}

/* Table Comparatif */
.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.comparison-table .table {
    margin-bottom: 0;
}

.comparison-table thead {
    background: linear-gradient(135deg, #0066a1 0%, #00b4d8 100%);
    color: white;
}

.comparison-table thead th {
    border: none;
    padding: 1.25rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 180, 216, 0.05);
}

.comparison-table tbody td {
    padding: 1rem;
    vertical-align: middle;
    color: #4a5568;
}

.comparison-table .table-success {
    background: rgba(22, 163, 74, 0.1);
}

.comparison-table .table-warning {
    background: rgba(245, 158, 11, 0.1);
}

.comparison-table .table-danger {
    background: rgba(239, 68, 68, 0.1);
}

/* Top 3 Cards */
.top-company-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.top-company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.top-company-card .card-header {
    padding: 1.5rem;
    border: none;
}

.top-company-card .card-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.top-company-card .card-body {
    padding: 2rem;
}

.top-company-card h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.top-company-card ul {
    padding-left: 1.25rem;
}

.top-company-card ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.top-company-card .btn {
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.top-company-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Accordion Profils */
.profile-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.profile-accordion .accordion-button {
    background: white;
    color: #1d3557;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.profile-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #0066a1 0%, #00b4d8 100%);
    color: white;
}

.profile-accordion .accordion-button:focus {
    box-shadow: none;
}

.profile-accordion .accordion-body {
    padding: 1.5rem;
    background: white;
}

/* Suppléments Section */
.supplement-alert {
    border-radius: 12px;
    border: none;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.supplement-alert .alert-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.supplement-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.supplement-card .card-header {
    padding: 1.25rem;
    font-weight: 600;
    border: none;
}

.supplement-card .badge {
    font-size: 0.85rem;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    font-weight: 500;
}

/* FAQ Section */
.faq-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-accordion .accordion-button {
    background: white;
    color: #1d3557;
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    border: none;
    font-size: 1.1rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(0, 102, 161, 0.05);
    color: #0066a1;
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Expert Section - Design épuré */
.expert-section {
    background: transparent;
    margin-top: 3rem;
}

.expert-profile-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0;
}

.expert-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0066a1;
}

.expert-info h5 {
    color: #1d3557;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.expert-title {
    color: #0066a1;
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.expert-experience {
    color: #6c757d;
    font-size: 0.85rem;
}

.expert-verdict {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.expert-verdict .lead {
    color: #4a5568;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.expert-likes-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.expert-likes-card .card-header {
    padding: 1rem 1.5rem;
    font-weight: 600;
    border: none;
}

.expert-likes-card .card-body {
    padding: 1.5rem;
}

.expert-likes-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expert-likes-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.expert-likes-card li:last-child {
    border-bottom: none;
}

.expert-likes-card li strong {
    display: block;
    color: #1d3557;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.expert-likes-card li p {
    margin: 0;
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Images SEO */
.content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

.image-caption {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Final Alert Section */
.final-alert {
    background: linear-gradient(135deg, #0066a1 0%, #00b4d8 100%);
    color: white;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.final-alert h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-alert p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.final-alert .cta-button {
    background: white;
    color: #0066a1;
    font-weight: 700;
}

.final-alert .cta-button:hover {
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
    .solo-hero h1 {
        font-size: 1.75rem;
    }
    
    .solo-hero-subtitle {
        font-size: 1rem;
    }
    
    .solo-hero-stats {
        gap: 1rem;
    }
    
    .solo-hero-stat {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .guide-content-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .expert-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Boutons CTA */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FF6B35 0%, #E55100 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Section En Savoir Plus */
.more-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    margin-top: 4rem;
}

.more-info-section h2 {
    color: #1d3557;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.more-info-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.more-info-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    border: 2px solid transparent;
}

.more-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 161, 0.15);
    border-color: #00b4d8;
    text-decoration: none;
}

.more-info-card-priority {
    position: relative;
}

.more-info-card-priority::before {
    content: 'Populaire';
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55100 100%);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
}

.more-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066a1 0%, #00b4d8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.more-info-card h3 {
    color: #1d3557;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.more-info-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.more-info-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.keyword-tag {
    background: rgba(0, 102, 161, 0.1);
    color: #0066a1;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-weight: 500;
}

/* Stats Cards */
.stats-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.stats-card-icon {
    font-size: 2.5rem;
    color: #0066a1;
    margin-bottom: 1rem;
}

.stats-card-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 0.5rem;
}

.stats-card-label {
    color: #6c757d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}