/* LA PAGE LABO METAVERSE */
/* ─────────────────────────────── BASE ─────────────────────────────────────── */
.labo-main { background: #07030a; }

/* ─────────────────────────────── HERO ─────────────────────────────────────── */
.labo-hero {
    position: relative;
    min-height: 52vh;
    padding: 150px 0 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    background: radial-gradient(circle at 15% 30%, rgba(142,21,130,0.12) 0%, transparent 45%),
                radial-gradient(circle at 80% 70%, rgba(24,168,85,0.08) 0%, transparent 40%);
}
.labo-hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.lh-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; animation: lhFloat 8s ease-in-out infinite; }
.lh-orb-1 { width: 500px; height: 500px; background: rgba(142,21,130,0.35); top: -120px; left: -100px; animation-delay: 0s; }
.lh-orb-2 { width: 300px; height: 300px; background: rgba(24,168,85,0.3);   top: 30%;   right: -60px;  animation-delay: 3s; }
.lh-orb-3 { width: 200px; height: 200px; background: rgba(80,100,255,0.25); bottom: 20px; left: 40%;    animation-delay: 5s; }
@keyframes lhFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

.labo-hero-inner { position: relative; z-index: 2; padding-bottom: 60px; }
.labo-h1 { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; color: #fff; letter-spacing: -1px; margin: 16px 0 20px; }
.lh-accent { color: var(--uvci-green); text-shadow: 0 0 30px rgba(24,168,85,0.4); }
.labo-lead { color: rgba(255,255,255,0.68); font-size: 1.12rem; max-width: 680px; margin: 0 auto 40px; line-height: 1.8; }

.labo-hero-tabs { 
    display: inline-flex; 
    justify-content: center; 
    gap: 0; 
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lhtab { 
    position: relative;
    z-index: 2;
    padding: 10px 26px; 
    border-radius: 50px; 
    border: none;
    color: rgba(255,255,255,0.62); 
    font-family: 'Syne', sans-serif; 
    font-weight: 600; 
    font-size: 0.9rem; 
    text-decoration: none; 
    transition: color 0.3s; 
    letter-spacing: 0.5px; 
}

.lhtab:hover { color: #fff; text-decoration: none; }
.lhtab.active { color: var(--uvci-green); text-shadow: 0 0 15px rgba(24,168,85,0.3); }

/* Sliding Indicator */
.lhtab-indicator {
    position: absolute;
    height: calc(100% - 12px);
    top: 6px;
    left: 6px;
    background: rgba(24,168,85,0.12);
    border: 1px solid rgba(24,168,85,0.3);
    border-radius: 50px;
    z-index: 1;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    box-shadow: 0 0 20px rgba(24,168,85,0.1);
}

.labo-hero-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent); }

/* Sticky Nav Utility */
.sticky-tabs-container {
    position: sticky;
    top: 90px;
    z-index: 1000;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    pointer-events: none;
    margin-top: -40px;
    padding: 20px 0;
}
.sticky-tabs-container > * { pointer-events: auto; }

.sticky-tabs-container.is-sticky .labo-hero-tabs {
    background: rgba(10, 4, 15, 0.85);
    border-color: rgba(142, 21, 130, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(142, 21, 130, 0.1);
    transform: scale(0.95);
}

/* ─────────────────────────────── SECTIONS ──────────────────────────────────── */
.labo-section          { padding: 90px 0; position: relative; overflow: hidden; }
.labo-about-section    { background: #07030a; }
.labo-team-section     { background: #0a040f; }
.labo-faq-section      { background: #07030a; overflow: visible; z-index: 20; }
.labo-contact-section  { background: #0a040f; z-index: 5; }

.labo-section-header { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px; }
.labo-section-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-purple { background: var(--uvci-purple); box-shadow: 0 0 10px var(--uvci-purple); }
.dot-pink   { background: #e91e8c;            box-shadow: 0 0 10px #e91e8c; }
.dot-green  { background: var(--uvci-green);  box-shadow: 0 0 10px var(--uvci-green); }
.labo-section-label { font-family: 'Syne', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.45); text-transform: uppercase; }
.labo-h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; }

/* ─────────────────────────────── ABOUT ─────────────────────────────────────── */
.labo-mission-row { margin-bottom: 80px; }
.labo-checklist { list-style: none; padding: 0; margin: 0; }
.labo-checklist li { color: rgba(255,255,255,0.75); padding: 8px 0; display: flex; align-items: center; gap: 12px; font-size: 1rem; }
.labo-checklist li i { color: var(--uvci-green); font-size: 1rem; flex-shrink: 0; }
.labo-img-frame { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.labo-img-frame img { width: 100%; display: block; transition: transform 0.6s; }
.labo-img-frame:hover img { transform: scale(1.04); }
.labo-img-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(0,0,0,0.65); backdrop-filter: blur(10px); color: #fff; padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,0.1); }
.labo-img-badge i { color: var(--uvci-green); }

.labo-values-block { padding-top: 20px; }
.labo-value-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07); border-radius: 22px; padding: 36px 28px; text-align: center; transition: all 0.35s; height: 100%; }
.labo-value-card:hover { background: rgba(255,255,255,0.045); transform: translateY(-10px); border-color: var(--uvci-green); }
.lvc-icon { width: 62px; height: 62px; background: rgba(24,168,85,0.1); color: var(--uvci-green); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 22px; transition: transform 0.3s; }
.labo-value-card:hover .lvc-icon { transform: scale(1.12) rotate(-5deg); }
.labo-value-card h3 { color: #fff; font-family: 'Syne', sans-serif; font-size: 1.2rem; margin-bottom: 12px; }
.labo-value-card p  { color: rgba(255,255,255,0.58); font-size: 0.94rem; line-height: 1.7; margin: 0; }

/* ─────────────────────────────── TEAM ──────────────────────────────────────── */
.labo-president-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 36px; padding: 50px; backdrop-filter: blur(18px); position: relative; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.labo-president-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(24,168,85,0.08), transparent 50%); pointer-events: none; }
.pres-img-wrapper { position: relative; width: 300px; height: 300px; margin: 0 auto; border-radius: 28px; overflow: hidden; padding: 10px; background: linear-gradient(45deg, var(--uvci-purple), var(--uvci-green)); box-shadow: 0 15px 40px rgba(0,0,0,0.4); transition: 0.5s; }
.pres-img-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; transition: 0.8s; }
.pres-img-wrapper:hover img { transform: scale(1.06); }
.pres-content { position: relative; z-index: 2; padding: 20px; }
.pres-name { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.highlight-green { color: var(--uvci-green); text-shadow: 0 0 20px rgba(24,168,85,0.3); }
.pres-title { color: rgba(255,255,255,0.55); font-family: 'Syne', sans-serif; text-transform: uppercase; letter-spacing: 3px; font-weight: 700; font-size: 0.85rem; display: block; margin-bottom: 24px; }
.pres-vision { color: rgba(255,255,255,0.78); font-size: 1.1rem; line-height: 1.85; font-style: italic; }
.pres-quote-icon { position: absolute; bottom: -10px; right: 10px; font-size: 4rem; color: rgba(255,255,255,0.04); }

.team-card-premium { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 22px; text-align: center; transition: all 0.5s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; }
.team-card-premium:hover { background: rgba(255,255,255,0.04); transform: translateY(-14px); border-color: var(--uvci-purple); }
.team-card-premium::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--uvci-purple), var(--uvci-green)); opacity: 0; transition: opacity 0.5s; }
.team-card-premium:hover::before { opacity: 1; }
.tc-image { width: 130px; height: 130px; margin: 18px auto; border-radius: 50%; background: rgba(255,255,255,0.05); padding: 10px; border: 2px dashed rgba(255,255,255,0.1); transition: 0.5s; }
.tc-image img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.team-card-premium:hover .tc-image { border-style: solid; border-color: var(--uvci-purple); transform: scale(1.08); }
.tc-info h3 { color: #fff; font-family: 'Syne', sans-serif; font-size: 1.15rem; margin-bottom: 5px; }
.tc-role { color: var(--uvci-green); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 18px; }
.tc-social { display: flex; justify-content: center; gap: 12px; margin-bottom: 8px; opacity: 0.55; transition: 0.3s; }
.team-card-premium:hover .tc-social { opacity: 1; }
.tc-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.05); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: 0.3s; text-decoration: none; }
.tc-social a:hover { background: var(--uvci-purple); transform: translateY(-4px); }

/* ─────────────────────────────── FAQ ───────────────────────────────────────── */
.labo-faq-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    align-items: start;
}
.labo-faq-item { position: relative; z-index: 1; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07); border-radius: 18px; overflow: visible; transition: border-color 0.3s, box-shadow 0.3s; }
.labo-faq-item.open { z-index: 25; border-color: rgba(24,168,85,0.35); box-shadow: 0 0 30px rgba(24,168,85,0.06); }
.labo-faq-q { width: 100%; display: flex; align-items: center; gap: 16px; padding: 22px 26px; background: none; border: none; cursor: pointer; text-align: left; color: #fff; transition: background 0.25s; }
.labo-faq-q:hover { background: rgba(255,255,255,0.02); }
.labo-faq-item.open .labo-faq-q { background: rgba(24,168,85,0.04); }
.fq-icon { width: 38px; height: 38px; flex-shrink: 0; background: rgba(24,168,85,0.1); color: var(--uvci-green); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background 0.3s; }
.labo-faq-item.open .fq-icon { background: rgba(24,168,85,0.2); }
.fq-text { flex: 1; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; line-height: 1.4; }
.fq-arrow { flex-shrink: 0; color: rgba(255,255,255,0.35); font-size: 0.85rem; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), color 0.3s; }
.labo-faq-item.open .fq-arrow { transform: rotate(180deg); color: var(--uvci-green); }
.labo-faq-a {
    position: absolute;
    top: calc(100% - 1px);
    left: -1px;
    right: -1px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    overflow: hidden;
    background: rgba(10, 6, 14, 0.96);
    border: 1px solid rgba(24,168,85,0.22);
    border-top: none;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.5);
    transition: max-height 0.4s ease, opacity 0.28s ease, transform 0.28s ease, visibility 0.4s;
}
.labo-faq-item.open .labo-faq-a {
    max-height: 320px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.labo-faq-a > p { margin: 0; padding: 14px 26px 22px 80px; color: rgba(255,255,255,0.65); font-size: 0.97rem; line-height: 1.8; }

/* ─────────────────────────────── CONTACT ───────────────────────────────────── */
.labo-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.labo-contact-infos { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.lci-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 18px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; transition: border-color 0.3s, background 0.3s; }
.lci-item:hover { border-color: rgba(24,168,85,0.25); background: rgba(24,168,85,0.04); }
.lci-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(24,168,85,0.1); color: var(--uvci-green); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.lci-icon.lci-purple { background: rgba(142,21,130,0.12); color: var(--uvci-purple); }
.lci-icon.lci-gold   { background: rgba(255,200,50,0.1);  color: #ffc832; }
.lci-label { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.38); margin-bottom: 3px; }
.lci-val   { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.4; }
.lci-link  { text-decoration: none; transition: color 0.2s; }
.lci-link:hover { color: var(--uvci-green); }

/* Formulaire */
.labo-form { display: flex; flex-direction: column; gap: 18px; }
.lf-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lf-group  { display: flex; flex-direction: column; gap: 8px; }
.lf-group label { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.lf-req { color: var(--uvci-purple); }
.lf-input-wrap { position: relative; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.08); transition: border-color 0.3s, box-shadow 0.3s; display: flex; align-items: center; }
.lf-input-wrap:focus-within { border-color: var(--uvci-purple); box-shadow: 0 0 0 3px rgba(142,21,130,0.12); background: rgba(255,255,255,0.06); }
.lf-input-wrap > i { position: absolute; left: 16px; color: rgba(255,255,255,0.22); font-size: 0.88rem; pointer-events: none; transition: color 0.3s; }
.lf-input-wrap:focus-within > i { color: var(--uvci-purple); }
.lf-input-wrap.is-invalid {
    border-color: rgba(239, 68, 68, 0.75);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
    background: rgba(239, 68, 68, 0.06);
}
.lf-input-wrap.is-invalid > i {
    color: #fca5a5;
}
.lf-group:has(.lf-input-wrap.is-invalid) label {
    color: #fecaca;
}
.lf-input-wrap input,
.lf-input-wrap select,
.lf-input-wrap textarea { width: 100%; background: transparent; border: none; outline: none; padding: 14px 16px 14px 44px; color: #fff; font-size: 0.92rem; font-family: 'Figtree', sans-serif; border-radius: 12px; resize: none; }
.lf-input-wrap input::placeholder,
.lf-input-wrap textarea::placeholder { color: rgba(255,255,255,0.22); }
.lf-input-wrap select option { background: #1a0a2e; color: #fff; }
.lf-textarea-wrap { align-items: flex-start; }
.lf-textarea-wrap > i { top: 16px; }

.lf-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 32px; border-radius: 14px; background: linear-gradient(135deg, var(--uvci-purple), #a855f7); color: #fff; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: opacity 0.25s, transform 0.2s, box-shadow 0.3s; box-shadow: 0 8px 24px rgba(142,21,130,0.25); width: 100%; margin-top: 4px; }
.lf-btn:hover  { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(142,21,130,0.35); }
.lf-btn:active { transform: translateY(0); }
.lf-success { display: flex; align-items: center; gap: 10px; background: rgba(24,168,85,0.1); border: 1px solid rgba(24,168,85,0.3); color: var(--uvci-green); padding: 14px 20px; border-radius: 12px; font-size: 0.95rem; font-weight: 600; animation: fadeInUp 0.4s ease; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

/* Carte */
.labo-map-wrap { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07); border-radius: 24px; overflow: hidden; position: sticky; top: 100px; }
.labo-map-header { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02); }
.lmh-icon { width: 38px; height: 38px; flex-shrink: 0; background: rgba(142,21,130,0.15); color: var(--uvci-purple); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.labo-map-header strong { display: block; color: #fff; font-size: 0.92rem; font-family: 'Syne', sans-serif; }
.labo-map-header small  { color: rgba(255,255,255,0.38); font-size: 0.72rem; }
.lmh-ext { margin-left: auto; width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 0.75rem; text-decoration: none; transition: all 0.25s; }
.lmh-ext:hover { background: rgba(24,168,85,0.12); border-color: var(--uvci-green); color: var(--uvci-green); }
.labo-map-frame { height: 430px; }
.labo-map-frame iframe { display: block; width: 100%; height: 100%; }
.labo-map-footer { display: flex; align-items: center; gap: 8px; padding: 12px 20px; color: rgba(255,255,255,0.4); font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.015); }

/* ─────────────────────────────── RESPONSIVE ────────────────────────────────── */
@media (max-width: 991px) {
    .labo-hero           { padding-top: 110px; min-height: auto; }
    .labo-section        { padding: 60px 0; }
    .labo-president-card { padding: 28px; border-radius: 26px; text-align: center; }
    .pres-img-wrapper    { width: 230px; height: 230px; margin-bottom: 28px; }
    .pres-name           { font-size: 1.8rem; }
    .labo-mission-row    { margin-bottom: 50px; }
    .labo-img-frame      { margin-top: 30px; }
    .labo-contact-grid   { grid-template-columns: 1fr; }
    .labo-faq-grid       { grid-template-columns: 1fr; max-width: 860px; gap: 12px; }
    .labo-faq-item       { overflow: hidden; z-index: auto; }
    .labo-faq-item.open  { z-index: auto; }
    .labo-faq-a {
        position: static;
        left: auto;
        right: auto;
        top: auto;
        max-height: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        display: grid;
        grid-template-rows: 0fr;
        visibility: hidden;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        transition: grid-template-rows 0.42s cubic-bezier(0.4,0,0.2,1), visibility 0.42s;
    }
    .labo-faq-item.open .labo-faq-a {
        grid-template-rows: 1fr;
        visibility: visible;
    }
    .labo-faq-a > p      { overflow: hidden; padding: 0 26px 22px 80px; }
    .labo-map-wrap       { position: static; }
    .labo-map-frame      { height: 320px; }
}

@media (max-width: 640px) {
    .labo-hero-tabs         { gap: 8px; }
    .lhtab                  { padding: 8px 18px; font-size: 0.82rem; }
    .labo-faq-a > p         { padding: 0 20px 20px 20px; }
    .fq-text                { font-size: 0.92rem; }
    .labo-president-card    { padding: 20px; }
    .pres-name              { font-size: 1.5rem; }
    .pres-vision            { font-size: 1rem; line-height: 1.65; }
    .lf-row                 { grid-template-columns: 1fr; }
    .labo-map-frame         { height: 260px; }
}


