/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 4 mai 2026, 16:10:01
    Author     : Mathias keita <openwebarts.com>
*/
/* ═══════════════════════════════════════════
       DESIGN SYSTEM
    ═══════════════════════════════════════════ */
    
    /* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
    .hero {
      position: relative;
      height: 500px;
      overflow: hidden;
      background: var(--ink);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('/public/images/etudiants.jpg');
      background-size: cover; background-position: center 30%;
      opacity: .35;
      transform: scale(1.04);
      animation: zoomOut 12s ease forwards;
    }
    @keyframes zoomOut { to { transform: scale(1); } }

    /* decorative diagonal strip */
    .hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 100px;
      background: var(--white);
      clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
      z-index: 2;
    }

    .hero-content {
      position: relative; z-index: 3;
      height: 100%;
      max-width: 1260px; margin: auto; padding: 0 2rem;
      display: flex; flex-direction: column; justify-content: center;
      padding-bottom: 80px;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(34,179,193,.18);
      border: 1px solid rgba(34,179,193,.3);
      backdrop-filter: blur(8px);
      color: var(--teal-mid);
      font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
      padding: .35rem 1rem; border-radius: 20px; width: fit-content;
      margin-bottom: 1.4rem;
      animation: fadeUp .6s .1s both;
    }
    .hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
    .hero-title {
      font-family: 'Libre Baskerville', serif;
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      color: #fff;
      line-height: 1.15;
      max-width: 680px;
      margin-bottom: 1.2rem;
      animation: fadeUp .6s .25s both;
    }
    .hero-title em { font-style: italic; color: var(--teal-mid); }
    .hero-sub {
      font-size: 1rem; color: rgba(255,255,255,.72);
      max-width: 520px; line-height: 1.7; margin-bottom: 2.2rem;
      animation: fadeUp .6s .4s both;
    }
    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap;
      animation: fadeUp .6s .55s both;
    }
    .btn-primary {
      background: var(--teal); color: #fff;
      padding: .85rem 2rem; border-radius: 9px;
      font-weight: 600; font-size: .9rem; text-decoration: none;
      box-shadow: 0 6px 20px rgba(34,179,193,.35);
      transition: background .2s, transform .2s, box-shadow .2s;
      display: inline-flex; align-items: center; gap: .5rem;
    }
    .btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(34,179,193,.4); }
    .btn-ghost {
      border: 1.5px solid rgba(255,255,255,.35); color: #fff;
      padding: .85rem 2rem; border-radius: 9px;
      font-weight: 500; font-size: .9rem; text-decoration: none;
      backdrop-filter: blur(4px); background: rgba(255,255,255,.06);
      transition: .2s; display: inline-flex; align-items: center; gap: .5rem;
    }
    .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); }

    /* hero stats badges */
    .hero-stats {
      position: absolute; right: 2rem; bottom: 130px; z-index: 3;
      display: flex; flex-direction: column; gap: .8rem;
      animation: fadeLeft .7s .6s both;
    }
    .hstat {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(14px);
      border-radius: 12px;
      padding: .9rem 1.3rem;
      text-align: right; min-width: 150px;
    }
    .hstat-n {
      font-family: 'Libre Baskerville', serif;
      font-size: 1.7rem; color: var(--teal-mid); font-weight: 700; line-height: 1;
    }
    .hstat-l { font-size: .72rem; color: var(--teal-mid); margin-top: .25rem; }

    @keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
    @keyframes fadeLeft { from { opacity:0; transform:translateX(18px); } to { opacity:1; transform:translateX(0); } }

    /* ═══════════════════════════════════════
       PAGE HERO (demande orientation)
    ═══════════════════════════════════════ */
    .phero{
      position:relative;overflow:hidden;
      background:var(--ink-mid);
      padding:4rem 0 3.5rem;
    }
    .phero::before{
      content:'';position:absolute;inset:0;
      background-image:url('https://images.unsplash.com/photo-1546410531-bb4caa6b424d?w=1400&q=80');
      background-size:cover;background-position:center;
      opacity:.18;
      transform: scale(1.04);
      animation: zoomOut 12s ease forwards;
    }
    /* diagonal bottom cut */
    .phero::after{
      content:'';position:absolute;bottom:0;left:0;right:0;height:60px;
      background:var(--white);
      clip-path:polygon(0 100%,100% 0,100% 100%);
      z-index:1;
    }
    .phero-i{position:relative;z-index:2;max-width:1260px;margin:auto;padding:0 2rem;display:flex;align-items:center;gap:3rem;flex-wrap:wrap}
    .phero-text{flex:1;min-width:260px}
    .phero-chip{display:inline-flex;align-items:center;gap:.45rem;background:rgba(34,179,193,.18);border:1px solid rgba(34,179,193,.3);color:var(--teal-mid);font-size:.7rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:.3rem .9rem;border-radius:20px;margin-bottom:1.1rem;backdrop-filter:blur(6px)}
    .phero-chip span{width:5px;height:5px;border-radius:50%;background:var(--teal)}
    .phero-title{font-family:'Libre Baskerville',serif;font-size:clamp(1.8rem,3.5vw,2.8rem);color:var(--teal);line-height:1.2;margin-bottom:.8rem}
    .phero-title em{font-style:italic;color:var(--teal-mid)}
    .phero-desc{font-size:.92rem;color:rgba(255,255,255,.7);line-height:1.72;max-width:520px}
    .phero-badges{display:flex;flex-direction:column;gap:.7rem;flex-shrink:0}
    .pbadge{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);backdrop-filter:blur(10px);border-radius:12px;padding:.85rem 1.3rem;min-width:145px;text-align:right}
    .pbadge-n{font-family:'Libre Baskerville',serif;font-size:1.5rem;color:var(--teal-mid);font-weight:700;line-height:1}
    .pbadge-l{font-size:.7rem;color:rgba(255,255,255,.55);margin-top:.2rem}
    
    /* ═══════════════════════════════════════════
       UTILS
    ═══════════════════════════════════════════ */
    .wrap { max-width: 1260px; margin: auto; padding: 0 2rem; }
    .sec { padding: 5rem 0; }
    .sec-alt { background: var(--silver); }
    .sec-dark { background: var(--ink-mid); }

    .label {
      display: inline-block;
      font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
      color: var(--teal); background: var(--teal-pale);border:1px solid var(--teal);
      padding: .28rem .9rem; border-radius: 20px; margin-bottom: .9rem;
    }
    .label-inv { background: rgba(34,179,193,.15); color: var(--teal-mid); }
    .h2 { font-family: 'Libre Baskerville', serif; font-size: clamp(1.6rem, 2.5vw, 2.1rem); line-height: 1.25; color: var(--ink); }
    .h2-inv { color: #fff; }
    .h2-sub { margin-top: .6rem; color: var(--slate); font-size: .9rem; line-height: 1.7; max-width: 560px; }
    .h2-sub-inv { color: rgba(255,255,255,.6); }
    .rule { width: 42px; height: 3px; background: var(--teal); border-radius: 2px; margin-top: .9rem; }
    .centered { text-align: center; }
    .centered .h2-sub, .centered .rule { margin-left: auto; margin-right: auto; }

    /* ═══════════════════════════════════════════
       DESTINATIONS GRID
    ═══════════════════════════════════════════ */
    .dest-section { padding: 4.5rem 0 5rem; padding-top: 0px;}
    .dest-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
      gap: 1rem;
      margin-top: 3rem;
    }
    .dest-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: .5rem .5rem .5rem;
      text-align: center;
      text-decoration: none;
      color: var(--ink);
      transition: transform .25s, box-shadow .25s, border-color .25s;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .dest-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--teal);
      transform: scaleX(0);
      transition: transform .25s;
      transform-origin: left;
    }
    .dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }
    .dest-card:hover::before { transform: scaleX(1); }
    .dest-flag {
      font-size: 2.1rem; line-height: 1; margin-bottom: .6rem;
      display: block;
    }
    .dest-name {
      font-size: .8rem; font-weight: 600; color: var(--ink-mid);
      display: block; line-height: 1.3;
    }
    .dest-card:hover .dest-name { color: var(--teal); }

    /* ═══════════════════════════════════════════
       NOS SERVICES CARDS
    ═══════════════════════════════════════════ */
    .srv-section { padding: 5rem 0; }
    .srv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      margin-top: 3rem;
    }
    .srv-card {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--white);
      transition: transform .3s, box-shadow .3s;
      text-decoration: none; color: inherit;
      display: flex; flex-direction: column;
    }
    .srv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .srv-card-img {
      height: 180px;
      overflow: hidden;
      position: relative;
    }
    .srv-card-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .5s ease;
    }
    .srv-card:hover .srv-card-img img { transform: scale(1.06); }
    .srv-card-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(14,30,42,.55) 0%, transparent 60%);
    }
    .srv-card-num {
      position: absolute; top: 1rem; left: 1rem;
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--teal); color: #fff;
      font-size: .75rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 3px 10px rgba(0,0,0,.2);
    }
    .srv-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
    .srv-card-title {
      font-family: 'Libre Baskerville', serif;
      font-size: 1.05rem; color: var(--ink);
      margin-bottom: .6rem; line-height: 1.3;
    }
    .srv-card-desc { font-size: .85rem; color: var(--slate); line-height: 1.65; flex: 1; margin-bottom: 1.2rem; }
    .srv-card-link {
      display: inline-flex; align-items: center; gap: .35rem;
      font-size: .8rem; font-weight: 600; color: var(--teal);
      text-decoration: none;
      border-bottom: 1px solid var(--teal-mid); padding-bottom: 1px;
      width: fit-content; transition: gap .2s;
    }
    .srv-card:hover .srv-card-link { gap: .55rem; }

    /* ═══════════════════════════════════════════
       ABOUT BAND
    ═══════════════════════════════════════════ */
    .about-band { padding: 5rem 0; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
    .about-img-wrap { position: relative;}
    .about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover;  border-radius: 18px; display: block;  box-shadow: var(--shadow-lg); }
    .about-img-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--teal); color: #fff; border-radius: 14px; padding: 1.2rem 1.6rem; box-shadow: 0 8px 24px rgba(34,179,193,.4); }
    .about-img-badge-n { font-family: 'Libre Baskerville', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
    .about-img-badge-l { font-size: .75rem; margin-top: .25rem; opacity: .85; }
    .about-text { }
    .about-text h2 { font-family: 'Libre Baskerville', serif; font-size: 1.85rem; line-height: 1.3; margin-bottom: 1rem; }
    .about-text h2 em { font-style: italic; color: var(--teal); }
    .about-text p { font-size: .9rem; color: var(--slate); line-height: 1.78; margin-bottom: .9rem; }
    .about-pillars { display: flex; flex-direction: column; gap: .55rem; margin: 1.4rem 0; }
    .pillar { display: flex; align-items: center; gap: .75rem; font-size: .88rem; font-weight: 500; color: var(--ink-mid); }
    .pillar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
    .contact-band { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; margin-top: 1.8rem; }
    .contact-chip { border: 1px solid var(--line); border-radius: 10px; padding: .8rem 1rem; text-decoration: none; color: var(--ink); font-size: .8rem; transition: .2s; display: flex; align-items: center; gap: .6rem; }
    .contact-chip:hover { border-color: var(--teal); background: var(--teal-pale); color: var(--teal); }
    .contact-chip-icon { font-size: 1.2rem; }
    .contact-chip small { display: block; font-size: .7rem; color: var(--slate); }

    /* ═══════════════════════════════════════════
       PROCESS STEPS
    ═══════════════════════════════════════════ */
    .process-section { padding: 5rem 0; }
    .steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: 3.5rem; }
    .steps::before {
      content: '';
      position: absolute;
      top: 38px; left: calc(12.5%); right: calc(12.5%);
      height: 1px; background: var(--line);
      z-index: 0;
    }
    .step { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
    .step-circle {
      width: 76px; height: 76px; border-radius: 50%;
      background: var(--white); border: 2px solid var(--line);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.4rem;
      position: relative; transition: .3s;
    }
    .step:hover .step-circle { border-color: var(--teal); background: var(--teal-pale); box-shadow: 0 0 0 6px var(--teal-pale); }
    .step-circle-inner {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--silver); display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; transition: .3s;
    }
    .step:hover .step-circle-inner { background: var(--teal); }
    .step-n {
      position: absolute; top: -6px; right: -2px;
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--teal); color: #fff;
      font-size: .62rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
    }
    .step-title { font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: .4rem; }
    .step-desc { font-size: .8rem; color: var(--slate); line-height: 1.6; }

    /* ═══════════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════════ */
    .testi-section { padding: 5rem 0; }
    .testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; margin-top: 3rem; }
    .testi {
      background: var(--white); border: 1px solid var(--line);
      border-radius: 16px; padding: 2rem;
      position: relative; transition: box-shadow .25s;
    }
    .testi:hover { box-shadow: var(--shadow-md); }
    .testi-quote {
      position: absolute; top: 1.2rem; right: 1.5rem;
      font-family: 'Libre Baskerville', serif;
      font-size: 4.5rem; line-height: 1;
      color: var(--teal-pale); pointer-events: none;
    }
    .testi-stars { color: var(--gold); font-size: .88rem; margin-bottom: .85rem; letter-spacing: .05em; }
    .testi-text { font-size: .88rem; color: var(--slate); line-height: 1.72; margin-bottom: 1.4rem; }
    .testi-footer { display: flex; align-items: center; gap: .85rem; }
    .testi-av {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--teal-deep));
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 700; font-size: .9rem; flex-shrink: 0;
    }
    .testi-name { font-weight: 600; font-size: .88rem; color: var(--ink); }
    .testi-role { font-size: .75rem; color: var(--slate); }

    /* ═══════════════════════════════════════════
       PARTENAIRES
    ═══════════════════════════════════════════ */
    .partners-section { padding: 4rem 0; border-top: 1px solid var(--line); }
    .partners-inner { text-align: center; }
    .partners-label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); margin-bottom: 2rem; }
    .partners-row {
      display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
      gap: 1.5rem 2.5rem;
    }
    .partner-logo {
      height: 50px; width: 100px; object-fit: contain;
      filter: grayscale(1); opacity: .55;
      transition: filter .2s, opacity .2s, transform .2s;
    }
    .partner-logo:hover { filter: grayscale(0); opacity: 1; transform: scale(1.05); }

    /* ═══════════════════════════════════════════
       CTA BAND
    ═══════════════════════════════════════════ */
    .cta-section {
      padding: 5rem 0;
      background: linear-gradient(110deg, var(--ink) 0%, var(--ink-mid) 100%);
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 380px; height: 380px; border-radius: 50%;
      background: rgba(34,179,193,.06);
    }
    .cta-section::after {
      content: '';
      position: absolute; bottom: -80px; left: -40px;
      width: 280px; height: 280px; border-radius: 50%;
      background: rgba(34,179,193,.04);
    }
    .cta-inner {
      position: relative; z-index: 1;
      text-align: center; max-width: 640px; margin: auto;
    }
    .cta-inner h2 { font-family: 'Libre Baskerville', serif; font-size: 2rem; color: #fff; margin-bottom: .9rem; }
    .cta-inner h2 em { font-style: italic; color: var(--teal-mid); }
    .cta-inner p { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.7; margin-bottom: 2rem; }
    .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-teal-inv { background: var(--teal); color: #fff; padding: .85rem 2rem; border-radius: 9px; font-weight: 600; font-size: .9rem; text-decoration: none; box-shadow: 0 6px 20px rgba(34,179,193,.35); transition: .2s; }
    .btn-teal-inv:hover { background: var(--teal-deep); transform: translateY(-2px); }
    .btn-outline-inv { border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85); padding: .85rem 2rem; border-radius: 9px; font-weight: 500; font-size: .9rem; text-decoration: none; transition: .2s; }
    .btn-outline-inv:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

    /* ═══════════════════════════════════════════
       CONTACT FORM
    ═══════════════════════════════════════════ */
    .contact-section { padding: 5rem 0; background: var(--silver); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
    .contact-info h3 { font-family: 'Libre Baskerville', serif; font-size: 1.4rem; color: var(--ink); margin-bottom: .8rem; }
    .contact-info p { font-size: .88rem; color: var(--slate); line-height: 1.72; margin-bottom: 1.6rem; }
    .cinfo-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
    .cinfo-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
    .cinfo-text strong { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); }
    .cinfo-text span { font-size: .8rem; color: var(--slate); }
    .form-card { background: var(--white); border-radius: 16px; padding: 2.2rem; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
    .form-card h3 { font-family: 'Libre Baskerville', serif; font-size: 1.2rem; color: var(--ink); margin-bottom: 1.4rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
    .form-group label { font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--ink-mid); }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--silver); border: 1.5px solid var(--line);
      border-radius: 9px; padding: .72rem 1rem;
      font-size: .88rem; font-family: 'Outfit', sans-serif;
      color: var(--ink); outline: none; transition: .2s;
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px rgba(34,179,193,.1); }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-submit { width: 100%; background: var(--teal); color: #fff; border: none; border-radius: 9px; padding: .9rem; font-size: .92rem; font-weight: 600; font-family: 'Outfit', sans-serif; cursor: pointer; transition: .2s; margin-top: .5rem; }
    .form-submit:hover { background: var(--teal-deep); transform: translateY(-1px); }
    
    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    
    /* ═══════════════════════════════════════════
       RESPONSIVE — TABLET  (≤ 1024px)
    ═══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      /* Nav */
      .gnav-links { display: none; }
      .hamburger { display: flex; }

      /* Top bar : masquer adresse */
      .topbar-left a:last-child { display: none; }

      /* Hero */
      .hero { height: 500px; }
      .hero-stats { display: none; }
      .slide-content { padding: 0 3rem; max-width: 100%; }
      .slide-title { font-size: 2.2rem; }

      /* Services */
      .srv-grid { grid-template-columns: repeat(2, 1fr); }

      /* À propos */
      .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-img-badge { right: 0; bottom: -1rem; }

      /* Process */
      .steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
      .steps::before { display: none; }

      /* Testi */
      .testi-grid { grid-template-columns: 1fr 1fr; }

      /* Contact */
      .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .contact-band { grid-template-columns: 1fr 1fr; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }

    /* ═══════════════════════════════════════════
       RESPONSIVE — MOBILE  (≤ 768px)
    ═══════════════════════════════════════════ */
    @media (max-width: 768px) {
      /* Top bar */
      .topbar-left { gap: .9rem; font-size: .7rem; }
      .topbar-left a:nth-child(3) { display: none; }
      .t-socials { display: none; }

      /* Hero */
      .hero { height: 460px; }
      .slide-content { padding: 0 1.5rem; }
      .slide-title { font-size: 1.75rem; }
      .slide-desc { font-size: .85rem; }
      .hero-arrow { width: 36px; height: 36px; font-size: 1rem; }
      .hero-arrow.prev { left: .8rem; }
      .hero-arrow.next { right: .8rem; }

      /* Sub-nav : scroll horizontal */
      .subnav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .subnav-inner { justify-content: flex-start; padding: 0 1rem; min-width: max-content; }
      .subnav-auth { display: none; }

      /* Service quick tabs */
      .qtabs { overflow-x: auto; -webkit-overflow-scrolling: touch; justify-content: flex-start; }
      .qtab { padding: .9rem 1.2rem; font-size: .78rem; }

      /* Destinations */
      .dest-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: .7rem; }
      .dest-flag { font-size: 1.7rem; }
      .dest-name { font-size: .72rem; }

      /* Services */
      .srv-grid { grid-template-columns: 1fr; }
      .srv-card-img { height: 160px; }

      /* About */
      .about-img-badge { position: static; margin-top: 1rem; display: inline-flex; gap: .6rem; align-items: center; }
      .about-img-badge-n { font-size: 1.4rem; }
      .contact-band { grid-template-columns: 1fr; }

      /* Process */
      .steps { grid-template-columns: 1fr; gap: 1.5rem; }
      .step { display: flex; gap: 1.2rem; text-align: left; align-items: flex-start; }
      .step-circle { margin: 0; flex-shrink: 0; width: 60px; height: 60px; }
      .step-circle-inner { width: 42px; height: 42px; font-size: 1.1rem; }

      /* Testi */
      .testi-grid { grid-template-columns: 1fr; }

      /* Partners */
      .partners-row { gap: 1rem 1.5rem; }
      .partner-logo { height: 50px; width: 100px; }

      /* Contact form */
      .form-row { grid-template-columns: 1fr; }
      .contact-band { grid-template-columns: 1fr; }

      /* Sections padding */
      .sec { padding: 3.5rem 0; }
      .section { padding: 3.5rem 0; }
      .dest-section { padding: 3rem 0 3.5rem; }
      .srv-section { padding: 3.5rem 0; }
      .about-band { padding: 3.5rem 0; }
      .process-section { padding: 3.5rem 0; }
      .testi-section { padding: 3.5rem 0; }
      .cta-section { padding: 3.5rem 0; }
      .contact-section { padding: 3.5rem 0; }
      .partners-section { padding: 3rem 0; }

      /* Section headers */
      .h2 { font-size: 1.6rem; }
      .section-header { margin-bottom: 2.5rem; }

      /* CTA */
      .cta-inner h2 { font-size: 1.6rem; }
      .cta-btns { flex-direction: column; align-items: center; }
      .btn-teal-inv, .btn-outline-inv { width: 100%; text-align: center; justify-content: center; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .fnl-row { flex-direction: column; }
      .fnl-row input { width: 100%; }
      .fnl-row button { width: 100%; }
      .footer-bottom { flex-direction: column; gap: .8rem; text-align: center; }
      .fb-links { justify-content: center; }

      /* Hero actions */
      .hero-actions { flex-direction: column; align-items: flex-start; gap: .8rem; }
      .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
    }

    /* ═══════════════════════════════════════════
       RESPONSIVE — SMALL MOBILE  (≤ 480px)
    ═══════════════════════════════════════════ */
    @media (max-width: 480px) {
      .wrap { padding: 0 1.2rem; }
      .topbar-inner { padding: 0 1.2rem; }
      .gnav-inner { padding: 0 1.2rem; }

      /* Top bar : garder seulement téléphone */
      .topbar-left a:nth-child(2) { display: none; }
      .topbar-right .lang-switch,
      div[style*="display:flex;gap:.3rem"] { display: none !important; }

      /* Hero */
      .hero { height: 420px; }
      .slide-title { font-size: 1.5rem; }
      .slide-desc { display: none; }
      .slide-btn { font-size: .82rem; padding: .7rem 1.4rem; }

      /* Sub-nav labels cachés */
      .subnav-links a { padding: .75rem .7rem; font-size: .72rem; gap: .3rem; }

      /* Destinations */
      .dest-grid { grid-template-columns: repeat(4, 1fr); gap: .55rem; }
      .dest-card { padding: .9rem .4rem .7rem; }
      .dest-flag { font-size: 1.5rem; }
      .dest-name { font-size: .65rem; }

      /* Services cards */
      .srv-card-img { height: 140px; }
      .srv-card-body { padding: 1.1rem; }
      .srv-card-title { font-size: .95rem; }

      /* About */
      .about-text h2 { font-size: 1.5rem; }
      .kpi-grid { grid-template-columns: 1fr 1fr; }

      /* Process */
      .step-circle { width: 50px; height: 50px; }
      .step-circle-inner { width: 36px; height: 36px; font-size: 1rem; }
      .step-title { font-size: .85rem; }
      .step-desc { font-size: .76rem; }

      /* Testi */
      .testi { padding: 1.3rem; }
      .testi-quote { font-size: 3rem; top: .5rem; right: .8rem; }

      /* CTA section */
      .cta-inner h2 { font-size: 1.4rem; }
      .cta-section { padding: 3rem 0; }

      /* Contact form */
      .form-card { padding: 1.4rem; }
      .cinfo-item { gap: .6rem; }

      /* Footer */
      .footer-grid { gap: 1.5rem; }
      .footer-bottom { font-size: .7rem; }
      .fb-links { gap: 1rem; flex-wrap: wrap; justify-content: center; }

      /* Partners */
      .partners-row { gap: .8rem 1rem; }
      .partner-logo { height: 28px; max-width: 70px; }
    }