/* ════════════════════════════════════════════════════════════
   Inficare Bxl N-O — Styles globaux
   Site one-page bilingue (FR/NL)
   ════════════════════════════════════════════════════════════ */

    #map { height: 420px; border-radius: 18px; z-index: 0; }
    .leaflet-popup-content-wrapper { border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,.15); }
    .leaflet-popup-content { font-family: 'Segoe UI', sans-serif; font-size: .9rem; font-weight: 600; color: #2C3A35; }
    .leaflet-control-zoom a { font-size: 1rem; }
    :root {
      --teal:        #4AAFA0;
      --teal-dark:   #2D8B82;
      --teal-light:  #7ECFC5;
      --orange:      #E8734A;
      --orange-light:#F4A07D;
      --beige:       #F0EAE0;
      --white:       #FFFFFF;
      --text-dark:   #2C3A35;
      --text-mid:    #4A5C56;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--beige); color: var(--text-dark); line-height: 1.6; }
    a { text-decoration: none; color: inherit; }

    /* ──────────── NAV ──────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: var(--white);
      box-shadow: 0 2px 16px rgba(0,0,0,.08);
      height: 64px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 1.5rem;
      gap: 1rem;
    }
    .nav-logo {
      font-size: 1.2rem; font-weight: 800; color: var(--teal-dark);
      display: flex; align-items: center; gap: .5rem; flex-shrink: 0;
    }
    .nav-logo span { color: var(--orange); }
    .nav-links {
      display: flex; gap: 1.4rem; list-style: none; flex-wrap: nowrap;
    }
    .nav-links a {
      font-size: .85rem; font-weight: 500; color: var(--text-mid);
      white-space: nowrap; transition: color .2s;
    }
    .nav-links a:hover { color: var(--teal); }
    .nav-right { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
    .nav-cta {
      background: var(--orange); color: var(--white);
      padding: .45rem 1.1rem; border-radius: 24px;
      font-weight: 700; font-size: .85rem;
      white-space: nowrap; transition: background .2s;
    }
    .nav-cta:hover { background: var(--teal-dark); }

    /* Language toggle */
    .lang-toggle {
      display: flex; gap: 2px;
      background: var(--beige); border-radius: 8px; padding: 3px;
    }
    .lang-btn {
      padding: .3rem .65rem; border-radius: 6px;
      font-size: .8rem; font-weight: 700;
      cursor: pointer; border: none; background: transparent;
      color: var(--text-mid); transition: all .2s;
    }
    .lang-btn.active { background: var(--teal); color: var(--white); }

    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: .4rem; border: none; background: none;
    }
    .hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--text-dark); border-radius: 2px;
      transition: all .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile menu */
    .mobile-menu {
      display: none; position: fixed; top: 64px; left: 0; right: 0;
      background: var(--white); z-index: 199;
      padding: 1.5rem; flex-direction: column; gap: 1rem;
      box-shadow: 0 8px 24px rgba(0,0,0,.1);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 1rem; font-weight: 600; color: var(--text-mid); padding: .5rem 0; border-bottom: 1px solid var(--beige); }
    .mobile-menu a:last-child { border-bottom: none; }

    /* ──────────── HERO ──────────── */
    #hero {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 55%, var(--teal-light) 100%);
      display: flex; align-items: center; justify-content: center;
      padding: 100px 1.5rem 4rem;
      position: relative; overflow: hidden;
    }
    .hero-blob {
      position: absolute; border-radius: 50%;
      opacity: .08; background: var(--white);
    }
    .hero-content {
      max-width: 1100px; width: 100%;
      display: flex; align-items: center; gap: 4rem;
      position: relative; z-index: 1;
    }
    .hero-text { flex: 1; color: var(--white); }
    .hero-badge {
      display: inline-block;
      background: rgba(255,255,255,.15);
      font-size: .78rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase;
      padding: .35rem .9rem; border-radius: 20px;
      margin-bottom: 1.2rem;
    }
    .hero-text h1 {
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 800; line-height: 1.1; margin-bottom: .6rem;
    }
    .hero-text h1 span { color: var(--orange-light); }
    .tagline { font-size: 1.05rem; line-height: 1.7; opacity: .9; margin-bottom: 2rem; max-width: 500px; }
    .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: var(--orange); color: var(--white);
      padding: .8rem 1.8rem; border-radius: 30px; font-weight: 700; font-size: 1rem;
      box-shadow: 0 4px 16px rgba(232,115,74,.4);
      transition: transform .2s, box-shadow .2s; display: inline-block;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,115,74,.5); }
    .btn-outline {
      background: rgba(255,255,255,.15); color: var(--white);
      padding: .8rem 1.8rem; border-radius: 30px; font-weight: 600; font-size: 1rem;
      border: 2px solid rgba(255,255,255,.4); transition: background .2s; display: inline-block;
    }
    .btn-outline:hover { background: rgba(255,255,255,.25); }
    .hero-illo { flex: 0 0 380px; }
    .hero-illo svg { width: 100%; }

    /* ──────────── SECTIONS ──────────── */
    section { padding: 80px 1.5rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-tag {
      display: inline-block; color: var(--teal);
      font-weight: 700; font-size: .78rem;
      text-transform: uppercase; letter-spacing: .1em; margin-bottom: .6rem;
    }
    h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
    .accent { color: var(--orange); }
    .lead { font-size: 1rem; color: var(--text-mid); max-width: 600px; margin-bottom: 2.5rem; }

    /* two-col grid */
    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }

    /* ──────────── APPROCHE ──────────── */
    #approche { background: var(--white); }
    .cards-stack { display: flex; flex-direction: column; gap: 1rem; }
    .card-item {
      display: flex; gap: 1rem; align-items: flex-start;
      background: var(--beige); border-radius: 14px; padding: 1.1rem 1.3rem;
      transition: transform .2s, box-shadow .2s;
    }
    .card-item:hover { transform: translateX(5px); box-shadow: 4px 4px 20px rgba(74,175,160,.12); }
    .card-icon {
      flex-shrink: 0; width: 44px; height: 44px;
      background: var(--teal); border-radius: 11px;
      display: flex; align-items: center; justify-content: center;
    }
    .card-icon svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .card-item h3 { font-size: .95rem; font-weight: 700; margin-bottom: .15rem; }
    .card-item p { font-size: .88rem; color: var(--text-mid); }
    .quote-box {
      background: var(--teal-dark); color: var(--white);
      border-radius: 18px; padding: 1.8rem 2rem;
      position: relative; margin-top: 1.2rem;
    }
    .quote-box::before {
      content: '\201C'; font-size: 4.5rem; line-height: 1;
      color: rgba(255,255,255,.2); position: absolute; top: -8px; left: 18px;
      font-family: Georgia, serif;
    }
    .quote-box p { font-size: 1rem; line-height: 1.7; font-style: italic; position: relative; z-index: 1; }

    /* ──────────── SERVICES ──────────── */
    #services { background: var(--beige); }
    .service-list { display: flex; flex-direction: column; gap: .8rem; }
    .service-row {
      display: flex; align-items: center; gap: .8rem;
      background: var(--white); border-radius: 11px; padding: .85rem 1.1rem;
      font-size: .92rem; font-weight: 500;
      box-shadow: 0 2px 8px rgba(0,0,0,.04); transition: box-shadow .2s;
    }
    .service-row:hover { box-shadow: 0 4px 20px rgba(74,175,160,.15); }
    .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
    .highlight-box {
      background: var(--teal); color: var(--white);
      border-radius: 22px; padding: 2.2rem;
    }
    .highlight-box h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .8rem; }
    .highlight-box p { font-size: .92rem; opacity: .9; line-height: 1.7; }
    .badges { display: flex; gap: .8rem; margin-top: 1.3rem; flex-wrap: wrap; }
    .badge {
      background: rgba(255,255,255,.18); border-radius: 10px;
      padding: .6rem .9rem; display: flex; align-items: center; gap: .4rem;
      font-size: .82rem; font-weight: 600;
    }
    .badge svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    /* ──────────── SECURISE ──────────── */
    #securise { background: var(--white); }
    .steps { display: flex; flex-direction: column; gap: 1.3rem; }
    .step { display: flex; gap: 1rem; }
    .step-num {
      flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
      background: var(--orange); color: var(--white);
      font-weight: 800; font-size: .88rem;
      display: flex; align-items: center; justify-content: center;
    }
    .step h4 { font-size: .95rem; font-weight: 700; margin-bottom: .15rem; }
    .step p { font-size: .88rem; color: var(--text-mid); }

    /* ──────────── PALLIATIF ──────────── */
    #palliatif { background: var(--beige); }
    .dark-card {
      background: var(--teal-dark); color: var(--white);
      border-radius: 22px; padding: 2.5rem;
    }
    .dark-card h2 { color: var(--white); margin-bottom: 1rem; }
    .dark-card p { opacity: .9; line-height: 1.8; }
    .value-list { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.3rem; }
    .value-item {
      display: flex; align-items: center; gap: .8rem;
      background: rgba(255,255,255,.12); border-radius: 9px;
      padding: .75rem 1rem; font-weight: 600; font-size: .92rem;
    }
    .value-item svg { width: 18px; height: 18px; fill: none; stroke: var(--orange-light); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
    .info-card {
      background: var(--white); border-radius: 14px 0 0 14px; padding: 1.4rem;
      box-shadow: 0 4px 20px rgba(0,0,0,.06); margin-top: -1.5rem; position: relative; z-index: 1;
    }
    .info-card p { font-size: .92rem; color: var(--text-mid); line-height: 1.7; }
    .info-card strong { color: var(--teal-dark); }

    /* ──────────── ZONE ──────────── */
    #zone { background: var(--white); }
    .zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
    .chip {
      background: var(--beige); border-radius: 9px; padding: .55rem .9rem;
      font-size: .88rem; font-weight: 500;
      display: flex; align-items: center; gap: .4rem; transition: background .2s;
    }
    .chip:hover { background: var(--teal-light); color: var(--white); }
    .chip svg { width: 13px; height: 13px; fill: var(--teal); flex-shrink: 0; }
    .chip:hover svg { fill: var(--white); }
    .map-box { border-radius: 18px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.1); }
    .tip-box {
      background: var(--teal); color: var(--white);
      border-radius: 14px; padding: 1.1rem 1.3rem;
      font-size: .92rem; line-height: 1.6;
    }

    /* ──────────── CONTACT ──────────── */
    #contact {
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
      color: var(--white);
    }
    #contact h2 { color: var(--white); }
    #contact .lead { color: rgba(255,255,255,.85); }
    .contact-items { display: flex; flex-direction: column; gap: 1.3rem; }
    .c-item { display: flex; align-items: center; gap: 1rem; }
    .c-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      background: rgba(255,255,255,.15); border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .c-icon svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .c-item strong { display: block; font-size: 1.05rem; }
    .c-item span { font-size: .88rem; opacity: .8; }
    .avail-box { background: rgba(255,255,255,.12); border-radius: 18px; padding: 1.8rem; }
    .avail-box h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .9rem; }
    .avail-badge {
      background: var(--orange); display: inline-flex; align-items: center; gap: .5rem;
      padding: .45rem 1.1rem; border-radius: 20px; font-weight: 700; font-size: .95rem; margin-bottom: .9rem;
    }
    .avail-badge svg { width: 16px; height: 16px; fill: none; stroke: white; stroke-width: 2.5; }
    .socials { display: flex; gap: .8rem; margin-top: 1.3rem; flex-wrap: wrap; }
    .social {
      display: flex; align-items: center; gap: .4rem;
      background: rgba(255,255,255,.15); border-radius: 9px;
      padding: .55rem .9rem; font-size: .88rem; font-weight: 600;
      transition: background .2s;
    }
    .social:hover { background: rgba(255,255,255,.25); }
    .social svg { width: 16px; height: 16px; fill: white; }

    /* ──────────── FOOTER ──────────── */
    footer {
      background: var(--text-dark); color: rgba(255,255,255,.6);
      text-align: center; padding: 1.4rem 1.5rem; font-size: .82rem;
    }
    footer strong { color: var(--white); }
    footer a { color: rgba(255,255,255,.7); }

    /* ──────────── FADE ANIMATIONS ──────────── */
    .fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ──────────── RESPONSIVE ──────────── */
    @media (max-width: 1024px) {
      .two-col { gap: 2.5rem; }
      .hero-illo { flex: 0 0 300px; }
    }

    @media (max-width: 860px) {
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero-content { flex-direction: column; text-align: center; }
      .hero-buttons { justify-content: center; }
      .hero-illo { flex: none; width: 75%; max-width: 320px; }
      .tagline { margin-left: auto; margin-right: auto; }
      .two-col { grid-template-columns: 1fr; gap: 2rem; }
      .zone-grid { grid-template-columns: 1fr 1fr; }
      section { padding: 60px 1.2rem; }
    }

    @media (max-width: 500px) {
      .hero-text h1 { font-size: 2rem; }
      .hero-illo { width: 90%; }
      .zone-grid { grid-template-columns: 1fr; }
      .badges { flex-direction: column; }
      h2 { font-size: 1.6rem; }
      nav { padding: 0 1rem; }
      .nav-logo { font-size: 1.05rem; }
      .hero-buttons { flex-direction: column; align-items: center; }
      .btn-primary, .btn-outline { width: 100%; text-align: center; }
    }

    /* ──────────── Sélecteur de langue masqué ──────────── */
    .lang-toggle { display: none !important; }
