    /* =========================================
       VARIABLES & BASE
    ========================================= */
    :root {
        --purple: #8300A8;
        --purple-light: #a800d6;
        --purple-dark: #6a0088;
        --deep: #210E2B;
        --deep2: #160920;
        --white: #ffffff;
        --off-white: #FAF8FC;
        --gray-soft: #f0eaf4;
        --gray-mid: #c4acd2;
        --text-main: #1a0a24;
        --text-muted: #6e5680;
        --border: rgba(131,0,168,0.15);
        --radius: 14px;
        --radius-sm: 8px;
        --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    }
    
    html { scroll-behavior: smooth; }
    
    @font-face {
        font-family: 'Quicksand';
        src: url('../polices/Quicksand-VariableFont_wght.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }
    @font-face {
        font-family: 'CalSans';
        src: url('../polices/CalSans-Regular.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }
    
    body {
        background-color: var(--white);
        color: var(--text-main);
        font-family: 'Quicksand', sans-serif;
        margin: 0;
        padding: 0;
		overflow-x: hidden;
    }
	
	input, textarea, select, label { font-family: 'Quicksand', sans-serif; }

    /* =========================================
       TYPOGRAPHY & LAYOUT
    ========================================= */
    h1, h2, h3 { font-family: 'CalSans', sans-serif; line-height: 1.15; }
    
    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--purple);
        margin-bottom: 1rem;
    }
    .section-label::before {
        content: '';
        display: inline-block;
        width: 24px; height: 2px;
        background: var(--purple);
    }
    
    .section { padding: 90px 5%; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-header { margin-bottom: 3rem; }
    
    .section-title {
        font-size: clamp(1.9rem, 3.5vw, 2.8rem);
        font-weight: 800;
        color: var(--deep);
        margin-bottom: 0.8rem;
    }
    
    .section-sub {
        font-size: 1rem;
        color: var(--text-muted);
        max-width: 580px;
        line-height: 1.7;
    }

    /* =========================================
       HERO & PARTICULES (Style Épuré & Pro)
    ========================================= */
    #particles-wrapper {
		z-index: 1;
        position: relative;
        width: 100%;
        min-height: 50vh; 
        display: flex;
        flex-direction: column;
        justify-content: center;
		align-items: center;
        background-color: var(--off-white);
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    }

    #particles-wrapper::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.5) 100%);
    }

    #canvas-container { 
        position: absolute; 
        inset: 0; 
        z-index: 1;
		overflow: hidden;
    }
    
    #particle-canvas { 
        display: block; 
        width: 100%; 
        height: 100%; 
    }

    .hero-inner {
        position: relative;
        z-index: 2;
        width: 90%;
        max-width: 1000px;
        margin: 0 auto;
		padding-top: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; 
        text-align: center;
    }
    
    .hero-title {
        font-family: 'CalSans', sans-serif;
        font-size: clamp(2rem, 6vw, 4rem);
        font-weight: 700;
        color: var(--deep);
        line-height: 1.15;
        margin: 0 0 1rem 0;
    }
    
    .hero-title .accent { 
        display: inline-block; 
        color: var(--purple-light);
    }
    
    .hero-desc {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: var(--deep);
        line-height: 1.6;
        margin: 0 0 2rem 0;
		text-align : center;
        max-width: 750px;
        font-weight: 700;
    }
    
    .hero-actions { 
        display: flex; 
        gap: 16px; 
        flex-wrap: wrap; 
        justify-content: center; 
		margin-bottom: 50px;
    }
    
    /* Boutons */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--purple);
        color: var(--white);
        font-family: 'Quicksand', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        padding: 14px 28px;
        border-radius: 100px;
        transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .btn-primary:hover {
        background: var(--purple-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(131,0,168,0.3);
    }
    
    .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--deep);
		background: var(--white);
        font-family: 'Quicksand', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        padding: 12px 28px;
        border: 2px solid var(--deep);
        border-radius: 100px;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .btn-outline:hover {
        background-color: var(--deep);
        color: var(--white);
        transform: translateY(-2px);
    }
    
    /* =========================================
       POINTS FORTS (SLIDER ICONES)
    ========================================= */
    #slider-particules {
        position: relative;
        z-index: 2;
        background: linear-gradient(to top, rgba(131, 0, 168,1) 0%, rgba(131, 0, 168,0.1) 5%, rgba(255, 255, 255,0.1) 20%, rgba(255, 255, 255,0.1) 100%);
		border-bottom: solid 1px var(--purple);
        width: 100%;
		padding-bottom: 20px;
    }

    .slider {
        height: auto;
        margin-top: 10px;
        overflow: hidden;
    }

    .slide-track {
        display: flex;
        gap: 15px;
        transition: transform 0.3s ease;
        align-items: stretch;
    }
    .slide-track.center { justify-content: center; }

    .slide {
        flex: 0 0 auto;
        width: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 10px 5px;
        border-radius: 12px;
        text-align: center;
        transition: transform var(--transition), background var(--transition);
    }

    .slide:hover {
        transform: translateY(-3px);
    }

    .slide i {
        font-size: 2.4rem;
        color: var(--purple);
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .slide:hover i {
        transform: scale(1.1) rotate(-3deg);
    }

    .slide span {
        font-family: 'Quicksand', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--deep);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        line-height: 1.3;
    }

    .scroll-indicator {
        z-index: 10;
        position: absolute;
        left: 50%;
		margin-top: -20px;
        transform: translateX(-50%);
        width: 44px;
        height: 44px;
        background-color: var(--white);
        color: var(--purple);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        text-decoration: none;
        animation: bounce 2s infinite;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .scroll-indicator:hover {
        background-color: var(--purple);
        color: var(--white);
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
        40% { transform: translateY(-10px) translateX(-50%); }
        60% { transform: translateY(-5px) translateX(-50%); }
    }

    @keyframes scroll-pingpong {
        0% { transform: translateX(0); }
        50% { transform: translateX(var(--scroll-distance)); }
        100% { transform: translateX(0); }
    }

    /* =========================================
       SERVICES
    ========================================= */
    .services { position: relative; background: var(--white); z-index: 1; }
    .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    
    .service-card {
        background: #1b1023;
        border-radius: 18px;
        overflow: hidden;
        position: relative;
        padding: 28px 24px 80px;
        height: 100px;
        transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease,;
        border: 1px solid rgba(255,255,255,0.07);
        box-shadow: 0 10px 30px rgba(0,0,0,0.35);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .service-card:hover {
        transform: translateY(-6px);
        border-color: rgba(131,0,168,0.45);
        box-shadow: 0 20px 48px rgba(131,0,168,0.3);
		background: var(--purple-dark);
    }
    
    .service-icon {
        font-size: 3rem;
        color: #ffffff;
        display: flex;
		margin-top: 80px;
        align-items: center;
        justify-content: center;
        transition: transform 0.35s ease, opacity 0.35s ease;
        margin-bottom: 0;
    }
    .service-card:hover .service-icon {
        transform: scale(0.85) translateY(12px);
		transform: translateY(-20%);
        opacity: 0.15;
    }
    
	.service-name {
		position: absolute;
		top: 20%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-family: 'CalSans', sans-serif;
		font-size: 0.78rem;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: #9b7ab5;
		text-align: center;
		transition: all 0.35s ease;
		z-index: 2;
		width: 90%;
	}

	.service-card:hover .service-name {
		opacity: 1;
	}
	
	.service-desc {
		position: absolute;
		top: 47%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 85%;
		text-align: center;
		color: #ffffff;
		font-weight: 600;
		font-size: 0.95rem;
		line-height: 1.5;
		opacity: 0;
		transition: opacity 0.35s ease;
		z-index: 2;
	}

	.service-card:hover .service-desc {
		opacity: 1;
	}
    
    .service-link {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(16px);
        width: 85%;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #ffffff;
        color: #1b1023;
        font-family: 'Quicksand', sans-serif;
        font-size: 0.82rem;
        font-weight: 700;
        border-radius: 100px;
        opacity: 0;
        transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease, color 0.25s ease;
        white-space: nowrap;
    }
    .service-card:hover .service-link {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    /* =========================================
       À PROPOS
    ========================================= */
    .about {
        background: var(--deep2);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }
    .about::before {
        content: '';
        position: absolute;
        top: -100px; right: -100px;
        width: 500px; height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(131,0,168,0.2) 0%, transparent 70%);
    }
    
    .about-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    
    .about-label {
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #d88aff;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 1rem;
    }
    .about-label::before { content: ''; width: 24px; height: 2px; background: #d88aff; }
    
    .about-title {
        font-family: 'CalSans', sans-serif;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 800;
        color: var(--white);
        margin-bottom: 1.4rem;
    }
    .about-title .accent { color: var(--purple-light); }
    
    .about-text {
        font-size: 0.95rem;
        color: rgba(255,255,255,0.65);
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    
    .about-highlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 2rem;
    }
    
    .highlight-item { display: flex; align-items: flex-start; gap: 12px; }
    .highlight-icon {
        width: 36px; height: 36px;
        background: rgba(131,0,168,0.25);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #d88aff;
        font-size: 0.9rem;
    }
    .highlight-text { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
    .highlight-text strong {
        display: block;
        color: var(--white);
        font-weight: 600;
        font-size: 0.88rem;
        margin-bottom: 2px;
    }
    
    .about-gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
        gap: 10px;
    }
    .about-gallery .gal-main { grid-column: span 2; }
    .about-gallery .gal-item { border-radius: var(--radius-sm); overflow: hidden; }
    .about-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .about-gallery .gal-item:hover img { transform: scale(1.05); }

    /* =========================================
       ZONE GÉOGRAPHIQUE
    ========================================= */
    .geo { background: var(--white); padding-bottom: 80px; }
    .geo-intro {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
        margin-bottom: 3rem;
    }
    .geo-regions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .geo-region-card {
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 24px;
        background: var(--off-white);
        transition: border-color var(--transition), box-shadow var(--transition);
    }
    .geo-region-card:hover {
        border-color: rgba(131,0,168,0.3);
        box-shadow: 0 8px 24px rgba(131,0,168,0.07);
    }
    .geo-region-card.highlight {
        grid-column: span 2;
        background: linear-gradient(135deg, rgba(131,0,168,0.06) 0%, var(--off-white) 100%);
        border-color: rgba(131,0,168,0.25);
    }
    .geo-region-name {
        font-family: 'Quicksand', sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--deep);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .geo-region-name i { color: var(--purple); font-size: 0.9rem; }
    .geo-cities { display: flex; flex-wrap: wrap; gap: 6px; }
    .geo-city {
        font-size: 0.78rem;
        color: var(--text-muted);
        background: var(--white);
        border: 1px solid var(--border);
        padding: 3px 10px;
        border-radius: 100px;
        transition: background var(--transition), color var(--transition);
    }
    .geo-city:hover {
        background: var(--purple);
        color: var(--white);
        border-color: var(--purple);
    }
    
    .geo-checker {
        background: var(--deep);
        border-radius: var(--radius);
        padding: 40px;
        color: var(--white);
        margin-top: 3rem;
    }
    .geo-checker-title {
        font-family: 'CalSans', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    .geo-checker-sub { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
    .geo-checker-input { display: flex; gap: 12px; flex-wrap: wrap; }
    .geo-checker-input input {
        flex: 1;
        min-width: 200px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 100px;
        padding: 12px 20px;
        font-family: 'Quicksand', sans-serif;
        font-size: 0.95rem;
        color: var(--white);
        outline: none;
        transition: border-color var(--transition);
    }
    .geo-checker-input input::placeholder { color: rgba(255,255,255,0.3); }
    .geo-checker-input input:focus { border-color: var(--purple-light); }
    .geo-checker-input button {
        background: var(--purple);
        color: var(--white);
        border: none;
        border-radius: 100px;
        padding: 12px 28px;
        font-family: 'Quicksand', sans-serif;
        font-size: 0.88rem;
        font-weight: 600;
        cursor: pointer;
        transition: background var(--transition);
    }
    .geo-checker-input button:hover { background: var(--purple-light); }
    /* ── AUTOCOMPLÉTION (SUGGESTIONS) ───────────────── */
.geo-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.geo-input-wrapper input {
    width: 100%; /* S'assure que l'input prend toute la place du wrapper */
}

.geo-suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 8px;
    padding: 0;
    list-style: none;
    max-height: 240px;
    overflow-y: auto;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.geo-suggestions-list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.geo-suggestion-item {
    padding: 12px 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    color: var(--deep);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.geo-suggestion-item:last-child {
    border-bottom: none;
}

.geo-suggestion-item:hover {
    background: rgba(131,0,168,0.08);
    color: var(--purple);
    font-weight: 600;
}

/* Personnalisation de la barre de défilement de la liste */
.geo-suggestions-list::-webkit-scrollbar { width: 6px; }
.geo-suggestions-list::-webkit-scrollbar-track { background: transparent; }
.geo-suggestions-list::-webkit-scrollbar-thumb { background: rgba(131,0,168,0.2); border-radius: 10px; }
.geo-suggestions-list::-webkit-scrollbar-thumb:hover { background: rgba(131,0,168,0.5); }

    #geo-result {
        margin-top: 1rem;
        padding: 12px 18px;
        border-radius: var(--radius-sm);
        font-size: 0.88rem;
        display: none;
    }
    #geo-result.ok { background: rgba(29,158,117,0.2); border: 1px solid rgba(29,158,117,0.3); color: #6fe0bc; }
    #geo-result.info { background: rgba(131,0,168,0.2); border: 1px solid rgba(131,0,168,0.3); color: #d88aff; }

    /* =========================================
       TÉMOIGNAGES
    ========================================= */
    .testimonials { background: var(--white); padding: 90px 5%; }
    .testimonials-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 3rem;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .rating-summary {
        display: flex;
        align-items: center;
        gap: 16px;
        background: var(--off-white);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 16px 24px;
    }
    .rating-big {
        font-family: 'CalSans', sans-serif;
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--deep);
        line-height: 1;
    }
    .rating-details { display: flex; flex-direction: column; gap: 4px; }
    .stars { color: #f4b400; font-size: 1rem; letter-spacing: 2px; }
    .rating-count { font-size: 0.78rem; color: var(--text-muted); }
    
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
    .testi-card {
        background: var(--off-white);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 28px;
        transition: transform var(--transition), box-shadow var(--transition);
		display: flex;
		flex-direction: column;
    }
    .testi-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(131,0,168,0.08); }
    .testi-card.featured { background: var(--deep); border-color: transparent; }
    
    .testi-stars { color: #f4b400; font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
    .testi-card.featured .testi-stars { color: #ffd54f; }
    
    .testi-quote { font-size: 0.92rem; line-height: 1.7; color: var(--text-main); margin-bottom: 1.2rem; font-style: italic; }
    .testi-card.featured .testi-quote { color: rgba(255,255,255,0.85); }
    
    .testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
    .testi-avatar {
        width: 40px; height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--purple), var(--purple-light));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'CalSans', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--white);
        flex-shrink: 0;
    }
    .testi-name { font-family: 'CalSans', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--deep); }
    .testi-card.featured .testi-name { color: var(--white); }
    .testi-event { font-size: 0.78rem; color: var(--text-muted); }
    .testi-card.featured .testi-event { color: rgba(255,255,255,0.4); }
    
    .testi-cta { text-align: center; margin-top: 2.5rem; }
    .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--purple);
        font-family: 'Quicksand', sans-serif;
        font-size: 0.88rem;
        font-weight: 700;
        padding: 12px 24px;
        border: 2px solid var(--purple);
        border-radius: 100px;
        transition: background var(--transition), color var(--transition);
        text-decoration: none;
    }
    .btn-ghost:hover { background: var(--purple); color: var(--white); }

    /* =========================================
       PARTENAIRES
    ========================================= */
    .partners-carousel {
        overflow: hidden;
        padding: 40px 0;
        background-color: #f9f9f9;
        text-align: center;
    }
    .partners-carousel h2 { margin-bottom: 30px; }
    .carousel-track { display: flex; gap: 30px; transition: transform 0.3s ease; }
    .carousel-track.center { justify-content: center; }
    .carousel-item { flex: 0 0 auto; width: 150px; height: 80px; display: block; }
    .carousel-item img {
        width: 100%; height: 100%;
        object-fit: contain;
        display: block;
        transition: transform 0.3s ease;
    }
    .carousel-item:hover img { transform: scale(1.1); }

 /* SOCIAL */
.form {
	max-width: 1200px;
	margin: 50px auto;
	position: relative;
	padding: 0 20px;
	}
.social {
	display: flex;
	justify-content: center;
	flex-flow: wrap;
	gap: 1rem;
	list-style: none;
    padding: 0;
    margin: 60px 0 40px;
	}
.social li {
	position: relative;
	flex-basis: 4.5rem;
	}
.social li::after {
	position: absolute;
	content: attr(data-tooltip);
	inset: -45% auto auto 50%;
	z-index: -1;
	translate: -50%;
	padding: 0.25rem 0.75rem;
	font-size: 20px;
	color: #fff;
	background: var(--bg, #070707);
	border-radius: 0.25rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: inset 0.4s cubic-bezier(0.47, 2, 0.41, 1.5),
	visibility 0.3s ease-in-out, opacity 0.2s ease-in-out;
	}
.social li:has(a:hover, a:focus-visible)::after {
	opacity: 1;
	visibility: visible;
	inset-block-start: -60%;
	}
.social a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	font-size: 30px;
	color: #82237D;
	border: 1px solid;
	border-radius: 100%;
	text-decoration: none;
	outline: none;
	overflow: hidden;
	transition: color 0.3s ease-in-out;
	}
.social a > i {
	position: relative;
	z-index: 1;
	}
.social a::after {
	position: absolute;
	content: "";
	inset: 100% 0 0;
	background: var(--bg, #070707);
	pointer-events: none;
	transition: inset 0.3s ease-in-out;
	}
.social a:hover,
.social a:focus-visible {
	color: #fff;
	}
.social a:hover::after,
.social a:focus-visible::after {
	inset-block-start: 0;
	}

/* CONTACT */
#forms-container {
	background: #fff;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	}
.contact-form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	}
.form-field {
	position: relative;
	width: 48%; /* 2 colonnes par défaut */
	margin-bottom: 15px;
	}
.form-field.full-width {
	width: 100%;
	}
.input-text {
	width: 100%;
	padding: 15px;
	border: 1px solid #82237D;
	border-radius: 8px;
	background-color: #fff;
	font-size: 1rem;
	outline: none;
	transition: all 0.3s ease;
	box-sizing: border-box;
	}
.input-text:focus {
	border-color: #fff;
	background-color: #fff;
	box-shadow: 0 0 0 3px rgba(150, 47, 191, 0.1);
	}
select.input-text {
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	color: #82237D;
	}
.label {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 1rem;
	pointer-events: none;
	transition: 0.3s ease all;
	}
.label i {
	margin-right: 8px;
	color: #82237D;
	}
.input-text:focus + .label,
.input-text:not(:placeholder-shown) + .label {
	top: 0;
	transform: translateY(-50%);
	font-size: 0.8rem;
	background: #fff;
	padding: 0 5px;
	color: #962fbf;
	font-weight: 600;
	}
select.input-text + .label {
	top: 0 !important;
	transform: translateY(-50%);
	font-size: 0.8rem;
	background: #fff;
	padding: 0 5px;
	}
textarea.input-text + .label {
	top: 20px;
	}
textarea.input-text:focus + .label,
textarea.input-text:not(:placeholder-shown) + .label {
	top: 0;
	}
.honeypot-field {
	display: none;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	z-index: -1;
	}

.btn-contact {
        display: flex;
        align-items: center;
        background: var(--purple);
        color: var(--white);
        font-family: 'Quicksand', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        padding: 14px 40px;
        border-radius: 100px;
        transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
		margin: 0 auto;
		cursor: pointer;
    }
    .btn-contact:hover {
        background: var(--purple-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(131,0,168,0.3);
    }

@media (max-width: 900px) {
    .form-field {
        width: 100%;
    }

    .social {
        gap: 0.5rem;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .social li {
        flex-basis: 3.5rem; /* au lieu de 4.5rem */
    }

    .social a {
        font-size: 24px; /* au lieu de 30px */
    }
}

    /* =========================================
       ANIMATIONS SCROLL & RESPONSIVE
    ========================================= */
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    
    @media (max-width: 900px) {
        .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 80px; }
		
		.services-grid { grid-template-columns: repeat(2, 1fr); }
        .about-inner { grid-template-columns: 1fr; gap: 40px; }
        .about-gallery { display: none; }
        .geo-intro { grid-template-columns: 1fr; gap: 30px; }
        .geo-regions { grid-template-columns: 1fr; }
        .geo-region-card.highlight { grid-column: span 1; }
        .contact-inner { grid-template-columns: 1fr; gap: 40px; }
        .form-row { grid-template-columns: 1fr; }
		.rating-summary { width: 100%; }
    }
    
    @media (max-width: 600px) {
        .section { padding: 60px 5%; }
        .hero-stats { flex-wrap: wrap; gap: 20px; }
    }