/* CSS Variables */
:root {
    --accent-color: #e74c3c;
    --text-color: #333;
    --bg-color: #fff;
    --font-family: 'Arial', sans-serif;
    --transition: all 0.3s ease;
    --accent-color: #2a9d8f;
    --text-color: #333;
    --light-text: #666;
    --lightest-text: #999;
    --card-shadow: 0 5px 15px rgba(0,0,0,0.1);
    
    --color-safran: #FFA726;
    --color-forest: #2E7D32;
    --color-forest-clair: #5df16447;
    --color-azure: #0288D1;
    --color-sand: #F5F5DC;
    --color-coal: #212121;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600&family=Lato:wght@300;400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--color-sand);
    color: var(--color-coal);
    overflow-x: hidden; /* Solution de secours */
}

a {
    text-decoration: none;
}

.mt-2 {
    margin-top: 2rem;
}


.mobile-only {
    display: none;
}

@media screen and (max-width: 767px) {
.mobile-only {
        display: block;
    }
}


/* Dropdown menu styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit; /* Match your nav link color */
    padding: 10px 15px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 200px;
}

.dropdown-menu.show {
    display: block;
}

/* Navigation mobile - approche simple */
.nav-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    position: relative;
}

.nav-menu.active {
    display: flex;
    position: relative;
}

.nav-menu li {
    margin: 1.5rem 0;
}

/* Desktop */
@media screen and (min-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        background-color: transparent;
        box-shadow: none;
        position: static;
    }
    
    .nav-menu li {
        margin: 0 -1rem;
    }
}

.twitter {
    color: black !important;
}

.instagram {
    color: rgb(255, 83, 83) !important;
}

.whatsapp {
    color: green !important;
}

.facebook {
    color: blue !important;
}

.linkedin {
    color: rgb(31, 177, 245) !important;
}

.tiktok {
    color: black !important;
}

/*.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    border-radius: 15px;
    align-items: center;
    background-color: var(--color-sand); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 150px;
    z-index: 1000;
}*/

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    border-radius: 15px;
    background-color: var(--color-sand);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 150px;
    z-index: 1000;
}

.dropdown.active .dropdown-menu {
    display: block;
}


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

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--color-coal) !important; /* Match your nav link color */
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: transparent; /* Hover effect */
}

/* Show dropdown on hover or click 
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    display: block;
}*/

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0rem 1rem;
}

.col-coal {
    color: var(--color-coal);
}

 /* Header Styles */
 .header {
    position: relative;
    overflow: visible; /* Contenir les Ã©lÃ©ments flottants */
}

.head {
    position: sticky;
    top: 0;
    z-index: 101;
    background-color: var(--color-sand); /* Fond pour tout le head */
}
/* Logo Container */
.logo-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 150px; /* Ajuster selon la largeur du logo */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 102;
}

.logo {
    max-height: 80%;
    width: auto;
    padding: 0.5rem;
}

/* Header Top */
.header-top {
    background-color: var(--color-sand);
    margin-left: 120px; /* DÃ©calage pour le logo */
}

.header-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.contactinfo {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.contactinfo span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-coal);
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--color-safran);
    transform: translateY(-3px);
}

/* Navigation */
.nav {
    position: relative;
    background-color: var(--color-coal);
    margin-left: 120px;
    border-top-left-radius: 50px;
    z-index: 100;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0.5rem 0;
}

.nav-menu li {
    position: relative; /* NÃ©cessaire pour le pseudo-Ã©lÃ©ment ::after */
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 0.7rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border-radius: 4px;
    position: relative;
    display: inline-block;
}

/* Effet hover animÃ© : soulignement dynamique */
.nav-menu li a:not(.highlight-menu)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 2px;
    background-color: var(--color-safran);
    transition: width 0.3s ease;
}

.nav-menu li a:not(.highlight-menu):hover::after {
    width: calc(100% - 2rem); /* Sâ€™Ã©tend sur la largeur du lien, moins les marges */
}

.nav-menu li a:not(.highlight-menu):hover {
    color: var(--color-safran);
}

/* Style pour highlight-menu */
.highlight-menu {
    background-color: var(--color-safran);
    color: white !important;
    padding: 0.7rem 1.2rem !important;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}


.highlight-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #e69621; /* Couleur lÃ©gÃ¨rement plus foncÃ©e */
    transition: transform 0.3s ease;
    z-index: -1;
}

.highlight-menu:hover::before {
    transform: translateX(100%);
}

.highlight-menu:hover {
    background-color: #e69621 !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: white;
    transition: var(--transition);
}

.nav-toggle.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.toggle span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 768px) {

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 !important;
        padding: 0 !important; 
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-coal);
        padding: 1rem;
    }
    .nav {
        margin-left: 0px !important;
        border-top-left-radius: 0px;       
    }

    .nav .container {
        display: flex;
        justify-content: flex-end;
        position: relative;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-menu li a {
        padding: 0.5rem 1rem;
    }

    .nav-menu li a:not(.highlight-menu)::after {
        left: 1rem;
        bottom: 2px;
    }

    .nav-toggle {
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #f9f9f9; /* Slightly different for mobile */
    }
}

@media (max-width: 480px) {
     .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 !important;
        padding: 0 !important; 
    }

    .nav-menu li a {
        font-size: 0.9rem;
    }

    .highlight-menu {
        padding: 0.5rem 1rem !important;
    }
 
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #f9f9f9; /* Slightly different for mobile */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container {
        width: 186px;
        height: 62%;  
        justify-content: flex-start;
        flex-direction: column;
    }
    
    .logo {
        max-height: 100%;
        width: 6.8rem;
        padding: 0.5rem;
    }

    .header-top,
    .nav {
        margin-left: 80px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-coal);
        padding: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-toggle {
        display: block;
    }

    .header-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .contactinfo {
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 60px;
        height: 62%;
        justify-content: flex-start;
        flex-direction: column;       
    }

    .logo {
        max-height: 100%;
        width: 6.8rem;
        padding: 0.5rem;
        margin-left: 58px;
    }
    
    .header-top,
    .nav {
        margin-left: 60px;
    }

    .nav::before {
        left: -10px;
        width: 10px;
    }
}

/* Slider */
.slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    width: 100%; /* Modification pour corriger le dÃ©bordement */
    margin-left: 0; /* Suppression du calcul de marge */
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    max-width: 600px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Lato', sans-serif;
    opacity: 0.9;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--color-safran);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--color-safran);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .header-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contactinfo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-coal);
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .slider {
        height: 450px;
    }
    
    .slide-content {
        left: 5%;
        right: 5%;
        text-align: center;
        bottom: 15%;
    }
}

/* Styles du formulaire de recherche */
.search-form {
    background-color: #F5F5DC;
    /* padding: 40px 0; */
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.search-form-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 10px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    top: -30px; /* RÃ©duire le dÃ©calage vertical */
    width: 95%; /* Ajustement responsive */
}

.search-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-coal);
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.search-form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-safran);
}

.search-form-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-coal);
    margin-bottom: 8px;
}

.select-wrapper, .input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    color: var(--color-safran);
    pointer-events: none;
}

select, input[type="date"] {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--color-coal);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: white;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select {
    padding-right: 40px;
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

select:focus, input[type="date"]:focus {
    border-color: var(--color-safran);
    box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.2);
    outline: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.checkbox-group {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox:hover input ~ .checkmark {
    border-color: var(--color-safran);
}

.checkbox input:checked ~ .checkmark {
    background-color: var(--color-safran);
    border-color: var(--color-safran);
}

.checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--color-coal);
}

.checkbox-text a {
    color: var(--color-azure);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkbox-text a:hover {
    color: var(--color-safran);
    text-decoration: underline;
}

.search-button {
    grid-column: 1 / -1;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background-color: var(--color-safran);
    border: none;
    border-radius: 6px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(255, 167, 38, 0.3);
}

.search-button:hover {
    background-color: var(--color-forest);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(2, 136, 209, 0.3);
}

.search-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(2, 136, 209, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .search-form-container {
        padding: 25px 20px;
        top: -40px;
    }
    
    .search-form-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .search-form-container {
        top: 0;
    }
    
    .search-form-inner {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .search-form-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .search-form {
        padding: 20px 0;
    }
    
    .search-form-container {
        padding: 20px 15px;
        border-radius: 6px;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    select, input[type="date"] {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .search-button {
        padding: 12px;
    }
}

/* Styles pour la section Circuits */
.circuits {
    padding: 2.5rem 1rem;
    background-color: #f9f9f7;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    /* padding-top: 40px; */
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-coal);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-safran);
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #757575;
    max-width: 700px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    display: flex;
    background-color: white;
    opacity: 0;
    transform: translateX(100%);
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.carousel-slide.prev {
    opacity: 0;
    transform: translateX(-100%);
}

.carousel-image {
    flex: 0 0 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.carousel-image::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
    z-index: 2;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0));
    transition: all 0.3s ease;
}

.carousel-slide:hover .image-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.1));
}

.circuit-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-safran);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:hover .circuit-badge {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.carousel-content {
    flex: 0 0 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.carousel-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(to bottom, var(--color-safran), var(--color-azure));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.carousel-slide.active .carousel-content::before {
    transform: scaleY(1);
}

.circuit-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-coal);
    margin-bottom: 15px;
    line-height: 1.2;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s;
}

.carousel-slide.active .circuit-title {
    transform: translateY(0);
    opacity: 1;
}

.circuit-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--color-safran);
    font-size: 1rem;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease 0.3s, opacity 0.5s ease 0.3s;
}

.carousel-slide.active .circuit-rating {
    transform: translateY(0);
    opacity: 1;
}

.circuit-rating span {
    color: #757575;
    margin-left: 8px;
    font-size: 0.9rem;
}

.circuit-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #616161;
    margin-bottom: 25px;
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease 0.4s, opacity 0.5s ease 0.4s;
}

.carousel-slide.active .circuit-description {
    transform: translateY(0);
    opacity: 1;
}

.circuit-features {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease 0.5s, opacity 0.5s ease 0.5s;
}

.carousel-slide.active .circuit-features {
    transform: translateY(0);
    opacity: 1;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 167, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--color-safran);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    background-color: var(--color-safran);
    color: white;
    transform: translateY(-5px);
}

.feature-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-coal);
}

.feature-label {
    font-size: 0.85rem;
    color: #757575;
}

.circuit-price {
    margin-bottom: 25px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease 0.6s, opacity 0.5s ease 0.6s;
}

.carousel-slide.active .circuit-price {
    transform: translateY(0);
    opacity: 1;
}

.price-label {
    font-size: 0.9rem;
    color: #757575;
    margin-bottom: 5px;
}

.price-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-azure);
}

.price-period {
    font-size: 0.9rem;
    color: #757575;
}

/* Style pour le conteneur des boutons */
.circuit-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease 0.7s, opacity 0.5s ease 0.7s;
}

.carousel-slide.active .circuit-buttons {
    transform: translateY(0);
    opacity: 1;
}

.circuit-button {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(0);
}

/* Style pour le bouton RÃ©server */
.circuit-button-reserve {
    background-color: var(--color-safran);
    box-shadow: 0 5px 15px rgba(255, 167, 38, 0.3);
}

.circuit-button-reserve:hover {
    background-color: var(--color-forest);
    box-shadow: 0 8px 20px rgba(2, 136, 209, 0.4);
    transform: translateY(-3px);
}

/* Style pour le bouton Explorer */
.circuit-button-explore {
    background-color: var(--color-forest);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.circuit-button-explore:hover {
    background-color: var(--color-safran);
    box-shadow: 0 8px 20px rgba(2, 136, 209, 0.4);
    transform: translateY(-3px);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--color-safran);
    transform: scale(1.2);
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
}

.control-button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--color-coal);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-button:hover {
    background-color: var(--color-safran);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 167, 38, 0.3);
}

.view-all-circuits {
    text-align: center;
    margin-top: 30px;
}

.view-all-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-coal);
    text-decoration: none;
    padding: 10px 25px;
    border: 2px solid var(--color-safran);
    border-radius: 30px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.view-all-button:hover {
    background-color: var(--color-safran);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 167, 38, 0.3);
}

.view-all-button i {
    transition: transform 0.3s ease;
}

.view-all-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .carousel-slide {
        flex-direction: column;
    }
    
    .carousel-image {
        flex: 0 0 300px;
    }
    
    .carousel-image::before {
        width: 100%;
        height: 60px;
        right: auto;
        bottom: 0;
        top: auto;
        background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    }
    
    .circuit-title {
        font-size: 1.8rem;
    }
    
    .carousel-content {
        padding: 30px;
    }
    
    .carousel-content::before {
        width: 100%;
        height: 6px;
        left: 0;
        top: 0;
        background: linear-gradient(to right, var(--color-safran), var(--color-azure));
        transform: scaleX(0);
        transform-origin: left;
    }
    
    .carousel-slide.active .carousel-content::before {
        transform: scaleX(1);
    }
    
    .circuit-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .circuit-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .carousel-image {
        flex: 0 0 250px;
    }
    
    .circuit-title {
        font-size: 1.6rem;
    }
    
    .circuit-description {
        font-size: 0.95rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-value {
        font-size: 1.1rem;
    }
    
    .carousel-controls {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .carousel-image {
        flex: 0 0 200px;
    }
    
    .carousel-content {
        padding: 20px;
    }
    
    .circuit-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .circuit-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .circuit-features {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .feature-value {
        font-size: 1rem;
    }
    
    .circuit-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .view-all-button {
        font-size: 0.95rem;
        padding: 8px 20px;
    }
}

/* Destinations */

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-forest);
}

.destinations-container {
    max-width: 1200px;
    background-color: var(--color-forest-clair);
    margin: 0 auto;
    padding: 2.5rem 1rem;
}

.destinations-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.destinations-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--noir-charbon);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.destinations-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--orange-safran);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.destinations-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--noir-charbon);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.destination-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.destination-content {
    padding: 1.5rem;
}

.destination-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: white;
    margin: 0;
}

.destination-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--noir-charbon);
    font-family: 'Poppins', sans-serif;
}

.destination-detail {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.destination-detail i {
    margin-right: 5px;
    color: var(--orange-safran);
}

.destination-description {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.destination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.destination-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--vert-foret);
    font-size: 1.2rem;
}

.destination-price span {
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 400;
}

.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-safran);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(255, 167, 38, 0.3);
}

.view-all-btn:hover {
    background-color: var(--color-safran);
    transform: translateY(-2px);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--orange-safran);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    z-index: 2;
}

@media (max-width: 768px) {
    .destinations-title {
        font-size: 2.2rem;
    }
    
    .destinations-subtitle {
        font-size: 1.2rem;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

.pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/500/500');
    opacity: 0.03;
    z-index: -1;
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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

.destination-card:nth-child(1) { animation-delay: 0.1s; }
.destination-card:nth-child(2) { animation-delay: 0.2s; }
.destination-card:nth-child(3) { animation-delay: 0.3s; }
.destination-card:nth-child(4) { animation-delay: 0.4s; }

.testimonials {
    background-color: var(--color-forest-clair);
    padding: 2.5rem 1rem;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-safran), var(--color-forest), var(--color-azure));
}

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

.testimonials-counter {
    font-family: 'Poppins', sans-serif;
    color: var(--color-forest);
    font-size: 1.1rem;
    opacity: 0.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    perspective: 1000px;
}

.testimonial-card {
    background: var(--color-sand);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    padding: 2.5rem 2rem;
    opacity: 0;
    transform: translateY(40px);
}

.testimonial-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-8px) rotateX(3deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(46, 125, 50, 0.08);
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-image-container {
    position: relative;
    margin-right: 15px;
}

.testimonial-image {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-safran);
    transition: transform 0.3s ease;
}

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

.testimonial-name-container {
    flex-grow: 1;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--color-safran);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-coal);
    line-height: 1.9;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    flex-grow: 1;
}

.testimonial-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--color-forest);
    position: relative;
    padding-left: 20px;
    margin: 0;
}

.testimonial-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 15px;
    height: 2px;
    background-color: var(--color-safran);
}

.testimonial-location {
    font-family: 'Lato', sans-serif;
    color: var(--color-coal);
    opacity: 0.7;
    font-size: 0.85rem;
    margin-top: 0.2rem;
    padding-left: 20px;
}

.testimonial-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(46, 125, 50, 0.1);
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--color-coal);
    opacity: 0.6;
}

.testimonial-destination {
    background-color: rgba(2, 136, 209, 0.1);
    color: var(--color-azure);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.testimonial-destination svg {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.cta-container {
    text-align: center;
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-container.animated {
    opacity: 1;
    transform: translateY(0);
}

.adventure-button {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--color-safran), var(--color-forest));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.adventure-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
}

.adventure-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 167, 38, 0.5);
}

.adventure-button:hover::before {
    left: 100%;
}

.adventure-button svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.adventure-button:hover svg {
    transform: translateX(5px);
}

.dots-nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(46, 125, 50, 0.2);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--color-forest);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .adventure-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

 /* Why Choose Us Section */
  .why-us {
    background-color: var(--color-sand);
    padding: 2.5rem 1rem;
    overflow: hidden;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-us-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    background-color: var(--color-safran);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.why-us-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-us-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--color-forest);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.why-us-item:hover::before {
    transform: scaleX(1);
}

.why-us-icon {
    font-size: 2.5rem;
    color: var(--color-forest);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.why-us-item:hover .why-us-icon {
    transform: scale(1.2);
}

.why-us-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.why-us-description {
    color: var(--color-coal);
    line-height: 1;
    font-size: 1rem;
}

/* Contact Section with Background Image */
.contact {
    position: relative;
    padding: 2.5rem 1rem;
    color: white;
    background-image: url('../images/amazone.jpg');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(46, 125, 50, 0.95) 0%, 
        rgba(46, 125, 50, 0.85) 30%, 
        rgba(46, 125, 50, 0.75) 50%, 
        rgba(46, 125, 50, 0.65) 70%, 
        rgba(46, 125, 50, 0.55) 100%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    color: white;
    margin-bottom: 3rem;
}

.contact h2::after {
    background-color: var(--color-safran);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    align-items: center;
}

.contact-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.contact-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info-item i {
    color: var(--color-safran);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 25px;
    text-align: center;
}

.glass-form-container {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

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

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--color-safran);
    box-shadow: 0 0 15px rgba(255, 167, 38, 0.3);
}

#contact-form button {
    font-family: 'Poppins', sans-serif;
    padding: 1rem 2.5rem;
    background-color: var(--color-safran);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

#contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

#contact-form button:hover {
    background-color: #e69621;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#contact-form button:hover::before {
    left: 100%;
}

.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive design */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-content {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-info-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .glass-form-container {
        padding: 1.8rem;
    }
    
    .contact-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .contact {
        background-position: left center;
    }
    
    .contact::before {
        background: rgba(46, 125, 50, 0.85);
    }
    
    .glass-form-container {
        padding: 1.5rem;
    }
    
    #contact-form input,
    #contact-form textarea {
        padding: 0.9rem 1.2rem;
    }
}

/* Icons */
.icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h2 {
        font-size: 1.5rem;
    }
    
    .why-us {
        padding: 4rem 0;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-us-item {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .why-us-title {
        font-size: 1.2rem;
    }
    
    .why-us-description {
        font-size: 0.9rem;
    }
    
}

/* Footer Styles */
.footer {
    background-color: #2121217d;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--color-safran);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-safran);
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}
.footer-section .social-links a {
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-section ul li a::before {
    content: 'â†’';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--color-safran);
    padding-left: 1.2rem;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(2px);
}

.social-links {
    display: flex;
    gap: 0.2rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);    
    color: var(--color-coal);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--color-safran);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Navigation Buttons */
.nav-buttons {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 100;
    align-items: flex-end; /* Aligne les boutons Ã  droite */
}

.nav-btn {
    display: flex;
    align-items: center;
    background-color: var(--color-forest);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: max-width 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
    max-width: 50px; /* Largeur par dÃ©faut */
    width: 100%; /* S'assure que le bouton respecte la largeur du conteneur */
}

.nav-btn:hover {
    max-width: 200px; 
    background-color: var(--color-safran);
}

.nav-btn i {
    font-size: 1rem;
    order: 1; 
}

.nav-btn .section-title {
    white-space: nowrap;
    opacity: 0;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    order: 1; 
    margin-bottom: 0;    
    padding: 4px 0px
}

.nav-btn:hover .section-title {
    opacity: 1;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .nav-buttons {
        right: 1rem;
        bottom: 1rem;
        width: 50px; /* Conserve la largeur fixe */
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-buttons {
        right: 1rem;
        bottom: 1rem;
    }
}

/* Page About */
.hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/amazone.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 5%;
    /* margin-top: 60px; */
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    max-width: 800px;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.image-content {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-content img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.pattern {
    position: absolute;
    opacity: 0.05;
    z-index: -1;
}

.pattern-top-right {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: url('/api/placeholder/200/200') no-repeat;
    transform: rotate(45deg);
}

.pattern-bottom-left {
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: url('/api/placeholder/200/200') no-repeat;
    transform: rotate(-45deg);
}

.cta {
    background-color: var(--color-sand);
    padding: 3rem 0;
    text-align: center;
    color: white;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--color-coal);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--color-safran);
    color: white;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn:hover {
    background-color: var(--color-forest);
    color: var(--color-safran);
    transform: translateY(-3px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-safran);
}

.value-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-forest);
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .image-content {
        order: -1;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 60px;
        background-color: var(--color-safran);
        height: 100vh;
        width: 70%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transform: translateX(100%);
        transition: transform 0.5s ease;
        z-index: 999;
    }

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

    .burger {
        display: block;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

.highlight {
    color: var(--color-safran);
    font-weight: 700;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--color-forest);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.reverse-row {
    flex-direction: row-reverse;
}

.africa-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: url('/api/placeholder/400/400') no-repeat;
    opacity: 0.03;
    z-index: -1;
}

/* Destinations page */

/* Instagram Section */
.instagram-section {
    padding: 2.5rem 1rem;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 2rem;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1/1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.instagram-item:hover {
    transform: translateY(-5px);
}

.instagram-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover .instagram-image {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-link {
    color: white;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.instagram-item:hover .instagram-link {
    transform: scale(1);
}

.instagram-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(193, 53, 132, 0.3);
}

.instagram-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(193, 53, 132, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 2.5rem 1rem;
    background-color: var(--color-sand);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-coal);
    margin: 0;
}

.faq-icon {
    color: var(--color-safran);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.5rem;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 167, 38, 0.05);
}

.faq-answer p {
    margin: 0;
    line-height: 1.8;
    color: var(--color-coal);
    font-family: 'Lato', sans-serif;
}

/* Responsive styles for Instagram and FAQ sections */
@media (max-width: 992px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.2rem;
    }
}