/* =========================
   Couleurs logo : #e71d73 (rose) → #f39200 (orange)
   ========================= */
   :root {
    --blue: #1E90FF;
    --orange: #FF7F50;
    --green: #2ECC71;
    --dark: #2C3E50;
    --muted: #6b7280;
    --white: #ffffff;
    --card: #fefefe;
    --radius: 14px;
    --max-width: 1200px;
    --shadow: 0 8px 30px rgba(44,62,80,0.06);
    --transition: all 0.28s cubic-bezier(.2,.9,.2,1);
    /* Couleurs issues du logo */
    --logo-pink:   #e71d73;
    --logo-orange: #f39200;
    --logo-grad: linear-gradient(90deg, var(--logo-pink), var(--logo-orange));
  }
  
  /* =========================
     Reset + base
     ========================= */
  * { box-sizing: border-box }
  html, body { height: 100%; scroll-behavior: smooth }
  body {
    margin: 0;
    font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    background: linear-gradient(180deg, #fbfdff, #f3f8fb);
  }
  a { color: inherit; text-decoration: none }
  img { max-width: 100%; display: block; border-radius: 8px }
  .container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px }
  
  /* =========================
     Header / Nav
     ========================= */
  header.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(20,30,50,0.08);
    transition: var(--transition);
  }
  header.site-header.header-scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 24px rgba(20,30,50,0.12);
  }
  .nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 12px; }
  .brand { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
  .brand-logo-link { display: flex; align-items: center; }
  .brand-logo {
    height: 52px;
    width: auto;
    display: block;
    transition: var(--transition);
  }
  .brand-logo:hover { opacity: 0.85; transform: scale(1.03); }
  
  nav.desktop-nav ul { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; align-items: center }
  nav.desktop-nav a {
    font-weight: 600; color: var(--dark); padding: 10px 16px; border-radius: 10px;
    position: relative; transition: var(--transition); font-size: 0.95rem;
  }
  nav.desktop-nav a:hover {
    background: linear-gradient(90deg, rgba(30,144,255,0.08), rgba(46,204,113,0.06));
    transform: translateY(-2px);
  }
  nav.desktop-nav a.active {
    background: linear-gradient(90deg, rgba(30,144,255,0.12), rgba(46,204,113,0.08));
  }
  
  .nav-right { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
  .call {
    font-weight: 700; color: var(--dark); padding: 10px 14px; border-radius: 10px;
    background: linear-gradient(90deg, rgba(30,144,255,0.1), rgba(46,204,113,0.08));
    font-size: 0.9rem; white-space: nowrap; transition: var(--transition);
  }
  .call:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(30,144,255,0.15); }
  
  .nav-toggle {
    display: none; align-items: center; justify-content: center;
    background: transparent; border: 0; padding: 10px; border-radius: 10px;
    color: var(--dark); cursor: pointer; transition: var(--transition);
  }
  .nav-toggle:hover { background: rgba(30,144,255,0.08); }
  
  .mobile-nav {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: -4px 0 30px rgba(0,0,0,0.15); z-index: 200;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto;
  }
  .mobile-nav.open { right: 0; }
  .mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 199;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
  }
  .mobile-overlay.active { opacity: 1; visibility: visible; }
  .mobile-nav-header {
    padding: 24px 20px;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    color: white; display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .mobile-nav-title { font-family: "Poppins", sans-serif; font-size: 1.3rem; font-weight: 700; margin: 0; }
  .close-mobile {
    background: rgba(255,255,255,0.2); border: none; color: white;
    width: 36px; height: 36px; border-radius: 8px; font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
  }
  .close-mobile:hover { background: rgba(255,255,255,0.3); transform: rotate(90deg); }
  .mobile-nav nav ul { list-style: none; padding: 20px 0; margin: 0; }
  .mobile-nav nav ul li { margin: 0; }
  .mobile-nav nav ul li a {
    display: flex; align-items: center; gap: 12px; padding: 16px 24px;
    color: var(--dark); font-weight: 600; font-size: 1rem;
    transition: var(--transition); border-left: 4px solid transparent;
  }
  .mobile-nav nav ul li a:hover {
    background: linear-gradient(90deg, rgba(30,144,255,0.08), transparent);
    border-left-color: var(--blue); padding-left: 28px;
  }
  .mobile-nav nav ul li a.active {
    background: linear-gradient(90deg, rgba(30,144,255,0.12), transparent);
    border-left-color: var(--orange); color: var(--blue);
  }
  .mobile-nav nav ul li a i { font-size: 1.1rem; width: 24px; text-align: center; }
  .mobile-contact-info {
    padding: 20px 24px; margin: 20px;
    background: linear-gradient(135deg, rgba(30,144,255,0.08), rgba(46,204,113,0.06));
    border-radius: 12px; border-left: 4px solid var(--blue);
  }
  .mobile-contact-info h4 { margin: 0 0 12px; font-family: "Poppins", sans-serif; font-size: 1rem; color: var(--dark); }
  .mobile-contact-info p { margin: 8px 0; font-size: 0.9rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
  .mobile-contact-info a { color: var(--blue); font-weight: 600; }
  
  /* =========================
     HERO — Slideshow
     ========================= */
  .hero {
    min-height: 88vh;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); text-align: center;
    padding: 100px 20px 60px;
    position: relative; overflow: hidden;
  }
  
  /* Les slides en arrière-plan */
  .hero-slides { position: absolute; inset: 0; z-index: 0; }
  .hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .hero-slide.active { opacity: 1; }
  
  /* Overlay sombre sur les slides */
  .hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.42));
    pointer-events: none;
  }
  
  /* Indicateurs (dots) */
  .hero-dots {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 3;
  }
  .hero-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer; transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.6);
  }
  .hero-dot.active {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.3);
  }
  
  .hero-inner { max-width: 980px; position: relative; z-index: 2; }
  .hero h1 {
    font-family: "Poppins", sans-serif; margin: 0;
    font-size: clamp(1.8rem, 5vw, 3.8rem); line-height: 1.15;
    text-shadow: 0 6px 30px rgba(0,0,0,0.35); letter-spacing: -0.6px;
  }
  .hero p { margin: 18px auto 26px; font-size: clamp(0.95rem, 2.5vw, 1.05rem); opacity: 0.95; max-width: 700px; line-height: 1.6; }
  .cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center; margin: 0 auto; max-width: 100%; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px;
    border-radius: 999px; border: 0; cursor: pointer; font-weight: 700;
    background: var(--logo-grad); color: var(--white);
    box-shadow: 0 10px 30px rgba(231,29,115,0.25); transition: var(--transition);
    font-size: 0.95rem; white-space: nowrap;
  }
  .btn.secondary {
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3); color: var(--white); font-weight: 700;
    box-shadow: none;
  }
  .btn:hover { transform: translateY(-4px); box-shadow: 0 14px 35px rgba(231,29,115,0.35); }
  .btn.secondary:hover { background: rgba(255,255,255,0.25); }
  .cta small {
    display: block; color: rgba(255,255,255,0.92); font-weight: 700; margin-top: 6px;
    font-size: clamp(0.8rem, 2vw, 0.86rem); width: 100%; text-align: center;
  }
  
  /* =========================
     Section Titles
     ========================= */
  .section { padding: 72px 0 }
  .section h2 { font-family: "Poppins"; font-size: clamp(1.5rem, 4vw, 1.8rem); margin: 0 0 12px; color: var(--dark); }
  .section p.lead { margin: 0 0 24px; color: var(--muted); font-size: clamp(0.95rem, 2.5vw, 1.05rem); line-height: 1.6; }
  
  /* =========================
     Destination Filters
     ========================= */
  .filters { display: flex; gap: 10px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap }
  .filter-btn {
    padding: 10px 20px; border-radius: 999px; border: 2px solid rgba(30,144,255,0.2);
    background: white; cursor: pointer; font-weight: 700; transition: var(--transition); font-size: 0.9rem;
  }
  .filter-btn:hover { border-color: var(--blue); transform: translateY(-2px); }
  .filter-btn.active {
    background: var(--logo-grad); color: var(--white);
    border-color: transparent; box-shadow: 0 6px 20px rgba(231,29,115,0.3); transform: translateY(-2px);
  }
  
  /* =========================
     Destinations grid + card
     ========================= */
  .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: stretch; }
  .card {
    background: var(--card); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); display: flex; flex-direction: column;
    transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s ease;
    opacity: 0; transform: translateY(28px);
  }
  .card.visible { opacity: 1; transform: translateY(0); }
  .card:hover { transform: translateY(-10px); box-shadow: 0 24px 50px rgba(44,62,80,0.15) }
  .card .thumb { height: 200px; overflow: hidden; position: relative }
  .card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
  .card:hover .thumb img { transform: scale(1.08) }
  .card .card-body { padding: 20px; flex: 1; display: flex; flex-direction: column }
  .card h3 { margin: 0 0 8px; font-family: "Poppins"; font-size: 1.15rem; color: var(--dark) }
  .card p { margin: 0; color: var(--muted); font-size: 0.95rem; flex: 1; line-height: 1.6; }
  .card .tag { display: inline-block; padding: 6px 12px; background: linear-gradient(90deg, var(--green), var(--blue)); color: white; border-radius: 8px; font-weight: 700; font-size: .82rem; }
  .card .price { font-weight: 800; color: var(--orange); font-size: 1.05rem; }
  .card-footer { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
  
  /* =========================
     Testimonials
     ========================= */
  .testimonials { background: linear-gradient(to bottom, #fbfdff, #f0fbf7); padding: 80px 0 }
  .testimonial-slider { max-width: 900px; margin: 0 auto; position: relative }
  .testimonial { background: var(--card); padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; display: none; }
  .testimonial.active { display: block; animation: fadeIn .45s ease }
  .testimonial-text { font-style: italic; margin-bottom: 18px; color: var(--muted); font-size: clamp(0.95rem, 2.5vw, 1.05rem); line-height: 1.7; }
  .testimonial-author { font-weight: 800; color: var(--dark); font-size: 1.1rem; }
  .testimonial-role { font-size: .95rem; color: var(--muted) }
  .testimonial-nav { display: flex; justify-content: center; gap: 10px; margin-top: 20px }
  .testimonial-dot { width: 12px; height: 12px; border-radius: 50%; background: #e6e6e6; cursor: pointer; transition: var(--transition); }
  .testimonial-dot:hover { background: #ccc; transform: scale(1.15); }
  .testimonial-dot.active { background: linear-gradient(90deg, var(--orange), var(--green)); transform: scale(1.3); }
  
  /* =========================
     FAQ
     ========================= */
  .faq-list { max-width: 900px; margin: 0 auto }
  .faq-item { margin-bottom: 15px; border-radius: var(--radius); overflow: hidden; border: 2px solid rgba(30,144,255,0.1); background: var(--card); transition: var(--transition); }
  .faq-item:hover { border-color: rgba(30,144,255,0.3); box-shadow: 0 4px 12px rgba(30,144,255,0.08); }
  .faq-question { padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; gap: 12px; font-size: clamp(0.9rem, 2.5vw, 1rem); }
  .faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .28s ease, padding .28s ease; color: var(--muted); line-height: 1.6; font-size: clamp(0.9rem, 2vw, 0.95rem); }
  .faq-item.active .faq-answer { padding: 16px 20px 20px; max-height: 300px }
  .faq-icon { transition: transform .28s ease; color: var(--blue); flex-shrink: 0; }
  .faq-item.active .faq-icon { transform: rotate(180deg) }
  
  /* =========================
     Contact
     ========================= */
  .contact-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .contact-card { background: linear-gradient(180deg, #ffffff, #f6fbff); padding: 24px; border-radius: 12px; box-shadow: var(--shadow); }
  .contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px }
  .contact-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--dark); font-weight: 600; flex-wrap: wrap; font-size: clamp(0.9rem, 2vw, 1rem); }
  .muted { color: var(--muted) }
  form .field { display: grid; gap: 8px; margin-bottom: 14px }
  input[type="text"], input[type="email"], textarea {
    width: 100%; padding: 14px; border-radius: 10px; border: 2px solid #e6eef7;
    font-size: clamp(0.9rem, 2vw, 0.95rem); background: white; resize: vertical;
    transition: var(--transition); font-family: inherit;
  }
  input:focus, textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 8px 20px rgba(30,144,255,0.12); }
  .btn-primary {
    background: var(--logo-grad); color: var(--white);
    padding: 14px 20px; border-radius: 10px; border: 0; font-weight: 800; cursor: pointer;
    transition: var(--transition); font-size: clamp(0.9rem, 2vw, 0.95rem);
    display: inline-flex; align-items: center; gap: 8px; width: 100%; justify-content: center;
    box-shadow: 0 6px 20px rgba(231,29,115,0.25);
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(231,29,115,0.4); }
  .error-message { color: #e53e3e; font-size: .85rem; margin-top: 6px; display: none }
  .field.error input, .field.error textarea { border-color: #e53e3e }
  .success-message { background: #f0fff4; border: 2px solid #9ae6b4; color: #22543d; padding: 14px; border-radius: 8px; margin-top: 15px; display: none; }
  
  /* =========================
     Socials + footer + back-to-top
     ========================= */
  .socials { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; }
  .socials a { display: inline-flex; padding: 12px; border-radius: 10px; background: white; box-shadow: 0 6px 20px rgba(2,36,64,0.06); transition: var(--transition); font-size: 1.2rem; }
  .socials a:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(2,36,64,0.15) }
  footer.site-footer { background: var(--dark); color: var(--white); padding: 32px 0; text-align: center }
  footer small { opacity: 0.9; font-size: clamp(0.8rem, 2vw, 0.9rem); }
  .back-to-top {
    position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; border-radius: 50%;
    background: var(--logo-grad); color: white;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    box-shadow: 0 10px 30px rgba(231,29,115,0.3); opacity: 0; visibility: hidden;
    transition: var(--transition); z-index: 99;
  }
  .back-to-top.visible { opacity: 1; visibility: visible; }
  .back-to-top:hover { transform: translateY(-4px) scale(1.05); }
  
  /* =========================
     Loader + Animations
     ========================= */
  .loader { display: inline-block; width: 18px; height: 18px; border: 3px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: var(--white); animation: spin 1s ease-in-out infinite; margin-right: 8px }
  @keyframes spin { to { transform: rotate(360deg) } }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(12px) } to { opacity: 1; transform: none } }
  
  /* =========================
     Icons
     ========================= */
  .icon-wrapper { display: inline-flex; align-items: center; justify-content: center; }
  .section-icon { font-size: clamp(1.4rem, 4vw, 1.8rem); margin-right: 10px; color: var(--orange); vertical-align: middle; }
  
  /* =========================
     ÉQUIPE
     ========================= */
  .team-thumb { position: relative; overflow: hidden; }
  .team-thumb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(30,144,255,0.78));
    opacity: 0; transition: opacity 0.32s ease;
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 16px; gap: 10px;
  }
  .card:hover .team-thumb-overlay { opacity: 1; }
  .thumb-social {
    width: 36px; height: 36px; background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem; color: var(--blue);
    transform: translateY(12px); transition: transform 0.28s ease;
  }
  .card:hover .thumb-social { transform: translateY(0); }
  .thumb-social:nth-child(2) { transition-delay: 0.05s; }
  .team-role { font-size: 0.82rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 10px; }
  .team-divider { width: 36px; height: 3px; background: linear-gradient(90deg, var(--blue), var(--orange)); border-radius: 999px; margin: 0 auto; }
  .join-card {
    border-radius: var(--radius);
    border: 2px dashed rgba(30,144,255,0.28);
    background: linear-gradient(135deg, rgba(30,144,255,0.04), rgba(46,204,113,0.04));
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center; padding: 36px 20px;
    min-height: 340px; cursor: pointer; transition: var(--transition);
    opacity: 0; transform: translateY(28px);
  }
  .join-card.visible { opacity: 1; transform: translateY(0); }
  .join-card:hover { border-color: var(--blue); background: linear-gradient(135deg, rgba(30,144,255,0.09), rgba(46,204,113,0.07)); transform: translateY(-8px); box-shadow: 0 20px 44px rgba(44,62,80,0.12); }
  .join-icon { width: 68px; height: 68px; background: var(--logo-grad); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: white; margin: 0 auto 18px; box-shadow: 0 8px 22px rgba(231,29,115,0.3); }
  .join-card h3 { font-family: "Poppins", sans-serif; font-size: 1.05rem; margin: 0 0 8px; color: var(--dark); }
  .join-card .muted { font-size: 0.88rem; margin: 0 0 18px; display: block; line-height: 1.5; }
  
  /* =========================
     GALERIE — Filtres
     FIX 1 : .gfilter-btn dédié, pas de conflit avec .filter-btn destinations
     ========================= */
  .gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
  .gfilter-btn {
    padding: 10px 20px; border-radius: 999px; border: 2px solid rgba(30,144,255,0.2);
    background: white; cursor: pointer; font-weight: 700; transition: var(--transition);
    font-size: 0.9rem; font-family: inherit;
  }
  .gfilter-btn:hover { border-color: var(--blue); transform: translateY(-2px); }
  .gfilter-btn.active {
    background: var(--logo-grad); color: var(--white);
    border-color: transparent; box-shadow: 0 6px 20px rgba(231,29,115,0.3); transform: translateY(-2px);
  }
  
  /* GALERIE — Masonry */
  .masonry { column-count: 3; column-gap: 20px; }
  .masonry-item {
    break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius); overflow: hidden;
    position: relative; cursor: pointer; box-shadow: var(--shadow);
    transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s ease;
    opacity: 0; transform: translateY(20px);
  }
  .masonry-item.visible { opacity: 1; transform: translateY(0); }
  .masonry-item:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(44,62,80,0.18); }
  .masonry-item img { width: 100%; display: block; border-radius: 0; object-fit: cover; transition: transform 0.55s ease; }
  .masonry-item:hover img { transform: scale(1.06); }
  .masonry-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.70));
    opacity: 0; transition: opacity 0.3s ease;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 18px 14px;
  }
  .masonry-item:hover .masonry-overlay { opacity: 1; }
  .masonry-overlay h4 { font-family: "Poppins", sans-serif; color: white; font-size: 0.98rem; margin: 0 0 3px; transform: translateY(8px); transition: transform 0.3s ease; }
  .masonry-overlay span { color: rgba(255,255,255,0.72); font-size: 0.8rem; font-weight: 600; transform: translateY(8px); transition: transform 0.35s ease; display: block; }
  .masonry-item:hover .masonry-overlay h4,
  .masonry-item:hover .masonry-overlay span { transform: translateY(0); }
  .zoom-btn { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; background: rgba(255,255,255,0.18); backdrop-filter: blur(6px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.85rem; opacity: 0; transform: scale(0.7); transition: opacity 0.28s, transform 0.28s; }
  .masonry-item:hover .zoom-btn { opacity: 1; transform: scale(1); }
  .masonry-item.hidden { display: none; }
  
  /* Lightbox */
  .lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 999; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
  .lightbox.active { opacity: 1; visibility: visible; }
  .lb-inner { position: relative; max-width: 900px; width: 100%; animation: lbIn 0.32s cubic-bezier(.2,.9,.2,1); }
  @keyframes lbIn { from { transform: scale(0.88) translateY(18px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
  .lb-img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius); display: block; }
  .lb-caption { text-align: center; margin-top: 14px; }
  .lb-caption h4 { font-family: "Poppins", sans-serif; color: white; margin: 0 0 4px; font-size: 1.1rem; }
  .lb-caption span { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
  .lb-close { position: absolute; top: -15px; right: -15px; width: 40px; height: 40px; background: linear-gradient(135deg, var(--orange), var(--blue)); border: none; border-radius: 50%; color: white; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); box-shadow: 0 4px 14px rgba(0,0,0,0.35); }
  .lb-close:hover { transform: rotate(90deg) scale(1.1); }
  .lb-prev, .lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.11); backdrop-filter: blur(6px); border: none; color: white; font-size: 1.2rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); z-index: 1000; }
  .lb-prev { left: 14px; }
  .lb-next { right: 14px; }
  .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.1); }
  .lb-counter { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); background: rgba(255,255,255,0.11); backdrop-filter: blur(6px); color: white; padding: 5px 16px; border-radius: 999px; font-size: 0.83rem; font-weight: 600; }
  
  /* =========================
     PARTENAIRES — logos compagnies
     ========================= */
  .partners-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #f8fbff, #f0f4fa);
    border-top: 1px solid rgba(231,29,115,0.08);
    border-bottom: 1px solid rgba(231,29,115,0.08);
  }
  .partners-title {
    font-family: "Poppins", sans-serif;
    font-size: 1rem; font-weight: 700;
    color: var(--dark); margin: 0 0 28px;
    letter-spacing: 0.3px;
  }
  .partners-title i { color: var(--logo-pink); margin-right: 8px; }
  .partners-logos {
    display: flex; flex-wrap: wrap; justify-content: center;
    align-items: center; gap: 16px;
  }
  .partner-item {
    background: white; border-radius: 12px;
    padding: 14px 22px;
    box-shadow: 0 4px 16px rgba(44,62,80,0.07);
    display: flex; align-items: center; justify-content: center;
    min-width: 110px; height: 64px;
    transition: var(--transition);
    border: 1px solid rgba(231,29,115,0.07);
  }
  .partner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(231,29,115,0.15);
    border-color: rgba(231,29,115,0.2);
  }
  .partner-item img {
    height: 44px; width: auto; max-width: 110px;
    object-fit: contain; border-radius: 0;
    transition: transform 0.28s ease;
  }
  .partner-item:hover img { transform: scale(1.05); }
  .partner-fallback {
    font-weight: 700; font-size: 0.8rem; color: var(--muted);
    display: none; align-items: center; justify-content: center;
    text-align: center; line-height: 1.3;
  }
  
  /* =========================
     Responsive
     ========================= */
  @media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { min-height: 100vh; padding: 80px 16px 50px; }
    .hero h1 { font-size: 1.8rem; line-height: 1.2; }
    .hero p { font-size: 0.95rem; }
    .cta { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 0.9rem; }
    .section { padding: 50px 0; }
    .grid { grid-template-columns: 1fr; gap: 20px; }
    .card .thumb { height: 180px; }
    .testimonial { padding: 20px; }
    .brand-text { display: none; }
    .logo { width: 40px; height: 40px; font-size: 14px; }
    .nav { padding: 12px 0; }
    .back-to-top { bottom: 16px; right: 16px; width: 45px; height: 45px; }
    .masonry { column-count: 2; column-gap: 12px; }
    .join-card { min-height: 240px; padding: 24px 16px; }
  }
  @media (min-width: 481px) and (max-width: 768px) {
    .brand-text { display: block; }
    .grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .cta { flex-direction: row; flex-wrap: wrap; }
    .btn { flex: 1 1 calc(50% - 6px); min-width: 180px; }
  }
  @media (min-width: 769px) and (max-width: 1024px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .masonry { column-count: 3; }
  }
  @media (min-width: 1025px) {
    .contact-grid { grid-template-columns: 1fr 380px; }
    .btn-primary { width: auto; }
    .masonry { column-count: 4; }
  }
  @media (max-width: 1024px) {
    nav.desktop-nav { display: none }
    .nav-toggle { display: inline-flex }
    .call { display: none; }
  }
  @media (min-width: 1025px) {
    .mobile-nav, .mobile-overlay { display: none !important }
    .nav-toggle { display: none !important }
  }