:root {
    --green-dark: #1f3d2b;
    --gold: #c6a75e;
    --soft-bg: #f7f5f1;
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--soft-bg);
    color:#333;
    overflow-x:hidden;
}

.container {
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.header {
    position:fixed;
    width:100%;
    padding:20px 0;
    transition:0.4s ease;
    z-index:1000;
}

.header.scrolled {
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.nav {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo {
    font-family:'Playfair Display', serif;
    font-size:22px;
    color:white;
}

.logo span {
    color:var(--gold);
}
.header {
    position: fixed;
    width: 100%;
    padding: 20px 0;
    transition: 0.4s ease;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.header.scrolled {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.header.scrolled .logo {
    color:var(--green-dark);
}
.nav-menu {
    margin-left: 120px; /* ajuste 60px / 100px selon ton goï¿½t */
}
.nav-menu ul {
    display:flex;
    gap:30px;
    list-style:none;
}

.nav-menu a {
    text-decoration:none;
    color:white;
    font-weight:500;
}

.header.scrolled .nav-menu a {
    color:#333;
}

/* HERO */

.hero {
    height:100vh;
   /* background:url('images/hero.webp') center/cover no-repeat;*/
    display:flex;
    align-items:center;
    position:relative;
}
.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}
.overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
}

.hero-content {
    position:relative;
    color:white;
}

.hero h1 {
    font-family:'Playfair Display', serif;
    font-size:40px;
    line-height:1.2;
    margin-bottom:30px;
}
.hero h1 span{
        color:var(--gold);
}
.hero span {
    color:white;
}

/* BUTTONS */

.btn {
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s ease;
}

.btn-primary {
    background:var(--gold);
    color:white;
}

.btn-primary:hover {
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* ABOUT */

.about {
    padding:120px 0;
    text-align:center;
}

.section-title-test {
    font-family:'Playfair Display', serif;
    font-size:36px;
    margin-bottom:60px;
    text-align:center;
    color:white;
}

.section-title {
    font-family:'Playfair Display', serif;
    font-size:36px;
    margin-bottom:60px;
    text-align:center;
}

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

.about-card img {
    width:220px;
    height:220px;
    border-radius:50%;
    object-fit:cover;
    transition:0.5s ease;
    border: 5px solid #fff;
}

.about-card:hover img {
    transform:scale(1.08);
}

/* TOURS */

.tours {
    background:white;
    padding:120px 0;
    text-align: center;
}

.tour-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.tour-card {
    position:relative;
    overflow:hidden;
    border-radius:15px;
    height: 280px; /* hauteur fixe pour toutes les cartes */
}

.tour-card img {
    width:100%;
    height: 100%;
    object-fit: cover;   /* remplit la carte sans dï¿½formation */
    transition:0.6s ease;
}

.tour-card:hover img {
    transform:scale(1.1);
}

.tour-overlay {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
    display:flex;
    align-items:flex-end;
    padding:20px;
}

.tour-overlay h3 {
    color:white;
}

/* SCROLL ANIMATION */

.reveal{
    opacity:0;
    transform:translateY(30px);
    transition:opacity 0.6s ease, transform 0.6s cubic-bezier(.16,1,.3,1);
}

.reveal.active {
    opacity:1;
    transform:translateY(0);
}

/* MOBILE */

@media(max-width:768px){

.hero h1 {
    font-size:32px;
}

.nav-menu {
    display:none;
}

}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: white;

    background: linear-gradient(180deg, #25d366 0%, #1ebe5b 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.60);
    
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.whatsapp-btnslider {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: white;

    background: linear-gradient(180deg, #25d366 0%, #1ebe5b 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.60);
    
    transition: all 0.3s ease;
}

.whatsapp-btnslider:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}
.wa-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.brush-label-img {
    display: inline-block;
    padding: 25px 50px;
    font-weight: 600;
    color: white;
    font-size: 15px;
    text-align: center;
    background: url('https://jaomalaza-travel.com/wp-content/uploads/2026/03/brush-green.png') center/contain no-repeat;
    background-size: 100% 100%;
}
.brush-label-img-marron {
    display: inline-block;
    padding: 40px 30px;
    margin:-60px 0px;
    font-weight: 500;
    color: white;
    font-size: 15px;
    text-align: center;

    background: url('https://jaomalaza-travel.com/wp-content/uploads/2026/03/brush-marron.png') center/contain no-repeat;
    background-size: 100% 100%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.header.scrolled .burger span {
    background: #333;
}

/* MOBILE */
@media(max-width: 992px){

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: white;
        padding-top: 100px;
        transition: 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        padding-left: 40px;
    }

    .nav-menu a {
        color: #333;
        font-size: 18px;
    }

    .nav-menu.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media(max-width:992px){
    .whatsapp-btn{
        display:none;
    }
}
/* Image logo */
.logo img {
    height: 50px;   /* respecte la hauteur du header */
    width: auto;
    object-fit: contain;
}

/* Texte */
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: white;
    line-height: 1;
}

.logo-text span {
    color: var(--gold);
}

/* Quand header scroll */
.header.scrolled .logo-text {
    color: var(--green-dark);
}

/* Responsive mobile */
@media(max-width:768px){
    .logo img {
        height: 32px;
    }

    .logo-text {
        font-size: 18px;
    }
}

/* DESTINATIONS */

.destinations {
    padding:120px 0;
    background:var(--soft-bg);
    text-align:center;
}

.destination-content {
    max-width:800px;
    margin:auto;
    font-size:17px;
    line-height:1.8;
    color:#555;
}
/* ===== DESTINATION PREMIUM ===== */

.destination-premium{
    padding:160px 0;
    background:#ffffff;
}

.destination-layout{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:80px;
    align-items:center;
}

.destination-tag{
    display:inline-block;
    padding:6px 14px;
    font-size:12px;
    letter-spacing:2px;
    background:var(--green-dark);
    color:white;
    margin-bottom:25px;
}

.destination-left h2{
    font-family:'Playfair Display', serif;
    font-size:35px;
    line-height:1.2;
    margin-bottom:25px;
}

.destination-left h2 span{
    color:var(--gold);
}

.destination-left p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:40px;
}

/* IMAGE CARD */

.destination-image-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 30px 70px rgba(0,0,0,0.15);
}

.destination-image-card img{
    width:100%;
    height:520px;
    object-fit:cover;
    transition:transform 0.8s ease;
}

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

.destination-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:40px;
    background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.destination-overlay h3{
    color:white;
    font-size:22px;
    font-weight:500;
}

/* RESPONSIVE */

@media(max-width:992px){
    .destination-layout{
        grid-template-columns:1fr;
        gap:60px;
    }

    .destination-left h2{
        font-size:36px;
    }

    .destination-image-card img{
        height:400px;
    }
}
/* TESTIMONIALS */

.testimonial-slider{
    position:relative;
    max-width:750px;
    margin:auto;
    overflow:hidden;
}

.testimonial{
    position:absolute;
    width:100%;
    opacity:0;
    transition:opacity 0.8s ease;
    padding:40px;
    border-radius:20px;

    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.2);
    border:1px solid rgba(255,255,255,0.3);
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.testimonial.active{
    opacity:1;
    position:relative;
}

.prev, .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:var(--green-dark);
    color:white;
    border:none;
    padding:12px 16px;
    cursor:pointer;
    border-radius:50%;
    z-index:10;
}

.prev{ left:-60px; }
.next{ right:-60px; }

/* TESTIMONIAL BACKGROUND IMAGE */

.testimonials{
    position:relative;
    padding:140px 0;
    background:url('https://jaomalaza-travel.com/wp-content/uploads/2026/03/testimonial.jpg') center/cover no-repeat;
}

.testimonials::before{
    content:"";
    position:absolute;
    inset:0;
    backdrop-filter: blur(12px);
    background:rgba(0,0,0,0.45);
}

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

/* Card style */

.testimonial{
    position:absolute;
    width:100%;
    opacity:0;
    transition:opacity 0.8s ease;
    padding:40px;
    border-radius:20px;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border:1px solid rgba(255,255,255,0.3);
    box-shadow:0 20px 50px rgba(0,0,0,0.3);

    color:white;
}

.testimonial.active{
    opacity:1;
    position:relative;
}

.testimonial-content{
    display:flex;
    align-items:center;
    gap:25px;
}

/* Photo client */

.testimonial-img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid var(--gold);
    flex-shrink: 0;
}

.testimonial h4{
    margin-top:15px;
    font-weight:600;
    color:var(--gold);
}
/* CTA */

.cta {
    background:linear-gradient(135deg,var(--green-dark),#2f5a40);
    color:white;
    padding:100px 0;
    text-align:center;
}

.cta h2 {
    font-family:'Playfair Display', serif;
    font-size:36px;
    margin-bottom:20px;
}

.cta p {
    margin-bottom:30px;
    font-size:18px;
}

/* FOOTER */

.footer {
    background: radial-gradient(circle at 50% -20%, #3a3a3a, #111111);
    color: #e0e0e0;
    padding: 80px 10% 40px;
    letter-spacing: 0.5px;
    position: relative;
}

/* Petit dï¿½tail chic : une ligne de sï¿½paration subtile */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
/*
.footer {
    background:#111;
    color:#ccc;
    padding:80px 0 30px;
}
*/
.footer-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer h3, .footer h4 {
    color:white;
    margin-bottom:15px;
}

.footer ul {
    list-style:none;
}

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

.footer a {
    color:#ccc;
    text-decoration:none;
}

.footer a:hover {
    color:var(--gold);
}

.footer-bottom {
    text-align:center;
    margin-top:50px;
    border-top:1px solid #333;
    padding-top:20px;
    font-size:14px;
}

/* DESTINATION FEATURES */

.destination-features{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

@media(max-width:992px){
    .destination-features{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .destination-features{
        grid-template-columns:1fr;
    }
}

.feature-card{
    padding:30px;
    border-radius:20px;
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.3);
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:0.4s ease;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.feature-card h3{
    margin-bottom:15px;
    font-size:18px;
    color:var(--green-dark);
}

.feature-card{
    opacity:0;
    transform:translateY(40px);
    transition:0.6s ease;
}

.feature-card.show{
    opacity:1;
    transform:translateY(0);
}


.nav{
    display:flex;
    align-items:center;
    gap:20px;
}

@media(max-width:992px){

    .language-switcher{
        margin-left:auto;
    }
}

/* LANGUAGE SWITCHER PREMIUM */

.language-switcher{
    position:relative;
    cursor:pointer;
}

.lang-option{
    display:flex;
    align-items:center;
    gap:6px;
    padding:6px 12px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.4);
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(8px);
}

.lang-option img{
    width:18px;
    height:12px;
    object-fit:cover;
}

.lang-option span{
    font-size:13px;
    color:white;
    font-weight:500;
}

.header .lang-option span{
    color:#333;
}

.header .lang-option{
    border:1px solid rgba(0,0,0,0.2);
}

/* Dropdown */

.lang-dropdown{
    position:absolute;
    top:110%;
    right:0;
    background:white;
    border-radius:12px;
    padding:10px 0;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    display:none;
    min-width:100px;
}

.lang-dropdown a{
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 15px;
    text-decoration:none;
    color:#333;
    font-size:13px;
}

.lang-dropdown a img{
    width:18px;
    height:12px;
}

.lang-dropdown a:hover{
    background:var(--soft-bg);
}

.language-switcher:hover .lang-dropdown{
    display:block;
}

/* ===== CONTACT PREMIUM ===== */

.contact-premium{
    position:relative;
    padding:160px 0;
    background:url('https://jaomalaza-travel.com/wp-content/uploads/2026/03/contact-bg.webp') center/cover no-repeat;
    color:white;
}

.contact-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
    backdrop-filter:blur(6px);
}

.contact-layout{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:80px;
    align-items:center;
}

/* LEFT SIDE */

.contact-tag{
    display:inline-block;
    padding:6px 14px;
    font-size:12px;
    letter-spacing:2px;
    background:var(--gold);
    color:#111;
    margin-bottom:25px;
}

.contact-info h2{
    font-family:'Playfair Display', serif;
    font-size:44px;
    line-height:1.2;
    margin-bottom:25px;
}

.contact-info h2 span{
    color:var(--gold);
}

.contact-info p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:25px;
    color:#ddd;
}

.contact-details p{
    margin-bottom:10px;
    font-size:15px;
}

/* FORM CARD */

.contact-form-card{
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(20px);
    padding:50px;
    border-radius:25px;
    border:1px solid rgba(255,255,255,0.2);
    box-shadow:0 25px 60px rgba(0,0,0,0.4);
}

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

.form-group input,
.form-group textarea{
    width:100%;
    padding:15px;
    border-radius:10px;
    border:none;
    outline:none;
    font-family:'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus{
    box-shadow:0 0 0 2px var(--gold);
}

/* Responsive */

@media(max-width:992px){
    .contact-layout{
        grid-template-columns:1fr;
        gap:60px;
    }

    .contact-info h2{
        font-size:34px;
    }

    .contact-form-card{
        padding:35px;
    }
}

.liste {
    list-style-type: none; /* Supprime les puces par dï¿½faut */
    padding: 0;            /* Optionnel : retire le dï¿½calage ï¿½ gauche */
    margin: 0;             /* Optionnel : retire les marges par dï¿½faut */
    margin-bottom: 15px;
    margin-top: -30px;
}

/* ===== ABOUT HERO ===== */

.about-hero{
    position:relative;
    height:70vh;
    background:url('images/fond-test.webp') center/cover no-repeat;
    display:flex;
    align-items:center;
    color:white;
}

.about-hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.about-hero-content{
    position:relative;
    z-index:2;
}

.about-hero span{
    letter-spacing:3px;
    font-size:13px;
    color:var(--gold);
}

.about-hero h1{
    font-family:'Playfair Display', serif;
    font-size:48px;
    margin-top:20px;
}

/* ===== STORY ===== */

.about-story{
    padding:140px 0;
    background:white;
}

.about-layout{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-text h2{
    font-family:'Playfair Display', serif;
    font-size:26px;
    margin-bottom:25px;
}

.about-text p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:20px;
    color:#555;
}

.about-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* ===== VALUES ===== */

.about-values{
    padding:140px 0;
    background:var(--soft-bg);
    text-align:center;
}

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

.value-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.05);
    transition:0.4s ease;
}

.value-card:hover{
    transform:translateY(-10px);
}

.value-card h3{
    margin-bottom:15px;
}

@media(max-width:992px){

    .about-layout{
        grid-template-columns:1fr;
    }

    .values-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){
    .values-grid{
        grid-template-columns:1fr;
    }

    .about-hero h1{
        font-size:32px;
    }
}

/* ===== TEAM ===== */

.about-team{
    padding:140px 0;
    background:white;
    text-align:center;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.team-card{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,0.1);
    transition:0.5s ease;
    background:white;
}

.team-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:0.8s ease;
}

.team-card:hover img{
    transform:scale(1.05);
}

.team-info{
    padding:30px;
}

.team-info h3{
    font-family:'Playfair Display', serif;
    margin-bottom:8px;
}

.team-info span{
    color:var(--gold);
    font-size:14px;
    display:block;
    margin-bottom:15px;
}

@media(max-width:992px){
    .team-grid{
        grid-template-columns:1fr;
    }
}

/* ===== STATS ===== */

.about-stats{
    padding:120px 0;
    background:var(--green-dark);
    color:white;
    text-align:center;
}

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

.stat-box h3{
    font-size:48px;
    font-family:'Playfair Display', serif;
    color:var(--gold);
}

.stat-box p{
    margin-top:10px;
    font-size:16px;
}

@media(max-width:992px){
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* ===== TIMELINE ===== */

.about-timeline{
    padding:140px 0;
    background:white;
    text-align:center;
}

.timeline{
    position:relative;
    margin-top:60px;
}

.timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:2px;
    height:100%;
    background:var(--gold);
}

.timeline-item{
    position:relative;
    width:50%;
    padding:40px;
}

.timeline-item:nth-child(odd){
    left:0;
    text-align:right;
}

.timeline-item:nth-child(even){
    left:50%;
    text-align:left;
}

.timeline-item span{
    font-weight:700;
    color:var(--gold);
    display:block;
    margin-bottom:10px;
}

@media(max-width:992px){
    .timeline::before{
        left:10px;
    }

    .timeline-item{
        width:100%;
        left:0 !important;
        text-align:left;
        padding-left:40px;
    }
}

/* ===== VALUES LUXURY ===== */

.about-values-luxury{
    padding:160px 0;
    background:#0f1f18;
    color:white;
}

.values-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 80px;
}

.values-tag{
    display:inline-block;
    font-size:12px;
    letter-spacing:3px;
    padding:6px 14px;
    background:var(--gold);
    color:#111;
    margin-bottom:20px;
}

.values-header h2{
    font-family:'Playfair Display', serif;
    font-size:42px;
    margin-bottom:20px;
}

.values-header p{
    color:#bbb;
    line-height:1.8;
}

/* GRID */

.values-lux-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

/* CARD */

.value-lux-card{
    position:relative;
    padding:50px 40px;
    border:1px solid rgba(255,255,255,0.1);
    background:rgba(255,255,255,0.02);
    transition:0.4s ease;
    overflow:hidden;
}

.value-lux-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:0%;
    background:var(--gold);
    transition:0.5s ease;
}

.value-lux-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.05);
}

.value-lux-card:hover::before{
    height:100%;
}

.value-number{
    font-size:42px;
    font-family:'Playfair Display', serif;
    color:rgba(255,255,255,0.15);
    margin-bottom:20px;
}

.value-lux-card h3{
    font-size:20px;
    margin-bottom:15px;
}

.value-lux-card p{
    color:#ccc;
    line-height:1.7;
}

/* RESPONSIVE */

@media(max-width:992px){
    .values-lux-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .values-lux-grid{
        grid-template-columns:1fr;
    }
}
/* ===== TEAM FULL WIDTH ===== */

.team-full-image{
    position:relative;
    height:70vh;
    background:url('https://jaomalaza-travel.com/wp-content/uploads/2026/03/guide3.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

/* Overlay luxe */

.team-full-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    backdrop-filter:blur(3px);
}

/* Content */

.team-full-content{
    position:relative;
    z-index:2;
    max-width:800px;
    padding:0 20px;
}

.team-full-content h2{
    font-family:'Playfair Display', serif;
    font-size:48px;
    margin-bottom:20px;
}

.team-full-content h2 span{
    color:var(--gold);
}

.team-full-content p{
    font-size:18px;
    line-height:1.8;
    color:#ddd;
}

/* Responsive */

@media(max-width:992px){
    .team-full-image{
        height:55vh;
    }

    .team-full-content h2{
        font-size:32px;
    }

    .team-full-content p{
        font-size:16px;
    }
}
.lux-list{
    list-style:none;
    padding:0;
}

.lux-list li{
    margin-bottom:15px;
    font-size:16px;
    display:flex;
    align-items:center;
    gap:10px;
}

.lux-list i{
    color:var(--gold);
    font-size:14px;
}

/* ===== HERO GLOBAL ===== */

.tour-hero,
.destination-hero,
.contact-hero{
    height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    position:relative;
    background-size:cover;
    background-position:center;
}

.tour-hero{
    background:url('images/hero-tour.webp') center/cover no-repeat;
}

.nosybe-bg{
    background:url('images/tour-hero1.webp') center/cover no-repeat;
}

.contact-hero{
    background:url('images/tour-hero1.webp') center/cover no-repeat;
    height:60vh;
}

.tour-hero::after,
.destination-hero::after,
.contact-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.tour-hero-content,
.destination-hero h1,
.contact-hero h1{
    position:relative;
    z-index:2;
}

.tour-hero h1,
.destination-hero h1,
.contact-hero h1{
    font-family:'Playfair Display', serif;
    font-size:56px;
}

.tour-hero p{
    margin-top:20px;
    font-size:20px;
    color:#ddd;
}

.tour-intro{
    padding:120px 0;
    text-align:center;
}

.tour-intro h2{
    font-family:'Playfair Display', serif;
    font-size:40px;
    margin-bottom:30px;
}

/* ===== TIMELINE ===== */
/*
.timeline{
    position:relative;
    margin-top:80px;
    padding-left:40px;
}

.timeline::before{
    content:"";
    position:absolute;
    left:10px;
    top:0;
    width:2px;
    height:100%;
    background:var(--gold);
}

.timeline-item{
    margin-bottom:60px;
    position:relative;
}

.timeline-item::before{
    content:"";
    position:absolute;
    left:-2px;
    top:5px;
    width:14px;
    height:14px;
    background:var(--gold);
    border-radius:50%;
}

.timeline-item span{
    font-size:14px;
    color:var(--gold);
}
*/
.timeline-item h3{
    font-size:22px;
    margin:10px 0;
}

.tour-includes{
    display:flex;
    gap:60px;
    padding:120px 0;
}

.includes-box{
    flex:1;
    background:rgba(0,0,0,0.03);
    padding:40px;
    border-radius:12px;
}

.includes-box h3{
    font-family:'Playfair Display', serif;
    margin-bottom:20px;
}

.includes-box ul{
    list-style:none;
    padding:0;
}

.includes-box li{
    margin-bottom:15px;
    display:flex;
    gap:10px;
}

.includes-box i{
    color:var(--gold);
}

/* ===== DESTINATION GRID ===== */

.destinations-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    padding:120px 0;
}

.destination-card{
    position:relative;
    overflow:hidden;
    border-radius:16px;
}

.destination-card img{
    width:100%;
    height:450px;
    object-fit:cover;
    transition:0.6s ease;
}

.destination-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
    opacity:0;
    transition:0.5s ease;
}

.destination-card:hover img{
    transform:scale(1.1);
}

.destination-card:hover .destination-overlay{
    opacity:1;
}

.destination-overlay h3{
    font-family:'Playfair Display', serif;
    font-size:32px;
    margin-bottom:20px;
}

.destination-overlay a{
    padding:10px 25px;
    border:1px solid var(--gold);
    color:var(--gold);
    text-decoration:none;
    transition:0.3s;
}

.destination-overlay a:hover{
    background:var(--gold);
    color:black;
}

.destination-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    padding:100px 0;
}

.destination-gallery img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:12px;
}


/* ===== CONTACT ===== */

.contact-section{
    padding:120px 0;
    background:#0f1f18; /* fond sombre sï¿½curisï¿½ */
    display:flex;
    gap:60px;
    color:white;
}

.contact-form{
    flex:1;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(15px);
    padding:50px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.1);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:none;
    border-radius:8px;
    background:rgba(255,255,255,0.08);
    color:white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#ccc;
}

.contact-info{
    flex:1;
}

.contact-info h3{
    font-family:'Playfair Display', serif;
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:15px;
    color:#ddd;
}

/* RESPONSIVE */

@media(max-width:992px){
    .contact-section{
        flex-direction:column;
    }
}

.btn-gold{
    padding:12px 30px;
    background:var(--gold);
    color:black;
    text-decoration:none;
    border:none;
    cursor:pointer;
    transition:0.3s;
    margin-top:10px;
}

.btn-gold:hover{
    background:#b89250;
}

.tour-cta{
    background:linear-gradient(135deg,var(--green-dark),#2f5a40);
    text-align:center;
    padding:120px 20px;
    color:white;
}

.tour-cta h2{
    font-family:'Playfair Display', serif;
    font-size:36px;
    margin-bottom:30px;
}
.tour-cta p{
    margin-bottom:30px;
    color:#ccc;
}
@media(max-width:992px){

    .tour-includes,
    .contact-section{
        flex-direction:column;
    }

    .destinations-grid{
        grid-template-columns:1fr;
    }

    .destination-gallery{
        grid-template-columns:1fr 1fr;
    }

    .tour-hero h1,
    .destination-hero h1{
        font-size:40px;
    }
}

@media(max-width:600px){

    .destination-gallery{
        grid-template-columns:1fr;
    }

    .tour-hero,
    .destination-hero{
        height:70vh;
    }

    .tour-hero h1,
    .destination-hero h1{
        font-size:30px;
    }
}

.dest-hero{
    height:90vh;
    background:url('images/tour-hero1.webp') center/cover no-repeat;
        background-attachment:fixed;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    position:relative;
}

.dest-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.dest-hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
}

.dest-hero h1{
    font-family:'Playfair Display', serif;
    font-size:56px;
}

.dest-hero p{
    margin-top:20px;
    font-size:20px;
    color:#ddd;
}

.dest-intro{
    padding:120px 0;
    text-align:center;
    max-width:900px;
    font-size:18px;
    line-height:1.9;
}

.dest-section{
    display:flex;
    align-items:center;
    gap:80px;
    padding:120px 0;
}

.dest-section img{
    width:100%;
    border-radius:16px;
    object-fit:cover;
}

.dest-text h2{
    font-family:'Playfair Display', serif;
    font-size:36px;
    margin-bottom:20px;
}

.dest-cta{
    padding:140px 20px;
    background:linear-gradient(135deg,#0f1f18,#132c22);
    text-align:center;
    color:white;
}

.dest-cta h2{
    font-family:'Playfair Display', serif;
    font-size:40px;
    margin-bottom:20px;
}

.dest-cta p{
    margin-bottom:30px;
    color:#ccc;
}

@media(max-width:992px){

    .dest-section{
        flex-direction:column;
    }

    .dest-list-grid{
        grid-template-columns:1fr 1fr;
    }

    .dest-hero h1{
        font-size:40px;
    }
}

@media(max-width:600px){

    .dest-list-grid{
        grid-template-columns:1fr;
        
    }

    .dest-hero{
        height:70vh;
    }
}


/* ===== REGIONS GALLERY PREMIUM ===== */

.dest-regions{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    padding:140px 0;
}

.region-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    transform:translateY(40px);
    transition:all 0.6s ease;
}

.region-card img{
    width:100%;
    height:450px;
    object-fit:cover;
    transition:transform 1s ease;
}

/* overlay luxe */

.region-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:40px;
    color:white;
    transition:all 0.5s ease;
}

.region-overlay h3{
    font-family:'Playfair Display', serif;
    font-size:36px;
    transform:translateY(20px);
    transition:0.5s ease;
}

.region-overlay span{
    opacity:0;
    transform:translateY(10px);
    transition:0.5s ease;
    color:var(--gold);
    font-size:14px;
}

/* hover animation */

.region-card:hover img{
    transform:scale(1.1);
}

.region-card:hover .region-overlay span{
    opacity:1;
    transform:translateY(0);
}

.region-card:hover .region-overlay h3{
    transform:translateY(0);
}

/* link clickable full card */
.region-card a{
    position:absolute;
    inset:0;
    z-index:5;
}

/* Responsive */

@media(max-width:992px){
    .dest-regions{
        grid-template-columns:1fr;
    }

    .region-card img{
        height:350px;
    }
}

/* ===== PARKS LUXURY SECTION ===== */

.parks-section{
    padding:160px 20px;
    background:linear-gradient(135deg,#0f1f18,#132c22);
    color:white;
    text-align:center;
}

/* HEADER */

.parks-header{
    max-width:800px;
    margin:0 auto 80px;
}

.section-tag{
    display:inline-block;
    font-size:12px;
    letter-spacing:3px;
    padding:6px 14px;
    background:var(--gold);
    color:#111;
    margin-bottom:20px;
}

.parks-header h2{
    font-family:'Playfair Display', serif;
    font-size:42px;
    margin-bottom:20px;
}

.parks-header p{
    color:#bbb;
    line-height:1.8;
}

/* GRID */

.parks-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    max-width:1100px;
    margin:auto;
}

/* CARD */

.park-card{
    padding:40px 30px;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
    background:rgba(255,255,255,0.03);
    transition:all 0.4s ease;
    backdrop-filter:blur(6px);
}

.park-card i{
    font-size:28px;
    margin-bottom:20px;
    color:var(--gold);
}

.park-card h3{
    font-size:18px;
    font-weight:500;
}

.park-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.08);
    border-color:rgba(255,255,255,0.2);
}

/* RESPONSIVE */

@media(max-width:992px){
    .parks-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .parks-grid{
        grid-template-columns:1fr;
    }

    .parks-header h2{
        font-size:30px;
    }
}

.tour-hero{
    height:95vh;
    /*background:url('images/tour-hero.webp') center/cover no-repeat;*/
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    color:white;
}

.tour-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.tour-hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
}

.hero-tag{
    display:inline-block;
    padding:6px 14px;
    background:var(--gold);
    color:black;
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:20px;
}

.tour-hero h1{
    font-family:'Playfair Display', serif;
    font-size:54px;
    margin-bottom:20px;
}

.tour-hero p{
    font-size:18px;
    color:#ddd;
    margin-bottom:30px;
}

.tour-offer{
    padding:160px 20px;
    background:#0f1f18;
    color:white;
    text-align:center;
}

.offer-intro{
    max-width:800px;
    margin:auto;
    margin-bottom:80px;
}

.offer-intro h2{
    font-family:'Playfair Display', serif;
    font-size:42px;
    margin-bottom:20px;
}

.offer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.offer-card{
    padding:50px 30px;
    background:rgba(255,255,255,0.05);
    border-radius:20px;
    transition:0.4s;
}

.offer-card i{
    font-size:30px;
    margin-bottom:20px;
    color:var(--gold);
}

.offer-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.08);
}

.offer-cta{
    margin-top:80px;
}

.btn-outline{
    border:1px solid var(--gold);
    padding:12px 30px;
    color:var(--gold);
    text-decoration:none;
    transition:0.3s;
}

.btn-outline:hover{
    background:var(--gold);
    color:black;
}

.tour-includes{
    padding:140px 0;
    gap:80px;
}

.includes-box{
    background:white;
    padding:50px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.05);
}

.includes-box h3{
    font-family:'Playfair Display', serif;
    margin-bottom:30px;
}

@media(max-width:1024px){

    .tour-offer{
        padding:100px 20px;
    }

    .offer-intro h2{
        font-size:32px;
    }

}

@media(max-width:768px){

    .offer-grid{
        grid-template-columns:1fr;
    }

    .offer-card{
        padding:40px 20px;
    }

}
/* ===== CIRCUITS HORIZONTAL SCROLL ===== */

.circuits-section{
    padding:160px 0;
    background:#f8f8f8;
}

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

.circuits-header h2{
    font-family:'Playfair Display', serif;
    font-size:42px;
}

.circuits-wrapper{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding:0 20px;
    scroll-padding-left:20px;
    -webkit-overflow-scrolling:touch;
}

.circuits-wrapper::-webkit-scrollbar{
    display:none;
}

.circuit-card{
    flex:0 0 85%;
    max-width:320px;
    height:420px;
    scroll-snap-align:start;
    border-radius:25px;
    overflow:hidden;
    transition:transform 0.4s ease;
}



.circuit-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    display:flex;
    align-items:flex-end;
    padding:40px;
}

.circuit-overlay h3{
    font-family:'Playfair Display', serif;
    font-size:32px;
    color:white;
    transition:0.4s ease;
}

/* Hover premium */

.circuit-card:hover img{
    transform:scale(1.1);
}

.circuit-card:hover{
    transform:translateY(-10px);
}

/* Mobile */

@media(max-width:768px){

    .circuit-card{
        transform:none !important;
    }

    .circuit-card:hover{
        transform:none !important;
    }

}

/* ===== CONTAINER ===== */

.carousel-container{
    position:relative;
    display:flex;
    align-items:center;
}

/* ===== WRAPPER ===== */

.circuits-wrapper{
    display:flex;
    gap:60px;
    overflow:hidden;
    padding:0 10%;
    perspective:1200px;
}

/* ===== CARD ===== */

.circuit-card{
    flex:0 0 420px;
    height:520px;
    position:relative;
    border-radius:25px;
    overflow:hidden;
    transform-style:preserve-3d;
    transition:transform 0.6s ease;
    cursor:pointer;
}

.circuit-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.8s ease;
}

/* 3D effect */
.circuit-card:hover{
    transform:rotateY(8deg) rotateX(3deg) scale(1.05);
}

.circuit-card:hover img{
    transform:scale(1.1);
}

/* ===== OVERLAY ===== */

.circuit-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    display:flex;
    align-items:flex-end;
    padding:40px;
}

.circuit-overlay h3{
    font-family:'Playfair Display', serif;
    font-size:32px;
    color:white;
}

/* ===== BADGE ===== */

.badge{
    position:absolute;
    top:20px;
    left:20px;
    background:var(--gold);
    color:black;
    padding:6px 14px;
    font-size:12px;
    letter-spacing:1px;
    border-radius:50px;
    z-index:2;
}

/* ===== BUTTONS ===== */

.carousel-btn{
    position:absolute;
    background:white;
    border:none;
    width:50px;
    height:50px;
    border-radius:50%;
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
    cursor:pointer;
    transition:0.3s;
    z-index:10;
}

.carousel-btn.left{
    left:40px;
}

.carousel-btn.right{
    right:40px;
}

.carousel-btn:hover{
    transform:scale(1.1);
}

/* MOBILE */

@media(max-width:768px){
    .circuits-wrapper{
        overflow-x:auto;
        scroll-snap-type:x mandatory;
    }

    .circuit-card{
        flex:0 0 280px;
        height:380px;
    }

    .carousel-btn{
        display:none;
    }
}

@media(max-width:1024px){

    .circuit-card{
        flex:0 0 300px;
        height:420px;
    }

}

@media(max-width:768px){

    .circuit-card{
        flex:0 0 260px;
        height:360px;
    }

    .carousel-btn{
        display:none;
    }

}

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

.dark-section{
    background:#0f1f18;
    color:white;
}

.section-description{
    margin-top:40px;
    opacity:0.8;
}
.nosy-hero{
    height:95vh;
    background:url('images/hero.webp') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    position:relative;
}

.nosy-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

/* GRID */

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

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-top:60px;
}

.card{
    padding:30px;
    background:white;
    color:#0f1f18;
    border-radius:20px;
    box-shadow:0 15px 30px rgba(0,0,0,0.05);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.dark-section .card{
    background:rgba(255,255,255,0.1);
    color:white;
}

.feature-box ul{
    list-style:none;
    padding:0;
    text-align:left;
}

.feature-box li{
    margin-bottom:15px;
}

.image-box img{
    width:100%;
    border-radius:20px;
}

/* CTA */

.cta-section{
    padding:140px 20px;
    background:linear-gradient(135deg,#132c22,#0f1f18);
    text-align:center;
    color:white;
}

/* RESPONSIVE */

@media(max-width:768px){
    .grid-3{
        grid-template-columns:1fr;
    }
    .grid-2{
        grid-template-columns:1fr;
    }
}

.language-switcher img {
    width: 20px; /* Ou la taille de votre choix */
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

/* Pour que le dropdown s'affiche au survol (si ce n'est pas déjà fait) */
.language-switcher:hover .lang-dropdown {
    display: block;
}

.gallery-section {
    padding: 30px 0;
}
.gallerySwiper {
    width: 100%;
    height: 250px; /* Hauteur réduite pour un effet bandeau */
    padding: 10px 0 40px 0;
}
.section-header { text-align: center; margin-bottom: 40px; }

.swiper { width: 100%; padding-bottom: 50px; }

.swiper-slide {
    width: 300px; /* Largeur d'une photo */
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-link:hover img { transform: scale(1.1); }

.zoom-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.gallery-link:hover .zoom-icon { opacity: 1; }

/* Customisation des boutons Swiper */
.swiper-button-next, .swiper-button-prev { color: #0056b3; }
.swiper-pagination-bullet-active { background: #0056b3; }


.gallerySwiper .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
    height: 100%; /* Les images prendront les 250px de haut */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallerySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Important pour ne pas déformer vos photos */
    transition: transform 0.3s ease;
}

/* Petit effet au survol */
.gallerySwiper .swiper-slide:hover img {
    transform: scale(1.05);
}

/* Ajustement des flèches pour qu'elles ne cachent pas les images */
.swiper-button-next, .swiper-button-prev {
    transform: scale(0.7);
    color: #0056b3;
}

/* Style de la boîte qui contient l'image agrandie */
.lum-lightbox {
    z-index: 9999; /* Pour être sûr qu'il passe devant tout */
}

/* Style du bouton de fermeture (le X) */
.lum-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    opacity: 1;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lum-close-button:after {
    content: "×"; /* C'est le symbole de multiplication qui fait un beau X */
    color: white;
    font-size: 35px;
    line-height: 40px;
}

/* SECTION */

.exclusive-section{
    padding:140px 20px;
    background:#f8f8f8;
}

.exclusive-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/* IMAGE */

.exclusive-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* TEXTE */

.exclusive-content h2{
    font-family:'Playfair Display', serif;
    font-size:40px;
    margin-bottom:20px;
}

.intro{
    font-size:18px;
    margin-bottom:30px;
    color:#555;
}

.description{
    margin-top:30px;
    margin-bottom:30px;
}

/* LIST */

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

.exclusive-list li{
    margin-bottom:15px;
    font-size:17px;
}

.exclusive-list i{
    color:#d4af37;
    margin-right:10px;
}

/* BUTTON */

.btn-gold{
    display:inline-block;
    padding:14px 30px;
    background:#d4af37;
    color:black;
    text-decoration:none;
    border-radius:40px;
    transition:0.3s;
}

.btn-gold:hover{
    transform:scale(1.05);
}

/* TAG */

.section-tag{
    display:inline-block;
    margin-bottom:15px;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#000000;
}

/* RESPONSIVE */

@media(max-width:900px){

    .exclusive-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .exclusive-image img{
        height:350px;
    }

    .exclusive-content{
        text-align:center;
    }

    .exclusive-list{
        text-align:left;
        max-width:400px;
        margin:auto;
    }

}

/* HERO */

.circuit-hero{
position:relative;
height:70vh;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}

.hero-bg{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.45);
}

.hero-content{
position:relative;
z-index:2;
color:white;
text-align:center;
}

.hero-content h1{
font-family:'Playfair Display', serif;
font-size:52px;
}

/* LAYOUT */

.circuit-container{
padding:100px 20px;
}

.circuit-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:60px;
}

/* CONTENT */

.circuit-content{
font-size:18px;
line-height:1.7;
}

.circuit-content h2{
font-family:'Playfair Display', serif;
margin-top:40px;
}

/* SIDEBAR */

.circuit-sidebar{
position:sticky;
top:120px;
height:fit-content;
}

.circuit-box{
background:#f8f8f8;
padding:30px;
border-radius:12px;
margin-bottom:30px;
}

.circuit-box h3{
margin-bottom:20px;
font-family:'Playfair Display', serif;
}

.circuit-box ul{
list-style:none;
padding:0;
}

.circuit-box li{
margin-bottom:12px;
}

.circuit-box i{
color:#d4af37;
margin-right:8px;
}

/* CTA */

.circuit-cta{
background:#0f1f18;
color:white;
padding:30px;
border-radius:12px;
text-align:center;
}

.btn-whatsapp{
display:inline-block;
margin-top:15px;
background:#25D366;
color:white;
padding:12px 22px;
border-radius:30px;
text-decoration:none;
}

/* RESPONSIVE */

@media(max-width:900px){

.circuit-grid{
grid-template-columns:1fr;
}

.circuit-sidebar{
position:relative;
top:auto;
}

.hero-content h1{
font-size:36px;
}
}

.circuit-gallery{
padding:120px 20px;
background:#f8f8f8;
text-align:center;
}

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

.gallery-item{
display:block;
overflow:hidden;
border-radius:12px;
position:relative;
}

.gallery-item img{
width:100%;
height:260px;
object-fit:cover;
transition:0.4s;
}

.gallery-item:hover img{
transform:scale(1.08);
}

/* mobile */

@media(max-width:768px){

.gallery-item img{
height:200px;
}

}


.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center; /* Centre les ronds dans la grille */
}

.card-circle {
    width: 180px;         /* Largeur égale à la hauteur */
    height: 180px;
    border-radius: 50%;   /* Crée le cercle */
    border: 3px solid #ffffff; /* Bordure blanche */
    
    /* Gestion de l'image de fond */
    background-size: cover;
    background-position: center;
    
    /* Centrage du contenu */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    /* Style du texte */
    color: white;
    text-align: center;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8); /* Pour la lisibilité */
    padding: 10px;
    transition: transform 0.3s ease;
}

/* Petit effet au survol */
.card-circle:hover {
    transform: scale(1.05);
}

.card-circle i {
    margin-bottom: 8px;
    font-size: 1.2rem;
}


.container-404 {
    padding: 100px 20px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404 h1 {
    font-size: 3rem;
    color: #2c3e50; /* À adapter à vos couleurs */
    margin-bottom: 20px;
}

.error-404 p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #7f8c8d;
}

/* Style du bouton */
.btn-back-home {
    display: inline-block;
    background-color: #27ae60; /* Le vert de votre bloc WhatsApp par exemple */
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.btn-back-home:hover {
    background-color: #219150;
    color: #fff;
}

/* Style de la barre de recherche */
.search-form-404 {
    max-width: 500px;
    margin: 0 auto 30px auto;
}


.search-results-container {
    padding: 60px 0;
    min-height: 70vh;
}

.page-header {
    margin-bottom: 40px;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 20px;
}

.page-title span {
    color: #27ae60; /* Utilisation de votre vert */
    font-style: italic;
}

/* Style de la liste de résultats */
.search-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.search-item-thumb img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.search-item-body h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.search-item-body h2 a {
    text-decoration: none;
    color: #333;
}

.search-item-body h2 a:hover {
    color: #27ae60;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #27ae60;
    text-decoration: none;
}

/* Pagination */
.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}