.elementor-1223 .elementor-element.elementor-element-9ab11e7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1223 .elementor-element.elementor-element-0942470{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-cb164f5 *//* Variables CSS (Base moderne et claire) */
:root {
    --primary-color: #008080; /* Teal/Bleu-Vert principal */
    --secondary-color: #fca311; /* Jaune/Orange pour les CTA */
    --background-light: #f9f9f9;
    --text-color: #1e1e1e;
    --light-text-color: #666;
    --dark-bg: #222; /* Footer sombre */
    --white: #fff;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.15);
    --font-family: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth; 
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

section {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--primary-color);
}

.sub-title {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s;
}

/* Boutons */
.btn-primary {
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.large-btn {
    padding: 18px 50px;
    font-size: 1.1em;
    border-radius: 8px;
}

/* Liens secondaires (dans les cartes) */
.link-secondary {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-top: 10px;
}

/* --- Header / Navigation --- */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-color);
}

.logo-image {
    height: 35px;
    width: auto;
}

.nav a:not(.btn-primary) {
    margin-left: 30px; 
    font-weight: 500;
    color: var(--light-text-color);
}

.nav a:not(.btn-primary):hover {
    color: var(--primary-color);
}

/* --- Section 1 : Hero --- */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.2); /* Effet moderne sombre */
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Animations de fondu (pour l'effet moderne) */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

/* --- Section 2 : Crafting Memories / Statistiques --- */
.crafting-memories {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 20px;
    text-align: left;
}

.info-card {
    width: 45%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.info-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.text-content {
    width: 55%;
}

.text-content .description {
    color: var(--light-text-color);
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    margin-top: 30px;
}

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

.stat-item .count {
    font-size: 2em;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-item p:last-child {
    font-size: 0.9em;
    color: var(--light-text-color);
}

/* --- Section 3 : Top Picks / Services --- */
.top-picks {
    background-color: var(--background-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s;
}

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

.service-card h4 {
    color: var(--text-color);
    margin: 15px 0 10px;
}

.service-card p {
    color: var(--light-text-color);
    font-size: 0.9em;
}

.icon-large {
    font-size: 2.5em;
    color: var(--primary-color);
}

/* --- Section 4 : Group Travel CTA --- */
.group-travel-cta {
    padding: 80px 0;
}

.group-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.group-image {
    width: 50%;
    height: 350px;
    overflow: hidden;
}

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

.group-info {
    width: 50%;
    padding: 30px 40px;
}

.group-info p {
    margin-bottom: 30px;
    color: var(--light-text-color);
}

/* --- Section 5 : Travelers Say / Avis --- */
.travelers-say {
    background-color: var(--background-light);
}

.review-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.review-card {
    width: 30%;
    padding: 40px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: var(--shadow-light);
}

.quote-icon {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.review-card .quote {
    font-style: italic;
    color: var(--light-text-color);
    margin-bottom: 15px;
}

.review-card .name {
    font-weight: 600;
    color: var(--primary-color);
}

/* --- Section 6 : FAQ --- */
.faq-section {
    background-color: var(--white);
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.faq-question {
    display: block;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-color);
    padding: 10px 0;
    position: relative;
    list-style: none; /* Cache la puce par défaut dans les navigateurs */
}

/* Flèche d'ouverture/fermeture */
.faq-question::after {
    content: '\f078'; /* Icône Font Awesome : chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    color: var(--primary-color);
    transition: transform 0.3s;
}

/* Rotation de la flèche si ouvert */
.faq-item[open] > .faq-question::after {
    transform: rotate(180deg);
}

/* Style de la réponse */
.faq-answer {
    padding: 10px 20px 0 0;
    color: var(--light-text-color);
    line-height: 1.7;
    font-size: 0.95em;
}


/* --- Section 7 : Final CTA --- */
.final-cta {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-inner h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-inner p {
    font-size: 1.1em;
    margin-bottom: 40px;
}

/* --- Footer --- */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 50px 0;
}

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

.footer-inner {
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.footer-col {
    width: 45%; 
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

.social-icons a {
    color: var(--secondary-color);
}
.social-icons a:hover {
    color: var(--white);
}


/* ================================================= */
/* RESPONSIVE DESIGN (Media Queries)     */
/* ================================================= */

/* Tablette (Écrans < 1024px) */
@media (max-width: 1024px) {
    /* ... (Reste du style tablette conservé) ... */
    .hero-content h1 {
        font-size: 3em;
    }
    
    .crafting-memories {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .info-card, .text-content {
        width: 100%;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 30px auto 0;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card {
        padding: 25px;
    }

    .group-inner {
        flex-direction: column;
    }
    .group-image, .group-info {
        width: 100%;
    }
    .group-image {
        height: 250px;
    }
    .group-info {
        padding: 30px;
        text-align: center;
    }

    .review-container {
        flex-wrap: wrap;
    }
    .review-card {
        width: 48%; 
    }
    
    .footer-inner {
        flex-wrap: wrap;
    }
    .footer-col {
        width: 48%;
    }
    .footer-col:first-child {
        margin-bottom: 20px;
    }
}

/* Mobile (Écrans < 600px) */
@media (max-width: 600px) {
    section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    /* --- CORRECTION NAV BAR MOBILE (Logo/Bouton) --- */
    .header-inner {
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center;
        padding: 10px 20px;
    }

    /* Ajustement de la taille du logo */
    .logo {
        font-size: 1.2em; /* Réduit la taille du texte du logo */
    }
    .logo-image {
        height: 25px; /* Réduit la taille de l'image du logo */
    }

    /* Ajustement de la taille du bouton de la NAV */
    .nav .btn-primary {
        padding: 8px 15px; /* Réduit le padding */
        font-size: 0.8em; /* Réduit la taille du texte du bouton */
        border-radius: 20px; /* Ajuste le border-radius */
    }
    /* ------------------------------------------------ */

    /* Hero */
    .hero-section {
        height: 50vh;
    }
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 1em;
        margin-bottom: 30px;
    }

    /* Services & Avis */
    .service-grid, .stats-grid, .review-container {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    .review-card {
        width: 100%;
    }
    
    /* Footer Mobile */
    .footer-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .footer-col {
        width: 100%;
        text-align: center;
    }
    /* Ajout de la taille du texte pour les p dans le footer sur mobile */
    .footer-col p {
        font-size: 1em; 
    }
}/* End custom CSS */