/* =====================================================================
   Wisdom International School — Site vitrine
   Palette : bleu marine institutionnel + accents dorés
   ===================================================================== */
:root {
    --navy:        #0d2b5e;
    --navy-dark:   #071a3a;
    --navy-light:  #1a4480;
    --gold:        #c9a227;
    --gold-soft:   #e3c766;
    --ink:         #1f2a44;
    --muted:       #5b6577;
    --bg-soft:     #f5f7fb;
    --line:        #e7ecf3;
    --radius:      18px;
    --shadow-sm:   0 6px 18px rgba(13, 43, 94, 0.08);
    --shadow-md:   0 18px 45px rgba(13, 43, 94, 0.14);
    --font-head:   'Fraunces', Georgia, serif;
    --font-body:   'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    margin: 0;
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, .wis-display { font-family: var(--font-head); letter-spacing: -0.01em; }

a { text-decoration: none; }

.container { max-width: 1180px; }

/* ── Top bar ─────────────────────────────────────────── */
.wis-topbar {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    padding: 0.45rem 0;
}
.wis-topbar-item { color: rgba(255, 255, 255, 0.82); transition: color 0.2s; }
.wis-topbar-item:hover { color: var(--gold-soft); }

/* ── Navbar ──────────────────────────────────────────── */
.wis-nav {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 18px rgba(13, 43, 94, 0.07);
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--line);
}
.wis-nav-logo {
    width: 46px; height: 46px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}
.wis-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.wis-brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--navy); }
.wis-brand-sub  { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.wis-nav .nav-link {
    font-weight: 500;
    color: var(--ink);
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    position: relative;
}
.wis-nav .nav-link:hover { color: var(--navy); background: var(--bg-soft); }
.wis-nav .nav-link.active { color: var(--navy); font-weight: 600; }
.wis-nav .nav-link.active::after {
    content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.25rem; height: 2px;
    background: var(--gold); border-radius: 2px;
}

/* ── Boutons ─────────────────────────────────────────── */
.wis-btn-accent {
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 600;
    border: none;
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.wis-btn-accent:hover { background: var(--gold-soft); color: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201, 162, 39, 0.4); }
.wis-btn-navy {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    transition: transform 0.18s, box-shadow 0.18s;
}
.wis-btn-navy:hover { background: var(--navy-light); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.wis-btn-outline-light {
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    background: transparent;
    transition: background 0.18s, color 0.18s;
}
.wis-btn-outline-light:hover { background: #fff; color: var(--navy); }
.wis-btn-outline-navy {
    border: 1.5px solid var(--navy);
    color: var(--navy);
    font-weight: 600;
    border-radius: 999px;
    padding: 0.55rem 1.3rem;
    background: transparent;
    transition: background 0.18s, color 0.18s;
}
.wis-btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ── Hero ────────────────────────────────────────────── */
.wis-hero {
    position: relative;
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(201, 162, 39, 0.22), transparent 60%),
        linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
    color: #fff;
    padding: 5.5rem 0 6rem;
    overflow: hidden;
}
.wis-hero-section {
    position: relative;
    min-height: clamp(520px, 75vh, 700px);
    display: flex;
    align-items: center;
    padding-bottom: 4rem;
}
.wis-hero-carousel-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.wis-hero-section .z-2 { z-index: 2; }
.wis-hero-section .carousel-inner,
.wis-hero-section .carousel-item { height: 100%; }
.wis-hero-img.is-paysage { object-position: 68% center; }
.wis-hero-img.is-portrait { object-position: center center; }
.wis-hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7, 20, 48, 0.92) 0%, rgba(7, 20, 48, 0.65) 40%, rgba(7, 20, 48, 0.2) 65%, transparent 100%),
        linear-gradient(180deg, rgba(7, 20, 48, 0.1) 0%, rgba(7, 20, 48, 0.45) 100%);
    pointer-events: none;
}
.wis-hero-indicators { z-index: 3; margin-bottom: 1.25rem; }
.wis-hero-control { z-index: 3; width: 8%; }
.wis-hero-section .wis-hero-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 1.75rem;
    backdrop-filter: blur(8px);
}
.wis-hero::after {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.5; pointer-events: none;
}
.wis-hero .container { position: relative; z-index: 2; }
.wis-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gold-soft);
    padding: 0.4rem 1rem; border-radius: 999px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.wis-hero-slogan {
    font-family: var(--font-head);
    font-style: italic;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--gold-soft);
    margin-bottom: 0.85rem;
    line-height: 1.3;
}
.wis-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.08; margin-bottom: 1.25rem; }
.wis-hero h1 .accent { color: var(--gold-soft); }
.wis-hero-lead { font-size: 1.15rem; color: rgba(255, 255, 255, 0.88); max-width: 560px; margin-bottom: 2rem; }
.wis-hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    padding: 1.75rem;
    backdrop-filter: blur(6px);
}
.wis-hero-card .wis-logo-badge {
    width: 120px; height: 120px; border-radius: 24px; object-fit: cover;
    box-shadow: var(--shadow-md);
}

/* ── Stats ──────────────────────────────────────────── */
.wis-stats {
    margin-top: -3.5rem; position: relative; z-index: 5;
}
.wis-stat-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 1.5rem 1rem;
    text-align: center;
    height: 100%;
    border-top: 4px solid var(--gold);
}
.wis-stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.wis-stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 0.35rem; font-weight: 500; }
.wis-stat-icon { color: var(--gold); font-size: 1.5rem; margin-bottom: 0.4rem; }

/* ── Sections ───────────────────────────────────────── */
section { scroll-margin-top: 90px; }
.wis-section { padding: 5rem 0; }
.wis-section.bg-soft { background: var(--bg-soft); }
.wis-eyebrow {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
.wis-section-title { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.wis-section-intro { color: var(--muted); font-size: 1.05rem; max-width: 640px; }
.wis-section-intro.mx-auto { margin-left: auto; margin-right: auto; }

/* Photo accueil — insertion directe (sans ratio Bootstrap) */
.wis-welcome-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--navy-dark);
    max-width: 400px;
    margin-inline: auto;
}
.wis-welcome-photo-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
    object-fit: cover;
    object-position: center 30%;
}

/* ── Cartes génériques ──────────────────────────────── */
.wis-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.8rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.wis-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.wis-card-icon {
    width: 58px; height: 58px; border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 1.1rem;
    background: rgba(13, 43, 94, 0.07); color: var(--navy);
}
.wis-card-icon.gold { background: rgba(201, 162, 39, 0.16); color: var(--gold); }
.wis-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.6rem; }
.wis-card p { color: var(--muted); margin-bottom: 0; font-size: 0.96rem; }

/* ── Niveau / cursus ────────────────────────────────── */
.wis-level {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #fff;
    border: 1px solid var(--line);
    height: 100%;
}
.wis-level-head {
    padding: 1.5rem 1.6rem;
    color: #fff;
    position: relative;
}
.wis-level-head.creche      { background: linear-gradient(135deg, #b06a17, var(--gold)); }
.wis-level-head.maternelle  { background: linear-gradient(135deg, var(--navy-light), #2b6bd0); }
.wis-level-head.elementaire { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }
.wis-level-head .age { font-size: 0.8rem; opacity: 0.9; font-weight: 500; }
.wis-level-head h3 { margin: 0.25rem 0 0; font-size: 1.5rem; }
.wis-level-body { padding: 1.6rem; }
.wis-level-body ul { list-style: none; padding: 0; margin: 0; }
.wis-level-body li { padding: 0.4rem 0 0.4rem 1.7rem; position: relative; color: var(--muted); }
.wis-level-body li::before {
    content: "\F26E"; font-family: "bootstrap-icons"; color: var(--gold);
    position: absolute; left: 0; top: 0.4rem;
}
.wis-chip {
    display: inline-block; background: var(--bg-soft); color: var(--navy);
    border: 1px solid var(--line); border-radius: 999px;
    padding: 0.25rem 0.75rem; font-size: 0.82rem; font-weight: 600; margin: 0.2rem 0.2rem 0 0;
}

/* ── Liste avec check ───────────────────────────────── */
.wis-check-list { list-style: none; padding: 0; margin: 0; }
.wis-check-list li { padding: 0.55rem 0 0.55rem 2rem; position: relative; color: var(--ink); border-bottom: 1px dashed var(--line); }
.wis-check-list li:last-child { border-bottom: none; }
.wis-check-list li::before {
    content: "\F26B"; font-family: "bootstrap-icons"; color: var(--gold);
    position: absolute; left: 0; top: 0.55rem; font-size: 1.1rem;
}

/* ── Valeurs (split) ────────────────────────────────── */
.wis-split-media {
    border-radius: var(--radius);
    min-height: 360px;
    background:
        radial-gradient(700px 320px at 20% 10%, rgba(201, 162, 39, 0.3), transparent 60%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; justify-content: center;
}
.wis-split-media img { width: 150px; height: 150px; border-radius: 28px; object-fit: cover; box-shadow: var(--shadow-md); }
.wis-split-media .pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* ── Cadres photo Bootstrap ─────────────────────────── */
.wis-photo-bs { background: var(--navy-dark); }
.wis-photo-bs > img { object-position: center center; }
.wis-photo-bs.is-paysage img { object-position: center 42%; }
.wis-photo-bs.is-portrait img { object-position: center 25%; }
.wis-photo-bs.wis-photo-split.is-portrait {
    max-height: 460px;
    margin-inline: auto;
    max-width: 360px;
}

/* ── Tarifs ─────────────────────────────────────────── */
.wis-price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.wis-price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.wis-price-card .wis-price-body { flex: 1 1 auto; }
.wis-price-head { padding: 1.4rem 1.5rem 1rem; background: var(--navy); color: #fff; }
.wis-price-head.featured { background: linear-gradient(135deg, #b06a17, var(--gold)); }
.wis-price-head h3 { margin: 0; font-size: 1.3rem; }
.wis-price-head .sub { font-size: 0.85rem; opacity: 0.85; }
.wis-price-amount { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; padding: 1.1rem 1.5rem 0; color: var(--navy); }
.wis-price-amount small { font-size: 0.85rem; color: var(--muted); font-weight: 500; font-family: var(--font-body); }
.wis-price-body { padding: 0.5rem 1.5rem 1.6rem; }
.wis-price-body ul { list-style: none; padding: 0; margin: 0.8rem 0 0; }
.wis-price-body li { padding: 0.45rem 0 0.45rem 1.6rem; position: relative; color: var(--muted); font-size: 0.92rem; }
.wis-price-body li::before { content: "\F26B"; font-family: "bootstrap-icons"; color: var(--gold); position: absolute; left: 0; top: 0.45rem; }

.wis-table-tarifs { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.wis-table-tarifs th, .wis-table-tarifs td { padding: 0.9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.wis-table-tarifs thead th { background: var(--navy); color: #fff; font-weight: 600; }
.wis-table-tarifs tbody tr:hover { background: var(--bg-soft); }
.wis-table-tarifs td.num { text-align: right; font-weight: 600; color: var(--navy); white-space: nowrap; }

/* ── Badges réduction ───────────────────────────────── */
.wis-reduc {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(25, 135, 84, 0.1); color: #146c43;
    border: 1px solid rgba(25, 135, 84, 0.25);
    padding: 0.55rem 1rem; border-radius: 12px; font-weight: 600; font-size: 0.92rem;
}

/* ── Étapes ─────────────────────────────────────────── */
.wis-step { position: relative; padding-left: 4.2rem; margin-bottom: 1.8rem; }
.wis-step-num {
    position: absolute; left: 0; top: 0;
    width: 3rem; height: 3rem; border-radius: 14px;
    background: var(--navy); color: var(--gold-soft);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
}
.wis-step h4 { color: var(--navy); margin-bottom: 0.3rem; font-size: 1.15rem; }
.wis-step p { color: var(--muted); margin: 0; }

/* ── Actualités ─────────────────────────────────────── */
.wis-news { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%; transition: transform 0.2s, box-shadow 0.2s; }
.wis-news:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.wis-news-img { height: 200px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2.4rem; overflow: hidden; position: relative; }
.wis-news-img.has-photo { padding: 0; height: auto; aspect-ratio: 16 / 10; }
.wis-news-img.has-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.wis-news-img.has-photo.is-paysage img { object-position: center 40%; }
.wis-news-img.has-photo.is-portrait img { object-position: center 22%; }
.wis-news:hover .wis-news-img.has-photo img { transform: scale(1.05); }
.wis-news-img.a { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.wis-news-img.b { background: linear-gradient(135deg, #b06a17, var(--gold)); }
.wis-news-img.c { background: linear-gradient(135deg, #155e44, #1f9d6a); }
.wis-news-body { padding: 1.3rem 1.4rem; }
.wis-news-date { font-size: 0.78rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.wis-news-body h3 { font-size: 1.1rem; color: var(--navy); margin: 0.4rem 0 0.5rem; }
.wis-news-body p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ── CTA ────────────────────────────────────────────── */
.wis-cta {
    background:
        radial-gradient(800px 400px at 90% 0%, rgba(201, 162, 39, 0.25), transparent 60%),
        linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: #fff; padding: 4rem 0;
}
.wis-cta-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 0.75rem; }
.wis-cta-text { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; margin-bottom: 1.8rem; }

/* ── Page banner (sous-pages) ───────────────────────── */
.wis-banner {
    position: relative;
    background:
        radial-gradient(900px 400px at 85% -20%, rgba(201, 162, 39, 0.2), transparent 60%),
        linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 70%);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 3.5rem 0;
    overflow: hidden;
}
.wis-banner.has-photo {
    background-repeat: no-repeat;
    background-size: cover;
}
.wis-banner.has-photo.is-paysage {
    background-position: 72% center;
}
.wis-banner.has-photo.is-portrait {
    background-position: center 30%;
}
.wis-banner.has-photo .wis-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 20, 48, 0.9) 0%, rgba(7, 20, 48, 0.65) 55%, rgba(7, 20, 48, 0.45) 100%);
}
.wis-banner.has-photo .container { position: relative; z-index: 1; }

/* ── Galerie photos ─────────────────────────────────── */
.wis-gallery .wis-photo-bs:hover img { transform: scale(1.04); }
.wis-gallery .wis-photo-bs img { transition: transform 0.35s ease; }
.wis-banner h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin: 0.4rem 0 0.6rem; }
.wis-banner p { color: rgba(255, 255, 255, 0.85); max-width: 640px; margin: 0; }
.wis-breadcrumb { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }
.wis-breadcrumb a { color: var(--gold-soft); }

/* ── Contact ────────────────────────────────────────── */
.wis-contact-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.5rem; height: 100%; box-shadow: var(--shadow-sm);
}
.wis-contact-card .ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(13, 43, 94, 0.07); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 0.9rem; }
.wis-form-control {
    border: 1px solid var(--line); border-radius: 12px; padding: 0.75rem 1rem; width: 100%; font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.wis-form-control:focus { outline: none; border-color: var(--navy-light); box-shadow: 0 0 0 3px rgba(26, 68, 128, 0.15); }
.wis-map { border: 0; width: 100%; height: 500px; min-height: 500px; border-radius: var(--radius); }

/* ── Scroll top ─────────────────────────────────────── */
.wis-scroll-top {
    position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 60;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--navy); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity 0.25s, transform 0.25s, background 0.2s;
}
.wis-scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.wis-scroll-top:hover { background: var(--gold); color: var(--navy-dark); }

/* ── Footer ─────────────────────────────────────────── */
.wis-footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.78); padding: 3.5rem 0 1.5rem; }
.wis-footer-logo { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; }
.wis-footer-name { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: #fff; }
.wis-footer-sub { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.wis-footer-baseline { color: rgba(255, 255, 255, 0.6); font-style: italic; }
.wis-footer-title { font-size: 0.95rem; color: #fff; font-weight: 600; margin-bottom: 1rem; font-family: var(--font-body); }
.wis-footer-links, .wis-footer-contact { list-style: none; padding: 0; margin: 0; }
.wis-footer-links li { margin-bottom: 0.5rem; }
.wis-footer-links a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s; }
.wis-footer-links a:hover { color: var(--gold-soft); }
.wis-footer-contact li { margin-bottom: 0.7rem; font-size: 0.9rem; }
.wis-footer-contact i { color: var(--gold); margin-right: 0.4rem; }
.wis-footer-contact a { color: rgba(255, 255, 255, 0.78); }
.wis-footer-contact a:hover { color: var(--gold-soft); }
.wis-footer-bottom {
    margin-top: 2.5rem; padding-top: 1.3rem; border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
    font-size: 0.82rem; color: rgba(255, 255, 255, 0.55);
}

/* ── Détail frais d'écolage ───────────────────────── */
.wis-ecolage-detail {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.6rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
}
.wis-ecolage-detail-head { margin-bottom: 0.75rem; }
.wis-ecolage-detail-title { font-size: 1.2rem; color: var(--navy); margin: 0 0 0.2rem; }
.wis-ecolage-detail-sub { font-size: 0.82rem; color: var(--muted); }
.wis-ecolage-detail-intro { font-size: 0.92rem; color: var(--muted); margin-bottom: 0.75rem; }
.wis-ecolage-postes { list-style: none; padding: 0; margin: 0 0 1rem; }
.wis-ecolage-postes li {
    padding: 0.45rem 0 0.45rem 1.6rem;
    position: relative;
    color: var(--ink);
    font-size: 0.94rem;
    border-bottom: 1px dashed var(--line);
}
.wis-ecolage-postes li:last-child { border-bottom: none; }
.wis-ecolage-postes li i {
    position: absolute; left: 0; top: 0.55rem;
    color: var(--gold); font-size: 0.9rem;
}
.wis-ecolage-total {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
}
.wis-ecolage-total span { font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.wis-ecolage-total strong { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); }
.wis-ecolage-note { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.45; }

/* ── Animations au scroll ───────────────────────────── */
.wis-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.wis-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
    .wis-nav .nav-link.active::after { display: none; }
    .wis-hero { padding: 4rem 0 4.5rem; }
    .wis-hero-section {
        min-height: 560px;
        padding-bottom: 3rem;
    }
    .wis-hero-img.is-paysage { object-position: center center; }
    .wis-hero-overlay {
        background:
            linear-gradient(180deg, rgba(7, 20, 48, 0.5) 0%, rgba(7, 20, 48, 0.85) 50%, rgba(7, 20, 48, 0.92) 100%);
    }
    .wis-photo-bs.wis-photo-split.is-portrait { max-width: 100%; }
}
