/* ════════════════════════════════════════════════════════════
   Inficare Bxl N-O — Styles version néerlandaise
   ════════════════════════════════════════════════════════════ */

    /* ── Variables ── */
    :root {
      --teal:       #4AAFA0;
      --teal-dark:  #2D8B82;
      --teal-light: #7ECFC5;
      --orange:     #E8734A;
      --orange-light:#F4A07D;
      --beige:      #F0EAE0;
      --beige-dark: #E2D9CC;
      --white:      #FFFFFF;
      --text-dark:  #2C3A35;
      --text-mid:   #4A5C56;
      --text-light: #7A8E88;
    }

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

    /* ── Navigation ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: var(--white);
      box-shadow: 0 2px 16px rgba(0,0,0,.08);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 2rem;
      height: 64px;
    }
    .nav-logo {
      font-size: 1.3rem; font-weight: 700;
      color: var(--teal-dark);
      display: flex; align-items: center; gap: .5rem;
    }
    .nav-logo span { color: var(--orange); }
    .nav-links {
      display: flex; gap: 1.8rem; list-style: none;
    }
    .nav-links a {
      font-size: .9rem; font-weight: 500; color: var(--text-mid);
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--teal); }
    .nav-cta {
      background: var(--orange); color: var(--white) !important;
      padding: .5rem 1.2rem; border-radius: 24px;
      font-weight: 600 !important;
      transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--teal-dark) !important; color: var(--white) !important; }
    /* lang switcher */
    .nav-lang {
      display: flex; gap: .4rem; align-items: center;
    }
    .lang-btn {
      font-size: .8rem; font-weight: 700; padding: .3rem .7rem;
      border-radius: 8px; border: 2px solid transparent;
      cursor: pointer; transition: all .2s;
      color: var(--text-mid);
    }
    .lang-btn.active {
      border-color: var(--teal); color: var(--teal);
    }
    .lang-btn:hover { color: var(--teal); }

    /* ── 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 2rem 4rem;
      position: relative; overflow: hidden;
    }
    .hero-bg-circle {
      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);
      color: var(--white);
      font-size: .8rem; font-weight: 600; letter-spacing: .08em;
      text-transform: uppercase;
      padding: .35rem .9rem; border-radius: 20px;
      margin-bottom: 1.2rem;
    }
    .hero-text h1 {
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 800; line-height: 1.1;
      margin-bottom: .6rem;
    }
    .hero-text h1 span { color: var(--orange-light); }
    .hero-text .tagline {
      font-size: 1.15rem; line-height: 1.7;
      opacity: .9; margin-bottom: 2rem;
      max-width: 520px;
    }
    .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;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 4px 16px rgba(232,115,74,.4);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,115,74,.5); }
    .btn-secondary {
      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;
    }
    .btn-secondary:hover { background: rgba(255,255,255,.25); }
    .hero-illustration { flex: 0 0 420px; }
    .hero-illustration svg { width: 100%; }

    /* ── Section commons ── */
    section { padding: 90px 2rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-tag {
      display: inline-block;
      color: var(--teal); font-weight: 700; font-size: .8rem;
      text-transform: uppercase; letter-spacing: .1em;
      margin-bottom: .6rem;
    }
    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.4rem);
      font-weight: 800; line-height: 1.2;
      color: var(--text-dark);
      margin-bottom: 1rem;
    }
    h2 .accent { color: var(--orange); }
    .lead {
      font-size: 1.05rem; color: var(--text-mid);
      max-width: 620px; margin-bottom: 3rem;
    }

    /* ── Aanpak ── */
    #aanpak { background: var(--white); }
    .approche-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .approche-cards { display: flex; flex-direction: column; gap: 1.2rem; }
    .approche-card {
      display: flex; gap: 1rem; align-items: flex-start;
      background: var(--beige);
      border-radius: 16px;
      padding: 1.2rem 1.4rem;
      transition: transform .2s, box-shadow .2s;
    }
    .approche-card:hover { transform: translateX(6px); box-shadow: 4px 4px 20px rgba(74,175,160,.12); }
    .approche-icon {
      flex-shrink: 0;
      width: 48px; height: 48px;
      background: var(--teal);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .approche-icon svg { width: 24px; height: 24px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .approche-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
    .approche-card p { font-size: .9rem; color: var(--text-mid); }
    .citation-box {
      background: var(--teal-dark);
      color: var(--white);
      border-radius: 20px;
      padding: 2rem 2.2rem;
      position: relative;
      margin-top: 1.5rem;
    }
    .citation-box::before {
      content: '\201C';
      font-size: 5rem; line-height: 1;
      color: rgba(255,255,255,.2);
      position: absolute; top: -10px; left: 20px;
      font-family: Georgia, serif;
    }
    .citation-box p {
      font-size: 1.05rem; line-height: 1.7;
      font-style: italic;
      position: relative; z-index: 1;
    }

    /* ── Diensten ── */
    #diensten { background: var(--beige); }
    .services-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .services-list { display: flex; flex-direction: column; gap: .9rem; }
    .service-item {
      display: flex; align-items: center; gap: .8rem;
      background: var(--white);
      border-radius: 12px;
      padding: .9rem 1.2rem;
      font-size: .95rem; font-weight: 500;
      box-shadow: 0 2px 8px rgba(0,0,0,.04);
      transition: box-shadow .2s;
    }
    .service-item:hover { box-shadow: 0 4px 20px rgba(74,175,160,.15); }
    .service-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--orange);
      flex-shrink: 0;
    }
    .services-highlight {
      background: var(--teal);
      color: var(--white);
      border-radius: 24px;
      padding: 2.5rem;
    }
    .services-highlight h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
    .services-highlight p { font-size: .95rem; opacity: .9; line-height: 1.7; }
    .services-icons-row { display: flex; gap: 1rem; margin: 1.5rem 0; flex-wrap: wrap; }
    .service-badge {
      background: rgba(255,255,255,.18);
      border-radius: 12px;
      padding: .7rem 1rem;
      display: flex; align-items: center; gap: .5rem;
      font-size: .85rem; font-weight: 600;
    }
    .service-badge svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    /* ── Veilige Zorg ── */
    #veilig { background: var(--white); }
    .securise-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .securise-points { display: flex; flex-direction: column; gap: 1.4rem; }
    .securise-point { display: flex; gap: 1rem; }
    .sp-num {
      flex-shrink: 0;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--orange);
      color: var(--white);
      font-weight: 800; font-size: .9rem;
      display: flex; align-items: center; justify-content: center;
    }
    .sp-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
    .sp-text p { font-size: .9rem; color: var(--text-mid); }

    /* ── Palliatief ── */
    #palliatief { background: var(--beige); }
    .palliatifs-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .palliatifs-card {
      background: var(--teal-dark);
      color: var(--white);
      border-radius: 24px;
      padding: 3rem;
    }
    .palliatifs-card h2 { color: var(--white); margin-bottom: 1rem; }
    .palliatifs-card p { opacity: .9; line-height: 1.8; font-size: 1rem; }
    .palliatifs-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
    .pv-item {
      display: flex; align-items: center; gap: .8rem;
      background: rgba(255,255,255,.12);
      border-radius: 10px;
      padding: .8rem 1rem;
      font-weight: 600; font-size: .95rem;
    }
    .pv-item svg { width: 20px; height: 20px; fill: none; stroke: var(--orange-light); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

    /* ── Zone ── */
    #zone { background: var(--white); }
    .zone-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .communes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
    .commune-chip {
      background: var(--beige);
      border-radius: 10px;
      padding: .6rem 1rem;
      font-size: .9rem; font-weight: 500;
      display: flex; align-items: center; gap: .5rem;
      transition: background .2s;
    }
    .commune-chip:hover { background: var(--teal-light); color: var(--white); }
    .commune-chip svg { width: 14px; height: 14px; fill: var(--teal); }
    .commune-chip:hover svg { fill: var(--white); }
    .map-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.1); }

    /* ── 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-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
    .contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
    .contact-item { display: flex; align-items: center; gap: 1rem; }
    .contact-icon {
      width: 52px; height: 52px;
      background: rgba(255,255,255,.15);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg { width: 24px; height: 24px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .contact-item-text strong { display: block; font-size: 1.1rem; }
    .contact-item-text span { font-size: .9rem; opacity: .8; }
    .availability-box { background: rgba(255,255,255,.12); border-radius: 20px; padding: 2rem; }
    .availability-box h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
    .avail-badge {
      background: var(--orange);
      display: inline-flex; align-items: center; gap: .5rem;
      padding: .5rem 1.2rem; border-radius: 20px;
      font-weight: 700; font-size: 1rem;
      margin-bottom: 1rem;
    }
    .avail-badge svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 2.5; }
    .social-links { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
    .social-link {
      display: flex; align-items: center; gap: .5rem;
      background: rgba(255,255,255,.15);
      border-radius: 10px;
      padding: .6rem 1rem;
      font-size: .9rem; font-weight: 600;
      transition: background .2s;
    }
    .social-link:hover { background: rgba(255,255,255,.25); }
    .social-link svg { width: 18px; height: 18px; fill: white; }

    /* ── Footer ── */
    footer {
      background: var(--text-dark);
      color: rgba(255,255,255,.6);
      text-align: center;
      padding: 1.5rem 2rem;
      font-size: .85rem;
    }
    footer strong { color: var(--white); }

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

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .hero-content { flex-direction: column; text-align: center; }
      .hero-buttons { justify-content: center; }
      .hero-illustration { flex: none; width: 80%; max-width: 360px; }
      .approche-grid, .services-layout, .securise-grid,
      .palliatifs-content, .zone-layout, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .nav-links { display: none; }
    }

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